/*  Prototype JavaScript framework, version 1.6.0.3
 *  (c) 2005-2008 Sam Stephenson
 *
 *  Prototype is freely distributable under the terms of an MIT-style license.
 *  For details, see the Prototype web site: http://www.prototypejs.org/
 *
 *--------------------------------------------------------------------------*/

var Prototype = {
  Version: '1.6.0.3',

  Browser: {
    IE:     !!(window.attachEvent &&
      navigator.userAgent.indexOf('Opera') === -1),
    Opera:  navigator.userAgent.indexOf('Opera') > -1,
    WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
    Gecko:  navigator.userAgent.indexOf('Gecko') > -1 &&
      navigator.userAgent.indexOf('KHTML') === -1,
    MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
  },

  BrowserFeatures: {
    XPath: !!document.evaluate,
    SelectorsAPI: !!document.querySelector,
    ElementExtensions: !!window.HTMLElement,
    SpecificElementExtensions:
      document.createElement('div')['__proto__'] &&
      document.createElement('div')['__proto__'] !==
        document.createElement('form')['__proto__']
  },

  ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',
  JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,

  emptyFunction: function() { },
  K: function(x) { return x }
};

if (Prototype.Browser.MobileSafari)
  Prototype.BrowserFeatures.SpecificElementExtensions = false;


/* Based on Alex Arnell's inheritance implementation. */
var Class = {
  create: function() {
    var parent = null, properties = $A(arguments);
    if (Object.isFunction(properties[0]))
      parent = properties.shift();

    function klass() {
      this.initialize.apply(this, arguments);
    }

    Object.extend(klass, Class.Methods);
    klass.superclass = parent;
    klass.subclasses = [];

    if (parent) {
      var subclass = function() { };
      subclass.prototype = parent.prototype;
      klass.prototype = new subclass;
      parent.subclasses.push(klass);
    }

    for (var i = 0; i < properties.length; i++)
      klass.addMethods(properties[i]);

    if (!klass.prototype.initialize)
      klass.prototype.initialize = Prototype.emptyFunction;

    klass.prototype.constructor = klass;

    return klass;
  }
};

Class.Methods = {
  addMethods: function(source) {
    var ancestor   = this.superclass && this.superclass.prototype;
    var properties = Object.keys(source);

    if (!Object.keys({ toString: true }).length)
      properties.push("toString", "valueOf");

    for (var i = 0, length = properties.length; i < length; i++) {
      var property = properties[i], value = source[property];
      if (ancestor && Object.isFunction(value) &&
          value.argumentNames().first() == "$super") {
        var method = value;
        value = (function(m) {
          return function() { return ancestor[m].apply(this, arguments) };
        })(property).wrap(method);

        value.valueOf = method.valueOf.bind(method);
        value.toString = method.toString.bind(method);
      }
      this.prototype[property] = value;
    }

    return this;
  }
};

var Abstract = { };

Object.extend = function(destination, source) {
  for (var property in source)
    destination[property] = source[property];
  return destination;
};

Object.extend(Object, {
  inspect: function(object) {
    try {
      if (Object.isUndefined(object)) return 'undefined';
      if (object === null) return 'null';
      return object.inspect ? object.inspect() : String(object);
    } catch (e) {
      if (e instanceof RangeError) return '...';
      throw e;
    }
  },

  toJSON: function(object) {
    var type = typeof object;
    switch (type) {
      case 'undefined':
      case 'function':
      case 'unknown': return;
      case 'boolean': return object.toString();
    }

    if (object === null) return 'null';
    if (object.toJSON) return object.toJSON();
    if (Object.isElement(object)) return;

    var results = [];
    for (var property in object) {
      var value = Object.toJSON(object[property]);
      if (!Object.isUndefined(value))
        results.push(property.toJSON() + ': ' + value);
    }

    return '{' + results.join(', ') + '}';
  },

  toQueryString: function(object) {
    return $H(object).toQueryString();
  },

  toHTML: function(object) {
    return object && object.toHTML ? object.toHTML() : String.interpret(object);
  },

  keys: function(object) {
    var keys = [];
    for (var property in object)
      keys.push(property);
    return keys;
  },

  values: function(object) {
    var values = [];
    for (var property in object)
      values.push(object[property]);
    return values;
  },

  clone: function(object) {
    return Object.extend({ }, object);
  },

  isElement: function(object) {
    return !!(object && object.nodeType == 1);
  },

  isArray: function(object) {
    return object != null && typeof object == "object" &&
      'splice' in object && 'join' in object;
  },

  isHash: function(object) {
    return object instanceof Hash;
  },

  isFunction: function(object) {
    return typeof object == "function";
  },

  isString: function(object) {
    return typeof object == "string";
  },

  isNumber: function(object) {
    return typeof object == "number";
  },

  isUndefined: function(object) {
    return typeof object == "undefined";
  }
});

Object.extend(Function.prototype, {
  argumentNames: function() {
    var names = this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1]
      .replace(/\s+/g, '').split(',');
    return names.length == 1 && !names[0] ? [] : names;
  },

  bind: function() {
    if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
    var __method = this, args = $A(arguments), object = args.shift();
    return function() {
      return __method.apply(object, args.concat($A(arguments)));
    }
  },

  bindAsEventListener: function() {
    var __method = this, args = $A(arguments), object = args.shift();
    return function(event) {
      return __method.apply(object, [event || window.event].concat(args));
    }
  },

  curry: function() {
    if (!arguments.length) return this;
    var __method = this, args = $A(arguments);
    return function() {
      return __method.apply(this, args.concat($A(arguments)));
    }
  },

  delay: function() {
    var __method = this, args = $A(arguments), timeout = args.shift() * 1000;
    return window.setTimeout(function() {
      return __method.apply(__method, args);
    }, timeout);
  },

  defer: function() {
    var args = [0.01].concat($A(arguments));
    return this.delay.apply(this, args);
  },

  wrap: function(wrapper) {
    var __method = this;
    return function() {
      return wrapper.apply(this, [__method.bind(this)].concat($A(arguments)));
    }
  },

  methodize: function() {
    if (this._methodized) return this._methodized;
    var __method = this;
    return this._methodized = function() {
      return __method.apply(null, [this].concat($A(arguments)));
    };
  }
});

Date.prototype.toJSON = function() {
  return '"' + this.getUTCFullYear() + '-' +
    (this.getUTCMonth() + 1).toPaddedString(2) + '-' +
    this.getUTCDate().toPaddedString(2) + 'T' +
    this.getUTCHours().toPaddedString(2) + ':' +
    this.getUTCMinutes().toPaddedString(2) + ':' +
    this.getUTCSeconds().toPaddedString(2) + 'Z"';
};

var Try = {
  these: function() {
    var returnValue;

    for (var i = 0, length = arguments.length; i < length; i++) {
      var lambda = arguments[i];
      try {
        returnValue = lambda();
        break;
      } catch (e) { }
    }

    return returnValue;
  }
};

RegExp.prototype.match = RegExp.prototype.test;

RegExp.escape = function(str) {
  return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
};

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

var PeriodicalExecuter = Class.create({
  initialize: function(callback, frequency) {
    this.callback = callback;
    this.frequency = frequency;
    this.currentlyExecuting = false;

    this.registerCallback();
  },

  registerCallback: function() {
    this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
  },

  execute: function() {
    this.callback(this);
  },

  stop: function() {
    if (!this.timer) return;
    clearInterval(this.timer);
    this.timer = null;
  },

  onTimerEvent: function() {
    if (!this.currentlyExecuting) {
      try {
        this.currentlyExecuting = true;
        this.execute();
      } finally {
        this.currentlyExecuting = false;
      }
    }
  }
});
Object.extend(String, {
  interpret: function(value) {
    return value == null ? '' : String(value);
  },
  specialChar: {
    '\b': '\\b',
    '\t': '\\t',
    '\n': '\\n',
    '\f': '\\f',
    '\r': '\\r',
    '\\': '\\\\'
  }
});

Object.extend(String.prototype, {
  gsub: function(pattern, replacement) {
    var result = '', source = this, match;
    replacement = arguments.callee.prepareReplacement(replacement);

    while (source.length > 0) {
      if (match = source.match(pattern)) {
        result += source.slice(0, match.index);
        result += String.interpret(replacement(match));
        source  = source.slice(match.index + match[0].length);
      } else {
        result += source, source = '';
      }
    }
    return result;
  },

  sub: function(pattern, replacement, count) {
    replacement = this.gsub.prepareReplacement(replacement);
    count = Object.isUndefined(count) ? 1 : count;

    return this.gsub(pattern, function(match) {
      if (--count < 0) return match[0];
      return replacement(match);
    });
  },

  scan: function(pattern, iterator) {
    this.gsub(pattern, iterator);
    return String(this);
  },

  truncate: function(length, truncation) {
    length = length || 30;
    truncation = Object.isUndefined(truncation) ? '...' : truncation;
    return this.length > length ?
      this.slice(0, length - truncation.length) + truncation : String(this);
  },

  strip: function() {
    return this.replace(/^\s+/, '').replace(/\s+$/, '');
  },

  stripTags: function() {
    return this.replace(/<\/?[^>]+>/gi, '');
  },

  stripScripts: function() {
    return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
  },

  extractScripts: function() {
    var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
    var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
    return (this.match(matchAll) || []).map(function(scriptTag) {
      return (scriptTag.match(matchOne) || ['', ''])[1];
    });
  },

  evalScripts: function() {
    return this.extractScripts().map(function(script) { return eval(script) });
  },

  escapeHTML: function() {
    var self = arguments.callee;
    self.text.data = this;
    return self.div.innerHTML;
  },

  unescapeHTML: function() {
    var div = new Element('div');
    div.innerHTML = this.stripTags();
    return div.childNodes[0] ? (div.childNodes.length > 1 ?
      $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) :
      div.childNodes[0].nodeValue) : '';
  },

  toQueryParams: function(separator) {
    var match = this.strip().match(/([^?#]*)(#.*)?$/);
    if (!match) return { };

    return match[1].split(separator || '&').inject({ }, function(hash, pair) {
      if ((pair = pair.split('='))[0]) {
        var key = decodeURIComponent(pair.shift());
        var value = pair.length > 1 ? pair.join('=') : pair[0];
        if (value != undefined) value = decodeURIComponent(value);

        if (key in hash) {
          if (!Object.isArray(hash[key])) hash[key] = [hash[key]];
          hash[key].push(value);
        }
        else hash[key] = value;
      }
      return hash;
    });
  },

  toArray: function() {
    return this.split('');
  },

  succ: function() {
    return this.slice(0, this.length - 1) +
      String.fromCharCode(this.charCodeAt(this.length - 1) + 1);
  },

  times: function(count) {
    return count < 1 ? '' : new Array(count + 1).join(this);
  },

  camelize: function() {
    var parts = this.split('-'), len = parts.length;
    if (len == 1) return parts[0];

    var camelized = this.charAt(0) == '-'
      ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1)
      : parts[0];

    for (var i = 1; i < len; i++)
      camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1);

    return camelized;
  },

  capitalize: function() {
    return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
  },

  underscore: function() {
    return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase();
  },

  dasherize: function() {
    return this.gsub(/_/,'-');
  },

  inspect: function(useDoubleQuotes) {
    var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) {
      var character = String.specialChar[match[0]];
      return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16);
    });
    if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
    return "'" + escapedString.replace(/'/g, '\\\'') + "'";
  },

  toJSON: function() {
    return this.inspect(true);
  },

  unfilterJSON: function(filter) {
    return this.sub(filter || Prototype.JSONFilter, '#{1}');
  },

  isJSON: function() {
    var str = this;
    if (str.blank()) return false;
    str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, '');
    return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);
  },

  evalJSON: function(sanitize) {
    var json = this.unfilterJSON();
    try {
      if (!sanitize || json.isJSON()) return eval('(' + json + ')');
    } catch (e) { }
    throw new SyntaxError('Badly formed JSON string: ' + this.inspect());
  },

  include: function(pattern) {
    return this.indexOf(pattern) > -1;
  },

  startsWith: function(pattern) {
    return this.indexOf(pattern) === 0;
  },

  endsWith: function(pattern) {
    var d = this.length - pattern.length;
    return d >= 0 && this.lastIndexOf(pattern) === d;
  },

  empty: function() {
    return this == '';
  },

  blank: function() {
    return /^\s*$/.test(this);
  },

  interpolate: function(object, pattern) {
    return new Template(this, pattern).evaluate(object);
  }
});

if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, {
  escapeHTML: function() {
    return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
  },
  unescapeHTML: function() {
    return this.stripTags().replace(/&amp;/g,'&').replace(/&lt;/g,'<').replace(/&gt;/g,'>');
  }
});

String.prototype.gsub.prepareReplacement = function(replacement) {
  if (Object.isFunction(replacement)) return replacement;
  var template = new Template(replacement);
  return function(match) { return template.evaluate(match) };
};

String.prototype.parseQuery = String.prototype.toQueryParams;

Object.extend(String.prototype.escapeHTML, {
  div:  document.createElement('div'),
  text: document.createTextNode('')
});

String.prototype.escapeHTML.div.appendChild(String.prototype.escapeHTML.text);

var Template = Class.create({
  initialize: function(template, pattern) {
    this.template = template.toString();
    this.pattern = pattern || Template.Pattern;
  },

  evaluate: function(object) {
    if (Object.isFunction(object.toTemplateReplacements))
      object = object.toTemplateReplacements();

    return this.template.gsub(this.pattern, function(match) {
      if (object == null) return '';

      var before = match[1] || '';
      if (before == '\\') return match[2];

      var ctx = object, expr = match[3];
      var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;
      match = pattern.exec(expr);
      if (match == null) return before;

      while (match != null) {
        var comp = match[1].startsWith('[') ? match[2].gsub('\\\\]', ']') : match[1];
        ctx = ctx[comp];
        if (null == ctx || '' == match[3]) break;
        expr = expr.substring('[' == match[3] ? match[1].length : match[0].length);
        match = pattern.exec(expr);
      }

      return before + String.interpret(ctx);
    });
  }
});
Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;

var $break = { };

var Enumerable = {
  each: function(iterator, context) {
    var index = 0;
    try {
      this._each(function(value) {
        iterator.call(context, value, index++);
      });
    } catch (e) {
      if (e != $break) throw e;
    }
    return this;
  },

  eachSlice: function(number, iterator, context) {
    var index = -number, slices = [], array = this.toArray();
    if (number < 1) return array;
    while ((index += number) < array.length)
      slices.push(array.slice(index, index+number));
    return slices.collect(iterator, context);
  },

  all: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result = true;
    this.each(function(value, index) {
      result = result && !!iterator.call(context, value, index);
      if (!result) throw $break;
    });
    return result;
  },

  any: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result = false;
    this.each(function(value, index) {
      if (result = !!iterator.call(context, value, index))
        throw $break;
    });
    return result;
  },

  collect: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var results = [];
    this.each(function(value, index) {
      results.push(iterator.call(context, value, index));
    });
    return results;
  },

  detect: function(iterator, context) {
    var result;
    this.each(function(value, index) {
      if (iterator.call(context, value, index)) {
        result = value;
        throw $break;
      }
    });
    return result;
  },

  findAll: function(iterator, context) {
    var results = [];
    this.each(function(value, index) {
      if (iterator.call(context, value, index))
        results.push(value);
    });
    return results;
  },

  grep: function(filter, iterator, context) {
    iterator = iterator || Prototype.K;
    var results = [];

    if (Object.isString(filter))
      filter = new RegExp(filter);

    this.each(function(value, index) {
      if (filter.match(value))
        results.push(iterator.call(context, value, index));
    });
    return results;
  },

  include: function(object) {
    if (Object.isFunction(this.indexOf))
      if (this.indexOf(object) != -1) return true;

    var found = false;
    this.each(function(value) {
      if (value == object) {
        found = true;
        throw $break;
      }
    });
    return found;
  },

  inGroupsOf: function(number, fillWith) {
    fillWith = Object.isUndefined(fillWith) ? null : fillWith;
    return this.eachSlice(number, function(slice) {
      while(slice.length < number) slice.push(fillWith);
      return slice;
    });
  },

  inject: function(memo, iterator, context) {
    this.each(function(value, index) {
      memo = iterator.call(context, memo, value, index);
    });
    return memo;
  },

  invoke: function(method) {
    var args = $A(arguments).slice(1);
    return this.map(function(value) {
      return value[method].apply(value, args);
    });
  },

  max: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result;
    this.each(function(value, index) {
      value = iterator.call(context, value, index);
      if (result == null || value >= result)
        result = value;
    });
    return result;
  },

  min: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result;
    this.each(function(value, index) {
      value = iterator.call(context, value, index);
      if (result == null || value < result)
        result = value;
    });
    return result;
  },

  partition: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var trues = [], falses = [];
    this.each(function(value, index) {
      (iterator.call(context, value, index) ?
        trues : falses).push(value);
    });
    return [trues, falses];
  },

  pluck: function(property) {
    var results = [];
    this.each(function(value) {
      results.push(value[property]);
    });
    return results;
  },

  reject: function(iterator, context) {
    var results = [];
    this.each(function(value, index) {
      if (!iterator.call(context, value, index))
        results.push(value);
    });
    return results;
  },

  sortBy: function(iterator, context) {
    return this.map(function(value, index) {
      return {
        value: value,
        criteria: iterator.call(context, value, index)
      };
    }).sort(function(left, right) {
      var a = left.criteria, b = right.criteria;
      return a < b ? -1 : a > b ? 1 : 0;
    }).pluck('value');
  },

  toArray: function() {
    return this.map();
  },

  zip: function() {
    var iterator = Prototype.K, args = $A(arguments);
    if (Object.isFunction(args.last()))
      iterator = args.pop();

    var collections = [this].concat(args).map($A);
    return this.map(function(value, index) {
      return iterator(collections.pluck(index));
    });
  },

  size: function() {
    return this.toArray().length;
  },

  inspect: function() {
    return '#<Enumerable:' + this.toArray().inspect() + '>';
  }
};

Object.extend(Enumerable, {
  map:     Enumerable.collect,
  find:    Enumerable.detect,
  select:  Enumerable.findAll,
  filter:  Enumerable.findAll,
  member:  Enumerable.include,
  entries: Enumerable.toArray,
  every:   Enumerable.all,
  some:    Enumerable.any
});
function $A(iterable) {
  if (!iterable) return [];
  if (iterable.toArray) return iterable.toArray();
  var length = iterable.length || 0, results = new Array(length);
  while (length--) results[length] = iterable[length];
  return results;
}

if (Prototype.Browser.WebKit) {
  $A = function(iterable) {
    if (!iterable) return [];
    // In Safari, only use the `toArray` method if it's not a NodeList.
    // A NodeList is a function, has an function `item` property, and a numeric
    // `length` property. Adapted from Google Doctype.
    if (!(typeof iterable === 'function' && typeof iterable.length ===
        'number' && typeof iterable.item === 'function') && iterable.toArray)
      return iterable.toArray();
    var length = iterable.length || 0, results = new Array(length);
    while (length--) results[length] = iterable[length];
    return results;
  };
}

Array.from = $A;

Object.extend(Array.prototype, Enumerable);

if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse;

Object.extend(Array.prototype, {
  _each: function(iterator) {
    for (var i = 0, length = this.length; i < length; i++)
      iterator(this[i]);
  },

  clear: function() {
    this.length = 0;
    return this;
  },

  first: function() {
    return this[0];
  },

  last: function() {
    return this[this.length - 1];
  },

  compact: function() {
    return this.select(function(value) {
      return value != null;
    });
  },

  flatten: function() {
    return this.inject([], function(array, value) {
      return array.concat(Object.isArray(value) ?
        value.flatten() : [value]);
    });
  },

  without: function() {
    var values = $A(arguments);
    return this.select(function(value) {
      return !values.include(value);
    });
  },

  reverse: function(inline) {
    return (inline !== false ? this : this.toArray())._reverse();
  },

  reduce: function() {
    return this.length > 1 ? this : this[0];
  },

  uniq: function(sorted) {
    return this.inject([], function(array, value, index) {
      if (0 == index || (sorted ? array.last() != value : !array.include(value)))
        array.push(value);
      return array;
    });
  },

  intersect: function(array) {
    return this.uniq().findAll(function(item) {
      return array.detect(function(value) { return item === value });
    });
  },

  clone: function() {
    return [].concat(this);
  },

  size: function() {
    return this.length;
  },

  inspect: function() {
    return '[' + this.map(Object.inspect).join(', ') + ']';
  },

  toJSON: function() {
    var results = [];
    this.each(function(object) {
      var value = Object.toJSON(object);
      if (!Object.isUndefined(value)) results.push(value);
    });
    return '[' + results.join(', ') + ']';
  }
});

// use native browser JS 1.6 implementation if available
if (Object.isFunction(Array.prototype.forEach))
  Array.prototype._each = Array.prototype.forEach;

if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) {
  i || (i = 0);
  var length = this.length;
  if (i < 0) i = length + i;
  for (; i < length; i++)
    if (this[i] === item) return i;
  return -1;
};

if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) {
  i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1;
  var n = this.slice(0, i).reverse().indexOf(item);
  return (n < 0) ? n : i - n - 1;
};

Array.prototype.toArray = Array.prototype.clone;

function $w(string) {
  if (!Object.isString(string)) return [];
  string = string.strip();
  return string ? string.split(/\s+/) : [];
}

if (Prototype.Browser.Opera){
  Array.prototype.concat = function() {
    var array = [];
    for (var i = 0, length = this.length; i < length; i++) array.push(this[i]);
    for (var i = 0, length = arguments.length; i < length; i++) {
      if (Object.isArray(arguments[i])) {
        for (var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++)
          array.push(arguments[i][j]);
      } else {
        array.push(arguments[i]);
      }
    }
    return array;
  };
}
Object.extend(Number.prototype, {
  toColorPart: function() {
    return this.toPaddedString(2, 16);
  },

  succ: function() {
    return this + 1;
  },

  times: function(iterator, context) {
    $R(0, this, true).each(iterator, context);
    return this;
  },

  toPaddedString: function(length, radix) {
    var string = this.toString(radix || 10);
    return '0'.times(length - string.length) + string;
  },

  toJSON: function() {
    return isFinite(this) ? this.toString() : 'null';
  }
});

$w('abs round ceil floor').each(function(method){
  Number.prototype[method] = Math[method].methodize();
});
function $H(object) {
  return new Hash(object);
};

var Hash = Class.create(Enumerable, (function() {

  function toQueryPair(key, value) {
    if (Object.isUndefined(value)) return key;
    return key + '=' + encodeURIComponent(String.interpret(value));
  }

  return {
    initialize: function(object) {
      this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
    },

    _each: function(iterator) {
      for (var key in this._object) {
        var value = this._object[key], pair = [key, value];
        pair.key = key;
        pair.value = value;
        iterator(pair);
      }
    },

    set: function(key, value) {
      return this._object[key] = value;
    },

    get: function(key) {
      // simulating poorly supported hasOwnProperty
      if (this._object[key] !== Object.prototype[key])
        return this._object[key];
    },

    unset: function(key) {
      var value = this._object[key];
      delete this._object[key];
      return value;
    },

    toObject: function() {
      return Object.clone(this._object);
    },

    keys: function() {
      return this.pluck('key');
    },

    values: function() {
      return this.pluck('value');
    },

    index: function(value) {
      var match = this.detect(function(pair) {
        return pair.value === value;
      });
      return match && match.key;
    },

    merge: function(object) {
      return this.clone().update(object);
    },

    update: function(object) {
      return new Hash(object).inject(this, function(result, pair) {
        result.set(pair.key, pair.value);
        return result;
      });
    },

    toQueryString: function() {
      return this.inject([], function(results, pair) {
        var key = encodeURIComponent(pair.key), values = pair.value;

        if (values && typeof values == 'object') {
          if (Object.isArray(values))
            return results.concat(values.map(toQueryPair.curry(key)));
        } else results.push(toQueryPair(key, values));
        return results;
      }).join('&');
    },

    inspect: function() {
      return '#<Hash:{' + this.map(function(pair) {
        return pair.map(Object.inspect).join(': ');
      }).join(', ') + '}>';
    },

    toJSON: function() {
      return Object.toJSON(this.toObject());
    },

    clone: function() {
      return new Hash(this);
    }
  }
})());

Hash.prototype.toTemplateReplacements = Hash.prototype.toObject;
Hash.from = $H;
var ObjectRange = Class.create(Enumerable, {
  initialize: function(start, end, exclusive) {
    this.start = start;
    this.end = end;
    this.exclusive = exclusive;
  },

  _each: function(iterator) {
    var value = this.start;
    while (this.include(value)) {
      iterator(value);
      value = value.succ();
    }
  },

  include: function(value) {
    if (value < this.start)
      return false;
    if (this.exclusive)
      return value < this.end;
    return value <= this.end;
  }
});

var $R = function(start, end, exclusive) {
  return new ObjectRange(start, end, exclusive);
};

var Ajax = {
  getTransport: function() {
    return Try.these(
      function() {return new XMLHttpRequest()},
      function() {return new ActiveXObject('Msxml2.XMLHTTP')},
      function() {return new ActiveXObject('Microsoft.XMLHTTP')}
    ) || false;
  },

  activeRequestCount: 0
};

Ajax.Responders = {
  responders: [],

  _each: function(iterator) {
    this.responders._each(iterator);
  },

  register: function(responder) {
    if (!this.include(responder))
      this.responders.push(responder);
  },

  unregister: function(responder) {
    this.responders = this.responders.without(responder);
  },

  dispatch: function(callback, request, transport, json) {
    this.each(function(responder) {
      if (Object.isFunction(responder[callback])) {
        try {
          responder[callback].apply(responder, [request, transport, json]);
        } catch (e) { }
      }
    });
  }
};

Object.extend(Ajax.Responders, Enumerable);

Ajax.Responders.register({
  onCreate:   function() { Ajax.activeRequestCount++ },
  onComplete: function() { Ajax.activeRequestCount-- }
});

Ajax.Base = Class.create({
  initialize: function(options) {
    this.options = {
      method:       'post',
      asynchronous: true,
      contentType:  'application/x-www-form-urlencoded',
      encoding:     'UTF-8',
      parameters:   '',
      evalJSON:     true,
      evalJS:       true
    };
    Object.extend(this.options, options || { });

    this.options.method = this.options.method.toLowerCase();

    if (Object.isString(this.options.parameters))
      this.options.parameters = this.options.parameters.toQueryParams();
    else if (Object.isHash(this.options.parameters))
      this.options.parameters = this.options.parameters.toObject();
  }
});

Ajax.Request = Class.create(Ajax.Base, {
  _complete: false,

  initialize: function($super, url, options) {
    $super(options);
    this.transport = Ajax.getTransport();
    this.request(url);
  },

  request: function(url) {
    this.url = url;
    this.method = this.options.method;
    var params = Object.clone(this.options.parameters);

    if (!['get', 'post'].include(this.method)) {
      // simulate other verbs over post
      params['_method'] = this.method;
      this.method = 'post';
    }

    this.parameters = params;

    if (params = Object.toQueryString(params)) {
      // when GET, append parameters to URL
      if (this.method == 'get')
        this.url += (this.url.include('?') ? '&' : '?') + params;
      else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
        params += '&_=';
    }

    try {
      var response = new Ajax.Response(this);
      if (this.options.onCreate) this.options.onCreate(response);
      Ajax.Responders.dispatch('onCreate', this, response);

      this.transport.open(this.method.toUpperCase(), this.url,
        this.options.asynchronous);

      if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);

      this.transport.onreadystatechange = this.onStateChange.bind(this);
      this.setRequestHeaders();

      this.body = this.method == 'post' ? (this.options.postBody || params) : null;
      this.transport.send(this.body);

      /* Force Firefox to handle ready state 4 for synchronous requests */
      if (!this.options.asynchronous && this.transport.overrideMimeType)
        this.onStateChange();

    }
    catch (e) {
      this.dispatchException(e);
    }
  },

  onStateChange: function() {
    var readyState = this.transport.readyState;
    if (readyState > 1 && !((readyState == 4) && this._complete))
      this.respondToReadyState(this.transport.readyState);
  },

  setRequestHeaders: function() {
    var headers = {
      'X-Requested-With': 'XMLHttpRequest',
      'X-Prototype-Version': Prototype.Version,
      'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
    };

    if (this.method == 'post') {
      headers['Content-type'] = this.options.contentType +
        (this.options.encoding ? '; charset=' + this.options.encoding : '');

      /* Force "Connection: close" for older Mozilla browsers to work
       * around a bug where XMLHttpRequest sends an incorrect
       * Content-length header. See Mozilla Bugzilla #246651.
       */
      if (this.transport.overrideMimeType &&
          (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005)
            headers['Connection'] = 'close';
    }

    // user-defined headers
    if (typeof this.options.requestHeaders == 'object') {
      var extras = this.options.requestHeaders;

      if (Object.isFunction(extras.push))
        for (var i = 0, length = extras.length; i < length; i += 2)
          headers[extras[i]] = extras[i+1];
      else
        $H(extras).each(function(pair) { headers[pair.key] = pair.value });
    }

    for (var name in headers)
      this.transport.setRequestHeader(name, headers[name]);
  },

  success: function() {
    var status = this.getStatus();
    return !status || (status >= 200 && status < 300);
  },

  getStatus: function() {
    try {
      return this.transport.status || 0;
    } catch (e) { return 0 }
  },

  respondToReadyState: function(readyState) {
    var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this);

    if (state == 'Complete') {
      try {
        this._complete = true;
        (this.options['on' + response.status]
         || this.options['on' + (this.success() ? 'Success' : 'Failure')]
         || Prototype.emptyFunction)(response, response.headerJSON);
      } catch (e) {
        this.dispatchException(e);
      }

      var contentType = response.getHeader('Content-type');
      if (this.options.evalJS == 'force'
          || (this.options.evalJS && this.isSameOrigin() && contentType
          && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
        this.evalResponse();
    }

    try {
      (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON);
      Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON);
    } catch (e) {
      this.dispatchException(e);
    }

    if (state == 'Complete') {
      // avoid memory leak in MSIE: clean up
      this.transport.onreadystatechange = Prototype.emptyFunction;
    }
  },

  isSameOrigin: function() {
    var m = this.url.match(/^\s*https?:\/\/[^\/]*/);
    return !m || (m[0] == '#{protocol}//#{domain}#{port}'.interpolate({
      protocol: location.protocol,
      domain: document.domain,
      port: location.port ? ':' + location.port : ''
    }));
  },

  getHeader: function(name) {
    try {
      return this.transport.getResponseHeader(name) || null;
    } catch (e) { return null }
  },

  evalResponse: function() {
    try {
      return eval((this.transport.responseText || '').unfilterJSON());
    } catch (e) {
      this.dispatchException(e);
    }
  },

  dispatchException: function(exception) {
    (this.options.onException || Prototype.emptyFunction)(this, exception);
    Ajax.Responders.dispatch('onException', this, exception);
  }
});

Ajax.Request.Events =
  ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];

Ajax.Response = Class.create({
  initialize: function(request){
    this.request = request;
    var transport  = this.transport  = request.transport,
        readyState = this.readyState = transport.readyState;

    if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) {
      this.status       = this.getStatus();
      this.statusText   = this.getStatusText();
      this.responseText = String.interpret(transport.responseText);
      this.headerJSON   = this._getHeaderJSON();
    }

    if(readyState == 4) {
      var xml = transport.responseXML;
      this.responseXML  = Object.isUndefined(xml) ? null : xml;
      this.responseJSON = this._getResponseJSON();
    }
  },

  status:      0,
  statusText: '',

  getStatus: Ajax.Request.prototype.getStatus,

  getStatusText: function() {
    try {
      return this.transport.statusText || '';
    } catch (e) { return '' }
  },

  getHeader: Ajax.Request.prototype.getHeader,

  getAllHeaders: function() {
    try {
      return this.getAllResponseHeaders();
    } catch (e) { return null }
  },

  getResponseHeader: function(name) {
    return this.transport.getResponseHeader(name);
  },

  getAllResponseHeaders: function() {
    return this.transport.getAllResponseHeaders();
  },

  _getHeaderJSON: function() {
    var json = this.getHeader('X-JSON');
    if (!json) return null;
    json = decodeURIComponent(escape(json));
    try {
      return json.evalJSON(this.request.options.sanitizeJSON ||
        !this.request.isSameOrigin());
    } catch (e) {
      this.request.dispatchException(e);
    }
  },

  _getResponseJSON: function() {
    var options = this.request.options;
    if (!options.evalJSON || (options.evalJSON != 'force' &&
      !(this.getHeader('Content-type') || '').include('application/json')) ||
        this.responseText.blank())
          return null;
    try {
      return this.responseText.evalJSON(options.sanitizeJSON ||
        !this.request.isSameOrigin());
    } catch (e) {
      this.request.dispatchException(e);
    }
  }
});

Ajax.Updater = Class.create(Ajax.Request, {
  initialize: function($super, container, url, options) {
    this.container = {
      success: (container.success || container),
      failure: (container.failure || (container.success ? null : container))
    };

    options = Object.clone(options);
    var onComplete = options.onComplete;
    options.onComplete = (function(response, json) {
      this.updateContent(response.responseText);
      if (Object.isFunction(onComplete)) onComplete(response, json);
    }).bind(this);

    $super(url, options);
  },

  updateContent: function(responseText) {
    var receiver = this.container[this.success() ? 'success' : 'failure'],
        options = this.options;

    if (!options.evalScripts) responseText = responseText.stripScripts();

    if (receiver = $(receiver)) {
      if (options.insertion) {
        if (Object.isString(options.insertion)) {
          var insertion = { }; insertion[options.insertion] = responseText;
          receiver.insert(insertion);
        }
        else options.insertion(receiver, responseText);
      }
      else receiver.update(responseText);
    }
  }
});

Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {
  initialize: function($super, container, url, options) {
    $super(options);
    this.onComplete = this.options.onComplete;

    this.frequency = (this.options.frequency || 2);
    this.decay = (this.options.decay || 1);

    this.updater = { };
    this.container = container;
    this.url = url;

    this.start();
  },

  start: function() {
    this.options.onComplete = this.updateComplete.bind(this);
    this.onTimerEvent();
  },

  stop: function() {
    this.updater.options.onComplete = undefined;
    clearTimeout(this.timer);
    (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
  },

  updateComplete: function(response) {
    if (this.options.decay) {
      this.decay = (response.responseText == this.lastText ?
        this.decay * this.options.decay : 1);

      this.lastText = response.responseText;
    }
    this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency);
  },

  onTimerEvent: function() {
    this.updater = new Ajax.Updater(this.container, this.url, this.options);
  }
});
function $(element) {
  if (arguments.length > 1) {
    for (var i = 0, elements = [], length = arguments.length; i < length; i++)
      elements.push($(arguments[i]));
    return elements;
  }
  if (Object.isString(element))
    element = document.getElementById(element);
  return Element.extend(element);
}

if (Prototype.BrowserFeatures.XPath) {
  document._getElementsByXPath = function(expression, parentElement) {
    var results = [];
    var query = document.evaluate(expression, $(parentElement) || document,
      null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
    for (var i = 0, length = query.snapshotLength; i < length; i++)
      results.push(Element.extend(query.snapshotItem(i)));
    return results;
  };
}

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

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

if (!Node.ELEMENT_NODE) {
  // DOM level 2 ECMAScript Language Binding
  Object.extend(Node, {
    ELEMENT_NODE: 1,
    ATTRIBUTE_NODE: 2,
    TEXT_NODE: 3,
    CDATA_SECTION_NODE: 4,
    ENTITY_REFERENCE_NODE: 5,
    ENTITY_NODE: 6,
    PROCESSING_INSTRUCTION_NODE: 7,
    COMMENT_NODE: 8,
    DOCUMENT_NODE: 9,
    DOCUMENT_TYPE_NODE: 10,
    DOCUMENT_FRAGMENT_NODE: 11,
    NOTATION_NODE: 12
  });
}

(function() {
  var element = this.Element;
  this.Element = function(tagName, attributes) {
    attributes = attributes || { };
    tagName = tagName.toLowerCase();
    var cache = Element.cache;
    if (Prototype.Browser.IE && attributes.name) {
      tagName = '<' + tagName + ' name="' + attributes.name + '">';
      delete attributes.name;
      return Element.writeAttribute(document.createElement(tagName), attributes);
    }
    if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName));
    return Element.writeAttribute(cache[tagName].cloneNode(false), attributes);
  };
  Object.extend(this.Element, element || { });
  if (element) this.Element.prototype = element.prototype;
}).call(window);

Element.cache = { };

Element.Methods = {
  visible: function(element) {
    return $(element).style.display != 'none';
  },

  toggle: function(element) {
    element = $(element);
    Element[Element.visible(element) ? 'hide' : 'show'](element);
    return element;
  },

  hide: function(element) {
    element = $(element);
    element.style.display = 'none';
    return element;
  },

  show: function(element) {
    element = $(element);
    element.style.display = '';
    return element;
  },

  remove: function(element) {
    element = $(element);
    element.parentNode.removeChild(element);
    return element;
  },

  update: function(element, content) {
    element = $(element);
    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) return element.update().insert(content);
    content = Object.toHTML(content);
    element.innerHTML = content.stripScripts();
    content.evalScripts.bind(content).defer();
    return element;
  },

  replace: function(element, content) {
    element = $(element);
    if (content && content.toElement) content = content.toElement();
    else if (!Object.isElement(content)) {
      content = Object.toHTML(content);
      var range = element.ownerDocument.createRange();
      range.selectNode(element);
      content.evalScripts.bind(content).defer();
      content = range.createContextualFragment(content.stripScripts());
    }
    element.parentNode.replaceChild(content, element);
    return element;
  },

  insert: function(element, insertions) {
    element = $(element);

    if (Object.isString(insertions) || Object.isNumber(insertions) ||
        Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
          insertions = {bottom:insertions};

    var content, insert, tagName, childNodes;

    for (var position in insertions) {
      content  = insertions[position];
      position = position.toLowerCase();
      insert = Element._insertionTranslations[position];

      if (content && content.toElement) content = content.toElement();
      if (Object.isElement(content)) {
        insert(element, content);
        continue;
      }

      content = Object.toHTML(content);

      tagName = ((position == 'before' || position == 'after')
        ? element.parentNode : element).tagName.toUpperCase();

      childNodes = Element._getContentFromAnonymousElement(tagName, content.stripScripts());

      if (position == 'top' || position == 'after') childNodes.reverse();
      childNodes.each(insert.curry(element));

      content.evalScripts.bind(content).defer();
    }

    return element;
  },

  wrap: function(element, wrapper, attributes) {
    element = $(element);
    if (Object.isElement(wrapper))
      $(wrapper).writeAttribute(attributes || { });
    else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes);
    else wrapper = new Element('div', wrapper);
    if (element.parentNode)
      element.parentNode.replaceChild(wrapper, element);
    wrapper.appendChild(element);
    return wrapper;
  },

  inspect: function(element) {
    element = $(element);
    var result = '<' + element.tagName.toLowerCase();
    $H({'id': 'id', 'className': 'class'}).each(function(pair) {
      var property = pair.first(), attribute = pair.last();
      var value = (element[property] || '').toString();
      if (value) result += ' ' + attribute + '=' + value.inspect(true);
    });
    return result + '>';
  },

  recursivelyCollect: function(element, property) {
    element = $(element);
    var elements = [];
    while (element = element[property])
      if (element.nodeType == 1)
        elements.push(Element.extend(element));
    return elements;
  },

  ancestors: function(element) {
    return $(element).recursivelyCollect('parentNode');
  },

  descendants: function(element) {
    return $(element).select("*");
  },

  firstDescendant: function(element) {
    element = $(element).firstChild;
    while (element && element.nodeType != 1) element = element.nextSibling;
    return $(element);
  },

  immediateDescendants: function(element) {
    if (!(element = $(element).firstChild)) return [];
    while (element && element.nodeType != 1) element = element.nextSibling;
    if (element) return [element].concat($(element).nextSiblings());
    return [];
  },

  previousSiblings: function(element) {
    return $(element).recursivelyCollect('previousSibling');
  },

  nextSiblings: function(element) {
    return $(element).recursivelyCollect('nextSibling');
  },

  siblings: function(element) {
    element = $(element);
    return element.previousSiblings().reverse().concat(element.nextSiblings());
  },

  match: function(element, selector) {
    if (Object.isString(selector))
      selector = new Selector(selector);
    return selector.match($(element));
  },

  up: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return $(element.parentNode);
    var ancestors = element.ancestors();
    return Object.isNumber(expression) ? ancestors[expression] :
      Selector.findElement(ancestors, expression, index);
  },

  down: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return element.firstDescendant();
    return Object.isNumber(expression) ? element.descendants()[expression] :
      Element.select(element, expression)[index || 0];
  },

  previous: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element));
    var previousSiblings = element.previousSiblings();
    return Object.isNumber(expression) ? previousSiblings[expression] :
      Selector.findElement(previousSiblings, expression, index);
  },

  next: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element));
    var nextSiblings = element.nextSiblings();
    return Object.isNumber(expression) ? nextSiblings[expression] :
      Selector.findElement(nextSiblings, expression, index);
  },

  select: function() {
    var args = $A(arguments), element = $(args.shift());
    return Selector.findChildElements(element, args);
  },

  adjacent: function() {
    var args = $A(arguments), element = $(args.shift());
    return Selector.findChildElements(element.parentNode, args).without(element);
  },

  identify: function(element) {
    element = $(element);
    var id = element.readAttribute('id'), self = arguments.callee;
    if (id) return id;
    do { id = 'anonymous_element_' + self.counter++ } while ($(id));
    element.writeAttribute('id', id);
    return id;
  },

  readAttribute: function(element, name) {
    element = $(element);
    if (Prototype.Browser.IE) {
      var t = Element._attributeTranslations.read;
      if (t.values[name]) return t.values[name](element, name);
      if (t.names[name]) name = t.names[name];
      if (name.include(':')) {
        return (!element.attributes || !element.attributes[name]) ? null :
         element.attributes[name].value;
      }
    }
    return element.getAttribute(name);
  },

  writeAttribute: function(element, name, value) {
    element = $(element);
    var attributes = { }, t = Element._attributeTranslations.write;

    if (typeof name == 'object') attributes = name;
    else attributes[name] = Object.isUndefined(value) ? true : value;

    for (var attr in attributes) {
      name = t.names[attr] || attr;
      value = attributes[attr];
      if (t.values[attr]) name = t.values[attr](element, value);
      if (value === false || value === null)
        element.removeAttribute(name);
      else if (value === true)
        element.setAttribute(name, name);
      else element.setAttribute(name, value);
    }
    return element;
  },

  getHeight: function(element) {
    return $(element).getDimensions().height;
  },

  getWidth: function(element) {
    return $(element).getDimensions().width;
  },

  classNames: function(element) {
    return new Element.ClassNames(element);
  },

  hasClassName: function(element, className) {
    if (!(element = $(element))) return;
    var elementClassName = element.className;
    return (elementClassName.length > 0 && (elementClassName == className ||
      new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName)));
  },

  addClassName: function(element, className) {
    if (!(element = $(element))) return;
    if (!element.hasClassName(className))
      element.className += (element.className ? ' ' : '') + className;
    return element;
  },

  removeClassName: function(element, className) {
    if (!(element = $(element))) return;
    element.className = element.className.replace(
      new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip();
    return element;
  },

  toggleClassName: function(element, className) {
    if (!(element = $(element))) return;
    return element[element.hasClassName(className) ?
      'removeClassName' : 'addClassName'](className);
  },

  // removes whitespace-only text node children
  cleanWhitespace: function(element) {
    element = $(element);
    var node = element.firstChild;
    while (node) {
      var nextNode = node.nextSibling;
      if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
        element.removeChild(node);
      node = nextNode;
    }
    return element;
  },

  empty: function(element) {
    return $(element).innerHTML.blank();
  },

  descendantOf: function(element, ancestor) {
    element = $(element), ancestor = $(ancestor);

    if (element.compareDocumentPosition)
      return (element.compareDocumentPosition(ancestor) & 8) === 8;

    if (ancestor.contains)
      return ancestor.contains(element) && ancestor !== element;

    while (element = element.parentNode)
      if (element == ancestor) return true;

    return false;
  },

  scrollTo: function(element) {
    element = $(element);
    var pos = element.cumulativeOffset();
    window.scrollTo(pos[0], pos[1]);
    return element;
  },

  getStyle: function(element, style) {
    element = $(element);
    style = style == 'float' ? 'cssFloat' : style.camelize();
    var value = element.style[style];
    if (!value || value == 'auto') {
      var css = document.defaultView.getComputedStyle(element, null);
      value = css ? css[style] : null;
    }
    if (style == 'opacity') return value ? parseFloat(value) : 1.0;
    return value == 'auto' ? null : value;
  },

  getOpacity: function(element) {
    return $(element).getStyle('opacity');
  },

  setStyle: function(element, styles) {
    element = $(element);
    var elementStyle = element.style, match;
    if (Object.isString(styles)) {
      element.style.cssText += ';' + styles;
      return styles.include('opacity') ?
        element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element;
    }
    for (var property in styles)
      if (property == 'opacity') element.setOpacity(styles[property]);
      else
        elementStyle[(property == 'float' || property == 'cssFloat') ?
          (Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
            property] = styles[property];

    return element;
  },

  setOpacity: function(element, value) {
    element = $(element);
    element.style.opacity = (value == 1 || value === '') ? '' :
      (value < 0.00001) ? 0 : value;
    return element;
  },

  getDimensions: function(element) {
    element = $(element);
    var display = element.getStyle('display');
    if (display != 'none' && display != null) // Safari bug
      return {width: element.offsetWidth, height: element.offsetHeight};

    // All *Width and *Height properties give 0 on elements with display none,
    // so enable the element temporarily
    var els = element.style;
    var originalVisibility = els.visibility;
    var originalPosition = els.position;
    var originalDisplay = els.display;
    els.visibility = 'hidden';
    els.position = 'absolute';
    els.display = 'block';
    var originalWidth = element.clientWidth;
    var originalHeight = element.clientHeight;
    els.display = originalDisplay;
    els.position = originalPosition;
    els.visibility = originalVisibility;
    return {width: originalWidth, height: originalHeight};
  },

  makePositioned: function(element) {
    element = $(element);
    var pos = Element.getStyle(element, 'position');
    if (pos == 'static' || !pos) {
      element._madePositioned = true;
      element.style.position = 'relative';
      // Opera returns the offset relative to the positioning context, when an
      // element is position relative but top and left have not been defined
      if (Prototype.Browser.Opera) {
        element.style.top = 0;
        element.style.left = 0;
      }
    }
    return element;
  },

  undoPositioned: function(element) {
    element = $(element);
    if (element._madePositioned) {
      element._madePositioned = undefined;
      element.style.position =
        element.style.top =
        element.style.left =
        element.style.bottom =
        element.style.right = '';
    }
    return element;
  },

  makeClipping: function(element) {
    element = $(element);
    if (element._overflow) return element;
    element._overflow = Element.getStyle(element, 'overflow') || 'auto';
    if (element._overflow !== 'hidden')
      element.style.overflow = 'hidden';
    return element;
  },

  undoClipping: function(element) {
    element = $(element);
    if (!element._overflow) return element;
    element.style.overflow = element._overflow == 'auto' ? '' : element._overflow;
    element._overflow = null;
    return element;
  },

  cumulativeOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      element = element.offsetParent;
    } while (element);
    return Element._returnOffset(valueL, valueT);
  },

  positionedOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      element = element.offsetParent;
      if (element) {
        if (element.tagName.toUpperCase() == 'BODY') break;
        var p = Element.getStyle(element, 'position');
        if (p !== 'static') break;
      }
    } while (element);
    return Element._returnOffset(valueL, valueT);
  },

  absolutize: function(element) {
    element = $(element);
    if (element.getStyle('position') == 'absolute') return element;
    // Position.prepare(); // To be done manually by Scripty when it needs it.

    var offsets = element.positionedOffset();
    var top     = offsets[1];
    var left    = offsets[0];
    var width   = element.clientWidth;
    var height  = element.clientHeight;

    element._originalLeft   = left - parseFloat(element.style.left  || 0);
    element._originalTop    = top  - parseFloat(element.style.top || 0);
    element._originalWidth  = element.style.width;
    element._originalHeight = element.style.height;

    element.style.position = 'absolute';
    element.style.top    = top + 'px';
    element.style.left   = left + 'px';
    element.style.width  = width + 'px';
    element.style.height = height + 'px';
    return element;
  },

  relativize: function(element) {
    element = $(element);
    if (element.getStyle('position') == 'relative') return element;
    // Position.prepare(); // To be done manually by Scripty when it needs it.

    element.style.position = 'relative';
    var top  = parseFloat(element.style.top  || 0) - (element._originalTop || 0);
    var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);

    element.style.top    = top + 'px';
    element.style.left   = left + 'px';
    element.style.height = element._originalHeight;
    element.style.width  = element._originalWidth;
    return element;
  },

  cumulativeScrollOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.scrollTop  || 0;
      valueL += element.scrollLeft || 0;
      element = element.parentNode;
    } while (element);
    return Element._returnOffset(valueL, valueT);
  },

  getOffsetParent: function(element) {
    if (element.offsetParent) return $(element.offsetParent);
    if (element == document.body) return $(element);
    if(element.tagName.toUpperCase()=='HTML') //for IE6,7
        return $(document.body);                //

    while ((element = element.parentNode) && element != document.body)
      if (Element.getStyle(element, 'position') != 'static')
        return $(element);

    return $(document.body);
  },

  viewportOffset: function(forElement) {
    var valueT = 0, valueL = 0;

    var element = forElement;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;

      // Safari fix
      if (element.offsetParent == document.body &&
        Element.getStyle(element, 'position') == 'absolute') break;

    } while (element = element.offsetParent);

    element = forElement;
    do {
      if (!Prototype.Browser.Opera || (element.tagName && (element.tagName.toUpperCase() == 'BODY'))) {
        valueT -= element.scrollTop  || 0;
        valueL -= element.scrollLeft || 0;
      }
    } while (element = element.parentNode);

    return Element._returnOffset(valueL, valueT);
  },

  clonePosition: function(element, source) {
    var options = Object.extend({
      setLeft:    true,
      setTop:     true,
      setWidth:   true,
      setHeight:  true,
      offsetTop:  0,
      offsetLeft: 0
    }, arguments[2] || { });

    // find page position of source
    source = $(source);
    var p = source.viewportOffset();

    // find coordinate system to use
    element = $(element);
    var delta = [0, 0];
    var parent = null;
    // delta [0,0] will do fine with position: fixed elements,
    // position:absolute needs offsetParent deltas
    if (Element.getStyle(element, 'position') == 'absolute') {
      parent = element.getOffsetParent();
      delta = parent.viewportOffset();
    }

    // correct by body offsets (fixes Safari)
    if (parent == document.body) {
      delta[0] -= document.body.offsetLeft;
      delta[1] -= document.body.offsetTop;
    }

    // set position
    if (options.setLeft)   element.style.left  = (p[0] - delta[0] + options.offsetLeft) + 'px';
    if (options.setTop)    element.style.top   = (p[1] - delta[1] + options.offsetTop) + 'px';
    if (options.setWidth)  element.style.width = source.offsetWidth + 'px';
    if (options.setHeight) element.style.height = source.offsetHeight + 'px';
    return element;
  }
};

Element.Methods.identify.counter = 1;

Object.extend(Element.Methods, {
  getElementsBySelector: Element.Methods.select,
  childElements: Element.Methods.immediateDescendants
});

Element._attributeTranslations = {
  write: {
    names: {
      className: 'class',
      htmlFor:   'for'
    },
    values: { }
  }
};

if (Prototype.Browser.Opera) {
  Element.Methods.getStyle = Element.Methods.getStyle.wrap(
    function(proceed, element, style) {
      switch (style) {
        case 'left': case 'top': case 'right': case 'bottom':
          if (proceed(element, 'position') === 'static') return null;
        case 'height': case 'width':
          // returns '0px' for hidden elements; we want it to return null
          if (!Element.visible(element)) return null;

          // returns the border-box dimensions rather than the content-box
          // dimensions, so we subtract padding and borders from the value
          var dim = parseInt(proceed(element, style), 10);

          if (dim !== element['offset' + style.capitalize()])
            return dim + 'px';

          var properties;
          if (style === 'height') {
            properties = ['border-top-width', 'padding-top',
             'padding-bottom', 'border-bottom-width'];
          }
          else {
            properties = ['border-left-width', 'padding-left',
             'padding-right', 'border-right-width'];
          }
          return properties.inject(dim, function(memo, property) {
            var val = proceed(element, property);
            return val === null ? memo : memo - parseInt(val, 10);
          }) + 'px';
        default: return proceed(element, style);
      }
    }
  );

  Element.Methods.readAttribute = Element.Methods.readAttribute.wrap(
    function(proceed, element, attribute) {
      if (attribute === 'title') return element.title;
      return proceed(element, attribute);
    }
  );
}

else if (Prototype.Browser.IE) {
  // IE doesn't report offsets correctly for static elements, so we change them
  // to "relative" to get the values, then change them back.
  Element.Methods.getOffsetParent = Element.Methods.getOffsetParent.wrap(
    function(proceed, element) {
      element = $(element);
      // IE throws an error if element is not in document
      try { element.offsetParent }
      catch(e) { return $(document.body) }
      var position = element.getStyle('position');
      if (position !== 'static') return proceed(element);
      element.setStyle({ position: 'relative' });
      var value = proceed(element);
      element.setStyle({ position: position });
      return value;
    }
  );

  $w('positionedOffset viewportOffset').each(function(method) {
    Element.Methods[method] = Element.Methods[method].wrap(
      function(proceed, element) {
        element = $(element);
        try { element.offsetParent }
        catch(e) { return Element._returnOffset(0,0) }
        var position = element.getStyle('position');
        if (position !== 'static') return proceed(element);
        // Trigger hasLayout on the offset parent so that IE6 reports
        // accurate offsetTop and offsetLeft values for position: fixed.
        var offsetParent = element.getOffsetParent();
        if (offsetParent && offsetParent.getStyle('position') === 'fixed')
          offsetParent.setStyle({ zoom: 1 });
        element.setStyle({ position: 'relative' });
        var value = proceed(element);
        element.setStyle({ position: position });
        return value;
      }
    );
  });

  Element.Methods.cumulativeOffset = Element.Methods.cumulativeOffset.wrap(
    function(proceed, element) {
      try { element.offsetParent }
      catch(e) { return Element._returnOffset(0,0) }
      return proceed(element);
    }
  );

  Element.Methods.getStyle = function(element, style) {
    element = $(element);
    style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
    var value = element.style[style];
    if (!value && element.currentStyle) value = element.currentStyle[style];

    if (style == 'opacity') {
      if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
        if (value[1]) return parseFloat(value[1]) / 100;
      return 1.0;
    }

    if (value == 'auto') {
      if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none'))
        return element['offset' + style.capitalize()] + 'px';
      return null;
    }
    return value;
  };

  Element.Methods.setOpacity = function(element, value) {
    function stripAlpha(filter){
      return filter.replace(/alpha\([^\)]*\)/gi,'');
    }
    element = $(element);
    var currentStyle = element.currentStyle;
    if ((currentStyle && !currentStyle.hasLayout) ||
      (!currentStyle && element.style.zoom == 'normal'))
        element.style.zoom = 1;

    var filter = element.getStyle('filter'), style = element.style;
    if (value == 1 || value === '') {
      (filter = stripAlpha(filter)) ?
        style.filter = filter : style.removeAttribute('filter');
      return element;
    } else if (value < 0.00001) value = 0;
    style.filter = stripAlpha(filter) +
      'alpha(opacity=' + (value * 100) + ')';
    return element;
  };

  Element._attributeTranslations = {
    read: {
      names: {
        'class': 'className',
        'for':   'htmlFor'
      },
      values: {
        _getAttr: function(element, attribute) {
          return element.getAttribute(attribute, 2);
        },
        _getAttrNode: function(element, attribute) {
          var node = element.getAttributeNode(attribute);
          return node ? node.value : "";
        },
        _getEv: function(element, attribute) {
          attribute = element.getAttribute(attribute);
          return attribute ? attribute.toString().slice(23, -2) : null;
        },
        _flag: function(element, attribute) {
          return $(element).hasAttribute(attribute) ? attribute : null;
        },
        style: function(element) {
          return element.style.cssText.toLowerCase();
        },
        title: function(element) {
          return element.title;
        }
      }
    }
  };

  Element._attributeTranslations.write = {
    names: Object.extend({
      cellpadding: 'cellPadding',
      cellspacing: 'cellSpacing'
    }, Element._attributeTranslations.read.names),
    values: {
      checked: function(element, value) {
        element.checked = !!value;
      },

      style: function(element, value) {
        element.style.cssText = value ? value : '';
      }
    }
  };

  Element._attributeTranslations.has = {};

  $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' +
      'encType maxLength readOnly longDesc frameBorder').each(function(attr) {
    Element._attributeTranslations.write.names[attr.toLowerCase()] = attr;
    Element._attributeTranslations.has[attr.toLowerCase()] = attr;
  });

  (function(v) {
    Object.extend(v, {
      href:        v._getAttr,
      src:         v._getAttr,
      type:        v._getAttr,
      action:      v._getAttrNode,
      disabled:    v._flag,
      checked:     v._flag,
      readonly:    v._flag,
      multiple:    v._flag,
      onload:      v._getEv,
      onunload:    v._getEv,
      onclick:     v._getEv,
      ondblclick:  v._getEv,
      onmousedown: v._getEv,
      onmouseup:   v._getEv,
      onmouseover: v._getEv,
      onmousemove: v._getEv,
      onmouseout:  v._getEv,
      onfocus:     v._getEv,
      onblur:      v._getEv,
      onkeypress:  v._getEv,
      onkeydown:   v._getEv,
      onkeyup:     v._getEv,
      onsubmit:    v._getEv,
      onreset:     v._getEv,
      onselect:    v._getEv,
      onchange:    v._getEv
    });
  })(Element._attributeTranslations.read.values);
}

else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) {
  Element.Methods.setOpacity = function(element, value) {
    element = $(element);
    element.style.opacity = (value == 1) ? 0.999999 :
      (value === '') ? '' : (value < 0.00001) ? 0 : value;
    return element;
  };
}

else if (Prototype.Browser.WebKit) {
  Element.Methods.setOpacity = function(element, value) {
    element = $(element);
    element.style.opacity = (value == 1 || value === '') ? '' :
      (value < 0.00001) ? 0 : value;

    if (value == 1)
      if(element.tagName.toUpperCase() == 'IMG' && element.width) {
        element.width++; element.width--;
      } else try {
        var n = document.createTextNode(' ');
        element.appendChild(n);
        element.removeChild(n);
      } catch (e) { }

    return element;
  };

  // Safari returns margins on body which is incorrect if the child is absolutely
  // positioned.  For performance reasons, redefine Element#cumulativeOffset for
  // KHTML/WebKit only.
  Element.Methods.cumulativeOffset = function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      if (element.offsetParent == document.body)
        if (Element.getStyle(element, 'position') == 'absolute') break;

      element = element.offsetParent;
    } while (element);

    return Element._returnOffset(valueL, valueT);
  };
}

if (Prototype.Browser.IE || Prototype.Browser.Opera) {
  // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements
  Element.Methods.update = function(element, content) {
    element = $(element);

    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) return element.update().insert(content);

    content = Object.toHTML(content);
    var tagName = element.tagName.toUpperCase();

    if (tagName in Element._insertionTranslations.tags) {
      $A(element.childNodes).each(function(node) { element.removeChild(node) });
      Element._getContentFromAnonymousElement(tagName, content.stripScripts())
        .each(function(node) { element.appendChild(node) });
    }
    else element.innerHTML = content.stripScripts();

    content.evalScripts.bind(content).defer();
    return element;
  };
}

if ('outerHTML' in document.createElement('div')) {
  Element.Methods.replace = function(element, content) {
    element = $(element);

    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) {
      element.parentNode.replaceChild(content, element);
      return element;
    }

    content = Object.toHTML(content);
    var parent = element.parentNode, tagName = parent.tagName.toUpperCase();

    if (Element._insertionTranslations.tags[tagName]) {
      var nextSibling = element.next();
      var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
      parent.removeChild(element);
      if (nextSibling)
        fragments.each(function(node) { parent.insertBefore(node, nextSibling) });
      else
        fragments.each(function(node) { parent.appendChild(node) });
    }
    else element.outerHTML = content.stripScripts();

    content.evalScripts.bind(content).defer();
    return element;
  };
}

Element._returnOffset = function(l, t) {
  var result = [l, t];
  result.left = l;
  result.top = t;
  return result;
};

Element._getContentFromAnonymousElement = function(tagName, html) {
  var div = new Element('div'), t = Element._insertionTranslations.tags[tagName];
  if (t) {
    div.innerHTML = t[0] + html + t[1];
    t[2].times(function() { div = div.firstChild });
  } else div.innerHTML = html;
  return $A(div.childNodes);
};

Element._insertionTranslations = {
  before: function(element, node) {
    element.parentNode.insertBefore(node, element);
  },
  top: function(element, node) {
    element.insertBefore(node, element.firstChild);
  },
  bottom: function(element, node) {
    element.appendChild(node);
  },
  after: function(element, node) {
    element.parentNode.insertBefore(node, element.nextSibling);
  },
  tags: {
    TABLE:  ['<table>',                '</table>',                   1],
    TBODY:  ['<table><tbody>',         '</tbody></table>',           2],
    TR:     ['<table><tbody><tr>',     '</tr></tbody></table>',      3],
    TD:     ['<table><tbody><tr><td>', '</td></tr></tbody></table>', 4],
    SELECT: ['<select>',               '</select>',                  1]
  }
};

(function() {
  Object.extend(this.tags, {
    THEAD: this.tags.TBODY,
    TFOOT: this.tags.TBODY,
    TH:    this.tags.TD
  });
}).call(Element._insertionTranslations);

Element.Methods.Simulated = {
  hasAttribute: function(element, attribute) {
    attribute = Element._attributeTranslations.has[attribute] || attribute;
    var node = $(element).getAttributeNode(attribute);
    return !!(node && node.specified);
  }
};

Element.Methods.ByTag = { };

Object.extend(Element, Element.Methods);

if (!Prototype.BrowserFeatures.ElementExtensions &&
    document.createElement('div')['__proto__']) {
  window.HTMLElement = { };
  window.HTMLElement.prototype = document.createElement('div')['__proto__'];
  Prototype.BrowserFeatures.ElementExtensions = true;
}

Element.extend = (function() {
  if (Prototype.BrowserFeatures.SpecificElementExtensions)
    return Prototype.K;

  var Methods = { }, ByTag = Element.Methods.ByTag;

  var extend = Object.extend(function(element) {
    if (!element || element._extendedByPrototype ||
        element.nodeType != 1 || element == window) return element;

    var methods = Object.clone(Methods),
      tagName = element.tagName.toUpperCase(), property, value;

    // extend methods for specific tags
    if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]);

    for (property in methods) {
      value = methods[property];
      if (Object.isFunction(value) && !(property in element))
        element[property] = value.methodize();
    }

    element._extendedByPrototype = Prototype.emptyFunction;
    return element;

  }, {
    refresh: function() {
      // extend methods for all tags (Safari doesn't need this)
      if (!Prototype.BrowserFeatures.ElementExtensions) {
        Object.extend(Methods, Element.Methods);
        Object.extend(Methods, Element.Methods.Simulated);
      }
    }
  });

  extend.refresh();
  return extend;
})();

Element.hasAttribute = function(element, attribute) {
  if (element.hasAttribute) return element.hasAttribute(attribute);
  return Element.Methods.Simulated.hasAttribute(element, attribute);
};

Element.addMethods = function(methods) {
  var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag;

  if (!methods) {
    Object.extend(Form, Form.Methods);
    Object.extend(Form.Element, Form.Element.Methods);
    Object.extend(Element.Methods.ByTag, {
      "FORM":     Object.clone(Form.Methods),
      "INPUT":    Object.clone(Form.Element.Methods),
      "SELECT":   Object.clone(Form.Element.Methods),
      "TEXTAREA": Object.clone(Form.Element.Methods)
    });
  }

  if (arguments.length == 2) {
    var tagName = methods;
    methods = arguments[1];
  }

  if (!tagName) Object.extend(Element.Methods, methods || { });
  else {
    if (Object.isArray(tagName)) tagName.each(extend);
    else extend(tagName);
  }

  function extend(tagName) {
    tagName = tagName.toUpperCase();
    if (!Element.Methods.ByTag[tagName])
      Element.Methods.ByTag[tagName] = { };
    Object.extend(Element.Methods.ByTag[tagName], methods);
  }

  function copy(methods, destination, onlyIfAbsent) {
    onlyIfAbsent = onlyIfAbsent || false;
    for (var property in methods) {
      var value = methods[property];
      if (!Object.isFunction(value)) continue;
      if (!onlyIfAbsent || !(property in destination))
        destination[property] = value.methodize();
    }
  }

  function findDOMClass(tagName) {
    var klass;
    var trans = {
      "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph",
      "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList",
      "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading",
      "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote",
      "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION":
      "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD":
      "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR":
      "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET":
      "FrameSet", "IFRAME": "IFrame"
    };
    if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element';
    if (window[klass]) return window[klass];
    klass = 'HTML' + tagName + 'Element';
    if (window[klass]) return window[klass];
    klass = 'HTML' + tagName.capitalize() + 'Element';
    if (window[klass]) return window[klass];

    window[klass] = { };
    window[klass].prototype = document.createElement(tagName)['__proto__'];
    return window[klass];
  }

  if (F.ElementExtensions) {
    copy(Element.Methods, HTMLElement.prototype);
    copy(Element.Methods.Simulated, HTMLElement.prototype, true);
  }

  if (F.SpecificElementExtensions) {
    for (var tag in Element.Methods.ByTag) {
      var klass = findDOMClass(tag);
      if (Object.isUndefined(klass)) continue;
      copy(T[tag], klass.prototype);
    }
  }

  Object.extend(Element, Element.Methods);
  delete Element.ByTag;

  if (Element.extend.refresh) Element.extend.refresh();
  Element.cache = { };
};

document.viewport = {
  getDimensions: function() {
    var dimensions = { }, B = Prototype.Browser;
    $w('width height').each(function(d) {
      var D = d.capitalize();
      if (B.WebKit && !document.evaluate) {
        // Safari <3.0 needs self.innerWidth/Height
        dimensions[d] = self['inner' + D];
      } else if (B.Opera && parseFloat(window.opera.version()) < 9.5) {
        // Opera <9.5 needs document.body.clientWidth/Height
        dimensions[d] = document.body['client' + D]
      } else {
        dimensions[d] = document.documentElement['client' + D];
      }
    });
    return dimensions;
  },

  getWidth: function() {
    return this.getDimensions().width;
  },

  getHeight: function() {
    return this.getDimensions().height;
  },

  getScrollOffsets: function() {
    return Element._returnOffset(
      window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft,
      window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop);
  }
};
/* Portions of the Selector class are derived from Jack Slocum's DomQuery,
 * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style
 * license.  Please see http://www.yui-ext.com/ for more information. */

var Selector = Class.create({
  initialize: function(expression) {
    this.expression = expression.strip();

    if (this.shouldUseSelectorsAPI()) {
      this.mode = 'selectorsAPI';
    } else if (this.shouldUseXPath()) {
      this.mode = 'xpath';
      this.compileXPathMatcher();
    } else {
      this.mode = "normal";
      this.compileMatcher();
    }

  },

  shouldUseXPath: function() {
    if (!Prototype.BrowserFeatures.XPath) return false;

    var e = this.expression;

    // Safari 3 chokes on :*-of-type and :empty
    if (Prototype.Browser.WebKit &&
     (e.include("-of-type") || e.include(":empty")))
      return false;

    // XPath can't do namespaced attributes, nor can it read
    // the "checked" property from DOM nodes
    if ((/(\[[\w-]*?:|:checked)/).test(e))
      return false;

    return true;
  },

  shouldUseSelectorsAPI: function() {
    if (!Prototype.BrowserFeatures.SelectorsAPI) return false;

    if (!Selector._div) Selector._div = new Element('div');

    // Make sure the browser treats the selector as valid. Test on an
    // isolated element to minimize cost of this check.
    try {
      Selector._div.querySelector(this.expression);
    } catch(e) {
      return false;
    }

    return true;
  },

  compileMatcher: function() {
    var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
        c = Selector.criteria, le, p, m;

    if (Selector._cache[e]) {
      this.matcher = Selector._cache[e];
      return;
    }

    this.matcher = ["this.matcher = function(root) {",
                    "var r = root, h = Selector.handlers, c = false, n;"];

    while (e && le != e && (/\S/).test(e)) {
      le = e;
      for (var i in ps) {
        p = ps[i];
        if (m = e.match(p)) {
          this.matcher.push(Object.isFunction(c[i]) ? c[i](m) :
            new Template(c[i]).evaluate(m));
          e = e.replace(m[0], '');
          break;
        }
      }
    }

    this.matcher.push("return h.unique(n);\n}");
    eval(this.matcher.join('\n'));
    Selector._cache[this.expression] = this.matcher;
  },

  compileXPathMatcher: function() {
    var e = this.expression, ps = Selector.patterns,
        x = Selector.xpath, le, m;

    if (Selector._cache[e]) {
      this.xpath = Selector._cache[e]; return;
    }

    this.matcher = ['.//*'];
    while (e && le != e && (/\S/).test(e)) {
      le = e;
      for (var i in ps) {
        if (m = e.match(ps[i])) {
          this.matcher.push(Object.isFunction(x[i]) ? x[i](m) :
            new Template(x[i]).evaluate(m));
          e = e.replace(m[0], '');
          break;
        }
      }
    }

    this.xpath = this.matcher.join('');
    Selector._cache[this.expression] = this.xpath;
  },

  findElements: function(root) {
    root = root || document;
    var e = this.expression, results;

    switch (this.mode) {
      case 'selectorsAPI':
        // querySelectorAll queries document-wide, then filters to descendants
        // of the context element. That's not what we want.
        // Add an explicit context to the selector if necessary.
        if (root !== document) {
          var oldId = root.id, id = $(root).identify();
          e = "#" + id + " " + e;
        }

        results = $A(root.querySelectorAll(e)).map(Element.extend);
        root.id = oldId;

        return results;
      case 'xpath':
        return document._getElementsByXPath(this.xpath, root);
      default:
       return this.matcher(root);
    }
  },

  match: function(element) {
    this.tokens = [];

    var e = this.expression, ps = Selector.patterns, as = Selector.assertions;
    var le, p, m;

    while (e && le !== e && (/\S/).test(e)) {
      le = e;
      for (var i in ps) {
        p = ps[i];
        if (m = e.match(p)) {
          // use the Selector.assertions methods unless the selector
          // is too complex.
          if (as[i]) {
            this.tokens.push([i, Object.clone(m)]);
            e = e.replace(m[0], '');
          } else {
            // reluctantly do a document-wide search
            // and look for a match in the array
            return this.findElements(document).include(element);
          }
        }
      }
    }

    var match = true, name, matches;
    for (var i = 0, token; token = this.tokens[i]; i++) {
      name = token[0], matches = token[1];
      if (!Selector.assertions[name](element, matches)) {
        match = false; break;
      }
    }

    return match;
  },

  toString: function() {
    return this.expression;
  },

  inspect: function() {
    return "#<Selector:" + this.expression.inspect() + ">";
  }
});

Object.extend(Selector, {
  _cache: { },

  xpath: {
    descendant:   "//*",
    child:        "/*",
    adjacent:     "/following-sibling::*[1]",
    laterSibling: '/following-sibling::*',
    tagName:      function(m) {
      if (m[1] == '*') return '';
      return "[local-name()='" + m[1].toLowerCase() +
             "' or local-name()='" + m[1].toUpperCase() + "']";
    },
    className:    "[contains(concat(' ', @class, ' '), ' #{1} ')]",
    id:           "[@id='#{1}']",
    attrPresence: function(m) {
      m[1] = m[1].toLowerCase();
      return new Template("[@#{1}]").evaluate(m);
    },
    attr: function(m) {
      m[1] = m[1].toLowerCase();
      m[3] = m[5] || m[6];
      return new Template(Selector.xpath.operators[m[2]]).evaluate(m);
    },
    pseudo: function(m) {
      var h = Selector.xpath.pseudos[m[1]];
      if (!h) return '';
      if (Object.isFunction(h)) return h(m);
      return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);
    },
    operators: {
      '=':  "[@#{1}='#{3}']",
      '!=': "[@#{1}!='#{3}']",
      '^=': "[starts-with(@#{1}, '#{3}')]",
      '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",
      '*=': "[contains(@#{1}, '#{3}')]",
      '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",
      '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]"
    },
    pseudos: {
      'first-child': '[not(preceding-sibling::*)]',
      'last-child':  '[not(following-sibling::*)]',
      'only-child':  '[not(preceding-sibling::* or following-sibling::*)]',
      'empty':       "[count(*) = 0 and (count(text()) = 0)]",
      'checked':     "[@checked]",
      'disabled':    "[(@disabled) and (@type!='hidden')]",
      'enabled':     "[not(@disabled) and (@type!='hidden')]",
      'not': function(m) {
        var e = m[6], p = Selector.patterns,
            x = Selector.xpath, le, v;

        var exclusion = [];
        while (e && le != e && (/\S/).test(e)) {
          le = e;
          for (var i in p) {
            if (m = e.match(p[i])) {
              v = Object.isFunction(x[i]) ? x[i](m) : new Template(x[i]).evaluate(m);
              exclusion.push("(" + v.substring(1, v.length - 1) + ")");
              e = e.replace(m[0], '');
              break;
            }
          }
        }
        return "[not(" + exclusion.join(" and ") + ")]";
      },
      'nth-child':      function(m) {
        return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
      },
      'nth-last-child': function(m) {
        return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
      },
      'nth-of-type':    function(m) {
        return Selector.xpath.pseudos.nth("position() ", m);
      },
      'nth-last-of-type': function(m) {
        return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m);
      },
      'first-of-type':  function(m) {
        m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m);
      },
      'last-of-type':   function(m) {
        m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m);
      },
      'only-of-type':   function(m) {
        var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m);
      },
      nth: function(fragment, m) {
        var mm, formula = m[6], predicate;
        if (formula == 'even') formula = '2n+0';
        if (formula == 'odd')  formula = '2n+1';
        if (mm = formula.match(/^(\d+)$/)) // digit only
          return '[' + fragment + "= " + mm[1] + ']';
        if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
          if (mm[1] == "-") mm[1] = -1;
          var a = mm[1] ? Number(mm[1]) : 1;
          var b = mm[2] ? Number(mm[2]) : 0;
          predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " +
          "((#{fragment} - #{b}) div #{a} >= 0)]";
          return new Template(predicate).evaluate({
            fragment: fragment, a: a, b: b });
        }
      }
    }
  },

  criteria: {
    tagName:      'n = h.tagName(n, r, "#{1}", c);      c = false;',
    className:    'n = h.className(n, r, "#{1}", c);    c = false;',
    id:           'n = h.id(n, r, "#{1}", c);           c = false;',
    attrPresence: 'n = h.attrPresence(n, r, "#{1}", c); c = false;',
    attr: function(m) {
      m[3] = (m[5] || m[6]);
      return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m);
    },
    pseudo: function(m) {
      if (m[6]) m[6] = m[6].replace(/"/g, '\\"');
      return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);
    },
    descendant:   'c = "descendant";',
    child:        'c = "child";',
    adjacent:     'c = "adjacent";',
    laterSibling: 'c = "laterSibling";'
  },

  patterns: {
    // combinators must be listed first
    // (and descendant needs to be last combinator)
    laterSibling: /^\s*~\s*/,
    child:        /^\s*>\s*/,
    adjacent:     /^\s*\+\s*/,
    descendant:   /^\s/,

    // selectors follow
    tagName:      /^\s*(\*|[\w\-]+)(\b|$)?/,
    id:           /^#([\w\-\*]+)(\b|$)/,
    className:    /^\.([\w\-\*]+)(\b|$)/,
    pseudo:
/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,
    attrPresence: /^\[((?:[\w]+:)?[\w]+)\]/,
    attr:         /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/
  },

  // for Selector.match and Element#match
  assertions: {
    tagName: function(element, matches) {
      return matches[1].toUpperCase() == element.tagName.toUpperCase();
    },

    className: function(element, matches) {
      return Element.hasClassName(element, matches[1]);
    },

    id: function(element, matches) {
      return element.id === matches[1];
    },

    attrPresence: function(element, matches) {
      return Element.hasAttribute(element, matches[1]);
    },

    attr: function(element, matches) {
      var nodeValue = Element.readAttribute(element, matches[1]);
      return nodeValue && Selector.operators[matches[2]](nodeValue, matches[5] || matches[6]);
    }
  },

  handlers: {
    // UTILITY FUNCTIONS
    // joins two collections
    concat: function(a, b) {
      for (var i = 0, node; node = b[i]; i++)
        a.push(node);
      return a;
    },

    // marks an array of nodes for counting
    mark: function(nodes) {
      var _true = Prototype.emptyFunction;
      for (var i = 0, node; node = nodes[i]; i++)
        node._countedByPrototype = _true;
      return nodes;
    },

    unmark: function(nodes) {
      for (var i = 0, node; node = nodes[i]; i++)
        node._countedByPrototype = undefined;
      return nodes;
    },

    // mark each child node with its position (for nth calls)
    // "ofType" flag indicates whether we're indexing for nth-of-type
    // rather than nth-child
    index: function(parentNode, reverse, ofType) {
      parentNode._countedByPrototype = Prototype.emptyFunction;
      if (reverse) {
        for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) {
          var node = nodes[i];
          if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
        }
      } else {
        for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++)
          if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
      }
    },

    // filters out duplicates and extends all nodes
    unique: function(nodes) {
      if (nodes.length == 0) return nodes;
      var results = [], n;
      for (var i = 0, l = nodes.length; i < l; i++)
        if (!(n = nodes[i])._countedByPrototype) {
          n._countedByPrototype = Prototype.emptyFunction;
          results.push(Element.extend(n));
        }
      return Selector.handlers.unmark(results);
    },

    // COMBINATOR FUNCTIONS
    descendant: function(nodes) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        h.concat(results, node.getElementsByTagName('*'));
      return results;
    },

    child: function(nodes) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        for (var j = 0, child; child = node.childNodes[j]; j++)
          if (child.nodeType == 1 && child.tagName != '!') results.push(child);
      }
      return results;
    },

    adjacent: function(nodes) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        var next = this.nextElementSibling(node);
        if (next) results.push(next);
      }
      return results;
    },

    laterSibling: function(nodes) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        h.concat(results, Element.nextSiblings(node));
      return results;
    },

    nextElementSibling: function(node) {
      while (node = node.nextSibling)
        if (node.nodeType == 1) return node;
      return null;
    },

    previousElementSibling: function(node) {
      while (node = node.previousSibling)
        if (node.nodeType == 1) return node;
      return null;
    },

    // TOKEN FUNCTIONS
    tagName: function(nodes, root, tagName, combinator) {
      var uTagName = tagName.toUpperCase();
      var results = [], h = Selector.handlers;
      if (nodes) {
        if (combinator) {
          // fastlane for ordinary descendant combinators
          if (combinator == "descendant") {
            for (var i = 0, node; node = nodes[i]; i++)
              h.concat(results, node.getElementsByTagName(tagName));
            return results;
          } else nodes = this[combinator](nodes);
          if (tagName == "*") return nodes;
        }
        for (var i = 0, node; node = nodes[i]; i++)
          if (node.tagName.toUpperCase() === uTagName) results.push(node);
        return results;
      } else return root.getElementsByTagName(tagName);
    },

    id: function(nodes, root, id, combinator) {
      var targetNode = $(id), h = Selector.handlers;
      if (!targetNode) return [];
      if (!nodes && root == document) return [targetNode];
      if (nodes) {
        if (combinator) {
          if (combinator == 'child') {
            for (var i = 0, node; node = nodes[i]; i++)
              if (targetNode.parentNode == node) return [targetNode];
          } else if (combinator == 'descendant') {
            for (var i = 0, node; node = nodes[i]; i++)
              if (Element.descendantOf(targetNode, node)) return [targetNode];
          } else if (combinator == 'adjacent') {
            for (var i = 0, node; node = nodes[i]; i++)
              if (Selector.handlers.previousElementSibling(targetNode) == node)
                return [targetNode];
          } else nodes = h[combinator](nodes);
        }
        for (var i = 0, node; node = nodes[i]; i++)
          if (node == targetNode) return [targetNode];
        return [];
      }
      return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : [];
    },

    className: function(nodes, root, className, combinator) {
      if (nodes && combinator) nodes = this[combinator](nodes);
      return Selector.handlers.byClassName(nodes, root, className);
    },

    byClassName: function(nodes, root, className) {
      if (!nodes) nodes = Selector.handlers.descendant([root]);
      var needle = ' ' + className + ' ';
      for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) {
        nodeClassName = node.className;
        if (nodeClassName.length == 0) continue;
        if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle))
          results.push(node);
      }
      return results;
    },

    attrPresence: function(nodes, root, attr, combinator) {
      if (!nodes) nodes = root.getElementsByTagName("*");
      if (nodes && combinator) nodes = this[combinator](nodes);
      var results = [];
      for (var i = 0, node; node = nodes[i]; i++)
        if (Element.hasAttribute(node, attr)) results.push(node);
      return results;
    },

    attr: function(nodes, root, attr, value, operator, combinator) {
      if (!nodes) nodes = root.getElementsByTagName("*");
      if (nodes && combinator) nodes = this[combinator](nodes);
      var handler = Selector.operators[operator], results = [];
      for (var i = 0, node; node = nodes[i]; i++) {
        var nodeValue = Element.readAttribute(node, attr);
        if (nodeValue === null) continue;
        if (handler(nodeValue, value)) results.push(node);
      }
      return results;
    },

    pseudo: function(nodes, name, value, root, combinator) {
      if (nodes && combinator) nodes = this[combinator](nodes);
      if (!nodes) nodes = root.getElementsByTagName("*");
      return Selector.pseudos[name](nodes, value, root);
    }
  },

  pseudos: {
    'first-child': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        if (Selector.handlers.previousElementSibling(node)) continue;
          results.push(node);
      }
      return results;
    },
    'last-child': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        if (Selector.handlers.nextElementSibling(node)) continue;
          results.push(node);
      }
      return results;
    },
    'only-child': function(nodes, value, root) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (!h.previousElementSibling(node) && !h.nextElementSibling(node))
          results.push(node);
      return results;
    },
    'nth-child':        function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root);
    },
    'nth-last-child':   function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root, true);
    },
    'nth-of-type':      function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root, false, true);
    },
    'nth-last-of-type': function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root, true, true);
    },
    'first-of-type':    function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, "1", root, false, true);
    },
    'last-of-type':     function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, "1", root, true, true);
    },
    'only-of-type':     function(nodes, formula, root) {
      var p = Selector.pseudos;
      return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root);
    },

    // handles the an+b logic
    getIndices: function(a, b, total) {
      if (a == 0) return b > 0 ? [b] : [];
      return $R(1, total).inject([], function(memo, i) {
        if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
        return memo;
      });
    },

    // handles nth(-last)-child, nth(-last)-of-type, and (first|last)-of-type
    nth: function(nodes, formula, root, reverse, ofType) {
      if (nodes.length == 0) return [];
      if (formula == 'even') formula = '2n+0';
      if (formula == 'odd')  formula = '2n+1';
      var h = Selector.handlers, results = [], indexed = [], m;
      h.mark(nodes);
      for (var i = 0, node; node = nodes[i]; i++) {
        if (!node.parentNode._countedByPrototype) {
          h.index(node.parentNode, reverse, ofType);
          indexed.push(node.parentNode);
        }
      }
      if (formula.match(/^\d+$/)) { // just a number
        formula = Number(formula);
        for (var i = 0, node; node = nodes[i]; i++)
          if (node.nodeIndex == formula) results.push(node);
      } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
        if (m[1] == "-") m[1] = -1;
        var a = m[1] ? Number(m[1]) : 1;
        var b = m[2] ? Number(m[2]) : 0;
        var indices = Selector.pseudos.getIndices(a, b, nodes.length);
        for (var i = 0, node, l = indices.length; node = nodes[i]; i++) {
          for (var j = 0; j < l; j++)
            if (node.nodeIndex == indices[j]) results.push(node);
        }
      }
      h.unmark(nodes);
      h.unmark(indexed);
      return results;
    },

    'empty': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        // IE treats comments as element nodes
        if (node.tagName == '!' || node.firstChild) continue;
        results.push(node);
      }
      return results;
    },

    'not': function(nodes, selector, root) {
      var h = Selector.handlers, selectorType, m;
      var exclusions = new Selector(selector).findElements(root);
      h.mark(exclusions);
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (!node._countedByPrototype) results.push(node);
      h.unmark(exclusions);
      return results;
    },

    'enabled': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (!node.disabled && (!node.type || node.type !== 'hidden'))
          results.push(node);
      return results;
    },

    'disabled': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (node.disabled) results.push(node);
      return results;
    },

    'checked': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (node.checked) results.push(node);
      return results;
    }
  },

  operators: {
    '=':  function(nv, v) { return nv == v; },
    '!=': function(nv, v) { return nv != v; },
    '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); },
    '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); },
    '*=': function(nv, v) { return nv == v || nv && nv.include(v); },
    '$=': function(nv, v) { return nv.endsWith(v); },
    '*=': function(nv, v) { return nv.include(v); },
    '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); },
    '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() +
     '-').include('-' + (v || "").toUpperCase() + '-'); }
  },

  split: function(expression) {
    var expressions = [];
    expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) {
      expressions.push(m[1].strip());
    });
    return expressions;
  },

  matchElements: function(elements, expression) {
    var matches = $$(expression), h = Selector.handlers;
    h.mark(matches);
    for (var i = 0, results = [], element; element = elements[i]; i++)
      if (element._countedByPrototype) results.push(element);
    h.unmark(matches);
    return results;
  },

  findElement: function(elements, expression, index) {
    if (Object.isNumber(expression)) {
      index = expression; expression = false;
    }
    return Selector.matchElements(elements, expression || '*')[index || 0];
  },

  findChildElements: function(element, expressions) {
    expressions = Selector.split(expressions.join(','));
    var results = [], h = Selector.handlers;
    for (var i = 0, l = expressions.length, selector; i < l; i++) {
      selector = new Selector(expressions[i].strip());
      h.concat(results, selector.findElements(element));
    }
    return (l > 1) ? h.unique(results) : results;
  }
});

if (Prototype.Browser.IE) {
  Object.extend(Selector.handlers, {
    // IE returns comment nodes on getElementsByTagName("*").
    // Filter them out.
    concat: function(a, b) {
      for (var i = 0, node; node = b[i]; i++)
        if (node.tagName !== "!") a.push(node);
      return a;
    },

    // IE improperly serializes _countedByPrototype in (inner|outer)HTML.
    unmark: function(nodes) {
      for (var i = 0, node; node = nodes[i]; i++)
        node.removeAttribute('_countedByPrototype');
      return nodes;
    }
  });
}

function $$() {
  return Selector.findChildElements(document, $A(arguments));
}
var Form = {
  reset: function(form) {
    $(form).reset();
    return form;
  },

  serializeElements: function(elements, options) {
    if (typeof options != 'object') options = { hash: !!options };
    else if (Object.isUndefined(options.hash)) options.hash = true;
    var key, value, submitted = false, submit = options.submit;

    var data = elements.inject({ }, function(result, element) {
      if (!element.disabled && element.name) {
        key = element.name; value = $(element).getValue();
        if (value != null && element.type != 'file' && (element.type != 'submit' || (!submitted &&
            submit !== false && (!submit || key == submit) && (submitted = true)))) {
          if (key in result) {
            // a key is already present; construct an array of values
            if (!Object.isArray(result[key])) result[key] = [result[key]];
            result[key].push(value);
          }
          else result[key] = value;
        }
      }
      return result;
    });

    return options.hash ? data : Object.toQueryString(data);
  }
};

Form.Methods = {
  serialize: function(form, options) {
    return Form.serializeElements(Form.getElements(form), options);
  },

  getElements: function(form) {
    return $A($(form).getElementsByTagName('*')).inject([],
      function(elements, child) {
        if (Form.Element.Serializers[child.tagName.toLowerCase()])
          elements.push(Element.extend(child));
        return elements;
      }
    );
  },

  getInputs: function(form, typeName, name) {
    form = $(form);
    var inputs = form.getElementsByTagName('input');

    if (!typeName && !name) return $A(inputs).map(Element.extend);

    for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) {
      var input = inputs[i];
      if ((typeName && input.type != typeName) || (name && input.name != name))
        continue;
      matchingInputs.push(Element.extend(input));
    }

    return matchingInputs;
  },

  disable: function(form) {
    form = $(form);
    Form.getElements(form).invoke('disable');
    return form;
  },

  enable: function(form) {
    form = $(form);
    Form.getElements(form).invoke('enable');
    return form;
  },

  findFirstElement: function(form) {
    var elements = $(form).getElements().findAll(function(element) {
      return 'hidden' != element.type && !element.disabled;
    });
    var firstByIndex = elements.findAll(function(element) {
      return element.hasAttribute('tabIndex') && element.tabIndex >= 0;
    }).sortBy(function(element) { return element.tabIndex }).first();

    return firstByIndex ? firstByIndex : elements.find(function(element) {
      return ['input', 'select', 'textarea'].include(element.tagName.toLowerCase());
    });
  },

  focusFirstElement: function(form) {
    form = $(form);
    form.findFirstElement().activate();
    return form;
  },

  request: function(form, options) {
    form = $(form), options = Object.clone(options || { });

    var params = options.parameters, action = form.readAttribute('action') || '';
    if (action.blank()) action = window.location.href;
    options.parameters = form.serialize(true);

    if (params) {
      if (Object.isString(params)) params = params.toQueryParams();
      Object.extend(options.parameters, params);
    }

    if (form.hasAttribute('method') && !options.method)
      options.method = form.method;

    return new Ajax.Request(action, options);
  }
};

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

Form.Element = {
  focus: function(element) {
    $(element).focus();
    return element;
  },

  select: function(element) {
    $(element).select();
    return element;
  }
};

Form.Element.Methods = {
  serialize: function(element) {
    element = $(element);
    if (!element.disabled && element.name) {
      var value = element.getValue();
      if (value != undefined) {
        var pair = { };
        pair[element.name] = value;
        return Object.toQueryString(pair);
      }
    }
    return '';
  },

  getValue: function(element) {
    element = $(element);
    var method = element.tagName.toLowerCase();
    return Form.Element.Serializers[method](element);
  },

  setValue: function(element, value) {
    element = $(element);
    var method = element.tagName.toLowerCase();
    Form.Element.Serializers[method](element, value);
    return element;
  },

  clear: function(element) {
    $(element).value = '';
    return element;
  },

  present: function(element) {
    return $(element).value != '';
  },

  activate: function(element) {
    element = $(element);
    try {
      element.focus();
      if (element.select && (element.tagName.toLowerCase() != 'input' ||
          !['button', 'reset', 'submit'].include(element.type)))
        element.select();
    } catch (e) { }
    return element;
  },

  disable: function(element) {
    element = $(element);
    element.disabled = true;
    return element;
  },

  enable: function(element) {
    element = $(element);
    element.disabled = false;
    return element;
  }
};

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

var Field = Form.Element;
var $F = Form.Element.Methods.getValue;

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

Form.Element.Serializers = {
  input: function(element, value) {
    switch (element.type.toLowerCase()) {
      case 'checkbox':
      case 'radio':
        return Form.Element.Serializers.inputSelector(element, value);
      default:
        return Form.Element.Serializers.textarea(element, value);
    }
  },

  inputSelector: function(element, value) {
    if (Object.isUndefined(value)) return element.checked ? element.value : null;
    else element.checked = !!value;
  },

  textarea: function(element, value) {
    if (Object.isUndefined(value)) return element.value;
    else element.value = value;
  },

  select: function(element, value) {
    if (Object.isUndefined(value))
      return this[element.type == 'select-one' ?
        'selectOne' : 'selectMany'](element);
    else {
      var opt, currentValue, single = !Object.isArray(value);
      for (var i = 0, length = element.length; i < length; i++) {
        opt = element.options[i];
        currentValue = this.optionValue(opt);
        if (single) {
          if (currentValue == value) {
            opt.selected = true;
            return;
          }
        }
        else opt.selected = value.include(currentValue);
      }
    }
  },

  selectOne: function(element) {
    var index = element.selectedIndex;
    return index >= 0 ? this.optionValue(element.options[index]) : null;
  },

  selectMany: function(element) {
    var values, length = element.length;
    if (!length) return null;

    for (var i = 0, values = []; i < length; i++) {
      var opt = element.options[i];
      if (opt.selected) values.push(this.optionValue(opt));
    }
    return values;
  },

  optionValue: function(opt) {
    // extend element because hasAttribute may not be native
    return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text;
  }
};

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

Abstract.TimedObserver = Class.create(PeriodicalExecuter, {
  initialize: function($super, element, frequency, callback) {
    $super(callback, frequency);
    this.element   = $(element);
    this.lastValue = this.getValue();
  },

  execute: function() {
    var value = this.getValue();
    if (Object.isString(this.lastValue) && Object.isString(value) ?
        this.lastValue != value : String(this.lastValue) != String(value)) {
      this.callback(this.element, value);
      this.lastValue = value;
    }
  }
});

Form.Element.Observer = Class.create(Abstract.TimedObserver, {
  getValue: function() {
    return Form.Element.getValue(this.element);
  }
});

Form.Observer = Class.create(Abstract.TimedObserver, {
  getValue: function() {
    return Form.serialize(this.element);
  }
});

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

Abstract.EventObserver = Class.create({
  initialize: function(element, callback) {
    this.element  = $(element);
    this.callback = callback;

    this.lastValue = this.getValue();
    if (this.element.tagName.toLowerCase() == 'form')
      this.registerFormCallbacks();
    else
      this.registerCallback(this.element);
  },

  onElementEvent: function() {
    var value = this.getValue();
    if (this.lastValue != value) {
      this.callback(this.element, value);
      this.lastValue = value;
    }
  },

  registerFormCallbacks: function() {
    Form.getElements(this.element).each(this.registerCallback, this);
  },

  registerCallback: function(element) {
    if (element.type) {
      switch (element.type.toLowerCase()) {
        case 'checkbox':
        case 'radio':
          Event.observe(element, 'click', this.onElementEvent.bind(this));
          break;
        default:
          Event.observe(element, 'change', this.onElementEvent.bind(this));
          break;
      }
    }
  }
});

Form.Element.EventObserver = Class.create(Abstract.EventObserver, {
  getValue: function() {
    return Form.Element.getValue(this.element);
  }
});

Form.EventObserver = Class.create(Abstract.EventObserver, {
  getValue: function() {
    return Form.serialize(this.element);
  }
});
if (!window.Event) var Event = { };

Object.extend(Event, {
  KEY_BACKSPACE: 8,
  KEY_TAB:       9,
  KEY_RETURN:   13,
  KEY_ESC:      27,
  KEY_LEFT:     37,
  KEY_UP:       38,
  KEY_RIGHT:    39,
  KEY_DOWN:     40,
  KEY_DELETE:   46,
  KEY_HOME:     36,
  KEY_END:      35,
  KEY_PAGEUP:   33,
  KEY_PAGEDOWN: 34,
  KEY_INSERT:   45,

  cache: { },

  relatedTarget: function(event) {
    var element;
    switch(event.type) {
      case 'mouseover': element = event.fromElement; break;
      case 'mouseout':  element = event.toElement;   break;
      default: return null;
    }
    return Element.extend(element);
  }
});

Event.Methods = (function() {
  var isButton;

  if (Prototype.Browser.IE) {
    var buttonMap = { 0: 1, 1: 4, 2: 2 };
    isButton = function(event, code) {
      return event.button == buttonMap[code];
    };

  } else if (Prototype.Browser.WebKit) {
    isButton = function(event, code) {
      switch (code) {
        case 0: return event.which == 1 && !event.metaKey;
        case 1: return event.which == 1 && event.metaKey;
        default: return false;
      }
    };

  } else {
    isButton = function(event, code) {
      return event.which ? (event.which === code + 1) : (event.button === code);
    };
  }

  return {
    isLeftClick:   function(event) { return isButton(event, 0) },
    isMiddleClick: function(event) { return isButton(event, 1) },
    isRightClick:  function(event) { return isButton(event, 2) },

    element: function(event) {
      event = Event.extend(event);

      var node          = event.target,
          type          = event.type,
          currentTarget = event.currentTarget;

      if (currentTarget && currentTarget.tagName) {
        // Firefox screws up the "click" event when moving between radio buttons
        // via arrow keys. It also screws up the "load" and "error" events on images,
        // reporting the document as the target instead of the original image.
        if (type === 'load' || type === 'error' ||
          (type === 'click' && currentTarget.tagName.toLowerCase() === 'input'
            && currentTarget.type === 'radio'))
              node = currentTarget;
      }
      if (node) {
        if (node.nodeType == Node.TEXT_NODE) node = node.parentNode;
        return Element.extend(node);
      } else return false;
    },

    findElement: function(event, expression) {
      var element = Event.element(event);
      if (!expression) return element;
      var elements = [element].concat(element.ancestors());
      return Selector.findElement(elements, expression, 0);
    },

    pointer: function(event) {
      var docElement = document.documentElement,
      body = document.body || { scrollLeft: 0, scrollTop: 0 };
      return {
        x: event.pageX || (event.clientX +
          (docElement.scrollLeft || body.scrollLeft) -
          (docElement.clientLeft || 0)),
        y: event.pageY || (event.clientY +
          (docElement.scrollTop || body.scrollTop) -
          (docElement.clientTop || 0))
      };
    },

    pointerX: function(event) { return Event.pointer(event).x },
    pointerY: function(event) { return Event.pointer(event).y },

    stop: function(event) {
      Event.extend(event);
      event.preventDefault();
      event.stopPropagation();
      event.stopped = true;
    }
  };
})();

Event.extend = (function() {
  var methods = Object.keys(Event.Methods).inject({ }, function(m, name) {
    m[name] = Event.Methods[name].methodize();
    return m;
  });

  if (Prototype.Browser.IE) {
    Object.extend(methods, {
      stopPropagation: function() { this.cancelBubble = true },
      preventDefault:  function() { this.returnValue = false },
      inspect: function() { return "[object Event]" }
    });

    return function(event) {
      if (!event) return false;
      if (event._extendedByPrototype) return event;

      event._extendedByPrototype = Prototype.emptyFunction;
      var pointer = Event.pointer(event);
      Object.extend(event, {
        target: event.srcElement,
        relatedTarget: Event.relatedTarget(event),
        pageX:  pointer.x,
        pageY:  pointer.y
      });
      return Object.extend(event, methods);
    };

  } else {
    Event.prototype = Event.prototype || document.createEvent("HTMLEvents")['__proto__'];
    Object.extend(Event.prototype, methods);
    return Prototype.K;
  }
})();

Object.extend(Event, (function() {
  var cache = Event.cache;

  function getEventID(element) {
    try {
      if (element._prototypeEventID) return element._prototypeEventID[0];
      arguments.callee.id = arguments.callee.id || 1;
      return element._prototypeEventID = [++arguments.callee.id];
    } catch (error) {
      return false;
    }
  }

  function getDOMEventName(eventName) {
    if (eventName && eventName.include(':')) return "dataavailable";
    return eventName;
  }

  function getCacheForID(id) {
    return cache[id] = cache[id] || { };
  }

  function getWrappersForEventName(id, eventName) {
    var c = getCacheForID(id);
    return c[eventName] = c[eventName] || [];
  }

  function createWrapper(element, eventName, handler) {
    var id = getEventID(element);
    var c = getWrappersForEventName(id, eventName);
    if (c.pluck("handler").include(handler)) return false;

    var wrapper = function(event) {
      if (!Event || !Event.extend ||
        (event.eventName && event.eventName != eventName))
          return false;

      Event.extend(event);
      handler.call(element, event);
    };

    wrapper.handler = handler;
    c.push(wrapper);
    return wrapper;
  }

  function findWrapper(id, eventName, handler) {
    var c = getWrappersForEventName(id, eventName);
    return c.find(function(wrapper) { return wrapper.handler == handler });
  }

  function destroyWrapper(id, eventName, handler) {
    var c = getCacheForID(id);
    if (!c[eventName]) return false;
    c[eventName] = c[eventName].without(findWrapper(id, eventName, handler));
  }

  function destroyCache() {
    for (var id in cache)
      for (var eventName in cache[id])
        cache[id][eventName] = null;
  }


  // Internet Explorer needs to remove event handlers on page unload
  // in order to avoid memory leaks.
  if (window.attachEvent) {
    window.attachEvent("onunload", destroyCache);
  }

  // Safari has a dummy event handler on page unload so that it won't
  // use its bfcache. Safari <= 3.1 has an issue with restoring the "document"
  // object when page is returned to via the back button using its bfcache.
  if (Prototype.Browser.WebKit) {
    window.addEventListener('unload', Prototype.emptyFunction, false);
  }

  return {
    observe: function(element, eventName, handler) {
      element = $(element);
      var name = getDOMEventName(eventName);

      var wrapper = createWrapper(element, eventName, handler);
      if (!wrapper) return element;

      if (element.addEventListener) {
        element.addEventListener(name, wrapper, false);
      } else {
        element.attachEvent("on" + name, wrapper);
      }

      return element;
    },

    stopObserving: function(element, eventName, handler) {
      element = $(element);
      var id = getEventID(element), name = getDOMEventName(eventName);

      if (!handler && eventName) {
        getWrappersForEventName(id, eventName).each(function(wrapper) {
          element.stopObserving(eventName, wrapper.handler);
        });
        return element;

      } else if (!eventName) {
        Object.keys(getCacheForID(id)).each(function(eventName) {
          element.stopObserving(eventName);
        });
        return element;
      }

      var wrapper = findWrapper(id, eventName, handler);
      if (!wrapper) return element;

      if (element.removeEventListener) {
        element.removeEventListener(name, wrapper, false);
      } else {
        element.detachEvent("on" + name, wrapper);
      }

      destroyWrapper(id, eventName, handler);

      return element;
    },

    fire: function(element, eventName, memo) {
      element = $(element);
      if (element == document && document.createEvent && !element.dispatchEvent)
        element = document.documentElement;

      var event;
      if (document.createEvent) {
        event = document.createEvent("HTMLEvents");
        event.initEvent("dataavailable", true, true);
      } else {
        event = document.createEventObject();
        event.eventType = "ondataavailable";
      }

      event.eventName = eventName;
      event.memo = memo || { };

      if (document.createEvent) {
        element.dispatchEvent(event);
      } else {
        element.fireEvent(event.eventType, event);
      }

      return Event.extend(event);
    }
  };
})());

Object.extend(Event, Event.Methods);

Element.addMethods({
  fire:          Event.fire,
  observe:       Event.observe,
  stopObserving: Event.stopObserving
});

Object.extend(document, {
  fire:          Element.Methods.fire.methodize(),
  observe:       Element.Methods.observe.methodize(),
  stopObserving: Element.Methods.stopObserving.methodize(),
  loaded:        false
});

(function() {
  /* Support for the DOMContentLoaded event is based on work by Dan Webb,
     Matthias Miller, Dean Edwards and John Resig. */

  var timer;

  function fireContentLoadedEvent() {
    if (document.loaded) return;
    if (timer) window.clearInterval(timer);
    document.fire("dom:loaded");
    document.loaded = true;
  }

  if (document.addEventListener) {
    if (Prototype.Browser.WebKit) {
      timer = window.setInterval(function() {
        if (/loaded|complete/.test(document.readyState))
          fireContentLoadedEvent();
      }, 0);

      Event.observe(window, "load", fireContentLoadedEvent);

    } else {
      document.addEventListener("DOMContentLoaded",
        fireContentLoadedEvent, false);
    }

  } else {
    document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");
    $("__onDOMContentLoaded").onreadystatechange = function() {
      if (this.readyState == "complete") {
        this.onreadystatechange = null;
        fireContentLoadedEvent();
      }
    };
  }
})();
/*------------------------------- DEPRECATED -------------------------------*/

Hash.toQueryString = Object.toQueryString;

var Toggle = { display: Element.toggle };

Element.Methods.childOf = Element.Methods.descendantOf;

var Insertion = {
  Before: function(element, content) {
    return Element.insert(element, {before:content});
  },

  Top: function(element, content) {
    return Element.insert(element, {top:content});
  },

  Bottom: function(element, content) {
    return Element.insert(element, {bottom:content});
  },

  After: function(element, content) {
    return Element.insert(element, {after:content});
  }
};

var $continue = new Error('"throw $continue" is deprecated, use "return" instead');

// This should be moved to script.aculo.us; notice the deprecated methods
// further below, that map to the newer Element methods.
var Position = {
  // set to true if needed, warning: firefox performance problems
  // NOT neeeded for page scrolling, only if draggable contained in
  // scrollable elements
  includeScrollOffsets: false,

  // must be called before calling withinIncludingScrolloffset, every time the
  // page is scrolled
  prepare: function() {
    this.deltaX =  window.pageXOffset
                || document.documentElement.scrollLeft
                || document.body.scrollLeft
                || 0;
    this.deltaY =  window.pageYOffset
                || document.documentElement.scrollTop
                || document.body.scrollTop
                || 0;
  },

  // caches x/y coordinate pair to use with overlap
  within: function(element, x, y) {
    if (this.includeScrollOffsets)
      return this.withinIncludingScrolloffsets(element, x, y);
    this.xcomp = x;
    this.ycomp = y;
    this.offset = Element.cumulativeOffset(element);

    return (y >= this.offset[1] &&
            y <  this.offset[1] + element.offsetHeight &&
            x >= this.offset[0] &&
            x <  this.offset[0] + element.offsetWidth);
  },

  withinIncludingScrolloffsets: function(element, x, y) {
    var offsetcache = Element.cumulativeScrollOffset(element);

    this.xcomp = x + offsetcache[0] - this.deltaX;
    this.ycomp = y + offsetcache[1] - this.deltaY;
    this.offset = Element.cumulativeOffset(element);

    return (this.ycomp >= this.offset[1] &&
            this.ycomp <  this.offset[1] + element.offsetHeight &&
            this.xcomp >= this.offset[0] &&
            this.xcomp <  this.offset[0] + element.offsetWidth);
  },

  // within must be called directly before
  overlap: function(mode, element) {
    if (!mode) return 0;
    if (mode == 'vertical')
      return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
        element.offsetHeight;
    if (mode == 'horizontal')
      return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
        element.offsetWidth;
  },

  // Deprecation layer -- use newer Element methods now (1.5.2).

  cumulativeOffset: Element.Methods.cumulativeOffset,

  positionedOffset: Element.Methods.positionedOffset,

  absolutize: function(element) {
    Position.prepare();
    return Element.absolutize(element);
  },

  relativize: function(element) {
    Position.prepare();
    return Element.relativize(element);
  },

  realOffset: Element.Methods.cumulativeScrollOffset,

  offsetParent: Element.Methods.getOffsetParent,

  page: Element.Methods.viewportOffset,

  clone: function(source, target, options) {
    options = options || { };
    return Element.clonePosition(target, source, options);
  }
};

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

if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
  function iter(name) {
    return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
  }

  instanceMethods.getElementsByClassName = Prototype.BrowserFeatures.XPath ?
  function(element, className) {
    className = className.toString().strip();
    var cond = /\s/.test(className) ? $w(className).map(iter).join('') : iter(className);
    return cond ? document._getElementsByXPath('.//*' + cond, element) : [];
  } : function(element, className) {
    className = className.toString().strip();
    var elements = [], classNames = (/\s/.test(className) ? $w(className) : null);
    if (!classNames && !className) return elements;

    var nodes = $(element).getElementsByTagName('*');
    className = ' ' + className + ' ';

    for (var i = 0, child, cn; child = nodes[i]; i++) {
      if (child.className && (cn = ' ' + child.className + ' ') && (cn.include(className) ||
          (classNames && classNames.all(function(name) {
            return !name.toString().blank() && cn.include(' ' + name + ' ');
          }))))
        elements.push(Element.extend(child));
    }
    return elements;
  };

  return function(className, parentElement) {
    return $(parentElement || document.body).getElementsByClassName(className);
  };
}(Element.Methods);

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

Element.ClassNames = Class.create();
Element.ClassNames.prototype = {
  initialize: function(element) {
    this.element = $(element);
  },

  _each: function(iterator) {
    this.element.className.split(/\s+/).select(function(name) {
      return name.length > 0;
    })._each(iterator);
  },

  set: function(className) {
    this.element.className = className;
  },

  add: function(classNameToAdd) {
    if (this.include(classNameToAdd)) return;
    this.set($A(this).concat(classNameToAdd).join(' '));
  },

  remove: function(classNameToRemove) {
    if (!this.include(classNameToRemove)) return;
    this.set($A(this).without(classNameToRemove).join(' '));
  },

  toString: function() {
    return $A(this).join(' ');
  }
};

Object.extend(Element.ClassNames.prototype, Enumerable);

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

Element.addMethods();
/*
* 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){
                if (!advice || pair.value.id != advice.id) {
                    // hide non-current advice after delay
                    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) {
            new Effect.Fade(advice, {duration : 1, afterFinishInternal : function() {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_-]+)?$/.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 90602 or 90602-1234.', function(v) {
            return Validation.get('IsEmpty').test(v) || /(^\d{5}$)|(^\d{5}-\d{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;
            }],
    ['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
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * 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://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
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 + 'date-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.setDateRange(false, false);
        this.year.setAttribute('autocomplete','off');

        this.advice.hide();
    },
    validate: function() {
        // var error = false, day = parseInt(this.day.value) || 0, month = parseInt(this.month.value) || 0, year = parseInt(this.year.value) || 0;
	// fixed
	var error = false,
                        day = parseInt(this.day.value.replace(/^0*/, '')) || 0,
                        month = parseInt(this.month.value.replace(/^0*/, '')) || 0,
                        year = parseInt(this.year.value) || 0;
	// end fix


        if (!day && !month && !year) {
            if (this.required) {
                error = 'This date is a required value.';
            } else {
                this.full.value = '';
            }
        } else if (!day || !month || !year) {
            error = 'Please enter a valid full date.';
        } else {
            var date = new Date, countDaysInMonth = 0, errorType = null;
            date.setYear(year);date.setMonth(month-1);date.setDate(32);
            countDaysInMonth = 32 - date.getDate();
            if(!countDaysInMonth || countDaysInMonth>31) countDaysInMonth = 31;

            if (day<1 || day>countDaysInMonth) {
                errorType = 'day';
                error = 'Please enter a valid day (1-%d).';
            } else if (month<1 || month>12) {
                errorType = 'month';
                error = 'Please enter a valid month (1-12).';
            } else {
                if(day % 10 == day) this.day.value = '0'+day;
                if(month % 10 == month) this.month.value = '0'+month;
                this.full.value = this.format.replace(/%[mb]/i, this.month.value).replace(/%[de]/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.';
                } else {
                    this.setFullDate(test);
                }
            }
            var valueError = false;
            if (!error && !this.validateData()){//(year<1900 || year>curyear) {
                errorType = this.validateDataErrorType;//'year';
                valueError = this.validateDataErrorText;//'Please enter a valid year (1900-%d).';
                error = valueError;
            }
        }

        if (error !== false) {
            try {
                error = Translator.translate(error);
            }
            catch (e) {}
            if (!valueError) {
                this.advice.innerHTML = error.replace('%d', countDaysInMonth);
            } else {
                this.advice.innerHTML = this.errorTextModifier(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;
    },
    validateData: function() {
        var year = this.fullDate.getFullYear();
        var date = new Date;
        this.curyear = date.getFullYear();
        return (year>=1900 && year<=this.curyear);
    },
    validateDataErrorType: 'year',
    validateDataErrorText: 'Please enter a valid year (1900-%d).',
    errorTextModifier: function(text) {
        return text.replace('%d', this.curyear);
    },
    setDateRange: function(minDate, maxDate) {
        this.minDate = minDate;
        this.maxDate = maxDate;
    },
    setFullDate: function(date) {
        this.fullDate = date;
    }
};

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.dateRangeDate = Class.create();
Varien.dateRangeDate.prototype = Object.extend(new Varien.DateElement(), {
    validateData: function() {
        var validate = true;
        if (this.minDate || this.maxValue) {
            if (this.minDate) {
                this.minDate = new Date(this.minDate);
                this.minDate.setHours(0);
                if (isNaN(this.minDate)) {
                    this.minDate = new Date('1/1/1900');
                }
                validate = validate && (this.fullDate >= this.minDate)
            }
            if (this.maxDate) {
                this.maxDate = new Date(this.maxDate)
                this.minDate.setHours(0);
                if (isNaN(this.maxDate)) {
                    this.maxDate = new Date();
                }
                validate = validate && (this.fullDate <= this.maxDate)
            }
            if (this.maxDate && this.minDate) {
                this.validateDataErrorText = 'Please enter a valid date between %s and %s';
            } else if (this.maxDate) {
                this.validateDataErrorText = 'Please enter a valid date less than or equal to %s';
            } else if (this.minDate) {
                this.validateDataErrorText = 'Please enter a valid date equal to or greater than %s';
            } else {
                this.validateDataErrorText = '';
            }
        }
        return validate;
    },
    validateDataErrorText: 'Date should be between %s and %s',
    errorTextModifier: function(text) {
        if (this.minDate) {
            text = text.sub('%s', this.dateFormat(this.minDate));
        }
        if (this.maxDate) {
            text = text.sub('%s', this.dateFormat(this.maxDate));
        }
        return text;
    },
    dateFormat: function(date) {
        return (date.getMonth() + 1) + '/' + date.getDate() + '/' + date.getFullYear();
    }
});

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
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * 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://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
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();
            }
        }
    }
}

/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * 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://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/**
 * @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
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * 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://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

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
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * 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://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
// 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));
};

var CheckBoxSwitch = Class.create();
CheckBoxSwitch.prototype = {
    initialize: function(selector) {
        this.elements = $$(selector);
        this.elements.each(function(el) {
            // IE does not support 'change' events correctly
            el.observe('click', this.change.bind(this, el));
            if (el.readAttribute('checked') && !el.hasClassName('all')) {
                $$(selector + '.all')[0].writeAttribute('checked', null);
            }
        }, this);
    },
    change: function(changedElement) {
        var allSelected = changedElement.hasClassName('all') && changedElement.checked;
        this.elements.each(function(el) {
            if (el.hasClassName('all') && !allSelected) {
                el.checked = false;
            } else if (!el.hasClassName('all') && allSelected) {
                el.checked = false;
            }
        });
		//custom event aufrufen wenn alle umgestellt
		Event.fire(sux_multi_layered.form, 'navigation:change');
    }
};

/*
 * Instantz muss in sux_multi_layered gespeichert werden damit CheckBoxSwitch das custom event aufrufen kann
 **/
var SuxMultiLayered = Class.create();
SuxMultiLayered.prototype = {
    initialize: function(id) {
        this.form = $(id);
        this.form.select('[type=submit]').each(function(el) { el.hide(); });
		//info: keine checkboxen wegen IE timing problem
        this.form.select('input[type=radio], select').each(function(el) {
            el.observe((el.tagName.toLowerCase()=='select'?'change':'click'), function() { // need custom event
                Event.fire(this, 'navigation:change');
            });
        });
        this.form.observe('navigation:change', this.formChanged.bind(this));
    },
    formChanged: function() {
        this.form.submit();
    }
}

var SuxMultiLayeredSlider = Class.create();
SuxMultiLayeredSlider.prototype = {
    initialize: function(handle, track, options) {
        this.idMin = options.idMin;
        this.idMax = options.idMax;
        this.maxPrice = options.maxPrice;
        this.minPrice = options.minPrice;

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

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1991, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Frutiger is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * FrutigerLTStd-BoldCn
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"FrutigerLTStd-BoldCn","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 3 5 4 2 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-10 -338 360 90","underline-thickness":"18","underline-position":"-18","stemh":"33","stemv":"45","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u201c":13,"\u2018":13,"T":20,"V":20,"W":20,"Y":20,"\u00dd":20,"\u0178":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"!":{"d":"49,-74r-5,-177r46,0r-6,177r-35,0xm45,0r0,-45r43,0r0,45r-43,0","w":133},"\"":{"d":"105,-181r0,-89r36,0r0,89r-36,0xm46,-181r0,-89r36,0r0,89r-36,0","w":186},"#":{"d":"97,0r11,-74r-43,0r-10,74r-28,0r10,-74r-33,0r0,-28r37,0r7,-47r-34,0r0,-28r37,0r11,-74r28,0r-10,74r42,0r10,-74r29,0r-11,74r34,0r0,28r-38,0r-6,47r33,0r0,28r-37,0r-11,74r-28,0xm112,-102r6,-47r-42,0r-7,47r43,0","w":187},"$":{"d":"100,-107r0,77v20,-3,30,-19,30,-37v1,-25,-8,-33,-30,-40xm84,34r0,-30v-31,-1,-49,-7,-60,-12r3,-41v15,10,35,19,57,20r0,-85v-34,-12,-66,-31,-66,-69v0,-44,31,-68,68,-71r0,-29r16,0r0,28v27,0,45,7,54,11r-2,38v-13,-9,-30,-16,-52,-16r0,74v34,11,67,33,67,70v0,52,-28,78,-69,81r0,31r-16,0xm86,-154r0,-67v-40,11,-38,49,0,67","w":187},"%":{"d":"50,-184v0,31,7,46,21,46v14,0,20,-15,20,-46v0,-31,-6,-46,-20,-46v-14,0,-21,15,-21,46xm19,-184v0,-45,19,-71,52,-71v33,0,52,26,52,71v0,45,-19,72,-52,72v-33,0,-52,-27,-52,-72xm208,-68v0,31,7,46,21,46v14,0,20,-15,20,-46v0,-31,-6,-46,-20,-46v-14,0,-21,15,-21,46xm177,-68v0,-45,19,-71,52,-71v33,0,52,26,52,71v0,45,-19,72,-52,72v-33,0,-52,-27,-52,-72xm80,12r113,-276r28,0r-113,276r-28,0","w":299},"&":{"d":"99,-157v26,-9,50,-68,4,-70v-40,1,-26,57,-4,70xm138,-49r-51,-67v-14,9,-26,22,-26,45v2,47,57,52,77,22xm177,0r-18,-23v-15,15,-28,27,-60,27v-57,0,-82,-34,-82,-73v0,-44,30,-65,46,-73v-38,-35,-41,-113,42,-113v46,0,64,30,64,55v0,34,-29,54,-46,66r39,52v11,-17,14,-40,14,-58r40,0v0,26,-8,64,-30,90r40,50r-49,0","w":233},"\u2019":{"d":"35,-270r43,0r-28,89r-34,0","w":93,"k":{"\u201d":13,"\u2019":27,"d":27,"s":20,"\u0161":20}},"(":{"d":"100,60r-34,0v-24,-48,-50,-92,-50,-161v0,-69,26,-113,50,-161r34,0v-58,98,-58,224,0,322","w":106},")":{"d":"6,-262r35,0v24,48,50,92,50,161v0,69,-26,113,-50,161r-35,0v59,-98,59,-224,0,-322","w":106},"*":{"d":"44,-145r31,-37r-45,-11r11,-32r42,21r-6,-47r34,0r-6,47r42,-21r10,32r-45,11r32,37r-28,19r-22,-42r-22,42","w":186},"+":{"d":"92,0r0,-75r-75,0r0,-32r75,0r0,-75r32,0r0,75r75,0r0,32r-75,0r0,75r-32,0","w":216},",":{"d":"25,-46r43,0r-27,89r-35,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"15,-84r0,-37r83,0r0,37r-83,0","w":113},".":{"d":"25,0r0,-47r43,0r0,47r-43,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"3,4r63,-259r31,0r-64,259r-30,0","w":100},"0":{"d":"59,-126v0,55,7,96,35,96v28,0,34,-41,34,-96v0,-55,-6,-95,-34,-95v-28,0,-35,40,-35,95xm14,-126v0,-62,15,-129,80,-129v65,0,79,67,79,129v0,62,-14,130,-79,130v-65,0,-80,-68,-80,-130","w":187},"1":{"d":"84,0r0,-198r-33,31r-21,-31r61,-53r38,0r0,251r-45,0","w":187},"2":{"d":"22,0r0,-37v36,-41,94,-100,94,-144v0,-52,-71,-37,-84,-18r-4,-41v12,-7,30,-15,62,-15v53,0,72,30,72,67v1,47,-46,107,-89,151r92,0r0,37r-143,0","w":187},"3":{"d":"18,-7r3,-39v24,18,100,21,96,-29v-3,-36,-35,-41,-67,-37r0,-35v33,1,66,-4,66,-38v0,-43,-58,-37,-88,-21r-3,-38v13,-4,33,-11,61,-11v44,0,75,22,75,63v0,46,-35,55,-49,60v23,6,53,15,53,60v0,74,-89,89,-147,65","w":187},"4":{"d":"107,-86r-1,-119r-62,119r63,0xm107,0r0,-52r-96,0r0,-42r87,-157r50,0r0,165r28,0r0,34r-28,0r0,52r-41,0","w":187},"5":{"d":"28,-251r128,0r0,35r-87,0r0,58v50,-15,98,14,98,74v0,80,-83,104,-143,77r3,-38v32,22,94,13,94,-37v0,-25,-16,-47,-51,-47v-21,0,-34,5,-42,8r0,-130","w":187},"6":{"d":"62,-78v0,30,10,48,32,48v23,0,33,-18,33,-48v0,-27,-10,-47,-33,-47v-21,0,-32,19,-32,47xm160,-246r-3,37v-9,-4,-21,-11,-41,-11v-49,0,-57,53,-58,85v33,-48,113,-23,113,57v0,50,-25,82,-73,82v-64,0,-82,-53,-82,-118v0,-74,20,-141,97,-141v23,0,38,6,47,9","w":187},"7":{"d":"40,0r82,-215r-100,0r0,-36r143,0r0,40r-75,211r-50,0","w":187},"8":{"d":"91,-115v-36,10,-48,86,3,86v44,0,45,-66,6,-80xm93,4v-83,0,-103,-101,-44,-128r13,-6v-25,-12,-40,-29,-40,-58v0,-43,30,-67,72,-67v37,0,72,21,72,61v0,28,-17,49,-41,61v25,12,48,32,48,65v0,48,-35,72,-80,72xm63,-188v0,21,18,32,34,42v26,-10,44,-76,-3,-76v-18,0,-31,12,-31,34","w":187},"9":{"d":"60,-174v0,27,10,48,33,48v21,0,32,-20,32,-48v0,-30,-10,-47,-32,-47v-23,0,-33,17,-33,47xm27,-5r3,-37v9,4,21,10,41,10v48,1,60,-55,58,-84v-33,48,-113,23,-113,-57v0,-50,26,-82,74,-82v64,0,81,52,81,117v0,74,-20,142,-97,142v-23,0,-38,-6,-47,-9","w":187},":":{"d":"25,0r0,-47r43,0r0,47r-43,0xm25,-139r0,-46r43,0r0,46r-43,0","w":93,"k":{" ":13}},";":{"d":"6,43r19,-89r43,0r-27,89r-35,0xm25,-139r0,-46r43,0r0,46r-43,0","w":93,"k":{" ":13}},"<":{"d":"199,-185r0,31r-142,63r142,62r0,32r-182,-80r0,-28","w":216},"=":{"d":"17,-113r0,-32r182,0r0,32r-182,0xm17,-37r0,-32r182,0r0,32r-182,0","w":216},">":{"d":"17,3r0,-32r142,-62r-142,-63r0,-31r182,80r0,28","w":216},"?":{"d":"151,-194v1,47,-52,75,-50,121r-39,0v-7,-48,41,-68,43,-109v2,-44,-57,-40,-78,-24r-3,-39v7,-3,28,-10,54,-10v46,0,73,25,73,61xm60,0r0,-45r43,0r0,45r-43,0","w":166},"@":{"d":"145,-167v-39,-6,-67,85,-16,88v43,1,75,-84,16,-88xm233,-53r26,0v-60,99,-244,62,-244,-73v0,-78,59,-129,134,-129v68,0,124,42,124,106v0,68,-60,100,-88,100v-11,0,-21,-6,-22,-20v-28,34,-94,22,-94,-37v0,-73,80,-124,120,-66r6,-19r27,0r-28,106v0,5,3,9,9,9v19,0,44,-30,44,-67v0,-56,-45,-87,-98,-87v-62,0,-104,46,-104,105v0,105,129,131,188,72","w":288},"A":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0","w":219},"B":{"d":"71,-217r0,71v35,4,60,-7,60,-38v0,-30,-28,-36,-60,-33xm71,-112r0,77v37,3,64,-5,64,-39v0,-31,-27,-42,-64,-38xm27,0r0,-251v70,-1,149,-7,149,62v0,40,-25,52,-42,58v19,4,47,18,47,60v1,75,-77,74,-154,71","w":200,"k":{"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"C":{"d":"184,-48r2,43v-9,5,-31,9,-54,9v-76,0,-115,-57,-115,-130v0,-73,39,-129,114,-129v26,0,46,7,55,11r-2,41v-49,-29,-118,-14,-118,77v0,89,65,107,118,78","w":200,"k":{",":6,".":6}},"D":{"d":"24,0r0,-251v112,-8,188,15,186,125v-2,112,-76,135,-186,126xm71,-216r0,181v63,5,90,-30,90,-91v0,-61,-27,-95,-90,-90","w":226,"k":{"V":6,"W":3,"Y":20,"\u00dd":20,"\u0178":20,",":27,".":27,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"E":{"d":"27,0r0,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0"},"F":{"d":"27,0r0,-251r127,0r0,36r-81,0r0,69r77,0r0,37r-77,0r0,109r-46,0","w":166,"k":{"\u00eb":6,"\u00e3":20,"\u00e0":20,"\u00e4":20,",":33,".":33,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e5":20,"e":6,"\u00e9":6,"\u00ea":6,"\u00e8":6,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},"G":{"d":"127,-105r0,-36r81,0r0,132v-13,7,-35,13,-68,13v-81,0,-123,-55,-123,-130v0,-75,42,-129,123,-129v29,0,51,7,61,11r-2,41v-15,-9,-35,-15,-58,-15v-49,0,-75,40,-75,92v0,68,40,107,99,88r0,-67r-38,0","w":233,"k":{",":20,".":20}},"H":{"d":"27,0r0,-251r46,0r0,102r74,0r0,-102r46,0r0,251r-46,0r0,-111r-74,0r0,111r-46,0","w":219},"I":{"d":"27,0r0,-251r46,0r0,251r-46,0","w":100},"J":{"d":"57,-251r46,0r0,178v-1,70,-46,89,-96,70r0,-39v22,13,50,-1,50,-32r0,-177","w":126,"k":{",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"K":{"d":"27,0r0,-251r46,0r1,106r71,-106r53,0r-85,118r92,133r-56,0r-76,-118r0,118r-46,0","w":206,"k":{"O":27,"\u00d8":27,"\u0152":27,"\u00d3":27,"\u00d4":27,"\u00d6":27,"\u00d2":27,"\u00d5":27,"y":13,"\u00fd":13,"\u00ff":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"u":9,"\u00fa":9,"\u00fb":9,"\u00fc":9,"\u00f9":9}},"L":{"d":"24,0r0,-251r47,0r0,214r82,0r0,37r-129,0","w":159,"k":{"T":36,"V":36,"W":27,"y":16,"\u00fd":16,"\u00ff":16,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":46,"\u2019":27}},"M":{"d":"225,0r0,-210r-63,210r-33,0r-61,-210r0,210r-42,0r0,-251r69,0r53,187r53,-187r66,0r0,251r-42,0","w":293},"N":{"d":"26,0r0,-251r55,0r84,197r0,-197r42,0r0,251r-55,0r-84,-196r0,196r-42,0","w":233,"k":{",":9,".":9}},"O":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm17,-126v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,90,-48,130,-100,130v-52,0,-100,-40,-100,-130","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"P":{"d":"71,-134v36,3,58,-7,58,-41v0,-34,-21,-44,-58,-41r0,82xm24,0r0,-251r72,0v52,0,79,28,79,76v1,57,-39,83,-104,77r0,98r-47,0","w":186,"k":{"\u00e4":20,",":46,".":46,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"Q":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm160,48r-35,-44v-62,2,-108,-37,-108,-130v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,62,-23,101,-54,118r50,56r-53,0","w":233,"k":{",":13,".":13}},"R":{"d":"24,0r0,-251v74,-1,154,-11,154,66v0,34,-23,53,-49,60v9,1,20,6,28,29r33,96r-49,0r-25,-82v-8,-24,-21,-27,-45,-26r0,108r-47,0xm71,-142v34,2,59,-5,59,-38v1,-36,-25,-37,-59,-36r0,74","w":200,"k":{"T":9,"U":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u00d9":3,"V":9,"Y":20,"\u00dd":20,"\u0178":20}},"S":{"d":"21,-8r2,-41v19,15,96,32,92,-20v-4,-50,-105,-49,-97,-117v-6,-66,85,-80,131,-60r-2,39v-19,-12,-85,-20,-82,18v3,30,34,36,54,49v29,18,43,33,43,68v0,74,-88,91,-141,64","k":{",":20,".":20}},"T":{"d":"64,0r0,-215r-56,0r0,-36r158,0r0,36r-56,0r0,215r-46,0","w":173,"k":{"\u00fc":31,"\u00f2":31,"\u00f6":31,"\u00e8":31,"\u00eb":31,"\u00ea":31,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"w":27,"y":27,"\u00fd":27,"\u00ff":27,",":36,".":36,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"e":31,"\u00e9":31,"o":31,"\u00f8":31,"\u0153":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"u":31,"\u00fa":31,"\u00fb":31,"\u00f9":31,"-":36,"r":31,":":23,";":23}},"U":{"d":"24,-251r47,0r0,162v0,42,12,56,39,56v26,0,39,-14,39,-56r0,-162r46,0r0,162v0,66,-38,93,-85,93v-48,0,-86,-27,-86,-93r0,-162","w":219,"k":{",":20,".":20,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"V":{"d":"78,0r-75,-251r50,0r51,193r52,-193r48,0r-77,251r-49,0","w":206,"k":{"\u00f6":20,"\u00f4":20,"\u00ee":6,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":23,"\u00e5":23,"\u00e0":23,"\u00e4":23,"\u00e2":23,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":33,".":33,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"a":23,"\u00e6":23,"\u00e1":23,"e":20,"\u00e9":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f2":20,"\u00f5":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"-":27,":":20,";":20,"i":6,"\u0131":6,"\u00ed":6,"\u00ef":6,"\u00ec":6}},"W":{"d":"188,0r-38,-206r-40,206r-54,0r-51,-251r43,0r36,193r38,-193r56,0r38,193r37,-193r42,0r-52,251r-55,0","w":299,"k":{"\u00fc":13,"\u00f6":16,"\u00ea":16,"\u00e4":16,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"y":6,"\u00fd":6,"\u00ff":6,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,"e":16,"\u00e9":16,"\u00eb":16,"\u00e8":16,"o":16,"\u00f8":16,"\u0153":16,"\u00f3":16,"\u00f4":16,"\u00f2":16,"\u00f5":16,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,"-":16,":":20,";":20,"i":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"h":6}},"X":{"d":"152,0r-47,-94r-52,94r-51,0r75,-133r-66,-118r53,0r40,81r46,-81r49,0r-67,118r72,133r-52,0","w":206},"Y":{"d":"77,0r0,-101r-74,-150r50,0r49,100r46,-100r49,0r-74,151r0,100r-46,0","w":200,"k":{"\u00fc":27,"\u00f6":33,"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,",":50,".":50,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f2":33,"\u00f5":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,"-":46,":":27,";":27,"i":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"S":13,"\u0160":13}},"Z":{"d":"13,0r0,-40r99,-175r-96,0r0,-36r150,0r0,38r-100,176r101,0r0,37r-154,0"},"[":{"d":"27,60r0,-322r65,0r0,28r-31,0r0,266r31,0r0,28r-65,0","w":106},"\\":{"d":"67,4r-64,-259r32,0r62,259r-30,0","w":100},"]":{"d":"14,60r0,-28r31,0r0,-266r-31,0r0,-28r66,0r0,322r-66,0","w":106},"^":{"d":"22,-106r71,-145r30,0r71,145r-31,0r-55,-113r-55,113r-31,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0"},"\u2018":{"d":"16,-181r27,-89r35,0r-19,89r-43,0","w":93,"k":{"\u2018":27,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40}},"a":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29"},"b":{"d":"21,-270r45,0r0,111v6,-14,21,-29,48,-29v40,0,64,35,64,95v0,51,-19,96,-65,96v-30,1,-41,-18,-50,-32v0,13,-1,24,-2,29r-42,0xm66,-93v0,35,9,63,35,63v26,0,33,-21,33,-64v0,-37,-9,-62,-34,-62v-24,0,-34,27,-34,63","w":193,"k":{",":13,".":13}},"c":{"d":"144,-40r2,35v-10,4,-26,8,-44,8v-61,0,-87,-43,-87,-96v0,-67,60,-113,129,-88r-3,36v-38,-21,-86,-2,-80,53v-5,49,44,76,83,52","w":153,"k":{",":6,".":6}},"d":{"d":"128,-270r44,0r2,270r-42,0v-2,-4,1,-19,-2,-29v-7,16,-21,32,-50,32v-46,0,-65,-45,-65,-96v0,-60,24,-95,64,-95v28,-1,41,17,49,29r0,-111xm60,-94v0,43,7,64,33,64v26,0,35,-28,35,-63v0,-36,-11,-63,-35,-63v-25,0,-33,25,-33,62","w":193},"e":{"d":"154,-44r2,35v-9,4,-28,12,-55,12v-60,0,-86,-43,-86,-93v0,-55,29,-98,76,-98v42,0,78,30,75,107r-108,0v0,32,12,51,47,51v27,0,41,-8,49,-14xm58,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49","k":{",":13,".":13}},"f":{"d":"35,0r0,-153r-31,0r0,-32r31,0v-1,-50,-5,-87,53,-89v12,0,23,2,32,4r-2,32v-19,-5,-39,-1,-39,21r0,32r34,0r0,32r-34,0r0,153r-44,0","w":119,"k":{"\u201d":9,",":27,".":27}},"g":{"d":"61,-95v0,44,14,62,29,62v28,0,40,-20,40,-62v0,-39,-15,-59,-36,-59v-23,0,-33,21,-33,59xm23,68r3,-39v10,6,32,16,55,16v48,-1,52,-38,48,-76v-7,14,-20,31,-49,31v-26,0,-65,-17,-65,-92v0,-51,18,-96,67,-96v28,-1,39,17,50,31v0,-10,2,-18,2,-28r40,0r-1,166v0,58,-18,99,-86,99v-30,0,-53,-8,-64,-12","w":193,"k":{",":6,".":13}},"h":{"d":"20,0r0,-270r45,0r1,108v8,-12,18,-26,46,-26v83,2,48,113,55,188r-45,0r0,-111v0,-28,-8,-41,-26,-41v-54,0,-24,99,-31,152r-45,0","w":186},"i":{"d":"24,0r0,-185r45,0r0,185r-45,0xm24,-220r0,-44r46,0r0,44r-46,0","w":93},"j":{"d":"24,-185r45,0r0,193v4,62,-23,79,-75,70r1,-34v19,3,29,7,29,-29r0,-200xm24,-220r0,-44r46,0r0,44r-46,0","w":93},"k":{"d":"20,0r0,-270r45,0r1,159r54,-74r48,0r-65,83r71,102r-52,0r-57,-90r0,90r-45,0","k":{"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"l":{"d":"24,0r0,-270r45,0r0,270r-45,0","w":93},"m":{"d":"19,0r-1,-185r44,0v0,10,2,19,2,29v7,-14,21,-32,47,-32v31,0,42,19,47,29v9,-13,23,-29,50,-29v77,-1,47,115,53,188r-45,0r0,-117v0,-23,-6,-35,-23,-35v-53,0,-24,99,-31,152r-44,0r0,-117v0,-23,-7,-35,-24,-35v-52,0,-23,99,-30,152r-45,0","w":280},"n":{"d":"20,0r-1,-185r41,0v1,8,0,21,3,28v6,-11,19,-31,49,-31v83,2,48,113,55,188r-45,0r0,-111v0,-28,-8,-41,-26,-41v-54,0,-24,99,-31,152r-45,0","w":186},"o":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm15,-93v0,-76,44,-95,82,-95v38,0,81,19,81,95v0,78,-43,96,-81,96v-38,0,-82,-18,-82,-96","w":193,"k":{",":13,".":13}},"p":{"d":"21,78r-2,-263r42,0v2,4,0,18,3,28v7,-16,20,-31,49,-31v46,0,65,44,65,95v0,60,-24,96,-64,96v-27,0,-42,-16,-48,-30r0,105r-45,0xm66,-92v0,36,10,62,34,62v25,0,34,-24,34,-61v0,-43,-7,-65,-33,-65v-26,0,-35,29,-35,64","w":193,"k":{",":13,".":13}},"q":{"d":"128,78r-1,-105v-6,14,-21,30,-48,30v-40,0,-64,-36,-64,-96v0,-51,19,-95,65,-95v30,-1,42,17,51,31v0,-13,0,-23,1,-28r42,0v-5,82,-1,177,-2,263r-44,0xm60,-91v0,37,8,61,33,61v24,0,35,-26,35,-62v0,-35,-9,-64,-35,-64v-26,0,-33,22,-33,65","w":193},"r":{"d":"22,0r-2,-185r40,0v1,10,0,24,3,33v5,-15,24,-41,54,-35r0,42v-26,-6,-51,3,-51,43r0,102r-44,0","w":126,"k":{",":36,".":36,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"c":4,"\u00e7":4,"d":4,"g":4,"q":4,"s":4,"\u0161":4,"-":27}},"s":{"d":"13,-6r2,-37v9,6,75,26,75,-6v0,-35,-77,-35,-77,-87v0,-26,25,-52,64,-52v24,0,42,6,46,7r-2,35v-16,-8,-66,-16,-65,10v9,33,84,42,78,84v6,53,-81,65,-121,46","w":146,"k":{",":13,".":13}},"t":{"d":"37,-185r0,-39r44,-13r0,52r37,0r0,32r-37,0r0,96v-3,28,22,30,37,22r0,32v-36,14,-81,4,-81,-48r0,-102r-30,0r0,-32r30,0","w":126},"u":{"d":"167,-185r1,185r-42,0v-1,-8,0,-26,-2,-28v-9,14,-20,31,-49,31v-82,-3,-48,-113,-55,-188r45,0r0,111v0,28,7,40,26,40v24,0,31,-21,31,-45r0,-106r45,0","w":186},"v":{"d":"60,0r-56,-185r46,0r38,143r38,-143r44,0r-57,185r-53,0","w":173,"k":{",":27,".":27}},"w":{"d":"167,0r-34,-144r-32,144r-49,0r-50,-185r46,0r30,144r32,-144r51,0r31,144r30,-144r43,0r-49,185r-49,0","w":266,"k":{",":25,".":25}},"x":{"d":"1,0r56,-100r-52,-85r51,0r29,59r31,-59r46,0r-52,85r56,100r-49,0r-35,-69r-34,69r-47,0","w":166},"y":{"d":"48,-185r38,140r36,-140r43,0r-68,220v-6,36,-44,54,-81,40r2,-34v26,14,43,-9,45,-39r-61,-187r46,0","w":166,"k":{",":25,".":25}},"z":{"d":"10,0r0,-39r79,-113r-76,0r0,-33r121,0r0,38r-78,113r80,0r0,34r-126,0","w":146},"{":{"d":"113,60v-40,3,-69,-3,-69,-45v0,-42,6,-105,-32,-103r0,-25v39,2,32,-62,32,-104v0,-42,29,-48,69,-45r0,25v-51,-10,-35,50,-35,93v0,33,-23,39,-31,44v9,1,31,9,31,44v0,37,-21,99,35,91r0,25","w":119},"|":{"d":"24,90r0,-360r32,0r0,360r-32,0","w":79},"}":{"d":"7,60r0,-25v50,10,34,-50,34,-92v0,-33,24,-39,32,-44v-9,-1,-32,-9,-32,-44v0,-37,21,-99,-34,-92r0,-25v40,-3,69,3,69,45v0,42,-7,106,32,104r0,25v-39,-2,-32,62,-32,103v0,42,-29,48,-69,45","w":119},"~":{"d":"70,-118v24,0,53,24,77,24v14,0,23,-13,31,-26r13,25v-8,12,-21,31,-45,31v-25,0,-52,-24,-77,-24v-14,0,-23,13,-31,26r-13,-25v8,-14,21,-31,45,-31","w":216},"\u00a1":{"d":"84,-111r6,177r-46,0r5,-177r35,0xm88,-185r0,45r-43,0r0,-45r43,0","w":133},"\u00a2":{"d":"96,-40r17,-114v-46,1,-51,93,-17,114xm83,46r7,-46v-43,-10,-62,-48,-62,-93v0,-53,28,-95,90,-95r7,-41r18,0r-7,42v9,1,16,4,21,6r-3,36v-6,-3,-14,-8,-23,-9r-18,122v16,4,35,-2,44,-8r2,35v-16,6,-34,8,-51,8r-7,43r-18,0","w":187},"\u00a3":{"d":"19,0r0,-35r26,0r0,-85r-26,0r0,-28r26,0v-1,-56,1,-103,78,-107v15,0,31,4,45,7r-3,35v-14,-6,-23,-8,-39,-8v-39,0,-40,35,-39,73r56,0r0,28r-56,0r0,85r81,0r0,35r-149,0","w":187},"\u00a5":{"d":"72,0r0,-53r-55,0r0,-26r55,0r0,-28r-55,0r0,-26r43,0r-57,-118r46,0r45,100r44,-100r46,0r-56,118r42,0r0,26r-55,0r0,28r55,0r0,26r-55,0r0,53r-43,0","w":187},"\u0192":{"d":"40,-119r4,-28r33,0v9,-46,11,-108,63,-108v15,0,28,5,33,7r-5,31v-19,-14,-36,-2,-41,29r-6,41r32,0r-4,28r-33,0v-18,76,-7,233,-110,192r4,-32v24,14,36,-4,41,-31r22,-129r-33,0","w":187},"\u00a7":{"d":"150,-244r-3,34v-15,-10,-72,-23,-72,9v0,41,89,42,87,94v0,23,-15,41,-28,53v41,29,25,100,-50,100v-27,0,-49,-9,-58,-13r4,-35v15,12,82,31,82,-9v0,-42,-87,-45,-87,-99v0,-23,21,-41,32,-47v-39,-28,-30,-98,39,-98v26,0,46,7,54,11xm123,-99v0,-22,-26,-35,-45,-45v-22,17,-16,53,13,64r20,11v6,-8,12,-16,12,-30","w":186},"\u00a4":{"d":"7,-57r19,-19v-22,-26,-22,-73,0,-99r-19,-19r18,-18r19,19v28,-22,72,-22,99,0r19,-19r18,18r-19,19v22,27,22,72,0,99r19,19r-18,18r-19,-19v-27,22,-71,22,-99,0r-19,19xm94,-68v32,0,56,-26,56,-58v0,-32,-24,-57,-56,-57v-32,0,-57,25,-57,57v0,32,25,58,57,58","w":187},"'":{"d":"29,-181r0,-89r36,0r0,89r-36,0","w":93},"\u201c":{"d":"31,-181r27,-89r35,0r-19,89r-43,0xm94,-181r28,-89r34,0r-18,89r-44,0","w":186,"k":{"\u2018":13,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40}},"\u00ab":{"d":"124,-19r-38,-74r38,-75r36,0r-35,75r35,74r-36,0xm60,-19r-38,-74r38,-75r36,0r-35,75r35,74r-36,0","w":186},"\u2013":{"d":"0,-86r0,-32r180,0r0,32r-180,0"},"\u00b7":{"d":"19,-102v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-28,-12,-28,-27","w":93},"\u00b6":{"d":"150,43r0,-268r-38,0r0,268r-35,0r0,-163v-30,0,-62,-20,-62,-64v1,-84,91,-65,169,-67r0,294r-34,0","w":216},"\u201d":{"d":"113,-270r43,0r-27,89r-35,0xm49,-270r44,0r-28,89r-34,0","w":186,"k":{" ":13}},"\u00bb":{"d":"126,-168r39,75r-39,74r-36,0r36,-74r-36,-75r36,0xm63,-168r38,75r-38,74r-36,0r35,-74r-35,-75r36,0","w":186},"\u2026":{"d":"39,0r0,-47r43,0r0,47r-43,0xm158,0r0,-47r44,0r0,47r-44,0xm278,0r0,-47r43,0r0,47r-43,0","w":360},"\u00bf":{"d":"16,9v-1,-47,52,-76,50,-121r38,0v7,48,-40,69,-42,108v-3,44,56,42,78,25r2,39v-7,3,-28,9,-54,9v-46,0,-72,-24,-72,-60xm107,-185r0,45r-44,0r0,-45r44,0","w":166},"`":{"d":"-4,-258r42,0r23,52r-28,0","w":79},"\u00b4":{"d":"19,-206r23,-52r42,0r-37,52r-28,0","w":79},"\u00af":{"d":"-10,-219r0,-27r100,0r0,27r-100,0","w":79},"\u00a8":{"d":"-8,-217r0,-40r35,0r0,40r-35,0xm53,-217r0,-40r34,0r0,40r-34,0","w":79},"\u00b8":{"d":"2,73r6,-15v11,6,44,9,44,-9v0,-14,-21,-17,-31,-11v-12,-8,3,-25,5,-38r16,0r-7,22v21,-7,45,5,45,25v0,38,-53,37,-78,26","w":79},"\u2014":{"d":"0,-86r0,-32r360,0r0,32r-360,0","w":360},"\u00c6":{"d":"153,-96r-1,-124r-57,124r58,0xm153,0r0,-60r-73,0r-28,60r-49,0r120,-251r154,0r0,36r-81,0r0,67r77,0r0,37r-77,0r0,74r84,0r0,37r-127,0","w":299},"\u00aa":{"d":"28,-225r-1,-22v8,-4,19,-8,40,-8v65,-3,39,59,48,112r-28,0v-2,-4,0,-11,-3,-14v-13,24,-72,21,-72,-16v0,-30,32,-40,71,-39v1,-14,-5,-21,-22,-22v-14,0,-28,5,-33,9xm60,-161v18,0,24,-14,23,-34v-20,0,-41,4,-41,19v0,10,7,15,18,15","w":126},"\u0141":{"d":"24,0r0,-87r-24,22r0,-34r24,-22r0,-130r47,0r0,88r45,-41r0,33r-45,42r0,92r82,0r0,37r-129,0","w":159,"k":{"T":36,"V":36,"W":27,"y":16,"\u00fd":16,"\u00ff":16,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":46,"\u2019":27}},"\u00d8":{"d":"69,-80r88,-112v-9,-20,-23,-28,-40,-28v-29,0,-53,25,-53,94v0,18,2,34,5,46xm9,-5r28,-35v-13,-21,-20,-49,-20,-86v-1,-124,98,-162,167,-100r26,-32r14,11r-28,36v13,21,21,49,21,85v1,125,-99,164,-168,100r-26,32xm165,-171r-89,111v9,20,24,28,41,28v29,0,52,-25,52,-94v0,-18,-1,-32,-4,-45","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"\u0152":{"d":"198,-37r86,0r0,37r-164,2v-79,0,-103,-62,-103,-127v0,-94,56,-143,160,-126r103,0r0,36r-82,0r0,67r77,0r0,37r-77,0r0,74xm152,-37r0,-178v-63,-17,-86,28,-86,89v0,59,25,108,86,89","w":299},"\u00ba":{"d":"40,-198v0,19,5,36,23,36v18,0,23,-17,23,-36v0,-19,-5,-36,-23,-36v-18,0,-23,17,-23,36xm9,-198v0,-45,29,-57,54,-57v25,0,55,12,55,57v0,45,-30,57,-55,57v-25,0,-54,-12,-54,-57","w":126},"\u00e6":{"d":"158,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49xm36,-139r-3,-36v23,-14,97,-23,109,12v10,-16,26,-25,49,-25v42,0,77,30,74,107r-107,0v0,32,13,51,46,51v27,0,41,-8,49,-14r2,35v-9,4,-28,12,-55,12v-39,1,-57,-15,-68,-36v-21,49,-118,51,-118,-18v0,-53,46,-64,103,-63v1,-23,-6,-43,-31,-43v-22,0,-41,11,-50,18xm84,-27v26,1,35,-28,33,-64v-34,-1,-62,6,-61,35v0,17,11,29,28,29","w":279},"\u0131":{"d":"24,0r0,-185r45,0r0,185r-45,0","w":93},"\u0142":{"d":"28,0r0,-93r-28,30r0,-35r28,-30r0,-142r44,0r0,93r28,-30r0,35r-28,30r0,142r-44,0","w":100},"\u00f8":{"d":"64,-64r59,-76v-5,-10,-13,-17,-26,-17v-38,0,-40,56,-33,93xm15,-3r18,-23v-11,-15,-18,-36,-18,-67v3,-100,75,-113,133,-78r17,-22r13,10r-18,24v11,14,18,35,18,66v-2,103,-75,114,-133,79r-17,21xm130,-121r-60,75v5,10,14,17,27,17v37,0,38,-55,33,-92","w":193,"k":{",":13,".":13}},"\u0153":{"d":"270,-44r2,35v-9,4,-29,12,-56,12v-36,0,-54,-18,-62,-33v-8,21,-33,33,-57,33v-38,0,-82,-18,-82,-96v0,-76,44,-95,82,-95v20,0,44,7,56,33v11,-22,30,-33,54,-33v42,0,77,30,74,107r-107,0v0,32,12,51,47,51v27,0,41,-8,49,-14xm174,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49xm97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64","w":293,"k":{",":13,".":13}},"\u00df":{"d":"20,0r0,-194v0,-55,30,-80,76,-80v48,0,71,29,71,68v1,47,-28,54,-42,63v31,3,52,31,52,66v0,56,-40,92,-95,76r2,-33v27,11,47,-10,47,-41v0,-46,-30,-50,-45,-50r0,-33v13,0,38,-4,38,-45v0,-23,-10,-39,-30,-39v-21,0,-31,15,-31,40r0,202r-43,0","w":193,"k":{",":13,".":13}},"\u00b9":{"d":"55,-102r0,-117r-22,19r-16,-20r41,-32r28,0r0,150r-31,0","w":121},"\u00ac":{"d":"167,-37r0,-76r-150,0r0,-32r182,0r0,108r-32,0","w":216},"\u00b5":{"d":"20,78r0,-263r45,0r0,111v0,28,7,40,26,40v24,0,31,-21,31,-45r0,-106r45,0r1,185r-42,0v-1,-8,0,-26,-2,-28v-9,16,-35,40,-59,27r0,79r-45,0","w":186},"\u2122":{"d":"64,-102r0,-123r-45,0r0,-26r119,0r0,26r-45,0r0,123r-29,0xm310,-102r-1,-114r-42,114r-23,0r-42,-114r0,114r-28,0r0,-149r43,0r39,101r38,-101r44,0r0,149r-28,0","w":360},"\u00d0":{"d":"24,0r0,-114r-24,0r0,-31r24,0r0,-106v112,-8,188,15,186,125v-2,112,-76,135,-186,126xm71,-216r0,71r46,0r0,31r-46,0r0,79v63,5,90,-30,90,-91v0,-61,-27,-95,-90,-90","w":226,"k":{"V":6,"W":3,"Y":20,"\u00dd":20,"\u0178":20,",":27,".":27,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00bd":{"d":"62,12r112,-276r28,0r-112,276r-28,0xm48,-102r0,-117r-21,19r-16,-20r40,-32r29,0r0,150r-32,0xm174,0v-2,-18,2,-30,12,-36v23,-25,49,-50,49,-69v0,-31,-44,-24,-53,-13r-3,-26v8,-4,20,-9,42,-9v36,0,48,18,48,40v1,28,-29,60,-54,87r54,0r0,26r-95,0","w":280},"\u00b1":{"d":"92,-45r0,-53r-75,0r0,-31r75,0r0,-53r32,0r0,53r75,0r0,31r-75,0r0,53r-32,0xm17,0r0,-32r182,0r0,32r-182,0","w":216},"\u00de":{"d":"71,-176r0,82v36,3,58,-7,58,-41v0,-34,-21,-44,-58,-41xm24,0r0,-251r47,0r0,40v64,-5,104,19,104,76v0,57,-39,83,-104,77r0,58r-47,0","w":186},"\u00bc":{"d":"221,-54v-1,-22,2,-49,-1,-69r-40,69r41,0xm221,0r0,-30r-65,0r0,-27r56,-94r39,0r0,97r18,0r0,24r-18,0r0,30r-30,0xm63,12r113,-276r28,0r-113,276r-28,0xm48,-102r0,-117r-21,19r-16,-20r40,-32r29,0r0,150r-32,0","w":280},"\u00f7":{"d":"17,-75r0,-32r182,0r0,32r-182,0xm80,-166v0,-15,13,-27,28,-27v15,0,28,12,28,27v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28xm80,-17v0,-15,13,-27,28,-27v15,0,28,12,28,27v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28","w":216},"\u00a6":{"d":"24,63r0,-126r32,0r0,126r-32,0xm24,-117r0,-126r32,0r0,126r-32,0","w":79},"\u00b0":{"d":"21,-203v0,-28,23,-52,51,-52v28,0,51,24,51,52v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51xm46,-203v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-27,-26,-27v-14,0,-26,13,-26,27","w":144},"\u00fe":{"d":"21,78r0,-348r45,0r0,113v7,-16,21,-31,47,-31v46,0,65,44,65,95v0,60,-24,96,-64,96v-27,0,-42,-16,-48,-30r0,105r-45,0xm66,-92v0,36,10,62,34,62v25,0,34,-24,34,-61v0,-43,-7,-65,-33,-65v-26,0,-35,29,-35,64","w":193,"k":{",":13,".":13}},"\u00be":{"d":"221,-54v-1,-22,2,-49,-1,-69r-40,69r41,0xm221,0r0,-30r-65,0r0,-27r56,-94r39,0r0,97r18,0r0,24r-18,0r0,30r-30,0xm72,12r112,-276r28,0r-112,276r-28,0xm11,-107r2,-24v14,9,64,12,62,-16v-2,-21,-25,-25,-42,-20r0,-25v16,5,42,2,42,-21v0,-25,-38,-19,-57,-11r-2,-24v27,-12,90,-10,90,31v0,28,-23,32,-31,36v15,4,34,9,34,36v0,46,-62,52,-98,38","w":280},"\u00b2":{"d":"13,-102v-2,-18,2,-30,12,-36v23,-25,49,-50,49,-69v0,-31,-44,-24,-53,-13r-3,-26v8,-4,20,-9,42,-9v36,0,48,18,48,40v1,28,-27,62,-54,87r54,0r0,26r-95,0","w":121},"\u00ae":{"d":"174,-53r-38,-59r-15,0r0,59r-28,0r0,-147v50,0,111,-7,111,44v0,25,-14,39,-38,43r39,60r-31,0xm121,-176r0,41v25,-1,55,7,55,-22v0,-26,-32,-18,-55,-19xm15,-126v0,-71,58,-129,129,-129v71,0,129,58,129,129v0,71,-58,130,-129,130v-71,0,-129,-59,-129,-130xm45,-126v0,57,44,103,99,103v55,0,99,-46,99,-103v0,-57,-44,-102,-99,-102v-55,0,-99,45,-99,102","w":288},"\u00f0":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm51,-228r28,-15v-8,-6,-20,-11,-28,-14r29,-17v10,3,21,8,31,15r30,-15r12,13r-27,14v19,17,52,52,52,145v0,87,-43,105,-81,105v-38,0,-82,-18,-82,-96v0,-76,44,-95,78,-95v19,0,28,12,35,16v-5,-21,-23,-49,-34,-58r-31,15","w":193},"\u00d7":{"d":"86,-91r-62,-61r23,-23r61,62r61,-62r23,23r-62,61r62,61r-23,22r-61,-61r-61,61r-23,-22","w":216},"\u00b3":{"d":"11,-107r2,-24v14,9,64,12,62,-16v-2,-21,-25,-25,-42,-20r0,-25v16,5,42,2,42,-21v0,-25,-38,-19,-57,-11r-2,-24v27,-12,90,-10,90,31v0,28,-23,32,-31,36v15,4,34,9,34,36v0,46,-62,52,-98,38","w":121},"\u00a9":{"d":"183,-103r27,0v-4,37,-33,56,-63,56v-47,0,-73,-34,-73,-79v0,-85,125,-111,136,-24r-27,0v-16,-52,-87,-27,-81,24v-8,54,71,76,81,23xm15,-126v0,-71,58,-129,129,-129v71,0,129,58,129,129v0,71,-58,130,-129,130v-71,0,-129,-59,-129,-130xm45,-126v0,57,44,103,99,103v55,0,99,-46,99,-103v0,-57,-44,-102,-99,-102v-55,0,-99,45,-99,102","w":288},"\u00c1":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm89,-263r23,-52r42,0r-37,52r-28,0","w":219},"\u00c2":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm58,-263r33,-52r39,0r32,52r-33,0r-19,-31r-20,31r-32,0","w":219},"\u00c4":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm63,-274r0,-40r34,0r0,40r-34,0xm123,-274r0,-40r35,0r0,40r-35,0","w":219},"\u00c0":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm67,-315r41,0r23,52r-28,0","w":219},"\u00c5":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm75,-300v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39v-21,0,-38,-18,-38,-39xm93,-300v0,11,9,21,20,21v11,0,21,-10,21,-21v0,-11,-10,-20,-21,-20v-11,0,-20,9,-20,20","w":219},"\u00c3":{"d":"76,-96r67,0r-32,-117xm170,0r-17,-60r-87,0r-18,60r-46,0r84,-251r51,0r81,251r-48,0xm77,-267r-21,0v0,-13,7,-41,34,-42v0,0,47,27,52,-2r22,0v0,10,-6,42,-33,42v-18,0,-50,-27,-54,2","w":219},"\u00c7":{"d":"184,-48r2,43v-9,5,-41,11,-63,8r-6,19v21,-7,45,5,45,25v0,38,-53,38,-77,26r5,-15v11,6,44,10,44,-9v0,-22,-31,-6,-37,-17r11,-31v-60,-10,-91,-62,-91,-127v0,-73,39,-129,114,-129v26,0,46,7,55,11r-2,41v-49,-29,-118,-14,-118,77v0,89,65,107,118,78","w":200,"k":{",":6,".":6}},"\u00c9":{"d":"27,0r0,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0xm72,-263r23,-52r42,0r-37,52r-28,0"},"\u00ca":{"d":"27,0r0,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0xm42,-263r33,-52r38,0r32,52r-32,0r-20,-31r-20,31r-31,0"},"\u00cb":{"d":"27,0r0,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0xm46,-274r0,-40r35,0r0,40r-35,0xm107,-274r0,-40r34,0r0,40r-34,0"},"\u00c8":{"d":"27,0r0,-251r132,0r0,36r-86,0r0,67r81,0r0,37r-81,0r0,74r89,0r0,37r-135,0xm50,-315r42,0r23,52r-28,0"},"\u00cd":{"d":"27,0r0,-251r46,0r0,251r-46,0xm29,-263r23,-52r42,0r-37,52r-28,0","w":100},"\u00ce":{"d":"27,0r0,-251r46,0r0,251r-46,0xm-2,-263r33,-52r39,0r32,52r-33,0r-19,-31r-20,31r-32,0","w":100},"\u00cf":{"d":"27,0r0,-251r46,0r0,251r-46,0xm3,-274r0,-40r34,0r0,40r-34,0xm63,-274r0,-40r35,0r0,40r-35,0","w":100},"\u00cc":{"d":"27,0r0,-251r46,0r0,251r-46,0xm6,-315r42,0r23,52r-28,0","w":100},"\u00d1":{"d":"26,0r0,-251r55,0r84,197r0,-197r42,0r0,251r-55,0r-84,-196r0,196r-42,0xm84,-267r-21,0v0,-13,6,-41,33,-42v22,-1,48,28,52,-2r23,0v0,10,-7,42,-34,42v-18,-1,-49,-27,-53,2","w":233,"k":{",":9,".":9}},"\u00d3":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm17,-126v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,90,-48,130,-100,130v-52,0,-100,-40,-100,-130xm95,-263r23,-52r42,0r-37,52r-28,0","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"\u00d4":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm17,-126v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,90,-48,130,-100,130v-52,0,-100,-40,-100,-130xm65,-263r33,-52r38,0r32,52r-32,0r-20,-31r-20,31r-31,0","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"\u00d6":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm17,-126v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,90,-48,130,-100,130v-52,0,-100,-40,-100,-130xm69,-274r0,-40r35,0r0,40r-35,0xm130,-274r0,-40r34,0r0,40r-34,0","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"\u00d2":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm17,-126v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,90,-48,130,-100,130v-52,0,-100,-40,-100,-130xm73,-315r42,0r23,52r-28,0","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"\u00d5":{"d":"64,-126v0,69,24,94,53,94v29,0,52,-25,52,-94v0,-69,-23,-94,-52,-94v-29,0,-53,25,-53,94xm17,-126v0,-90,48,-129,100,-129v52,0,100,39,100,129v0,90,-48,130,-100,130v-52,0,-100,-40,-100,-130xm84,-267r-21,0v0,-13,6,-41,33,-42v22,-1,48,28,52,-2r23,0v0,10,-7,42,-34,42v-18,-1,-49,-27,-53,2","w":233,"k":{"T":16,"V":6,"W":6,"Y":18,"\u00dd":18,"\u0178":18,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":13}},"\u0160":{"d":"21,-8r2,-41v19,15,96,32,92,-20v-4,-50,-105,-49,-97,-117v-6,-66,85,-80,131,-60r-2,39v-19,-12,-85,-20,-82,18v3,30,34,36,54,49v29,18,43,33,43,68v0,74,-88,91,-141,64xm70,-263r-32,-52r33,0r19,31r20,-31r32,0r-33,52r-39,0","k":{",":20,".":20}},"\u00da":{"d":"24,-251r47,0r0,162v0,42,12,56,39,56v26,0,39,-14,39,-56r0,-162r46,0r0,162v0,66,-38,93,-85,93v-48,0,-86,-27,-86,-93r0,-162xm89,-263r23,-52r42,0r-37,52r-28,0","w":219,"k":{",":20,".":20,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00db":{"d":"24,-251r47,0r0,162v0,42,12,56,39,56v26,0,39,-14,39,-56r0,-162r46,0r0,162v0,66,-38,93,-85,93v-48,0,-86,-27,-86,-93r0,-162xm58,-263r33,-52r39,0r32,52r-33,0r-19,-31r-20,31r-32,0","w":219,"k":{",":20,".":20,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00dc":{"d":"24,-251r47,0r0,162v0,42,12,56,39,56v26,0,39,-14,39,-56r0,-162r46,0r0,162v0,66,-38,93,-85,93v-48,0,-86,-27,-86,-93r0,-162xm63,-274r0,-40r34,0r0,40r-34,0xm123,-274r0,-40r35,0r0,40r-35,0","w":219,"k":{",":20,".":20,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00d9":{"d":"24,-251r47,0r0,162v0,42,12,56,39,56v26,0,39,-14,39,-56r0,-162r46,0r0,162v0,66,-38,93,-85,93v-48,0,-86,-27,-86,-93r0,-162xm67,-315r41,0r23,52r-28,0","w":219,"k":{",":20,".":20,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00dd":{"d":"77,0r0,-101r-74,-150r50,0r49,100r46,-100r49,0r-74,151r0,100r-46,0xm79,-263r23,-52r42,0r-37,52r-28,0","w":200,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,",":50,".":50,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f6":33,"\u00f2":33,"\u00f5":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,"-":46,":":27,";":27,"i":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"S":13,"\u0160":13}},"\u0178":{"d":"77,0r0,-101r-74,-150r50,0r49,100r46,-100r49,0r-74,151r0,100r-46,0xm53,-274r0,-40r34,0r0,40r-34,0xm113,-274r0,-40r35,0r0,40r-35,0","w":200,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,",":50,".":50,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f6":33,"\u00f2":33,"\u00f5":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,"-":46,":":27,";":27,"i":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"S":13,"\u0160":13}},"\u017d":{"d":"13,0r0,-40r99,-175r-96,0r0,-36r150,0r0,38r-100,176r101,0r0,37r-154,0xm70,-263r-32,-52r33,0r19,31r20,-31r32,0r-33,52r-39,0"},"\u00e1":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29xm69,-206r23,-52r42,0r-37,52r-28,0"},"\u00e2":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29xm38,-206r33,-52r39,0r32,52r-33,0r-19,-31r-20,31r-32,0"},"\u00e4":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29xm42,-217r0,-40r35,0r0,40r-35,0xm103,-217r0,-40r35,0r0,40r-35,0"},"\u00e0":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29xm46,-258r42,0r23,52r-28,0"},"\u00e5":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29xm59,-239v0,-21,17,-39,38,-39v21,0,39,18,39,39v0,21,-18,38,-39,38v-21,0,-38,-17,-38,-38xm77,-239v0,11,9,20,20,20v11,0,21,-9,21,-20v0,-11,-10,-21,-21,-21v-11,0,-20,10,-20,21"},"\u00e3":{"d":"32,-139r-3,-36v13,-6,31,-13,59,-13v103,-3,61,100,73,188r-40,0v-2,-7,-3,-16,-3,-25v-21,41,-108,37,-108,-26v0,-53,47,-64,107,-63v1,-24,-6,-42,-35,-43v-22,0,-41,11,-50,18xm81,-27v31,1,37,-28,36,-64v-38,-1,-66,7,-65,35v0,17,12,29,29,29xm57,-210r-21,0v0,-13,7,-41,34,-42v0,0,47,27,52,-2r22,0v0,10,-6,42,-33,42v-18,0,-50,-27,-54,2"},"\u00e7":{"d":"144,-40r2,35v-10,4,-27,8,-46,8r-6,19v21,-7,45,5,45,25v0,38,-53,37,-78,26r6,-15v11,6,44,9,44,-9v0,-14,-21,-17,-31,-11v-12,-8,3,-25,5,-37v-49,-8,-70,-47,-70,-94v0,-67,60,-113,129,-88r-3,36v-38,-21,-86,-2,-80,53v-5,49,44,76,83,52","w":153,"k":{",":6,".":6}},"\u00e9":{"d":"154,-44r2,35v-9,4,-28,12,-55,12v-60,0,-86,-43,-86,-93v0,-55,29,-98,76,-98v42,0,78,30,75,107r-108,0v0,32,12,51,47,51v27,0,41,-8,49,-14xm58,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49xm69,-206r23,-52r42,0r-37,52r-28,0","k":{",":13,".":13}},"\u00ea":{"d":"154,-44r2,35v-9,4,-28,12,-55,12v-60,0,-86,-43,-86,-93v0,-55,29,-98,76,-98v42,0,78,30,75,107r-108,0v0,32,12,51,47,51v27,0,41,-8,49,-14xm58,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49xm38,-206r33,-52r39,0r32,52r-33,0r-19,-31r-20,31r-32,0","k":{",":13,".":13}},"\u00eb":{"d":"154,-44r2,35v-9,4,-28,12,-55,12v-60,0,-86,-43,-86,-93v0,-55,29,-98,76,-98v42,0,78,30,75,107r-108,0v0,32,12,51,47,51v27,0,41,-8,49,-14xm58,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49xm42,-217r0,-40r35,0r0,40r-35,0xm103,-217r0,-40r35,0r0,40r-35,0","k":{",":13,".":13}},"\u00e8":{"d":"154,-44r2,35v-9,4,-28,12,-55,12v-60,0,-86,-43,-86,-93v0,-55,29,-98,76,-98v42,0,78,30,75,107r-108,0v0,32,12,51,47,51v27,0,41,-8,49,-14xm58,-109r64,0v0,-33,-11,-49,-31,-49v-23,0,-33,25,-33,49xm46,-258r42,0r23,52r-28,0","k":{",":13,".":13}},"\u00ed":{"d":"24,0r0,-185r45,0r0,185r-45,0xm26,-206r23,-52r41,0r-36,52r-28,0","w":93},"\u00ee":{"d":"24,0r0,-185r45,0r0,185r-45,0xm-5,-206r33,-52r39,0r32,52r-33,0r-20,-31r-19,31r-32,0","w":93},"\u00ef":{"d":"24,0r0,-185r45,0r0,185r-45,0xm-1,-217r0,-40r35,0r0,40r-35,0xm60,-217r0,-40r34,0r0,40r-34,0","w":93},"\u00ec":{"d":"24,0r0,-185r45,0r0,185r-45,0xm3,-258r42,0r23,52r-28,0","w":93},"\u00f1":{"d":"20,0r-1,-185r41,0v1,8,0,21,3,28v6,-11,19,-31,49,-31v83,2,48,113,55,188r-45,0r0,-111v0,-28,-8,-41,-26,-41v-54,0,-24,99,-31,152r-45,0xm60,-210r-20,0v0,-13,6,-41,33,-42v22,-1,48,28,52,-2r23,0v0,10,-7,42,-34,42v-18,-1,-49,-27,-54,2","w":186},"\u00f3":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm15,-93v0,-76,44,-95,82,-95v38,0,81,19,81,95v0,78,-43,96,-81,96v-38,0,-82,-18,-82,-96xm76,-206r23,-52r41,0r-36,52r-28,0","w":193,"k":{",":13,".":13}},"\u00f4":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm15,-93v0,-76,44,-95,82,-95v38,0,81,19,81,95v0,78,-43,96,-81,96v-38,0,-82,-18,-82,-96xm45,-206r33,-52r39,0r32,52r-33,0r-20,-31r-19,31r-32,0","w":193,"k":{",":13,".":13}},"\u00f6":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm15,-93v0,-76,44,-95,82,-95v38,0,81,19,81,95v0,78,-43,96,-81,96v-38,0,-82,-18,-82,-96xm49,-217r0,-40r35,0r0,40r-35,0xm110,-217r0,-40r34,0r0,40r-34,0","w":193,"k":{",":13,".":13}},"\u00f2":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm15,-93v0,-76,44,-95,82,-95v38,0,81,19,81,95v0,78,-43,96,-81,96v-38,0,-82,-18,-82,-96xm53,-258r42,0r23,52r-28,0","w":193,"k":{",":13,".":13}},"\u00f5":{"d":"97,-157v-51,1,-50,127,0,128v29,0,35,-33,35,-64v0,-31,-6,-64,-35,-64xm15,-93v0,-76,44,-95,82,-95v38,0,81,19,81,95v0,78,-43,96,-81,96v-38,0,-82,-18,-82,-96xm64,-210r-21,0v0,-13,7,-41,34,-42v0,0,47,27,52,-2r22,0v0,10,-7,42,-34,42v-18,-1,-49,-27,-53,2","w":193,"k":{",":13,".":13}},"\u0161":{"d":"13,-6r2,-37v9,6,75,26,75,-6v0,-35,-77,-35,-77,-87v0,-26,25,-52,64,-52v24,0,42,6,46,7r-2,35v-16,-8,-66,-16,-65,10v9,33,84,42,78,84v6,53,-81,65,-121,46xm54,-206r-32,-52r32,0r20,32r20,-32r31,0r-32,52r-39,0","w":146,"k":{",":13,".":13}},"\u00fa":{"d":"167,-185r1,185r-42,0v-1,-8,0,-26,-2,-28v-9,14,-20,31,-49,31v-82,-3,-48,-113,-55,-188r45,0r0,111v0,28,7,40,26,40v24,0,31,-21,31,-45r0,-106r45,0xm72,-206r23,-52r42,0r-37,52r-28,0","w":186},"\u00fb":{"d":"167,-185r1,185r-42,0v-1,-8,0,-26,-2,-28v-9,14,-20,31,-49,31v-82,-3,-48,-113,-55,-188r45,0r0,111v0,28,7,40,26,40v24,0,31,-21,31,-45r0,-106r45,0xm42,-206r33,-52r38,0r32,52r-32,0r-20,-31r-20,31r-31,0","w":186},"\u00fc":{"d":"167,-185r1,185r-42,0v-1,-8,0,-26,-2,-28v-9,14,-20,31,-49,31v-82,-3,-48,-113,-55,-188r45,0r0,111v0,28,7,40,26,40v24,0,31,-21,31,-45r0,-106r45,0xm46,-217r0,-40r35,0r0,40r-35,0xm107,-217r0,-40r34,0r0,40r-34,0","w":186},"\u00f9":{"d":"167,-185r1,185r-42,0v-1,-8,0,-26,-2,-28v-9,14,-20,31,-49,31v-82,-3,-48,-113,-55,-188r45,0r0,111v0,28,7,40,26,40v24,0,31,-21,31,-45r0,-106r45,0xm50,-258r42,0r23,52r-28,0","w":186},"\u00fd":{"d":"48,-185r38,140r36,-140r43,0r-68,220v-6,36,-44,54,-81,40r2,-34v26,14,43,-9,45,-39r-61,-187r46,0xm62,-206r23,-52r42,0r-37,52r-28,0","w":166,"k":{",":25,".":25}},"\u00ff":{"d":"48,-185r38,140r36,-140r43,0r-68,220v-6,36,-44,54,-81,40r2,-34v26,14,43,-9,45,-39r-61,-187r46,0xm36,-217r0,-40r35,0r0,40r-35,0xm96,-217r0,-40r35,0r0,40r-35,0","w":166,"k":{",":25,".":25}},"\u017e":{"d":"10,0r0,-39r79,-113r-76,0r0,-33r121,0r0,38r-78,113r80,0r0,34r-126,0xm54,-206r-32,-52r32,0r20,32r20,-32r31,0r-32,52r-39,0","w":146},"\u00a0":{"w":93},"\u00ad":{"d":"15,-84r0,-37r83,0r0,37r-83,0","w":113}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1991, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Frutiger is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * FrutigerLTStd-ExtraBlackCn
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":200,"face":{"font-family":"FrutigerLTStd-ExtraBlackCn","font-weight":900,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 9 6 3 5 4 3 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-12 -345 360 90","underline-thickness":"18","underline-position":"-18","stemh":"44","stemv":"65","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u201c":13,"\u2018":13,"T":13,"V":13,"W":13,"Y":13,"\u00dd":13,"\u0178":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"38,-251r64,0r-9,166r-47,0xm41,0r0,-58r58,0r0,58r-58,0","w":139},"\"":{"d":"109,-173r0,-97r48,0r0,97r-48,0xm36,-173r0,-97r48,0r0,97r-48,0","w":192},"#":{"d":"95,0r9,-67r-32,0r-9,67r-38,0r9,-67r-29,0r0,-38r34,0r6,-42r-30,0r0,-38r35,0r10,-66r38,0r-9,66r31,0r9,-66r38,0r-9,66r25,0r0,38r-30,0r-6,42r24,0r0,38r-29,0r-9,67r-38,0xm109,-105r6,-42r-31,0r-7,42r32,0","w":187},"$":{"d":"84,36r0,-32v-22,0,-52,-4,-71,-10r5,-50v24,11,47,15,66,15r0,-62v-40,-11,-79,-27,-78,-75v0,-47,29,-74,78,-78r0,-31r17,0r0,31v19,0,49,4,63,11r-3,48v-13,-10,-35,-16,-60,-16r0,58v44,10,80,28,80,81v0,44,-29,75,-80,78r0,32r-17,0xm101,-99r0,58v14,-1,24,-11,24,-28v0,-18,-8,-26,-24,-30xm84,-159r0,-54v-12,1,-24,10,-24,28v0,17,12,23,24,26","w":187},"%":{"d":"182,-70v0,-37,12,-74,56,-74v44,0,55,37,55,74v0,38,-11,74,-55,74v-44,0,-56,-36,-56,-74xm252,-70v0,-25,-2,-42,-14,-42v-11,0,-15,17,-15,42v0,25,4,42,15,42v12,0,14,-17,14,-42xm14,-181v0,-37,11,-75,55,-75v44,0,56,38,56,75v0,38,-12,74,-56,74v-44,0,-55,-36,-55,-74xm84,-181v0,-25,-3,-42,-15,-42v-11,0,-14,17,-14,42v0,25,3,41,14,41v12,0,15,-16,15,-41xm79,12r114,-276r35,0r-114,276r-35,0","w":306},"&":{"d":"181,0r-14,-16v-11,11,-33,20,-63,20v-91,0,-122,-109,-45,-145v-40,-38,-46,-115,53,-115v89,0,97,80,39,118r-7,6r30,36v5,-8,11,-26,10,-42r57,0v2,37,-19,71,-34,85r41,53r-67,0xm87,-197v0,9,17,40,26,31v20,-10,34,-52,-1,-54v-15,0,-25,8,-25,23xm138,-51r-44,-53v-23,10,-21,64,16,64v12,0,21,-5,28,-11","w":259},"\u2019":{"d":"8,-173r20,-97r57,0r-30,97r-47,0","w":93,"k":{"\u201d":13,"\u2019":19,"d":20,"s":13,"\u0161":13}},"(":{"d":"65,-272r48,0v-13,27,-44,81,-44,161v0,80,31,134,44,161r-48,0v-16,-24,-51,-83,-51,-161v0,-78,35,-137,51,-161","w":119},")":{"d":"55,50r-48,0v13,-27,43,-81,43,-161v0,-80,-30,-134,-43,-161r48,0v16,24,51,83,51,161v0,78,-35,137,-51,161","w":119},"*":{"d":"26,-202r14,-43r43,24r-9,-49r46,0r-9,49r42,-24r14,43r-47,7r34,33r-37,27r-20,-44r-23,44r-36,-27r35,-33","w":192},"+":{"d":"17,-68r0,-46r68,0r0,-68r46,0r0,68r68,0r0,46r-68,0r0,68r-46,0r0,-68r-68,0","w":216},",":{"d":"9,40r19,-98r58,0r-31,98r-46,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"14,-80r0,-49r93,0r0,49r-93,0","w":120},".":{"d":"18,0r0,-58r58,0r0,58r-58,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"4,4r58,-260r41,0r-58,260r-41,0","w":106},"0":{"d":"70,-126v0,70,9,84,24,84v15,0,23,-14,23,-84v0,-70,-8,-83,-23,-83v-15,0,-24,13,-24,83xm8,-126v0,-77,23,-130,86,-130v63,0,85,53,85,130v0,75,-19,130,-85,130v-66,0,-86,-55,-86,-130","w":187},"1":{"d":"74,0r0,-178r-33,32r-29,-46r76,-59r51,0r0,251r-65,0","w":187},"2":{"d":"14,0r0,-50v31,-27,89,-83,91,-124v2,-46,-67,-30,-83,-11r-4,-55v48,-26,160,-26,153,55v-5,57,-66,115,-85,137r88,0r0,48r-160,0","w":187},"3":{"d":"48,-106r0,-45v29,1,59,0,59,-27v0,-39,-61,-29,-86,-16r-3,-49v59,-22,153,-24,154,52v1,36,-30,54,-51,59v18,3,53,12,53,58v0,51,-39,78,-96,78v-37,0,-55,-7,-65,-11r2,-51v16,13,93,24,93,-17v0,-29,-28,-33,-60,-31","w":187},"4":{"d":"95,0r0,-46r-91,0r0,-58r83,-147r69,0r0,160r27,0r0,45r-27,0r0,46r-61,0xm95,-91r0,-97r-50,97r50,0","w":187},"5":{"d":"13,-8r2,-49v22,15,99,20,92,-26v4,-44,-62,-43,-89,-32r0,-136r145,0r0,47r-89,0r0,41v55,-14,100,23,100,77v0,89,-103,104,-161,78","w":187},"6":{"d":"166,-246r-4,49v-5,-3,-20,-12,-40,-12v-45,-1,-54,45,-51,65v43,-44,108,-6,108,68v0,47,-31,80,-79,80v-74,0,-91,-62,-91,-122v0,-54,13,-138,103,-138v24,0,45,5,54,10xm73,-76v0,22,7,36,21,36v15,0,21,-16,21,-38v0,-22,-4,-36,-20,-36v-17,0,-22,16,-22,38","w":187},"7":{"d":"29,0r82,-202r-96,0r0,-49r157,0r0,56r-73,195r-70,0","w":187},"8":{"d":"93,4v-90,0,-121,-102,-42,-133v-24,-10,-38,-29,-38,-60v0,-37,24,-67,81,-67v90,0,99,106,36,125v17,5,51,17,51,58v0,55,-38,77,-88,77xm92,-212v-33,3,-22,58,3,62v21,-7,27,-61,-3,-62xm68,-70v0,20,11,30,25,30v41,0,21,-67,-4,-69v-11,6,-21,17,-21,39","w":187},"9":{"d":"21,-6r4,-48v5,3,20,12,40,12v45,1,54,-46,51,-66v-42,45,-107,8,-107,-67v0,-47,30,-81,78,-81v74,0,92,63,92,123v0,54,-14,137,-104,137v-24,0,-45,-5,-54,-10xm114,-175v0,-22,-7,-37,-21,-37v-15,0,-21,16,-21,38v0,22,5,37,21,37v17,0,21,-16,21,-38","w":187},":":{"d":"18,-130r0,-58r58,0r0,58r-58,0xm18,0r0,-58r58,0r0,58r-58,0","w":93,"k":{" ":13}},";":{"d":"9,40r19,-98r58,0r-31,98r-46,0xm24,-130r0,-58r58,0r0,58r-58,0","w":93,"k":{" ":13}},"<":{"d":"199,-185r0,44r-123,50r123,50r0,44r-182,-75r0,-38","w":216},"=":{"d":"17,-110r0,-45r182,0r0,45r-182,0xm17,-27r0,-45r182,0r0,45r-182,0","w":216},">":{"d":"17,3r0,-44r123,-50r-123,-50r0,-44r182,75r0,38","w":216},"?":{"d":"108,-84r-55,0v-3,-44,35,-58,36,-93v2,-41,-60,-29,-77,-17r-2,-51v49,-18,151,-20,147,55v-3,53,-52,70,-49,106xm52,0r0,-58r57,0r0,58r-57,0","w":166},"@":{"d":"145,-158v-43,-1,-47,74,-4,74v21,0,34,-17,34,-40v0,-19,-12,-34,-30,-34xm221,-49r36,0v-25,35,-61,53,-109,53v-79,0,-135,-54,-135,-130v0,-74,57,-130,137,-130v67,0,125,35,125,111v0,72,-68,95,-91,95v-15,1,-17,-8,-20,-18v-32,38,-90,10,-90,-48v0,-69,72,-100,110,-55r3,-17r34,0r-16,95v0,4,2,7,6,7v13,0,30,-16,30,-57v0,-52,-29,-79,-93,-79v-57,0,-98,42,-98,97v0,61,40,95,98,95v35,0,58,-8,73,-19","w":288},"A":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0","w":240},"B":{"d":"87,-47v27,2,49,-3,49,-29v0,-28,-21,-31,-49,-29r0,58xm23,0r0,-251v73,-1,174,-11,174,59v0,41,-24,53,-47,62v31,5,51,25,51,59v2,86,-96,70,-178,71xm87,-151v25,1,44,-1,45,-28v0,-26,-20,-28,-45,-27r0,55","w":213,"k":{",":9,".":9}},"C":{"d":"199,-64r3,59v-99,28,-188,-9,-187,-122v0,-74,43,-129,125,-129v33,0,55,9,61,12r-4,55v-8,-5,-28,-14,-49,-14v-43,0,-63,28,-63,77v0,43,24,76,66,76v24,0,42,-10,48,-14","w":213},"D":{"d":"23,0r0,-251r97,0v74,0,115,49,115,124v0,87,-46,127,-126,127r-86,0xm90,-202r0,154v51,4,73,-22,73,-77v0,-67,-30,-78,-73,-77","w":246,"k":{"W":-4,"Y":6,"\u00dd":6,"\u0178":6,",":9,".":9}},"E":{"d":"23,0r0,-251r154,0r0,49r-88,0r0,49r83,0r0,49r-83,0r0,54r92,0r0,50r-158,0","w":193},"F":{"d":"23,0r0,-251r148,0r0,49r-82,0r0,52r78,0r0,49r-78,0r0,101r-66,0","w":180,"k":{"\u00e3":6,"\u00e0":6,"\u00e4":6,",":27,".":3,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e5":6,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"o":-4,"\u00f8":-4,"\u0153":-4,"\u00f3":-4,"\u00f4":-4,"\u00f6":-4,"\u00f2":-4,"\u00f5":-4}},"G":{"d":"129,-99r0,-46r98,0r0,135v-14,7,-44,14,-76,14v-77,0,-136,-44,-136,-128v0,-76,45,-132,139,-132v33,0,55,6,65,10r-3,54v-13,-8,-32,-14,-55,-14v-52,0,-76,33,-76,82v1,58,32,88,78,73r0,-48r-34,0","w":246},"H":{"d":"143,0r0,-102r-53,0r0,102r-67,0r0,-251r67,0r0,96r53,0r0,-96r68,0r0,251r-68,0","w":233},"I":{"d":"23,0r0,-251r67,0r0,251r-67,0","w":113},"J":{"d":"5,-3r2,-54v24,14,49,2,49,-33r0,-161r68,0v-4,116,35,299,-119,248","w":146,"k":{",":9,".":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"K":{"d":"147,0r-57,-113r0,113r-67,0r0,-251r67,0r1,102r55,-102r75,0r-72,117r77,134r-79,0","w":226,"k":{"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6}},"L":{"d":"23,0r0,-251r67,0r0,200r83,0r0,51r-150,0","w":180,"k":{"T":27,"V":27,"W":20,"y":20,"\u00fd":20,"\u00ff":20,"Y":38,"\u00dd":38,"\u0178":38,"\u201d":33,"\u2019":27}},"M":{"d":"133,0r-51,-191r0,191r-59,0r0,-251r99,0r35,157r36,-157r98,0r0,251r-61,0r-1,-191r-54,191r-42,0","w":313},"N":{"d":"146,0r-64,-174r-2,0r0,174r-59,0r0,-251r79,0r66,173r0,-173r59,0r0,251r-79,0","w":246},"O":{"d":"15,-126v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,93,-56,130,-111,130v-55,0,-112,-37,-112,-130xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"P":{"d":"90,-88r0,88r-67,0r0,-251v88,0,176,-13,175,83v-1,61,-43,86,-108,80xm87,-136v26,3,43,-8,44,-33v0,-27,-16,-36,-44,-34r0,67","w":206,"k":{"\u00e4":9,",":33,".":33,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6}},"Q":{"d":"161,50v-12,-15,-20,-34,-34,-46v-55,0,-112,-37,-112,-130v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,60,-23,98,-55,116r52,60r-74,0xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81","w":253,"k":{",":9,".":9}},"R":{"d":"87,-147v26,2,47,-3,48,-27v2,-24,-20,-32,-48,-29r0,56xm141,0r-19,-71v-8,-26,-16,-27,-32,-27r0,98r-67,0r0,-251v80,1,180,-16,180,67v0,38,-29,51,-49,59v33,7,43,88,57,125r-70,0","w":219,"k":{"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"19,-5r4,-55v12,12,99,29,92,-12v2,-22,-27,-27,-46,-35v-41,-17,-54,-38,-54,-74v-2,-71,88,-90,155,-65r-3,50v-19,-12,-81,-24,-84,11v-2,21,40,33,59,42v23,11,43,27,43,64v0,55,-40,83,-99,83v-30,0,-54,-6,-67,-9","k":{",":9,".":9}},"T":{"d":"59,0r0,-200r-54,0r0,-51r176,0r0,51r-54,0r0,200r-68,0","w":186,"k":{"\u00fc":20,"\u00f2":13,"\u00f6":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"w":20,"y":20,"\u00fd":20,"\u00ff":20,",":27,".":27,"a":13,"\u00e6":13,"\u00e1":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"e":13,"\u00e9":13,"r":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,":":6,"-":27,";":6}},"U":{"d":"87,-251r0,159v-1,28,7,47,30,47v23,0,29,-19,29,-47r0,-159r66,0r0,157v0,73,-42,98,-95,98v-53,0,-96,-25,-96,-98r0,-157r66,0","w":233,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"V":{"d":"77,0r-75,-251r72,0r41,180r41,-180r69,0r-75,251r-73,0","w":226,"k":{"\u00f6":13,"\u00f4":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":27,".":27,"a":20,"\u00e6":20,"\u00e1":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"e":13,"\u00e9":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":13,"-":20,";":13}},"W":{"d":"185,0r-27,-194r-27,194r-79,0r-50,-251r64,0r27,176r26,-176r79,0r28,176r27,-176r58,0r-46,251r-80,0","w":313,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":9,",":13,".":13,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"-":9}},"X":{"d":"148,0r-36,-86r-38,86r-72,0r71,-133r-63,-118r76,0r30,74r31,-74r72,0r-65,118r71,133r-77,0","w":226},"Y":{"d":"76,0r0,-91r-76,-160r77,0r35,96r33,-96r75,0r-76,160r0,91r-68,0","w":219,"k":{"\u00fc":11,"\u00f6":23,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":33,".":33,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f2":23,"\u00f5":23,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"u":11,"\u00fa":11,"\u00fb":11,"\u00f9":11,":":20,"-":33,";":20,"S":6,"\u0160":6}},"Z":{"d":"10,0r0,-56r97,-146r-94,0r0,-49r169,0r0,53r-100,148r101,0r0,50r-173,0","w":193},"[":{"d":"27,-272r84,0r0,41r-34,0r0,240r34,0r0,41r-84,0r0,-322","w":119},"\\":{"d":"62,4r-58,-260r41,0r58,260r-41,0","w":106},"]":{"d":"93,50r-84,0r0,-41r34,0r0,-240r-34,0r0,-41r84,0r0,322","w":119},"^":{"d":"25,-120r62,-131r42,0r62,131r-44,0r-39,-82r-39,82r-44,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"8,-173r31,-97r46,0r-19,97r-58,0","w":93,"k":{"\u2018":19,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33}},"a":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23"},"b":{"d":"17,0r1,-270r65,0r-1,110v13,-22,27,-32,52,-32v47,0,67,50,67,94v0,57,-21,101,-70,101v-20,0,-35,-10,-51,-33v0,10,-1,20,-2,30r-61,0xm133,-95v0,-31,-6,-53,-25,-53v-16,0,-25,22,-25,53v0,31,9,53,25,53v19,0,25,-22,25,-53","w":213,"k":{",":6,".":6}},"c":{"d":"157,-183r-3,47v-30,-16,-74,-9,-74,42v0,28,9,50,41,50v16,0,32,-6,36,-8r2,47v-10,5,-37,9,-52,9v-68,0,-94,-47,-94,-98v0,-51,26,-98,94,-98v27,0,42,6,50,9","w":166},"d":{"d":"195,-270r2,270r-62,0v-2,-9,0,-22,-3,-30v-43,73,-120,17,-120,-68v0,-44,20,-94,67,-94v26,-1,38,12,53,32v-4,-30,-1,-75,-2,-110r65,0xm80,-95v0,31,6,53,25,53v16,0,25,-22,25,-53v0,-31,-9,-53,-25,-53v-19,0,-25,22,-25,53","w":213},"e":{"d":"187,-76r-113,0v5,53,66,42,101,25r2,45v-15,5,-40,10,-66,10v-76,0,-98,-51,-98,-99v0,-51,30,-97,87,-97v65,0,91,52,87,116xm72,-110r56,0v1,-26,-5,-43,-26,-42v-18,0,-30,16,-30,42","k":{",":6,".":6}},"f":{"d":"37,0r0,-144r-33,0r0,-44r33,0v-5,-55,14,-86,62,-86v22,0,35,3,42,4r-1,46v-22,-11,-45,3,-38,36r35,0r0,44r-35,0r0,144r-65,0","w":140,"k":{"\u2019":-6,",":13,".":13}},"g":{"d":"23,67r2,-51v12,7,30,17,58,17v43,1,55,-30,50,-70v-9,24,-27,37,-50,37v-51,0,-71,-41,-71,-100v0,-48,26,-92,70,-92v29,-1,42,19,52,35v0,-9,1,-22,2,-31r61,0v-4,48,-1,113,-2,165v0,66,-29,103,-102,103v-28,0,-60,-9,-70,-13xm130,-95v0,-32,-8,-50,-26,-50v-19,0,-24,20,-24,47v0,32,4,54,25,54v22,0,25,-21,25,-51","w":213},"h":{"d":"18,0r0,-270r65,0r-1,106v26,-47,107,-35,107,33r0,131r-65,0r0,-113v0,-18,-6,-26,-18,-26v-16,0,-23,17,-23,36r0,103r-65,0","w":206},"i":{"d":"21,0r0,-188r65,0r0,188r-65,0xm21,-216r0,-54r65,0r0,54r-65,0","w":106},"j":{"d":"21,5r0,-193r65,0r0,192v0,46,-12,76,-64,76v-15,0,-25,-2,-32,-5r2,-42v16,6,29,-1,29,-28xm21,-216r0,-54r65,0r0,54r-65,0","w":106},"k":{"d":"126,0r-40,-88r0,88r-65,0r0,-270r65,0r0,158r43,-76r65,0r-53,86r57,102r-72,0"},"l":{"d":"21,0r0,-270r65,0r0,270r-65,0","w":106},"m":{"d":"18,0r-2,-188r61,0v2,7,-1,25,2,32v4,-10,16,-36,53,-36v20,0,39,6,51,31v22,-45,111,-45,111,26r0,135r-64,0r0,-113v0,-18,-6,-26,-19,-26v-19,0,-22,17,-22,31r0,108r-65,0r0,-113v0,-18,-6,-26,-18,-26v-16,0,-23,17,-23,36r0,103r-65,0","w":312},"n":{"d":"18,0r-2,-188r61,0v2,7,-1,25,2,32v13,-51,110,-48,110,25r0,131r-65,0r0,-113v0,-18,-6,-26,-18,-26v-16,0,-23,17,-23,36r0,103r-65,0","w":206},"o":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm13,-94v0,-51,26,-98,94,-98v68,0,93,47,93,98v0,51,-25,98,-93,98v-68,0,-94,-47,-94,-98","w":213,"k":{",":6,".":6,"x":4}},"p":{"d":"18,78r-2,-266r62,0v2,8,0,22,3,29v43,-73,120,-17,120,68v0,44,-20,94,-67,94v-26,1,-38,-12,-53,-32v3,29,2,73,2,107r-65,0xm83,-94v0,31,9,53,25,53v19,0,25,-22,25,-53v0,-31,-6,-53,-23,-53v-17,0,-27,22,-27,53","w":213},"q":{"d":"130,78r1,-107v-13,22,-27,32,-52,32v-47,0,-67,-50,-67,-94v0,-57,21,-101,70,-101v20,0,35,10,51,33v0,-10,1,-20,2,-29r62,0v-5,78,-1,182,-2,266r-65,0xm80,-94v0,31,6,53,25,53v16,0,25,-22,25,-53v0,-32,-10,-53,-27,-53v-18,0,-23,21,-23,53","w":213},"r":{"d":"18,0r-2,-188r61,0v2,7,-1,25,2,32v4,-17,25,-42,59,-35r0,57v-30,-8,-55,7,-55,41r0,93r-65,0","w":146,"k":{",":33,".":33,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"c":6,"\u00e7":6,"d":4,"g":4,"q":4}},"s":{"d":"12,-4r2,-50v8,8,71,24,75,0v2,-10,-28,-18,-40,-23v-67,-26,-49,-118,39,-115v19,0,38,4,52,9r-2,47v-15,-8,-63,-24,-69,2v17,27,81,20,81,77v0,39,-26,61,-81,61v-21,0,-47,-4,-57,-8","w":159,"k":{",":6,".":6}},"t":{"d":"5,-144r0,-44r32,0r0,-39r65,-20r0,59r36,0r0,44r-36,0v5,39,-19,118,36,100r2,44v-42,11,-103,2,-103,-51r0,-93r-32,0","w":146},"u":{"d":"189,-188r2,188r-61,0v-2,-7,1,-24,-2,-31v-13,49,-110,48,-110,-25r0,-132r65,0r0,113v0,18,5,27,18,27v19,0,23,-17,23,-31r0,-109r65,0","w":206},"v":{"d":"61,0r-59,-188r68,0r33,129r32,-129r63,0r-60,188r-77,0","k":{",":27,".":27}},"w":{"d":"178,0r-27,-134r-27,134r-71,0r-51,-188r66,0r25,130r23,-130r74,0r23,130r23,-130r62,0r-50,188r-70,0","w":299,"k":{",":20,".":20}},"x":{"d":"122,0r-27,-59r-28,59r-67,0r58,-100r-53,-88r72,0r23,51r24,-51r66,0r-53,88r57,100r-72,0","w":193,"k":{"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4}},"y":{"d":"2,-188r68,0r34,120r31,-120r63,0r-70,210v-5,44,-59,70,-107,52r2,-47v23,9,50,-3,48,-27","k":{",":27,".":27}},"z":{"d":"10,0r0,-54r70,-85r-68,0r0,-49r136,0r0,53r-69,87r71,0r0,48r-140,0","w":159},"{":{"d":"129,-272r0,32v-22,-3,-43,6,-38,23r0,66v0,32,-26,39,-41,40v15,1,41,4,41,43v0,38,-22,94,38,86r0,32v-47,2,-87,0,-87,-49r0,-69v0,-24,-23,-27,-31,-27r0,-32v8,0,31,-2,31,-24r0,-72v2,-48,40,-52,87,-49","w":140},"|":{"d":"17,90r0,-360r46,0r0,360r-46,0","w":79},"}":{"d":"11,50r0,-32v22,3,43,-6,38,-23r0,-66v0,-32,26,-39,41,-40v-15,-1,-41,-3,-41,-42v0,-38,22,-95,-38,-87r0,-32v47,-2,87,0,87,49r0,70v0,24,23,26,31,26r0,32v-8,0,-31,2,-31,24r0,72v-2,48,-40,52,-87,49","w":140},"~":{"d":"178,-127r13,39v-8,15,-21,31,-45,31v-29,0,-54,-23,-77,-23v-14,0,-23,13,-31,25r-13,-39v8,-15,21,-31,45,-31v29,0,54,23,77,23v14,0,23,-13,31,-25","w":216},"\u00a1":{"d":"38,64r8,-167r47,0r9,167r-64,0xm41,-130r0,-58r58,0r0,58r-58,0","w":139},"\u00a2":{"d":"105,-50r14,-93v-33,0,-45,75,-14,93xm91,47r7,-43v-109,-14,-106,-199,16,-196v5,0,9,0,12,1r6,-42r21,0r-6,44v8,2,14,5,18,6r-4,47v-5,-2,-12,-6,-21,-7r-14,99v16,1,35,-6,39,-8r1,47v-9,4,-33,8,-48,9r-6,43r-21,0","w":187},"\u00a3":{"d":"12,0r0,-47r23,0r0,-67r-23,0r0,-35r23,0v-1,-54,4,-103,94,-107v15,0,30,3,45,5r-3,47v-9,-1,-21,-5,-35,-5v-37,0,-38,28,-37,60r52,0r0,35r-52,0r0,67r77,0r0,47r-164,0","w":187},"\u00a5":{"d":"65,0r0,-51r-54,0r0,-33r54,0v1,-12,-4,-18,-7,-26r-47,0r0,-33r35,0r-42,-108r60,0r32,96r29,-96r59,0r-42,108r34,0r0,33r-46,0v-3,9,-9,14,-8,26r54,0r0,33r-54,0r0,51r-57,0","w":187},"\u0192":{"d":"28,-104r1,-45r38,0v10,-49,9,-107,72,-107v17,0,30,6,40,9r-6,41v-16,-14,-34,-6,-38,22r-5,35r31,0r-1,45r-38,0v-13,68,-13,187,-86,184v-17,0,-32,-7,-40,-11r6,-41v23,15,35,11,42,-33r16,-99r-32,0","w":187},"\u00a7":{"d":"20,35r4,-46v12,6,39,16,53,16v15,0,26,-6,26,-19v4,-16,-32,-28,-47,-37v-18,-10,-40,-27,-40,-54v0,-30,18,-40,32,-48v-10,-9,-25,-21,-25,-46v1,-65,92,-64,135,-45r-5,45v-14,-5,-30,-13,-48,-13v-30,2,-33,27,0,38v33,11,73,40,66,68v0,18,-7,38,-26,52v45,34,13,103,-59,103v-30,0,-57,-8,-66,-14xm113,-73v22,-30,-11,-54,-36,-64v-15,17,-8,38,12,50","w":187},"\u00a4":{"d":"8,-61r19,-19v-21,-25,-20,-66,0,-92r-19,-18r21,-21r19,18v27,-18,65,-19,92,0r18,-18r21,21r-19,18v21,26,20,67,0,92r19,19r-21,21r-18,-18v-27,18,-65,19,-92,0r-19,18xm55,-126v0,23,16,41,39,41v23,0,38,-18,38,-41v0,-23,-15,-40,-38,-40v-23,0,-39,17,-39,40","w":187},"'":{"d":"23,-173r0,-97r48,0r0,97r-48,0","w":93},"\u201c":{"d":"21,-173r30,-97r47,0r-20,97r-57,0xm95,-173r30,-97r47,0r-19,97r-58,0","w":192,"k":{"\u2018":13,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40}},"\u00ab":{"d":"121,-168r51,0r-32,74r32,75r-51,0r-35,-75xm47,-168r51,0r-32,74r32,75r-51,0r-35,-75","w":193},"\u2013":{"d":"0,-82r0,-44r180,0r0,44r-180,0","w":180},"\u00b7":{"d":"14,-95v0,-18,15,-34,33,-34v18,0,33,16,33,34v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33","w":93},"\u00b6":{"d":"158,44r0,-263r-34,0r0,263r-44,0r0,-169v-35,0,-60,-20,-60,-63v0,-85,104,-60,182,-63r0,295r-44,0","w":226},"\u201d":{"d":"95,-173r19,-97r58,0r-30,97r-47,0xm21,-173r19,-97r58,0r-30,97r-47,0","w":192,"k":{" ":13}},"\u00bb":{"d":"95,-19r32,-75r-32,-74r51,0r35,74r-35,75r-51,0xm22,-19r32,-75r-32,-74r51,0r35,74r-35,75r-51,0","w":193},"\u2026":{"d":"31,0r0,-58r58,0r0,58r-58,0xm151,0r0,-58r58,0r0,58r-58,0xm271,0r0,-58r58,0r0,58r-58,0","w":360},"\u00bf":{"d":"58,-104r56,0v4,44,-36,58,-37,93v-2,41,60,29,78,17r2,52v-50,17,-151,20,-147,-55v3,-53,52,-70,48,-107xm57,-130r0,-58r58,0r0,58r-58,0","w":166},"`":{"d":"32,-214r-36,-52r56,0r17,52r-37,0","w":87},"\u00b4":{"d":"35,-266r56,0r-36,52r-37,0","w":87},"\u00af":{"d":"-12,-225r0,-35r111,0r0,35r-111,0","w":87},"\u00a8":{"d":"-11,-216r0,-48r45,0r0,48r-45,0xm53,-216r0,-48r45,0r0,48r-45,0","w":87},"\u00b8":{"d":"35,-2r21,0r-12,23v20,-6,42,3,42,25v0,32,-55,42,-84,27r7,-18v10,6,46,9,44,-8v-2,-19,-31,-2,-36,-16","w":87},"\u2014":{"d":"0,-82r0,-44r360,0r0,44r-360,0","w":360},"\u00c6":{"d":"159,-102r-1,-113r-45,113r46,0xm159,0r0,-53r-65,0r-21,53r-70,0r111,-251r191,0r0,49r-83,0r0,49r78,0r0,49r-78,0r0,54r86,0r0,50r-149,0","w":320},"\u00aa":{"d":"26,-221r-2,-28v10,-4,26,-7,48,-7v77,-1,42,55,53,113r-38,0v-1,-5,-2,-10,-2,-15v-21,29,-77,19,-77,-18v0,-27,31,-39,76,-37v3,-27,-44,-19,-58,-8xm62,-165v20,-1,22,-17,22,-30v-20,-1,-37,4,-36,18v0,8,5,12,14,12","w":133},"\u0141":{"d":"23,0r0,-75r-23,18r0,-41r23,-18r0,-135r67,0r0,79r46,-38r0,41r-46,38r0,80r83,0r0,51r-150,0","w":180,"k":{"T":27,"V":27,"W":20,"y":20,"\u00fd":20,"\u00ff":20,"Y":38,"\u00dd":38,"\u0178":38,"\u201d":33,"\u2019":27}},"\u00d8":{"d":"86,-93r72,-91v-7,-15,-18,-23,-32,-23v-38,0,-47,65,-40,114xm166,-157r-72,91v7,14,18,22,32,22v36,0,47,-64,40,-113xm15,-4r26,-32v-16,-21,-26,-51,-26,-90v2,-125,104,-160,181,-105r24,-30r18,14r-26,32v16,21,26,49,26,89v-2,126,-102,158,-181,107r-23,29","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"\u0152":{"d":"158,-48r0,-156v-53,-15,-76,20,-76,78v0,58,24,95,76,78xm131,-256v53,0,119,5,180,5r0,49r-85,0r0,49r79,0r0,49r-79,0r0,54r89,0r0,50r-119,0v-103,14,-184,-4,-184,-126v0,-93,57,-130,119,-130","w":326},"\u00ba":{"d":"50,-198v0,17,3,31,16,31v14,0,17,-14,17,-31v0,-17,-3,-32,-17,-32v-13,0,-16,15,-16,32xm5,-198v0,-30,16,-58,61,-58v46,0,62,28,62,58v0,30,-16,57,-62,57v-45,0,-61,-27,-61,-57","w":133},"\u00e6":{"d":"91,-37v32,-2,33,-31,33,-54v-31,-1,-57,7,-56,31v0,17,10,23,23,23xm175,-110r55,0v1,-26,-5,-43,-26,-42v-18,0,-29,16,-29,42xm35,-133r-3,-47v28,-13,107,-21,126,10v9,-14,27,-22,45,-22v65,2,90,52,86,116r-113,0v5,54,67,41,102,25r1,45v-40,15,-122,15,-142,-20v-27,45,-126,42,-126,-29v0,-47,44,-69,113,-65v5,-43,-68,-32,-89,-13","w":299},"\u0131":{"d":"21,0r0,-188r65,0r0,188r-65,0","w":106},"\u0142":{"d":"24,0r0,-84r-24,23r0,-41r24,-23r0,-145r65,0r0,84r25,-23r0,41r-25,23r0,145r-65,0","w":113},"\u00f8":{"d":"82,-77r44,-56v-3,-9,-9,-15,-19,-15v-27,0,-28,42,-25,71xm131,-108r-44,55v4,8,11,13,20,13v26,1,26,-40,24,-68xm21,0r17,-22v-48,-59,-31,-172,69,-170v23,0,41,6,55,15r15,-20r16,12r-17,20v46,58,29,172,-69,169v-22,0,-41,-4,-54,-13r-17,21","w":213,"k":{",":6,".":6,"x":4}},"\u0153":{"d":"83,-94v0,27,3,54,25,54v22,0,26,-27,26,-54v0,-27,-4,-54,-26,-54v-22,0,-25,27,-25,54xm15,-94v0,-51,25,-98,93,-98v27,0,47,8,62,20v12,-12,27,-20,49,-20v65,2,90,52,86,116r-113,0v5,53,66,42,101,25r2,45v-31,11,-104,18,-123,-11v-15,13,-36,21,-64,21v-68,0,-93,-47,-93,-98xm190,-110r56,0v1,-26,-5,-43,-26,-42v-18,0,-30,16,-30,42","w":320,"k":{",":6,".":6}},"\u00df":{"d":"21,0r0,-188v0,-45,23,-86,88,-86v93,0,111,111,44,132v20,5,50,19,49,74v-2,59,-51,77,-102,69r2,-46v21,6,33,-12,33,-34v0,-32,-16,-38,-31,-38r0,-45v13,0,29,-4,29,-35v0,-21,-8,-33,-24,-33v-17,0,-23,12,-23,30r0,200r-65,0","w":213,"k":{",":6,".":6}},"\u00b9":{"d":"52,-102r0,-104r-24,19r-18,-29r49,-35r37,0r0,149r-44,0","w":126},"\u00ac":{"d":"17,-110r0,-45r182,0r0,116r-45,0r0,-71r-137,0","w":216},"\u00b5":{"d":"18,78r0,-266r65,0r0,113v0,18,5,27,18,27v19,0,23,-17,23,-31r0,-109r65,0r2,188r-61,0v-2,-7,1,-24,-2,-31v-9,22,-31,41,-55,31r0,78r-55,0","w":206},"\u2122":{"d":"55,-102r0,-117r-42,0r0,-32r123,0r0,32r-42,0r0,117r-39,0xm308,-102r-1,-98r-32,98r-32,0r-32,-98r0,98r-40,0r0,-149r56,0r32,87r32,-87r56,0r0,149r-39,0","w":360},"\u00d0":{"d":"23,0r0,-111r-23,0r0,-35r23,0r0,-105r97,0v74,0,115,49,115,124v0,87,-46,127,-126,127r-86,0xm90,-202r0,56r36,0r0,35r-36,0r0,63v51,4,73,-22,73,-77v0,-67,-30,-78,-73,-77","w":246,"k":{"W":-4,"Y":6,"\u00dd":6,"\u0178":6,",":9,".":9}},"\u00bd":{"d":"65,12r114,-276r35,0r-114,276r-35,0xm53,-102r0,-104r-24,19r-19,-29r50,-35r36,0r0,149r-43,0xm178,0v1,-14,-4,-33,7,-37v15,-15,51,-47,51,-67v1,-28,-45,-17,-53,-6r-3,-35v7,-3,20,-9,47,-9v35,0,55,15,55,42v0,26,-30,52,-56,80r57,0r0,32r-105,0","w":293},"\u00b1":{"d":"17,-96r0,-46r68,0r0,-40r46,0r0,40r68,0r0,46r-68,0r0,40r-46,0r0,-40r-68,0xm17,0r0,-45r182,0r0,45r-182,0","w":216},"\u00de":{"d":"23,0r0,-251r67,0r0,32v63,-2,108,14,108,83v0,61,-42,87,-108,81r0,55r-67,0xm87,-104v26,2,43,-7,44,-32v0,-27,-16,-37,-44,-35r0,67","w":206},"\u00bc":{"d":"222,0r0,-26r-60,0r0,-36r53,-88r50,0r0,95r18,0r0,29r-18,0r0,26r-43,0xm222,-55v-1,-19,2,-41,-1,-58r-31,58r32,0xm72,12r114,-276r35,0r-114,276r-35,0xm53,-102r0,-104r-24,19r-19,-29r50,-35r36,0r0,149r-43,0","w":293},"\u00f7":{"d":"17,-68r0,-46r182,0r0,46r-182,0xm75,-166v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm75,-16v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33","w":216},"\u00a6":{"d":"17,63r0,-126r46,0r0,126r-46,0xm17,-117r0,-126r46,0r0,126r-46,0","w":79},"\u00b0":{"d":"19,-203v0,-29,24,-53,53,-53v29,0,53,24,53,53v0,29,-24,53,-53,53v-29,0,-53,-24,-53,-53xm46,-203v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-25,-26,-25v-14,0,-26,11,-26,25","w":144},"\u00fe":{"d":"18,78r0,-348r65,0r-1,111v42,-73,119,-16,119,68v0,44,-20,94,-67,94v-26,1,-38,-12,-53,-32v3,29,2,73,2,107r-65,0xm83,-94v0,31,9,53,25,53v19,0,25,-22,25,-53v0,-31,-6,-53,-23,-53v-17,0,-27,22,-27,53","w":213,"k":{",":6,".":6}},"\u00be":{"d":"222,0r0,-26r-60,0r0,-36r53,-88r50,0r0,95r18,0r0,29r-18,0r0,26r-43,0xm222,-55v-1,-19,2,-41,-1,-58r-31,58r32,0xm74,12r114,-276r35,0r-114,276r-35,0xm33,-165r0,-29v17,0,38,0,38,-15v0,-24,-39,-16,-56,-8r-1,-31v38,-13,101,-15,102,31v1,22,-21,32,-34,36v12,1,35,6,35,34v0,47,-72,54,-107,41r2,-33v10,7,60,15,60,-8v0,-15,-19,-19,-39,-18","w":293},"\u00b2":{"d":"11,-102v1,-14,-3,-33,7,-37v15,-15,51,-47,51,-67v1,-27,-45,-16,-53,-6r-3,-35v7,-3,20,-9,47,-9v35,0,54,15,54,42v0,26,-27,54,-55,80r57,0r0,32r-105,0","w":126},"\u00ae":{"d":"14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm51,-126v0,51,42,94,93,94v51,0,93,-43,93,-94v0,-51,-42,-93,-93,-93v-51,0,-93,42,-93,93xm93,-55r0,-142v49,2,111,-12,111,41v0,27,-17,36,-33,39r28,62r-35,0r-24,-59r-13,0r0,59r-34,0xm127,-170r0,28v18,0,45,3,43,-14v2,-17,-25,-14,-43,-14","w":288},"\u00f0":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm135,-245v40,33,66,69,65,151v0,51,-25,98,-93,98v-127,0,-126,-194,-7,-196v18,0,31,9,40,19v-6,-21,-23,-45,-36,-53r-30,19r-19,-14r29,-18v-10,-5,-20,-10,-35,-14r22,-21v17,4,31,9,44,15r25,-15r20,13","w":213},"\u00d7":{"d":"77,-91r-55,-55r31,-31r55,55r55,-55r31,31r-55,55r55,55r-31,31r-55,-55r-55,55r-31,-31","w":216},"\u00b3":{"d":"32,-165r0,-29v17,0,38,0,38,-15v0,-23,-39,-16,-55,-8r-2,-31v38,-13,102,-15,103,31v1,22,-21,32,-34,36v12,1,35,6,35,34v0,47,-72,54,-107,41r2,-33v10,7,60,15,60,-8v0,-16,-20,-19,-40,-18","w":126},"\u00a9":{"d":"172,-105r34,0v-1,34,-23,54,-60,54v-44,0,-70,-32,-70,-75v0,-42,26,-74,70,-74v37,0,59,20,60,54r-34,0v-4,-13,-10,-20,-26,-20v-18,0,-29,16,-29,40v0,42,46,56,55,21xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm51,-126v0,51,42,94,93,94v51,0,93,-43,93,-94v0,-51,-42,-93,-93,-93v-51,0,-93,42,-93,93","w":288},"\u00c1":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0xm112,-321r55,0r-36,52r-36,0","w":240},"\u00c2":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0xm90,-321r61,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":240},"\u00c4":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0xm66,-271r0,-48r45,0r0,48r-45,0xm130,-271r0,-48r45,0r0,48r-45,0","w":240},"\u00c0":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0xm109,-269r-36,-52r56,0r17,52r-37,0","w":240},"\u00c5":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0xm77,-302v0,-24,19,-43,43,-43v24,0,43,19,43,43v0,24,-19,42,-43,42v-24,0,-43,-18,-43,-42xm98,-302v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22","w":240},"\u00c3":{"d":"169,0r-13,-53r-74,0r-16,53r-65,0r84,-251r74,0r80,251r-70,0xm143,-102r-22,-98r-27,98r49,0xm97,-318v17,-3,49,26,53,-1r29,0v0,23,-13,47,-36,47v-18,4,-48,-27,-52,1r-29,0v0,-23,12,-47,35,-47","w":240},"\u00c7":{"d":"199,-64r3,59v-24,7,-45,9,-68,9r-10,17v21,-6,43,3,43,25v0,32,-56,42,-85,27r8,-18v10,6,45,9,43,-8v-2,-19,-31,-2,-36,-16r17,-29v-59,-9,-99,-52,-99,-129v0,-74,43,-129,125,-129v33,0,55,9,61,12r-4,55v-8,-5,-28,-14,-49,-14v-43,0,-63,28,-63,77v0,43,24,76,66,76v24,0,42,-10,48,-14","w":213},"\u00c9":{"d":"23,0r0,-251r154,0r0,49r-88,0r0,49r83,0r0,49r-83,0r0,54r92,0r0,50r-158,0xm92,-321r56,0r-36,52r-37,0","w":193},"\u00ca":{"d":"23,0r0,-251r154,0r0,49r-88,0r0,49r83,0r0,49r-83,0r0,54r92,0r0,50r-158,0xm71,-321r60,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":193},"\u00cb":{"d":"23,0r0,-251r154,0r0,49r-88,0r0,49r83,0r0,49r-83,0r0,54r92,0r0,50r-158,0xm46,-271r0,-48r45,0r0,48r-45,0xm110,-271r0,-48r45,0r0,48r-45,0","w":193},"\u00c8":{"d":"23,0r0,-251r154,0r0,49r-88,0r0,49r83,0r0,49r-83,0r0,54r92,0r0,50r-158,0xm89,-269r-36,-52r56,0r17,52r-37,0","w":193},"\u00cd":{"d":"23,0r0,-251r67,0r0,251r-67,0xm48,-321r56,0r-36,52r-37,0","w":113},"\u00ce":{"d":"23,0r0,-251r67,0r0,251r-67,0xm27,-321r60,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":113},"\u00cf":{"d":"23,0r0,-251r67,0r0,251r-67,0xm2,-271r0,-48r45,0r0,48r-45,0xm66,-271r0,-48r45,0r0,48r-45,0","w":113},"\u00cc":{"d":"23,0r0,-251r67,0r0,251r-67,0xm45,-269r-36,-52r56,0r17,52r-37,0","w":113},"\u00d1":{"d":"146,0r-64,-174r-2,0r0,174r-59,0r0,-251r79,0r66,173r0,-173r59,0r0,251r-79,0xm100,-318v17,-3,49,26,53,-1r29,0v0,23,-12,47,-35,47v-18,4,-48,-26,-53,1r-29,0v0,-23,12,-47,35,-47","w":246},"\u00d3":{"d":"15,-126v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,93,-56,130,-111,130v-55,0,-112,-37,-112,-130xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81xm118,-321r56,0r-36,52r-37,0","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"\u00d4":{"d":"15,-126v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,93,-56,130,-111,130v-55,0,-112,-37,-112,-130xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81xm97,-321r60,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"\u00d6":{"d":"15,-126v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,93,-56,130,-111,130v-55,0,-112,-37,-112,-130xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81xm72,-271r0,-48r45,0r0,48r-45,0xm136,-271r0,-48r45,0r0,48r-45,0","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"\u00d2":{"d":"15,-126v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,93,-56,130,-111,130v-55,0,-112,-37,-112,-130xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81xm116,-269r-36,-52r55,0r17,52r-36,0","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"\u00d5":{"d":"15,-126v0,-93,57,-130,112,-130v55,0,111,37,111,130v0,93,-56,130,-111,130v-55,0,-112,-37,-112,-130xm84,-126v0,50,14,82,42,82v28,0,42,-32,42,-82v0,-49,-14,-81,-42,-81v-29,0,-42,32,-42,81xm104,-318v16,-3,49,26,52,-1r29,0v0,23,-12,47,-35,47v-18,4,-48,-26,-53,1r-29,0v0,-23,13,-47,36,-47","w":253,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":9}},"\u0160":{"d":"19,-5r4,-55v12,12,99,29,92,-12v2,-22,-27,-27,-46,-35v-41,-17,-54,-38,-54,-74v-2,-71,88,-90,155,-65r-3,50v-19,-12,-81,-24,-84,11v-2,21,40,33,59,42v23,11,43,27,43,64v0,55,-40,83,-99,83v-30,0,-54,-6,-67,-9xm70,-269r-25,-52r41,0r14,30r14,-30r42,0r-25,52r-61,0","k":{",":9,".":9}},"\u00da":{"d":"87,-251r0,159v-1,28,7,47,30,47v23,0,29,-19,29,-47r0,-159r66,0r0,157v0,73,-42,98,-95,98v-53,0,-96,-25,-96,-98r0,-157r66,0xm108,-321r56,0r-36,52r-37,0","w":233,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00db":{"d":"87,-251r0,159v-1,28,7,47,30,47v23,0,29,-19,29,-47r0,-159r66,0r0,157v0,73,-42,98,-95,98v-53,0,-96,-25,-96,-98r0,-157r66,0xm87,-321r60,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":233,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dc":{"d":"87,-251r0,159v-1,28,7,47,30,47v23,0,29,-19,29,-47r0,-159r66,0r0,157v0,73,-42,98,-95,98v-53,0,-96,-25,-96,-98r0,-157r66,0xm62,-271r0,-48r45,0r0,48r-45,0xm126,-271r0,-48r45,0r0,48r-45,0","w":233,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00d9":{"d":"87,-251r0,159v-1,28,7,47,30,47v23,0,29,-19,29,-47r0,-159r66,0r0,157v0,73,-42,98,-95,98v-53,0,-96,-25,-96,-98r0,-157r66,0xm105,-269r-36,-52r56,0r17,52r-37,0","w":233,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dd":{"d":"76,0r0,-91r-76,-160r77,0r35,96r33,-96r75,0r-76,160r0,91r-68,0xm102,-321r55,0r-36,52r-37,0","w":219,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":33,".":33,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"u":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u00f9":11,":":20,"-":33,";":20,"S":6,"\u0160":6}},"\u0178":{"d":"76,0r0,-91r-76,-160r77,0r35,96r33,-96r75,0r-76,160r0,91r-68,0xm55,-271r0,-48r45,0r0,48r-45,0xm119,-271r0,-48r46,0r0,48r-46,0","w":219,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":33,".":33,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"u":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u00f9":11,":":20,"-":33,";":20,"S":6,"\u0160":6}},"\u017d":{"d":"10,0r0,-56r97,-146r-94,0r0,-49r169,0r0,53r-100,148r101,0r0,50r-173,0xm67,-269r-26,-52r41,0r14,30r15,-30r41,0r-25,52r-60,0","w":193},"\u00e1":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23xm92,-266r55,0r-36,52r-36,0"},"\u00e2":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23xm70,-266r61,0r25,52r-42,0r-14,-30r-14,30r-41,0"},"\u00e4":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23xm45,-216r0,-48r46,0r0,48r-46,0xm109,-216r0,-48r46,0r0,48r-46,0"},"\u00e0":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23xm89,-214r-36,-52r55,0r18,52r-37,0"},"\u00e5":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23xm57,-247v0,-24,19,-43,43,-43v24,0,43,19,43,43v0,24,-19,43,-43,43v-24,0,-43,-19,-43,-43xm78,-247v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22"},"\u00e3":{"d":"103,-192v118,-1,66,96,81,192r-57,0v-1,-9,-2,-17,-2,-26v-33,49,-113,37,-113,-29v0,-47,44,-69,113,-65v4,-43,-68,-33,-90,-13r-2,-47v15,-6,39,-12,70,-12xm91,-37v32,-2,34,-31,34,-54v-31,-1,-57,7,-56,31v0,17,9,23,22,23xm77,-263v17,-3,49,26,53,-1r28,0v0,23,-12,47,-35,47v-18,4,-48,-27,-52,1r-29,0v0,-23,12,-47,35,-47"},"\u00e7":{"d":"157,-52r2,47v-10,5,-37,9,-52,9r-9,17v20,-6,43,3,43,25v0,32,-56,42,-85,27r7,-18v10,6,45,10,44,-8v-2,-19,-32,-1,-36,-16r16,-28v-107,-17,-101,-197,20,-195v27,0,42,6,50,9r-3,47v-30,-16,-74,-9,-74,42v0,28,9,50,41,50v16,0,32,-6,36,-8","w":166},"\u00e9":{"d":"187,-76r-113,0v5,53,66,42,101,25r2,45v-15,5,-40,10,-66,10v-76,0,-98,-51,-98,-99v0,-51,30,-97,87,-97v65,0,91,52,87,116xm72,-110r56,0v1,-26,-5,-43,-26,-42v-18,0,-30,16,-30,42xm92,-266r55,0r-36,52r-36,0","k":{",":6,".":6}},"\u00ea":{"d":"187,-76r-113,0v5,53,66,42,101,25r2,45v-15,5,-40,10,-66,10v-76,0,-98,-51,-98,-99v0,-51,30,-97,87,-97v65,0,91,52,87,116xm72,-110r56,0v1,-26,-5,-43,-26,-42v-18,0,-30,16,-30,42xm70,-266r61,0r25,52r-42,0r-14,-30r-14,30r-41,0","k":{",":6,".":6}},"\u00eb":{"d":"187,-76r-113,0v5,53,66,42,101,25r2,45v-15,5,-40,10,-66,10v-76,0,-98,-51,-98,-99v0,-51,30,-97,87,-97v65,0,91,52,87,116xm72,-110r56,0v1,-26,-5,-43,-26,-42v-18,0,-30,16,-30,42xm45,-216r0,-48r46,0r0,48r-46,0xm109,-216r0,-48r46,0r0,48r-46,0","k":{",":6,".":6}},"\u00e8":{"d":"187,-76r-113,0v5,53,66,42,101,25r2,45v-15,5,-40,10,-66,10v-76,0,-98,-51,-98,-99v0,-51,30,-97,87,-97v65,0,91,52,87,116xm72,-110r56,0v1,-26,-5,-43,-26,-42v-18,0,-30,16,-30,42xm89,-214r-36,-52r55,0r18,52r-37,0","k":{",":6,".":6}},"\u00ed":{"d":"21,0r0,-188r65,0r0,188r-65,0xm45,-266r55,0r-36,52r-36,0","w":106},"\u00ee":{"d":"21,0r0,-188r65,0r0,188r-65,0xm23,-266r61,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":106},"\u00ef":{"d":"21,0r0,-188r65,0r0,188r-65,0xm-1,-216r0,-48r45,0r0,48r-45,0xm63,-216r0,-48r45,0r0,48r-45,0","w":106},"\u00ec":{"d":"21,0r0,-188r65,0r0,188r-65,0xm42,-214r-36,-52r56,0r17,52r-37,0","w":106},"\u00f1":{"d":"18,0r-2,-188r61,0v2,7,-1,25,2,32v13,-51,110,-48,110,25r0,131r-65,0r0,-113v0,-18,-6,-26,-18,-26v-16,0,-23,17,-23,36r0,103r-65,0xm80,-263v17,-3,49,26,53,-1r29,0v0,23,-13,47,-36,47v-18,0,-48,-26,-52,1r-29,0v0,-23,12,-47,35,-47","w":206},"\u00f3":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm13,-94v0,-51,26,-98,94,-98v68,0,93,47,93,98v0,51,-25,98,-93,98v-68,0,-94,-47,-94,-98xm98,-266r56,0r-36,52r-37,0","w":213,"k":{",":6,".":6,"x":4}},"\u00f4":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm13,-94v0,-51,26,-98,94,-98v68,0,93,47,93,98v0,51,-25,98,-93,98v-68,0,-94,-47,-94,-98xm77,-266r60,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":213,"k":{",":6,".":6,"x":4}},"\u00f6":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm13,-94v0,-51,26,-98,94,-98v68,0,93,47,93,98v0,51,-25,98,-93,98v-68,0,-94,-47,-94,-98xm52,-216r0,-48r45,0r0,48r-45,0xm116,-216r0,-48r45,0r0,48r-45,0","w":213,"k":{",":6,".":6,"x":4}},"\u00f2":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm13,-94v0,-51,26,-98,94,-98v68,0,93,47,93,98v0,51,-25,98,-93,98v-68,0,-94,-47,-94,-98xm95,-214r-36,-52r56,0r17,52r-37,0","w":213,"k":{",":6,".":6,"x":4}},"\u00f5":{"d":"81,-94v0,27,4,54,26,54v36,0,35,-108,0,-108v-22,0,-26,27,-26,54xm13,-94v0,-51,26,-98,94,-98v68,0,93,47,93,98v0,51,-25,98,-93,98v-68,0,-94,-47,-94,-98xm84,-263v17,0,48,26,52,-1r29,0v0,23,-12,47,-35,47v-18,4,-48,-26,-53,1r-29,0v0,-23,13,-47,36,-47","w":213,"k":{",":6,".":6,"x":4}},"\u0161":{"d":"12,-4r2,-50v8,8,71,24,75,0v2,-10,-28,-18,-40,-23v-67,-26,-49,-118,39,-115v19,0,38,4,52,9r-2,47v-15,-8,-63,-24,-69,2v17,27,81,20,81,77v0,39,-26,61,-81,61v-21,0,-47,-4,-57,-8xm50,-214r-26,-52r42,0r14,30r14,-30r41,0r-24,52r-61,0","w":159,"k":{",":6,".":6}},"\u00fa":{"d":"189,-188r2,188r-61,0v-2,-7,1,-24,-2,-31v-13,49,-110,48,-110,-25r0,-132r65,0r0,113v0,18,5,27,18,27v19,0,23,-17,23,-31r0,-109r65,0xm95,-266r55,0r-36,52r-36,0","w":206},"\u00fb":{"d":"189,-188r2,188r-61,0v-2,-7,1,-24,-2,-31v-13,49,-110,48,-110,-25r0,-132r65,0r0,113v0,18,5,27,18,27v19,0,23,-17,23,-31r0,-109r65,0xm73,-266r61,0r25,52r-41,0r-15,-30r-14,30r-41,0","w":206},"\u00fc":{"d":"189,-188r2,188r-61,0v-2,-7,1,-24,-2,-31v-13,49,-110,48,-110,-25r0,-132r65,0r0,113v0,18,5,27,18,27v19,0,23,-17,23,-31r0,-109r65,0xm49,-216r0,-48r45,0r0,48r-45,0xm113,-216r0,-48r45,0r0,48r-45,0","w":206},"\u00f9":{"d":"189,-188r2,188r-61,0v-2,-7,1,-24,-2,-31v-13,49,-110,48,-110,-25r0,-132r65,0r0,113v0,18,5,27,18,27v19,0,23,-17,23,-31r0,-109r65,0xm92,-214r-36,-52r56,0r17,52r-37,0","w":206},"\u00fd":{"d":"2,-188r68,0r34,120r31,-120r63,0r-70,210v-5,44,-59,70,-107,52r2,-47v23,9,50,-3,48,-27xm92,-266r55,0r-36,52r-36,0","k":{",":27,".":27}},"\u00ff":{"d":"2,-188r68,0r34,120r31,-120r63,0r-70,210v-5,44,-59,70,-107,52r2,-47v23,9,50,-3,48,-27xm45,-216r0,-48r46,0r0,48r-46,0xm109,-216r0,-48r46,0r0,48r-46,0","k":{",":27,".":27}},"\u017e":{"d":"10,0r0,-54r70,-85r-68,0r0,-49r136,0r0,53r-69,87r71,0r0,48r-140,0xm50,-214r-26,-52r42,0r14,30r14,-30r41,0r-24,52r-61,0","w":159},"\u00a0":{"w":93},"\u00ad":{"d":"14,-80r0,-49r93,0r0,49r-93,0","w":120}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1991, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Frutiger is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * FrutigerLTStd-LightCn
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":172,"face":{"font-family":"FrutigerLTStd-LightCn","font-weight":300,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 4 6 2 2 4 2 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-9 -329 360 90","underline-thickness":"18","underline-position":"-18","stemh":"19","stemv":"21","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86,"k":{"\u201c":13,"\u2018":13,"T":20,"V":20,"W":20,"Y":20,"\u00dd":20,"\u0178":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"!":{"d":"54,-62r-4,-189r27,0r-4,189r-19,0xm50,0r0,-32r27,0r0,32r-27,0","w":126},"\"":{"d":"50,-190r0,-80r21,0r0,80r-21,0xm102,-190r0,-80r20,0r0,80r-20,0"},"#":{"d":"31,0r9,-80r-31,0r0,-18r33,0r7,-55r-31,0r0,-18r33,0r10,-80r18,0r-10,80r45,0r10,-80r18,0r-10,80r32,0r0,18r-34,0r-7,55r32,0r0,18r-34,0r-9,80r-18,0r9,-80r-45,0r-9,80r-18,0xm67,-153r-7,55r45,0r7,-55r-45,0"},"$":{"d":"93,-112r0,91v46,-25,32,-68,0,-91xm80,-151r0,-80v-14,4,-28,13,-28,35v0,22,10,32,28,45xm80,-252r0,-30r13,0v1,9,-2,21,1,28v20,0,33,6,39,8r-1,25v-10,-6,-21,-12,-39,-12r0,92v40,29,52,41,52,74v0,36,-21,62,-52,68r0,32r-13,0r0,-30v-18,0,-36,-4,-50,-12r1,-26v20,16,37,17,49,17r0,-103v-34,-20,-52,-44,-52,-72v0,-44,32,-56,52,-59"},"%":{"d":"220,3v-37,0,-48,-34,-48,-69v0,-35,11,-68,48,-68v37,0,47,33,47,68v0,35,-10,69,-47,69xm220,-17v27,0,27,-35,27,-49v0,-14,0,-48,-27,-48v-27,0,-27,34,-27,48v0,14,0,49,27,49xm74,-118v-37,0,-48,-33,-48,-68v0,-35,11,-68,48,-68v37,0,48,33,48,68v0,35,-11,68,-48,68xm74,-137v27,0,27,-35,27,-49v0,-14,0,-48,-27,-48v-27,0,-27,34,-27,48v0,14,0,49,27,49xm80,12r113,-275r19,0r-112,275r-20,0","w":293},"&":{"d":"100,-136r52,72v9,-17,14,-47,16,-78r21,0v-1,16,-5,61,-25,96r37,46r-29,0r-20,-30v-3,6,-23,33,-64,33v-52,0,-68,-36,-68,-73v0,-34,21,-58,50,-73v-34,-35,-48,-111,29,-111v32,0,50,25,50,48v0,35,-23,53,-49,70xm126,-203v0,-10,-4,-30,-28,-30v-50,0,-36,52,-10,81v12,-8,38,-24,38,-51xm140,-46r-59,-82v-26,19,-39,33,-39,62v0,10,8,48,48,48v20,0,39,-12,50,-28","w":206},"\u2019":{"d":"65,-270r-23,80r-21,0r18,-80r26,0","w":86,"k":{"\u201d":20,"\u2019":32,"r":6,"d":27,"s":20,"\u0161":20}},"(":{"d":"83,48r-17,2v-63,-95,-63,-227,0,-322r17,2v-23,50,-44,102,-44,159v0,57,21,109,44,159","w":93},")":{"d":"10,-270r17,-2v64,95,65,227,0,322r-17,-2v23,-50,44,-102,44,-159v0,-57,-21,-109,-44,-159","w":93},"*":{"d":"46,-166r27,-41r-43,-14r7,-21r41,19r-3,-47r23,0r-3,47r40,-19r8,21r-43,14r26,41r-18,11r-22,-42r-21,42"},"+":{"d":"99,0r0,-82r-82,0r0,-18r82,0r0,-82r18,0r0,82r82,0r0,18r-82,0r0,82r-18,0","w":216},",":{"d":"57,-32r-23,80r-21,0r18,-80r26,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"17,-90r0,-21r73,0r0,21r-73,0","w":106},".":{"d":"29,0r0,-35r28,0r0,35r-28,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"89,-254r-67,257r-18,0r67,-257r18,0","w":93},"0":{"d":"156,-126v0,44,-9,129,-70,129v-61,0,-69,-85,-69,-129v0,-44,8,-128,69,-128v61,0,70,84,70,128xm134,-126v0,-30,-3,-107,-48,-107v-45,0,-47,77,-47,107v0,30,2,108,47,108v45,0,48,-78,48,-108"},"1":{"d":"43,-205r45,-46r22,0r0,251r-22,0r0,-226r-33,37"},"2":{"d":"24,0v-4,-25,10,-34,19,-46v29,-36,79,-93,79,-142v0,-52,-61,-54,-87,-25r-4,-25v11,-7,29,-16,53,-16v116,0,37,157,-2,193r-33,40r100,0r0,21r-125,0"},"3":{"d":"18,-8r1,-24v33,21,106,22,103,-40v-1,-39,-35,-51,-77,-48r0,-21v35,0,75,-6,75,-47v0,-6,-2,-45,-50,-45v-10,0,-25,3,-42,15r-1,-24v9,-6,34,-12,46,-12v90,2,90,104,26,120v18,6,46,24,46,65v0,67,-80,86,-127,61"},"4":{"d":"11,-83r93,-168r29,0r0,170r29,0r0,21r-29,0r0,60r-22,0r0,-60r-100,0r0,-23xm111,-229v-29,47,-53,99,-80,148r80,0r0,-148"},"5":{"d":"31,-7r1,-24v49,34,103,-2,98,-49v9,-47,-57,-69,-96,-46r0,-125r107,0r0,21r-86,0r0,79v55,-20,99,22,99,71v0,48,-25,83,-79,83v-22,0,-34,-5,-44,-10"},"6":{"d":"146,-247r-2,25v-6,-3,-17,-11,-37,-11v-66,0,-72,99,-69,109v15,-33,42,-35,52,-35v51,0,66,51,66,82v0,33,-17,80,-70,80v-61,0,-69,-70,-69,-112v0,-31,-1,-145,87,-145v13,0,29,3,42,7xm43,-80v0,49,26,62,43,62v20,0,46,-14,46,-62v0,-18,-8,-58,-46,-58v-26,0,-43,24,-43,58"},"7":{"d":"23,-230r0,-21r126,0r0,22r-78,229r-26,0r82,-230r-104,0"},"8":{"d":"64,-131v-25,-14,-42,-35,-42,-64v0,-43,38,-59,65,-59v50,0,63,35,63,58v0,35,-27,54,-42,64v18,10,49,26,49,65v0,29,-17,70,-71,70v-45,0,-70,-33,-70,-69v0,-45,42,-63,48,-65xm127,-195v0,-23,-20,-38,-41,-38v-21,0,-40,16,-40,40v0,21,15,42,45,53v25,-18,36,-38,36,-55xm133,-66v0,-30,-28,-46,-50,-56v-30,15,-49,47,-43,57v0,24,16,47,47,47v15,0,46,-9,46,-48"},"9":{"d":"27,-4r2,-26v6,3,17,12,37,12v67,0,69,-98,69,-109v-15,33,-43,35,-53,35v-51,0,-65,-52,-65,-83v0,-33,16,-79,69,-79v61,0,70,69,70,111v0,31,0,146,-88,146v-13,0,-28,-3,-41,-7xm130,-172v0,-49,-27,-61,-44,-61v-20,0,-46,14,-46,62v0,18,8,58,46,58v26,0,44,-25,44,-59"},":":{"d":"29,-148r0,-36r28,0r0,36r-28,0xm29,0r0,-35r28,0r0,35r-28,0","w":86,"k":{" ":13}},";":{"d":"57,-32r-23,80r-21,0r18,-80r26,0xm29,-148r0,-36r28,0r0,36r-28,0","w":86,"k":{" ":13}},"<":{"d":"17,-81r0,-20r182,-84r0,20r-160,74r160,74r0,20","w":216},"=":{"d":"17,-117r0,-18r182,0r0,18r-182,0xm17,-47r0,-18r182,0r0,18r-182,0","w":216},">":{"d":"199,-101r0,20r-182,84r0,-20r160,-74r-160,-74r0,-20","w":216},"?":{"d":"63,-62v-9,-50,52,-90,49,-129v-2,-40,-40,-56,-78,-30r-2,-25v48,-23,112,7,103,53v12,28,-59,88,-51,131r-21,0xm59,0r0,-32r27,0r0,32r-27,0","w":159},"@":{"d":"91,-104v0,21,9,34,30,34v36,0,62,-52,62,-82v0,-22,-10,-32,-28,-32v-38,0,-64,48,-64,80xm203,-195r18,0r-39,113v0,6,3,12,16,12v29,0,56,-42,56,-78v0,-58,-52,-89,-110,-89v-61,0,-110,49,-110,111v0,62,49,112,110,112v40,0,81,-13,103,-46r19,0v-24,42,-72,63,-122,63v-71,0,-128,-58,-128,-129v0,-71,57,-128,128,-128v71,0,128,42,128,107v0,45,-38,93,-75,93v-19,1,-29,-10,-32,-22v-9,9,-25,22,-46,22v-30,0,-46,-22,-46,-49v0,-46,35,-98,84,-98v20,-1,30,14,38,29","w":288},"A":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138","w":200},"B":{"d":"51,-230r0,89v44,3,75,-4,77,-47v2,-35,-34,-47,-77,-42xm51,-120r0,99r32,0v49,0,51,-40,51,-48v1,-43,-35,-56,-83,-51xm29,0r0,-251r58,0v44,0,65,30,65,61v1,38,-26,51,-40,59v23,6,45,24,45,61v0,70,-67,70,-85,70r-43,0","w":180,"k":{",":13,".":13}},"C":{"d":"169,-30r1,25v-7,3,-22,8,-43,8v-75,0,-106,-63,-106,-130v0,-80,62,-152,150,-119r-1,26v-7,-6,-25,-13,-43,-13v-18,0,-83,9,-83,107v0,87,53,108,82,108v19,0,29,-6,43,-12","w":193,"k":{",":13,".":13}},"D":{"d":"29,0r0,-251v101,-7,155,28,155,122v0,87,-51,140,-155,129xm51,-230r0,209v74,7,109,-33,110,-105v0,-39,-7,-104,-91,-104r-19,0","w":200,"k":{"Y":16,"\u00dd":16,"\u0178":16,",":13,".":13}},"E":{"d":"29,0r0,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0","w":159},"F":{"d":"29,0r0,-251r102,0r0,21r-80,0r0,89r76,0r0,21r-76,0r0,120r-22,0","w":146,"k":{"\u00eb":13,"\u00e3":13,"\u00e0":13,"\u00e4":13,",":46,".":46,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e5":13,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"e":13,"\u00e9":13,"\u00ea":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"r":13}},"G":{"d":"119,-114r0,-21r67,0r0,124v-18,10,-37,14,-58,14v-88,0,-110,-83,-110,-131v0,-64,38,-126,109,-126v20,0,45,8,53,12r-1,25v-60,-34,-137,-16,-137,91v0,46,21,108,87,108v13,0,23,-2,35,-8r0,-88r-45,0","w":213,"k":{",":13,".":13}},"H":{"d":"29,0r0,-251r22,0r0,110r98,0r0,-110r22,0r0,251r-22,0r0,-120r-98,0r0,120r-22,0","w":200},"I":{"d":"29,0r0,-251r22,0r0,251r-22,0","w":79},"J":{"d":"8,0r0,-24v5,2,9,4,16,4v30,0,31,-26,31,-50r0,-181r23,0r0,182v5,43,-20,83,-70,69","w":106,"k":{",":13,".":13,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"K":{"d":"29,0r0,-251r22,0r1,110r91,-110r27,0r-101,119r109,132r-29,0r-98,-123r0,123r-22,0","w":180,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"y":13,"\u00fd":13,"\u00ff":13}},"L":{"d":"29,0r0,-251r22,0r0,230r82,0r0,21r-104,0","w":140,"k":{"T":33,"V":27,"W":16,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":46,"\u2019":33,"y":13,"\u00fd":13,"\u00ff":13}},"M":{"d":"29,0r0,-251r34,0r71,218r69,-218r35,0r0,251r-21,0r-1,-230r-74,230r-17,0r-75,-230r0,230r-21,0","w":266},"N":{"d":"29,0r0,-251r29,0r106,223r0,-223r21,0r0,251r-29,0r-106,-222r0,222r-21,0","w":213,"k":{",":13,".":13}},"O":{"d":"18,-126v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,22,1,129,-88,129v-89,0,-89,-107,-89,-129xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"P":{"d":"51,-230r0,100v45,2,80,-2,78,-50v-3,-59,-40,-49,-78,-50xm29,0r0,-251v68,-3,127,1,124,71v-3,67,-45,74,-102,71r0,109r-22,0","w":166,"k":{"\u00e4":13,",":46,".":46,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"Q":{"d":"189,46r-28,0r-41,-45v-3,0,-7,2,-13,2v-89,0,-89,-107,-89,-129v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,18,0,98,-53,121xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107","w":213,"k":{",":13,".":13}},"R":{"d":"29,0r0,-251r58,0v44,0,66,27,66,64v0,43,-28,57,-49,61v7,1,19,6,25,22r38,104r-24,0r-30,-86v-9,-35,-26,-31,-62,-31r0,117r-22,0xm51,-230r0,92r31,0v45,0,47,-41,47,-48v-7,-54,-38,-43,-78,-44","w":180,"k":{"T":16,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"V":4,"Y":20,"\u00dd":20,"\u0178":20}},"S":{"d":"111,-64v0,-53,-102,-75,-93,-129v12,-74,68,-65,105,-53r-1,25v-24,-16,-80,-23,-80,25v0,25,13,34,35,50v45,33,58,44,58,79v0,62,-65,87,-115,58r2,-26v17,15,38,17,44,17v40,0,45,-37,45,-46","w":153,"k":{",":13,".":13}},"T":{"d":"7,-230r0,-21r139,0r0,21r-58,0r0,230r-22,0r0,-230r-59,0","w":153,"k":{"\u00fc":27,"\u00f2":13,"\u00f6":13,"\u00ec":13,"\u00ee":13,"\u00ed":13,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":40,".":40,"a":27,"\u00e6":27,"\u00e1":27,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"e":20,"\u00e9":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"r":27,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,"y":13,"\u00fd":13,"\u00ff":13,"-":33,"h":13,"i":13,"\u0131":13,"\u00ef":13,"w":19,":":27,";":27}},"U":{"d":"103,3v-111,0,-64,-153,-74,-254r22,0r0,158v0,38,7,75,52,75v47,0,53,-41,53,-75r0,-158r22,0v-9,103,36,254,-75,254","w":206,"k":{",":13,".":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"V":{"d":"81,0r-75,-251r24,0r62,220r67,-220r22,0r-79,251r-21,0","w":186,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":7,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":17,"\u00e5":17,"\u00e0":17,"\u00e4":17,"\u00e2":17,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":46,".":46,"a":17,"\u00e6":17,"\u00e1":17,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"e":13,"\u00e9":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":13,"i":7,"\u0131":7,"\u00ed":7,"\u00ef":7,"\u00ec":7,":":16,";":16}},"W":{"d":"60,0r-56,-251r24,0r46,224r52,-224r31,0r47,224r49,-224r23,0r-58,251r-28,0r-50,-226r-54,226r-26,0","w":280,"k":{"\u00fc":6,"\u00f6":6,"\u00ea":6,"\u00e4":13,",":27,".":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":6,";":6}},"X":{"d":"82,-133r-69,-118r27,0r57,100r59,-100r23,0r-70,118r74,133r-26,0r-62,-114r-65,114r-26,0","w":186},"Y":{"d":"79,0r0,-109r-64,-142r24,0r51,121r51,-121r24,0r-64,142r0,109r-22,0","w":180,"k":{"\u00fc":20,"\u00f6":27,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":46,".":46,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,"\u00c3":23,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,"-":40,"i":20,"\u0131":20,"\u00ed":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,":":16,";":16,"S":16,"\u0160":16}},"Z":{"d":"13,0r0,-22r108,-208r-104,0r0,-21r127,0r0,21r-108,209r111,0r0,21r-134,0","w":159},"[":{"d":"28,50r0,-322r46,0r0,16r-26,0r0,290r26,0r0,16r-46,0","w":93},"\\":{"d":"71,3r-67,-257r18,0r67,257r-18,0","w":93},"]":{"d":"65,-272r0,322r-46,0r0,-16r27,0r0,-290r-27,0r0,-16r46,0","w":93},"^":{"d":"179,-88r-71,-141r-71,141r-21,0r83,-163r18,0r83,163r-21,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"21,-190r23,-80r21,0r-17,80r-27,0","w":86,"k":{"\u2018":32,"A":36,"\u00c6":36,"\u00c1":36,"\u00c2":36,"\u00c4":36,"\u00c0":36,"\u00c5":36,"\u00c3":36}},"a":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54","w":159},"b":{"d":"22,0r1,-270r21,0r1,110v11,-17,24,-26,46,-26v46,0,61,52,61,87v0,26,-2,102,-62,102v-24,1,-34,-13,-49,-28r0,25r-19,0xm130,-92v0,-42,-12,-75,-43,-75v-45,0,-45,53,-45,77v0,37,10,73,46,73v42,0,42,-60,42,-75","w":166,"k":{",":13,".":13}},"c":{"d":"125,-180r-1,24v-42,-22,-87,-5,-87,59v0,67,37,79,57,79v8,0,25,-3,31,-10r2,24v-58,22,-109,-9,-112,-87v-3,-70,47,-111,110,-89","w":133},"d":{"d":"144,-270r1,270r-19,0v-1,-8,2,-19,-1,-25v-14,17,-25,28,-48,28v-60,0,-62,-76,-62,-102v0,-35,15,-87,61,-87v24,-1,36,11,47,26r0,-110r21,0xm37,-92v0,15,0,75,42,75v36,0,45,-36,45,-73v0,-24,0,-77,-45,-77v-31,0,-42,33,-42,75","w":166},"e":{"d":"139,-85r-102,0v0,68,44,68,52,68v12,0,30,-6,40,-15r1,24v-9,5,-21,11,-43,11v-72,0,-72,-77,-72,-95v0,-69,34,-94,65,-94v53,0,59,56,59,101xm37,-104r79,0v0,-49,-20,-63,-37,-63v-28,0,-42,39,-42,63","w":153,"k":{",":13,".":13}},"f":{"d":"34,0r0,-164r-29,0r0,-20r29,0v-2,-52,-3,-99,61,-89r0,21v-19,-8,-45,2,-40,25r0,43r32,0r0,20r-32,0r0,164r-21,0","w":93,"k":{"\u201d":6,",":25,".":25}},"g":{"d":"15,-85v0,-26,2,-101,62,-101v24,-1,36,12,49,29r0,-27r19,0r-1,180v6,75,-57,100,-121,74r1,-24v18,10,39,14,51,14v55,0,49,-47,47,-85v-11,18,-24,28,-46,28v-46,0,-61,-53,-61,-88xm37,-92v0,42,11,75,42,75v35,0,45,-31,45,-77v0,-37,-9,-73,-45,-73v-42,0,-42,60,-42,75","w":166},"h":{"d":"24,0r0,-270r21,0r1,113v4,-8,16,-29,45,-29v51,0,51,51,51,63r0,123r-21,0r0,-124v0,-13,0,-43,-34,-43v-63,0,-37,104,-42,167r-21,0","w":166},"i":{"d":"26,0r0,-184r21,0r0,184r-21,0xm24,-224r0,-33r25,0r0,33r-25,0","w":73},"j":{"d":"26,35r0,-219r21,0r0,216v5,23,-14,57,-50,46r0,-21v14,3,28,7,29,-22xm24,-224r0,-33r25,0r0,33r-25,0","w":73},"k":{"d":"25,0r0,-270r21,0r0,160r70,-74r26,0r-78,82r85,102r-28,0r-75,-93r0,93r-21,0","w":153,"k":{"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},"l":{"d":"26,0r0,-270r21,0r0,270r-21,0","w":73},"m":{"d":"24,0r-1,-184r19,0v2,7,0,17,3,27v6,-13,19,-29,42,-29v30,0,38,19,42,29v5,-9,19,-29,46,-29v77,0,38,115,47,186r-20,0r0,-124v0,-13,0,-43,-30,-43v-62,0,-31,106,-38,167r-21,0r0,-128v0,-24,-11,-39,-28,-39v-60,0,-35,105,-40,167r-21,0","w":246},"n":{"d":"24,0r-1,-184r19,0v2,7,0,17,3,27v4,-8,15,-29,46,-29v51,0,51,51,51,63r0,123r-21,0r0,-124v0,-13,0,-43,-34,-43v-63,0,-37,104,-42,167r-21,0","w":166},"o":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm84,3v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v54,0,68,48,68,94v0,46,-14,95,-68,95","w":167,"k":{",":13,".":13,"x":3}},"p":{"d":"23,78r-1,-262r19,0v1,8,-2,21,1,27v12,-19,27,-29,48,-29v60,0,62,75,62,88v0,52,-17,101,-61,101v-23,1,-36,-12,-47,-26r0,101r-21,0xm130,-92v0,-15,0,-75,-42,-75v-36,0,-46,36,-46,73v0,24,0,77,45,77v31,0,43,-33,43,-75","w":166,"k":{",":13,".":13}},"q":{"d":"145,-184r-1,262r-21,0r-1,-103v-11,18,-24,28,-46,28v-46,0,-61,-53,-61,-88v0,-26,2,-101,62,-101v24,-1,36,12,49,29r0,-27r19,0xm37,-92v0,42,11,75,42,75v35,0,45,-31,45,-77v0,-37,-9,-73,-45,-73v-42,0,-42,60,-42,75","w":166},"r":{"d":"24,0r-1,-184r19,0v1,11,0,24,3,30v13,-26,29,-32,49,-32r0,22v-75,-5,-42,100,-49,164r-21,0","w":100,"k":{",":33,".":33,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"-":16}},"s":{"d":"91,-49v0,-39,-88,-43,-76,-86v2,-49,49,-58,88,-46r-3,22v-22,-15,-66,-6,-62,21v-3,38,84,40,76,87v5,53,-65,64,-101,45r3,-24v16,16,75,20,75,-19","w":126,"k":{",":13,".":13}},"t":{"d":"34,-220r21,-7r0,43r37,0r0,20r-37,0r0,119v-6,23,21,34,37,24r0,21v-30,11,-64,-8,-58,-39r0,-125r-28,0r0,-20r28,0r0,-36","w":100},"u":{"d":"142,-184r2,184r-20,0v-2,-7,1,-17,-2,-27v-2,8,-16,30,-47,30v-40,0,-51,-29,-51,-58r0,-129r21,0r0,124v0,13,1,43,35,43v63,0,35,-105,41,-167r21,0","w":166},"v":{"d":"58,0r-54,-184r22,0r45,160r45,-160r20,0r-53,184r-25,0","w":140,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"w":{"d":"53,0r-49,-184r22,0r40,162r37,-162r26,0r41,162r38,-162r21,0r-48,184r-25,0r-41,-160r-37,160r-25,0","w":233,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"x":{"d":"56,-99r-48,-85r25,0r37,69r38,-69r23,0r-49,86r54,98r-25,0r-43,-81r-40,81r-24,0","w":140},"y":{"d":"26,-184r42,153r41,-153r21,0r-61,218v-6,30,-20,53,-55,44r1,-21v33,16,35,-30,43,-53r-54,-188r22,0","w":133,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"z":{"d":"11,0r0,-21r88,-143r-85,0r0,-20r107,0r0,21r-88,144r89,0r0,19r-111,0","w":133},"{":{"d":"87,-272r0,16v-72,-14,-1,125,-57,145v33,6,23,78,23,119v0,24,12,27,34,26r0,16v-34,2,-53,-4,-53,-41v0,-36,11,-116,-22,-112r0,-16v57,-2,-28,-173,75,-153","w":93},"|":{"d":"31,90r0,-360r18,0r0,360r-18,0","w":79},"}":{"d":"81,-103v-58,1,29,173,-75,153r0,-16v72,14,1,-125,57,-145v-33,-6,-23,-78,-23,-119v0,-24,-12,-27,-34,-26r0,-16v35,-2,53,4,53,42v0,36,-11,115,22,111r0,16","w":93},"~":{"d":"70,-112v24,0,56,23,77,24v14,0,23,-13,31,-26r13,13v-11,15,-23,31,-45,31v-37,0,-89,-49,-108,2r-13,-13v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"73,-122r4,190r-27,0r4,-190r19,0xm77,-184r0,33r-27,0r0,-33r27,0","w":126},"\u00a2":{"d":"84,-23v5,-46,19,-100,19,-142v-28,0,-54,19,-54,68v0,47,18,67,35,74xm120,-163r-21,144v12,3,28,-1,37,-9r2,24v-10,6,-30,8,-43,6r-6,44r-15,0r7,-47v-31,-9,-55,-39,-55,-90v1,-58,26,-98,83,-95r6,-40r15,0r-7,42v5,1,10,2,13,4r-1,24v-4,-3,-9,-6,-15,-7"},"\u00a3":{"d":"48,-144v-10,-93,42,-126,110,-100r-4,22v-8,-6,-23,-11,-37,-11v-48,0,-47,45,-46,89r57,0r0,20r-57,0r0,103r83,0r0,21r-131,0r0,-21r25,0r0,-103r-25,0r0,-20r25,0"},"\u00a5":{"d":"29,-103r0,-15r42,0r-59,-133r24,0r50,122r51,-122r24,0r-59,133r42,0r0,15r-46,0r0,32r46,0r0,16r-46,0r0,55r-23,0r0,-55r-46,0r0,-16r46,0r0,-32r-46,0"},"\u0192":{"d":"49,-130r0,-18r35,0v6,-54,20,-126,77,-101r-3,20v-42,-24,-45,40,-52,81r33,0r0,18r-36,0r-20,127v-5,36,-22,99,-71,79r2,-21v35,11,39,-10,48,-65r19,-120r-32,0"},"\u00a7":{"d":"62,-204v0,36,82,52,82,101v0,17,-7,35,-26,50v35,24,32,101,-40,100v-21,0,-38,-8,-50,-13r4,-24v19,17,88,29,87,-19v-1,-46,-85,-48,-85,-99v0,-28,21,-45,30,-52v-35,-15,-33,-97,34,-94v14,0,29,5,41,10r-4,22v-22,-18,-73,-13,-73,18xm105,-63v33,-32,14,-71,-28,-87v-8,6,-22,17,-22,37v0,14,5,28,50,50"},"\u00a4":{"d":"9,-60r17,-17v-23,-28,-23,-69,0,-97r-17,-18r12,-11r17,17v28,-23,69,-23,97,0r17,-17r12,11r-17,18v23,28,23,69,0,97r17,17r-12,12r-17,-17v-28,23,-69,23,-97,0r-17,17xm27,-126v0,33,26,60,59,60v33,0,60,-27,60,-60v0,-33,-27,-59,-60,-59v-33,0,-59,26,-59,59"},"'":{"d":"33,-190r0,-80r21,0r0,80r-21,0","w":86},"\u201c":{"d":"39,-190r23,-80r20,0r-17,80r-26,0xm90,-190r23,-80r21,0r-17,80r-27,0","k":{"\u2018":20,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33}},"\u00ab":{"d":"31,-95r41,-73r20,0r-39,73r39,76r-20,0xm81,-95r41,-73r20,0r-39,73r39,76r-20,0"},"\u2013":{"d":"0,-91r0,-19r180,0r0,19r-180,0","w":180},"\u00b7":{"d":"23,-111v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u00b6":{"d":"83,44r0,-161v-41,-1,-72,-28,-72,-66v0,-69,71,-72,144,-68r0,295r-18,0r0,-279r-36,0r0,279r-18,0"},"\u201d":{"d":"134,-270r-23,80r-21,0r18,-80r26,0xm82,-270r-23,80r-20,0r17,-80r26,0","k":{" ":13}},"\u00bb":{"d":"142,-92r-42,73r-19,0r39,-73r-39,-76r19,0xm92,-92r-42,73r-19,0r38,-73r-38,-76r19,0"},"\u2026":{"d":"46,0r0,-35r28,0r0,35r-28,0xm166,0r0,-35r28,0r0,35r-28,0xm286,0r0,-35r28,0r0,35r-28,0","w":360},"\u00bf":{"d":"96,-122v9,50,-51,90,-48,129v2,40,40,56,78,30r2,25v-47,23,-113,-7,-104,-52v-12,-28,59,-90,52,-132r20,0xm101,-184r0,33r-27,0r0,-33r27,0","w":159},"`":{"d":"-3,-262r26,0r27,51r-18,0","w":66},"\u00b4":{"d":"44,-262r25,0r-34,51r-18,0","w":66},"\u00af":{"d":"-9,-228r0,-17r85,0r0,17r-85,0","w":66},"\u00a8":{"d":"-4,-221r0,-35r21,0r0,35r-21,0xm50,-221r0,-35r21,0r0,35r-21,0","w":66},"\u00b8":{"d":"11,29v11,-10,11,-31,34,-29v-4,7,-14,14,-15,21v18,-6,39,2,39,22v-2,32,-43,34,-69,23r4,-10v15,6,46,12,46,-11v0,-17,-22,-18,-34,-11","w":66},"\u2014":{"d":"0,-91r0,-19r360,0r0,19r-360,0","w":360},"\u00c6":{"d":"147,-233v-26,45,-47,96,-72,143r72,0r0,-143xm5,0r128,-251r116,0r0,21r-80,0r0,89r76,0r0,21r-76,0r0,99r84,0r0,21r-106,0r0,-69r-82,0r-35,69r-25,0","w":273},"\u00aa":{"d":"52,-254v70,0,26,54,41,111r-15,0v-1,-5,1,-12,-2,-15v-16,28,-68,20,-68,-14v0,-39,42,-37,68,-37v0,-12,0,-31,-25,-31v-16,0,-29,10,-30,11r-2,-15v11,-6,20,-10,33,-10xm46,-155v9,4,36,-12,30,-42v-28,0,-52,0,-52,22v0,9,8,20,22,20","w":104},"\u0141":{"d":"0,-64r0,-21r29,-28r0,-138r22,0r0,117r59,-56r0,20r-59,57r0,92r82,0r0,21r-104,0r0,-92","w":140,"k":{"T":33,"V":27,"W":16,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":46,"\u2019":33,"y":13,"\u00fd":13,"\u00ff":13}},"\u00d8":{"d":"50,-65r107,-136v-9,-18,-24,-32,-50,-32v-65,0,-65,87,-65,107v0,10,0,37,8,61xm163,-188r-107,137v9,18,25,33,51,33v65,0,65,-88,65,-108v0,-10,-1,-38,-9,-62xm3,-6r30,-38v-15,-31,-15,-70,-15,-82v0,-22,0,-128,89,-128v32,0,53,14,66,33r28,-35r10,9r-31,39v15,31,15,70,15,82v0,22,1,129,-88,129v-33,0,-54,-15,-67,-35r-27,35","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"\u0152":{"d":"238,-141r0,21r-74,0r0,99r82,0r0,21r-132,3v-72,0,-96,-60,-96,-129v0,-81,39,-144,130,-125r94,0r0,21r-78,0r0,89r74,0xm141,-21r0,-209v-66,-15,-100,26,-100,104v0,78,32,121,100,105","w":266},"\u00ba":{"d":"56,-155v30,0,30,-36,30,-43v0,-6,0,-42,-30,-42v-30,0,-30,36,-30,42v0,7,0,43,30,43xm9,-198v0,-27,10,-56,47,-56v37,0,47,29,47,56v0,28,-10,57,-47,57v-37,0,-47,-29,-47,-57","w":112},"\u00e6":{"d":"233,-93r-102,0v0,24,2,76,49,76v16,0,31,-9,40,-13r1,24v-42,20,-92,3,-102,-33v-3,10,-15,42,-56,42v-46,0,-50,-47,-50,-53v1,-52,44,-64,96,-61v0,-27,-2,-56,-35,-56v-18,0,-30,10,-40,17v-8,-29,6,-36,42,-36v34,0,45,27,47,33v17,-33,39,-33,49,-33v58,0,61,69,61,93xm36,-50v0,19,13,33,31,33v37,0,44,-39,42,-76v-29,0,-73,2,-73,43xm172,-167v-40,0,-41,53,-41,56r80,0v0,-6,0,-56,-39,-56","w":246},"\u0131":{"d":"26,0r0,-184r21,0r0,184r-21,0","w":73},"\u0142":{"d":"0,-85v-4,-30,16,-37,26,-54r0,-131r21,0r1,104r25,-32v4,31,-16,38,-26,55r0,143r-21,0r0,-117","w":73},"\u00f8":{"d":"124,-135r-76,96v6,12,18,22,36,22v46,0,46,-60,46,-75v0,-8,0,-26,-6,-43xm6,-5r21,-27v-24,-57,-18,-153,57,-154v22,0,38,8,48,21r16,-21r10,8r-19,24v25,56,21,156,-55,157v-23,0,-39,-10,-50,-24r-19,24xm42,-51r76,-97v-6,-11,-17,-19,-34,-19v-46,0,-47,60,-47,75v0,7,0,25,5,41","w":166,"k":{",":13,".":13,"x":3}},"\u0153":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm255,-85r-103,0v0,68,46,68,54,68v12,0,29,-6,39,-15r1,24v-9,5,-21,11,-43,11v-34,0,-52,-17,-62,-38v-9,22,-26,38,-57,38v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v31,0,49,16,58,38v12,-27,34,-38,55,-38v53,0,58,56,58,101xm152,-104r81,0v0,-49,-21,-63,-38,-63v-30,0,-43,39,-43,63","w":266,"k":{",":13,".":13}},"\u00df":{"d":"22,0r0,-193v0,-66,38,-81,63,-81v30,0,56,23,56,66v0,10,-5,52,-44,63v41,5,55,35,55,71v0,17,-5,77,-64,77v-6,0,-18,-2,-24,-3r3,-22v35,12,63,-3,63,-58v0,-39,-25,-52,-59,-53r0,-21v32,0,48,-22,48,-52v0,-9,0,-47,-36,-47v-37,0,-41,40,-41,67r0,186r-20,0","w":166,"k":{",":13,".":13}},"\u00b9":{"d":"22,-226v15,-10,18,-31,45,-28r0,152r-16,0r0,-134r-21,23","w":112},"\u00ac":{"d":"181,-39r0,-78r-164,0r0,-18r182,0r0,96r-18,0","w":216},"\u00b5":{"d":"142,-184r2,184r-20,0v-2,-7,1,-17,-2,-27v-2,8,-16,30,-47,30v-16,1,-24,-6,-30,-12r0,87r-21,0r0,-262r21,0r0,124v0,13,1,43,35,43v63,0,35,-105,41,-167r21,0","w":166},"\u2122":{"d":"67,-102r0,-133r-48,0r0,-16r115,0r0,16r-49,0r0,133r-18,0xm298,-102r-1,-133r-53,133r-11,0r-54,-133r0,133r-18,0r0,-149r31,0r47,120r46,-120r31,0r0,149r-18,0","w":360},"\u00d0":{"d":"4,-123r0,-15r25,0r0,-113v101,-7,155,28,155,122v0,87,-51,140,-155,129r0,-123r-25,0xm115,-138r0,15r-64,0r0,102v74,7,109,-33,110,-105v0,-39,-7,-104,-91,-104r-19,0r0,92r64,0","w":200,"k":{"Y":16,"\u00dd":16,"\u0178":16,",":13,".":13}},"\u00bd":{"d":"57,12r113,-275r19,0r-112,275r-20,0xm22,-226v15,-10,18,-31,45,-28r0,152r-16,0r0,-134r-21,23xm156,0v-2,-15,6,-20,12,-27v19,-22,51,-56,51,-84v0,-30,-38,-31,-55,-14r-2,-18v25,-20,80,-4,75,30v-6,41,-38,73,-60,98r61,0r0,15r-82,0","w":259},"\u00b1":{"d":"99,-117r0,-65r18,0r0,65r82,0r0,18r-82,0r0,66r-18,0r0,-66r-82,0r0,-18r82,0xm17,0r0,-18r182,0r0,18r-182,0","w":216},"\u00de":{"d":"51,-176r0,100v45,2,80,-2,78,-50v-3,-59,-40,-49,-78,-50xm29,0r0,-251r22,0r0,54v60,-3,105,10,102,71v-3,67,-45,74,-102,71r0,55r-22,0","w":166},"\u00bc":{"d":"140,-50r61,-101r20,0r0,101r17,0r0,15r-17,0r0,35r-16,0r0,-35r-65,0r0,-15xm205,-50v-1,-26,2,-57,-1,-81r-49,81r50,0xm53,12r113,-275r19,0r-113,275r-19,0xm22,-226v15,-10,18,-31,45,-28r0,152r-16,0r0,-134r-21,23","w":259},"\u00f7":{"d":"17,-82r0,-18r182,0r0,18r-182,0xm88,-165v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm88,-17v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":216},"\u00a6":{"d":"31,63r0,-126r18,0r0,126r-18,0xm31,-117r0,-126r18,0r0,126r-18,0","w":79},"\u00b0":{"d":"20,-202v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,53,-52,53v-29,0,-52,-24,-52,-53xm36,-202v0,20,16,36,36,36v20,0,36,-16,36,-36v0,-20,-16,-35,-36,-35v-20,0,-36,15,-36,35","w":144},"\u00fe":{"d":"23,78r-1,-348r22,0r1,110v11,-17,25,-26,45,-26v60,0,62,75,62,88v0,52,-17,101,-61,101v-23,1,-36,-12,-47,-26r0,101r-21,0xm130,-92v0,-15,0,-75,-42,-75v-36,0,-46,36,-46,73v0,24,0,77,45,77v31,0,43,-33,43,-75","w":166,"k":{",":13,".":13}},"\u00be":{"d":"148,-50r60,-101r21,0r0,101r17,0r0,15r-17,0r0,35r-17,0r0,-35r-64,0r0,-15xm212,-50r0,-81r-49,81r49,0xm66,12r113,-275r19,0r-113,275r-19,0xm32,-172r0,-16v22,0,47,-3,47,-26v0,-4,-1,-25,-31,-25v-7,0,-16,2,-27,9r-2,-17v30,-19,87,6,78,31v1,19,-13,28,-29,35v47,15,36,81,-24,81v-17,0,-25,-3,-30,-6r1,-17v17,12,67,12,65,-22v-1,-22,-23,-29,-48,-27","w":259},"\u00b2":{"d":"15,-102v-2,-15,6,-20,12,-27v19,-22,51,-56,51,-84v0,-30,-38,-31,-55,-14r-2,-17v25,-22,80,-4,75,30v-6,41,-39,72,-60,97r61,0r0,15r-82,0","w":112},"\u00ae":{"d":"94,-52r0,-147v47,-1,104,-6,104,41v0,26,-17,38,-37,41r43,65r-19,0r-43,-65r-31,0r0,65r-17,0xm111,-184r0,52v31,-1,70,8,70,-26v-1,-33,-39,-25,-70,-26xm34,-126v0,62,49,112,110,112v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111xm16,-126v0,-71,57,-128,128,-128v71,0,128,57,128,128v0,71,-57,129,-128,129v-71,0,-128,-58,-128,-129","w":288},"\u00f0":{"d":"84,-17v46,0,46,-60,46,-70v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,10,1,70,47,70xm27,-262r12,-12v16,6,30,13,42,21r33,-21r11,9r-32,21v44,35,59,86,59,135v0,74,-21,112,-68,112v-54,0,-69,-49,-69,-90v0,-46,15,-94,69,-94v22,0,34,13,41,18v-8,-28,-24,-53,-47,-72r-36,23r-10,-9r34,-22v-12,-8,-25,-15,-39,-19","w":167},"\u00d7":{"d":"108,-104r68,-68r13,13r-68,68r68,68r-13,13r-68,-68r-68,68r-13,-13r68,-68r-68,-68r13,-13","w":216},"\u00b3":{"d":"32,-172r0,-16v22,0,47,-3,47,-26v0,-4,-1,-25,-31,-25v-7,0,-16,2,-27,9r-2,-17v30,-19,87,6,78,31v1,19,-13,28,-29,35v47,15,36,81,-24,81v-17,0,-25,-3,-30,-6r1,-17v17,12,67,12,65,-22v-1,-22,-23,-29,-48,-27","w":112},"\u00a9":{"d":"209,-153r-18,0v-19,-62,-101,-34,-101,27v0,32,20,63,55,63v25,0,42,-16,46,-37r18,0v-8,31,-32,53,-64,53v-44,0,-73,-35,-73,-79v0,-85,124,-108,137,-27xm34,-126v0,62,49,112,110,112v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111xm16,-126v0,-71,57,-128,128,-128v71,0,128,57,128,128v0,71,-57,129,-128,129v-71,0,-128,-58,-128,-129","w":288},"\u00c1":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138xm111,-313r25,0r-34,51r-18,0","w":200},"\u00c2":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138xm55,-262r35,-51r21,0r34,51r-20,0r-25,-36r-24,36r-21,0","w":200},"\u00c4":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138xm63,-272r0,-35r21,0r0,35r-21,0xm117,-272r0,-35r21,0r0,35r-21,0","w":200},"\u00c0":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138xm64,-313r25,0r28,51r-18,0","w":200},"\u00c5":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138xm65,-294v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm77,-294v0,13,10,23,23,23v13,0,23,-10,23,-23v0,-13,-10,-22,-23,-22v-13,0,-23,9,-23,22","w":200},"\u00c3":{"d":"5,0r83,-251r24,0r83,251r-23,0r-22,-69r-100,0r-23,69r-22,0xm56,-90r87,0r-43,-138xm121,-270v-15,0,-29,-17,-39,-16v-10,0,-15,13,-15,17r-15,0v0,-4,3,-35,30,-35v18,0,47,37,51,-2r15,0v0,10,-6,36,-27,36","w":200},"\u00c7":{"d":"131,45v0,-24,-32,-7,-39,-16r19,-28v-125,-16,-124,-258,18,-255v13,0,30,2,42,8r-1,26v-7,-6,-25,-13,-43,-13v-18,0,-83,9,-83,107v0,87,53,108,82,108v19,0,29,-6,43,-12r1,25v-7,3,-26,9,-47,8v-3,6,-12,12,-12,18v18,-6,39,3,39,22v-2,32,-43,34,-69,23r3,-10v16,6,47,12,47,-11","w":193,"k":{",":13,".":13}},"\u00c9":{"d":"29,0r0,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0xm98,-313r25,0r-34,51r-18,0","w":159},"\u00ca":{"d":"29,0r0,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0xm42,-262r35,-51r21,0r34,51r-20,0r-25,-36r-24,36r-21,0","w":159},"\u00cb":{"d":"29,0r0,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0xm50,-272r0,-35r21,0r0,35r-21,0xm104,-272r0,-35r21,0r0,35r-21,0","w":159},"\u00c8":{"d":"29,0r0,-251r106,0r0,21r-84,0r0,89r80,0r0,21r-80,0r0,99r88,0r0,21r-110,0xm51,-313r25,0r28,51r-18,0","w":159},"\u00cd":{"d":"29,0r0,-251r22,0r0,251r-22,0xm51,-313r25,0r-35,51r-18,0","w":79},"\u00ce":{"d":"29,0r0,-251r22,0r0,251r-22,0xm-5,-262r35,-51r20,0r35,51r-21,0r-24,-36r-25,36r-20,0","w":79},"\u00cf":{"d":"29,0r0,-251r22,0r0,251r-22,0xm3,-272r0,-35r20,0r0,35r-20,0xm57,-272r0,-35r20,0r0,35r-20,0","w":79},"\u00cc":{"d":"29,0r0,-251r22,0r0,251r-22,0xm4,-313r25,0r28,51r-18,0","w":79},"\u00d1":{"d":"29,0r0,-251r29,0r106,223r0,-223r21,0r0,251r-29,0r-106,-222r0,222r-21,0xm127,-270v-15,0,-28,-17,-38,-16v-10,0,-15,13,-15,17r-15,0v0,-4,3,-35,30,-35v18,0,47,36,51,-2r15,0v0,10,-7,36,-28,36","w":213,"k":{",":13,".":13}},"\u00d3":{"d":"18,-126v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,22,1,129,-88,129v-89,0,-89,-107,-89,-129xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107xm118,-313r25,0r-35,51r-18,0","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"\u00d4":{"d":"18,-126v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,22,1,129,-88,129v-89,0,-89,-107,-89,-129xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107xm62,-262r34,-51r21,0r35,51r-21,0r-24,-36r-25,36r-20,0","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"\u00d6":{"d":"18,-126v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,22,1,129,-88,129v-89,0,-89,-107,-89,-129xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107xm69,-272r0,-35r21,0r0,35r-21,0xm123,-272r0,-35r21,0r0,35r-21,0","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"\u00d2":{"d":"18,-126v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,22,1,129,-88,129v-89,0,-89,-107,-89,-129xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107xm71,-313r25,0r27,51r-18,0","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"\u00d5":{"d":"18,-126v0,-22,0,-128,89,-128v89,0,88,106,88,128v0,22,1,129,-88,129v-89,0,-89,-107,-89,-129xm42,-126v0,20,0,108,65,108v65,0,65,-88,65,-108v0,-20,0,-107,-65,-107v-65,0,-65,87,-65,107xm127,-270v-15,0,-28,-17,-38,-16v-10,0,-15,13,-15,17r-15,0v0,-4,3,-35,30,-35v18,0,47,36,51,-2r15,0v0,10,-7,36,-28,36","w":213,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":16,".":16}},"\u0160":{"d":"111,-64v0,-53,-102,-75,-93,-129v12,-74,68,-65,105,-53r-1,25v-24,-16,-80,-23,-80,25v0,25,13,34,35,50v45,33,58,44,58,79v0,62,-65,87,-115,58r2,-26v17,15,38,17,44,17v40,0,45,-37,45,-46xm66,-262r-35,-51r21,0r25,37r24,-37r21,0r-35,51r-21,0","w":153,"k":{",":13,".":13}},"\u00da":{"d":"103,3v-111,0,-64,-153,-74,-254r22,0r0,158v0,38,7,75,52,75v47,0,53,-41,53,-75r0,-158r22,0v-9,103,36,254,-75,254xm114,-313r25,0r-34,51r-18,0","w":206,"k":{",":13,".":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00db":{"d":"103,3v-111,0,-64,-153,-74,-254r22,0r0,158v0,38,7,75,52,75v47,0,53,-41,53,-75r0,-158r22,0v-9,103,36,254,-75,254xm58,-262r35,-51r21,0r35,51r-21,0r-25,-36r-24,36r-21,0","w":206,"k":{",":13,".":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00dc":{"d":"103,3v-111,0,-64,-153,-74,-254r22,0r0,158v0,38,7,75,52,75v47,0,53,-41,53,-75r0,-158r22,0v-9,103,36,254,-75,254xm66,-272r0,-35r21,0r0,35r-21,0xm120,-272r0,-35r21,0r0,35r-21,0","w":206,"k":{",":13,".":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00d9":{"d":"103,3v-111,0,-64,-153,-74,-254r22,0r0,158v0,38,7,75,52,75v47,0,53,-41,53,-75r0,-158r22,0v-9,103,36,254,-75,254xm67,-313r26,0r27,51r-18,0","w":206,"k":{",":13,".":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00dd":{"d":"79,0r0,-109r-64,-142r24,0r51,121r51,-121r24,0r-64,142r0,109r-22,0xm101,-313r25,0r-35,51r-18,0","w":180,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":46,".":46,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,"\u00c3":23,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"u":20,"\u00fa":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"-":40,"i":20,"\u0131":20,"\u00ed":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,":":16,";":16,"S":16,"\u0160":16}},"\u0178":{"d":"79,0r0,-109r-64,-142r24,0r51,121r51,-121r24,0r-64,142r0,109r-22,0xm53,-272r0,-35r20,0r0,35r-20,0xm107,-272r0,-35r20,0r0,35r-20,0","w":180,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":46,".":46,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,"\u00c3":23,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"u":20,"\u00fa":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"-":40,"i":20,"\u0131":20,"\u00ed":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,":":16,";":16,"S":16,"\u0160":16}},"\u017d":{"d":"13,0r0,-22r108,-208r-104,0r0,-21r127,0r0,21r-108,209r111,0r0,21r-134,0xm69,-262r-34,-51r20,0r25,37r24,-37r21,0r-35,51r-21,0","w":159},"\u00e1":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54xm91,-262r25,0r-35,51r-18,0","w":159},"\u00e2":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54xm35,-211r34,-51r21,0r35,51r-21,0r-24,-37r-25,37r-20,0","w":159},"\u00e4":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54xm96,-221r0,-35r21,0r0,35r-21,0xm42,-221r0,-35r21,0r0,35r-21,0","w":159},"\u00e0":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54xm44,-262r25,0r27,51r-18,0","w":159},"\u00e5":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54xm45,-239v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm57,-239v0,13,10,22,23,22v13,0,23,-9,23,-22v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23","w":159},"\u00e3":{"d":"136,-125r2,125r-18,0v-2,-8,0,-20,-3,-26v-23,48,-105,32,-102,-25v3,-65,63,-60,102,-60v0,-23,-1,-56,-39,-56v-24,0,-44,17,-46,19r-3,-22v17,-9,31,-16,51,-16v57,0,56,48,56,61xm117,-71r0,-22v-43,0,-80,0,-80,42v0,15,12,34,34,34v10,0,46,-4,46,-54xm100,-220v-15,0,-28,-16,-38,-15v-10,0,-15,13,-15,17r-15,0v0,-4,3,-35,30,-35v17,0,47,35,51,-2r15,0v0,10,-7,35,-28,35","w":159},"\u00e7":{"d":"125,-180r-1,24v-42,-22,-87,-5,-87,59v0,67,37,79,57,79v8,0,25,-3,31,-10r2,24v-10,4,-25,7,-39,7v-4,6,-10,11,-13,18v18,-6,40,2,40,22v0,32,-44,34,-70,23r4,-10v15,6,45,12,46,-11v0,-17,-22,-17,-34,-11v-9,-11,12,-22,16,-33v-33,-6,-62,-36,-62,-92v0,-70,47,-111,110,-89","w":133},"\u00e9":{"d":"139,-85r-102,0v0,68,44,68,52,68v12,0,30,-6,40,-15r1,24v-9,5,-21,11,-43,11v-72,0,-72,-77,-72,-95v0,-69,34,-94,65,-94v53,0,59,56,59,101xm37,-104r79,0v0,-49,-20,-63,-37,-63v-28,0,-42,39,-42,63xm87,-262r26,0r-35,51r-18,0","w":153,"k":{",":13,".":13}},"\u00ea":{"d":"139,-85r-102,0v0,68,44,68,52,68v12,0,30,-6,40,-15r1,24v-9,5,-21,11,-43,11v-72,0,-72,-77,-72,-95v0,-69,34,-94,65,-94v53,0,59,56,59,101xm37,-104r79,0v0,-49,-20,-63,-37,-63v-28,0,-42,39,-42,63xm31,-211r35,-51r21,0r35,51r-21,0r-24,-37r-25,37r-21,0","w":153,"k":{",":13,".":13}},"\u00eb":{"d":"139,-85r-102,0v0,68,44,68,52,68v12,0,30,-6,40,-15r1,24v-9,5,-21,11,-43,11v-72,0,-72,-77,-72,-95v0,-69,34,-94,65,-94v53,0,59,56,59,101xm37,-104r79,0v0,-49,-20,-63,-37,-63v-28,0,-42,39,-42,63xm39,-221r0,-35r21,0r0,35r-21,0xm93,-221r0,-35r21,0r0,35r-21,0","w":153,"k":{",":13,".":13}},"\u00e8":{"d":"139,-85r-102,0v0,68,44,68,52,68v12,0,30,-6,40,-15r1,24v-9,5,-21,11,-43,11v-72,0,-72,-77,-72,-95v0,-69,34,-94,65,-94v53,0,59,56,59,101xm37,-104r79,0v0,-49,-20,-63,-37,-63v-28,0,-42,39,-42,63xm41,-262r25,0r27,51r-18,0","w":153,"k":{",":13,".":13}},"\u00ed":{"d":"26,0r0,-184r21,0r0,184r-21,0xm48,-262r25,0r-35,51r-18,0","w":73},"\u00ee":{"d":"26,0r0,-184r21,0r0,184r-21,0xm-9,-211r35,-51r21,0r35,51r-21,0r-24,-37r-25,37r-21,0","w":73},"\u00ef":{"d":"26,0r0,-184r21,0r0,184r-21,0xm-1,-221r0,-35r21,0r0,35r-21,0xm53,-221r0,-35r21,0r0,35r-21,0","w":73},"\u00ec":{"d":"26,0r0,-184r21,0r0,184r-21,0xm1,-262r25,0r27,51r-18,0","w":73},"\u00f1":{"d":"24,0r-1,-184r19,0v2,7,0,17,3,27v4,-8,15,-29,46,-29v51,0,51,51,51,63r0,123r-21,0r0,-124v0,-13,0,-43,-34,-43v-63,0,-37,104,-42,167r-21,0xm104,-220v-15,0,-29,-16,-39,-15v-10,0,-15,13,-15,17r-15,0v0,-4,3,-35,30,-35v17,0,48,35,52,-2r15,0v0,10,-7,35,-28,35","w":166},"\u00f3":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm84,3v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v54,0,68,48,68,94v0,46,-14,95,-68,95xm94,-262r26,0r-35,51r-18,0","w":167,"k":{",":13,".":13,"x":3}},"\u00f4":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm84,3v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v54,0,68,48,68,94v0,46,-14,95,-68,95xm38,-211r35,-51r21,0r35,51r-21,0r-24,-37r-25,37r-21,0","w":167,"k":{",":13,".":13,"x":3}},"\u00f6":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm84,3v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v54,0,68,48,68,94v0,46,-14,95,-68,95xm46,-221r0,-35r21,0r0,35r-21,0xm100,-221r0,-35r21,0r0,35r-21,0","w":167,"k":{",":13,".":13,"x":3}},"\u00f2":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm84,3v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v54,0,68,48,68,94v0,46,-14,95,-68,95xm48,-262r25,0r27,51r-18,0","w":167,"k":{",":13,".":13,"x":3}},"\u00f5":{"d":"84,-17v46,0,46,-60,46,-75v0,-15,0,-75,-46,-75v-46,0,-47,60,-47,75v0,15,1,75,47,75xm84,3v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94v54,0,68,48,68,94v0,46,-14,95,-68,95xm104,-220v-15,0,-29,-16,-39,-15v-10,0,-15,13,-15,17r-15,0v0,-4,3,-35,30,-35v17,0,48,35,52,-2r15,0v0,10,-7,35,-28,35","w":167,"k":{",":13,".":13,"x":3}},"\u0161":{"d":"91,-49v0,-39,-88,-43,-76,-86v2,-49,49,-58,88,-46r-3,22v-22,-15,-66,-6,-62,21v-3,38,84,40,76,87v5,53,-65,64,-101,45r3,-24v16,16,75,20,75,-19xm53,-211r-35,-51r21,0r24,37r25,-37r21,0r-35,51r-21,0","w":126,"k":{",":13,".":13}},"\u00fa":{"d":"142,-184r2,184r-20,0v-2,-7,1,-17,-2,-27v-2,8,-16,30,-47,30v-40,0,-51,-29,-51,-58r0,-129r21,0r0,124v0,13,1,43,35,43v63,0,35,-105,41,-167r21,0xm94,-262r26,0r-35,51r-18,0","w":166},"\u00fb":{"d":"142,-184r2,184r-20,0v-2,-7,1,-17,-2,-27v-2,8,-16,30,-47,30v-40,0,-51,-29,-51,-58r0,-129r21,0r0,124v0,13,1,43,35,43v63,0,35,-105,41,-167r21,0xm38,-211r35,-51r21,0r35,51r-21,0r-24,-37r-25,37r-21,0","w":166},"\u00fc":{"d":"142,-184r2,184r-20,0v-2,-7,1,-17,-2,-27v-2,8,-16,30,-47,30v-40,0,-51,-29,-51,-58r0,-129r21,0r0,124v0,13,1,43,35,43v63,0,35,-105,41,-167r21,0xm46,-221r0,-35r21,0r0,35r-21,0xm100,-221r0,-35r21,0r0,35r-21,0","w":166},"\u00f9":{"d":"142,-184r2,184r-20,0v-2,-7,1,-17,-2,-27v-2,8,-16,30,-47,30v-40,0,-51,-29,-51,-58r0,-129r21,0r0,124v0,13,1,43,35,43v63,0,35,-105,41,-167r21,0xm48,-262r25,0r27,51r-18,0","w":166},"\u00fd":{"d":"26,-184r42,153r41,-153r21,0r-61,218v-6,30,-20,53,-55,44r1,-21v33,16,35,-30,43,-53r-54,-188r22,0xm77,-262r26,0r-35,51r-18,0","w":133,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00ff":{"d":"26,-184r42,153r41,-153r21,0r-61,218v-6,30,-20,53,-55,44r1,-21v33,16,35,-30,43,-53r-54,-188r22,0xm29,-221r0,-35r21,0r0,35r-21,0xm83,-221r0,-35r21,0r0,35r-21,0","w":133,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u017e":{"d":"11,0r0,-21r88,-143r-85,0r0,-20r107,0r0,21r-88,144r89,0r0,19r-111,0xm56,-211r-35,-51r21,0r25,37r24,-37r21,0r-35,51r-21,0","w":133},"\u00a0":{"w":86},"\u00ad":{"d":"17,-90r0,-21r73,0r0,21r-73,0","w":106}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1991, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Frutiger is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * FrutigerLTStd-Cn
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":173,"face":{"font-family":"FrutigerLTStd-Cn","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 6 6 2 2 4 2 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-11 -334 360 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"30","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86,"k":{"\u201c":13,"\u2018":13,"T":20,"V":20,"Y":20,"\u00dd":20,"\u0178":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"W":20}},"!":{"d":"76,-67r-26,0r-5,-184r36,0xm46,0r0,-40r35,0r0,40r-35,0","w":126},"\"":{"d":"104,-186r0,-84r26,0r0,84r-26,0xm50,-186r0,-84r26,0r0,84r-26,0","w":180},"#":{"d":"69,-153r-8,55r43,0r8,-55r-43,0xm26,0r11,-78r-36,0r0,-20r39,0r7,-55r-35,0r0,-20r38,0r10,-78r22,0r-11,78r43,0r11,-78r22,0r-11,78r35,0r0,20r-38,0r-7,55r35,0r0,20r-38,0r-11,78r-22,0r12,-78r-43,0r-11,78r-22,0","w":172},"$":{"d":"94,-105r0,75v30,-15,33,-53,0,-75xm80,-154r0,-70v-29,14,-36,50,0,70xm94,-145v31,18,56,44,56,76v0,35,-19,64,-56,70r0,33r-14,0r0,-32v-19,3,-42,-4,-56,-10r0,-33v17,10,35,17,56,16r0,-90v-35,-18,-57,-43,-57,-76v0,-36,25,-57,57,-62r0,-30r14,0r0,29v16,0,33,3,44,8r0,31v-13,-7,-28,-11,-44,-11r0,81","w":172},"%":{"d":"21,-184v0,-48,20,-70,50,-70v30,0,50,22,50,70v0,48,-20,69,-50,69v-30,0,-50,-21,-50,-69xm47,-184v0,33,7,48,24,48v17,0,24,-15,24,-48v0,-33,-7,-48,-24,-48v-17,0,-24,15,-24,48xm172,-67v0,-48,20,-69,50,-69v30,0,50,21,50,69v0,48,-20,70,-50,70v-30,0,-50,-22,-50,-70xm198,-67v0,33,7,48,24,48v17,0,24,-15,24,-48v0,-33,-7,-48,-24,-48v-17,0,-24,15,-24,48xm79,12r113,-275r23,0r-113,275r-23,0","w":293},"&":{"d":"141,-48r-56,-74v-43,19,-46,99,13,99v17,0,35,-13,43,-25xm213,0r-37,0r-20,-28v-33,56,-136,29,-136,-39v0,-35,17,-58,50,-76v-11,-16,-26,-37,-26,-58v0,-33,24,-53,58,-53v34,0,57,22,57,52v0,22,-14,46,-48,65r46,65v9,-21,14,-43,15,-69r31,0v-2,32,-11,65,-28,91xm130,-202v0,-14,-9,-27,-27,-27v-44,2,-30,51,-7,72v25,-15,34,-28,34,-45","w":219},"\u2019":{"d":"18,-186r18,-84r33,0r-24,84r-27,0","w":86,"k":{"\u201d":13,"\u2019":34,"d":20,"s":13,"\u0161":13}},"(":{"d":"95,48r-24,2v-65,-108,-65,-214,0,-322r24,2v-61,128,-61,190,0,318","w":100},")":{"d":"29,50r-24,-2v61,-128,61,-190,0,-318r24,-2v65,108,65,214,0,322","w":100},"*":{"d":"99,-223r44,-19r8,26r-46,11r31,35r-22,16r-24,-40r-24,40r-22,-16r31,-35r-46,-11r8,-26r43,19r-4,-47r28,0","w":180},"+":{"d":"17,-79r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79r-79,0","w":216},",":{"d":"9,43r18,-83r33,0r-23,83r-28,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"14,-88r0,-26r78,0r0,26r-78,0","w":106},".":{"d":"26,0r0,-40r34,0r0,40r-34,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"0,3r67,-257r26,0r-66,257r-27,0","w":93},"0":{"d":"45,-126v0,71,12,103,41,103v29,0,42,-32,42,-103v0,-71,-13,-102,-42,-102v-29,0,-41,31,-41,102xm13,-126v0,-84,26,-128,73,-128v47,0,73,44,73,128v0,84,-26,129,-73,129v-47,0,-73,-45,-73,-129","w":172},"1":{"d":"73,0r0,-215r-32,36r-17,-23r52,-49r28,0r0,251r-31,0","w":172},"2":{"d":"13,0r0,-28v64,-73,96,-123,96,-156v0,-49,-56,-52,-86,-23r-4,-32v55,-31,123,-12,123,49v0,44,-40,109,-94,163r97,0r0,27r-132,0","w":172},"3":{"d":"13,-7r3,-31v41,27,97,17,100,-36v1,-34,-32,-47,-73,-43r0,-26v43,3,73,-14,72,-44v-1,-45,-58,-51,-91,-27r-3,-29v50,-23,128,-13,126,51v0,35,-20,55,-47,60v31,4,49,30,49,62v0,40,-27,73,-82,73v-18,0,-40,-5,-54,-10","w":172},"4":{"d":"107,0r0,-57r-99,0r0,-30r91,-164r38,0r0,168r28,0r0,26r-28,0r0,57r-30,0xm107,-83r-1,-137r-71,137r72,0","w":172},"5":{"d":"22,-8r1,-29v37,27,96,12,96,-43v0,-52,-50,-63,-95,-45r0,-126r116,0r0,26r-85,0r0,70v52,-14,94,10,97,71v4,72,-67,106,-130,76","w":172},"6":{"d":"88,-133v-54,1,-53,109,0,110v54,-1,53,-109,0,-110xm148,-247r-1,30v-58,-33,-107,11,-103,89v9,-19,27,-31,50,-31v42,0,65,38,65,78v0,55,-31,84,-72,84v-54,0,-74,-46,-74,-119v0,-111,49,-156,135,-131","w":172},"7":{"d":"40,0r82,-224r-102,0r0,-27r133,0r0,30r-78,221r-35,0","w":172},"8":{"d":"86,-228v-48,0,-50,68,3,85v20,-14,34,-31,34,-50v0,-18,-16,-35,-37,-35xm45,-70v0,25,17,47,44,47v23,0,39,-19,39,-45v0,-23,-13,-38,-44,-52v-32,17,-39,31,-39,50xm13,-66v0,-32,18,-52,47,-64v-66,-32,-54,-124,26,-124v80,0,91,92,27,124v69,21,57,133,-27,133v-45,0,-73,-30,-73,-69","w":172},"9":{"d":"85,-228v-54,1,-53,109,0,110v54,-1,53,-109,0,-110xm24,-5r2,-29v57,33,107,-12,103,-89v-9,19,-27,31,-50,31v-42,0,-66,-39,-66,-79v0,-55,32,-83,73,-83v54,0,73,45,73,118v0,111,-50,159,-135,131","w":172},":":{"d":"26,-143r0,-41r34,0r0,41r-34,0xm26,0r0,-40r34,0r0,40r-34,0","w":86,"k":{" ":13}},";":{"d":"9,43r18,-83r33,0r-23,83r-28,0xm26,-143r0,-41r34,0r0,41r-34,0","w":86,"k":{" ":13}},"<":{"d":"17,-80r0,-23r182,-82r0,23r-155,71r155,70r0,24","w":216},"=":{"d":"17,-115r0,-25r182,0r0,25r-182,0xm17,-42r0,-25r182,0r0,25r-182,0","w":216},">":{"d":"17,3r0,-24r155,-70r-155,-71r0,-23r182,82r0,23","w":216},"?":{"d":"60,-65v-11,-49,47,-80,47,-121v0,-44,-50,-48,-80,-28r-1,-30v48,-22,112,-7,112,52v0,30,-23,64,-39,85v-9,13,-11,19,-11,42r-28,0xm57,0r0,-40r34,0r0,40r-34,0","w":159},"@":{"d":"97,-105v0,21,11,34,26,34v35,0,58,-45,58,-74v0,-20,-11,-32,-28,-32v-23,0,-56,30,-56,72xm222,-193r-34,114v0,4,2,8,8,8v26,0,52,-35,52,-76v0,-51,-39,-84,-96,-84v-67,0,-112,45,-112,105v0,60,45,105,104,105v48,0,75,-13,95,-37r23,0v-23,38,-66,61,-118,61v-71,0,-128,-58,-128,-129v0,-71,57,-128,136,-128v68,0,120,48,120,107v0,60,-51,98,-81,98v-16,1,-24,-10,-29,-22v-29,40,-97,20,-92,-32v-8,-62,84,-137,122,-68r7,-22r23,0","w":288},"A":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125","w":206},"B":{"d":"28,0r0,-251r63,0v84,-7,91,101,29,119v69,17,64,136,-32,132r-60,0xm59,-225r0,82v41,3,71,-9,71,-43v0,-31,-31,-43,-71,-39xm59,-117r0,91v44,5,76,-11,76,-45v0,-38,-32,-51,-76,-46","w":186,"k":{"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"C":{"d":"176,-37r0,32v-92,32,-159,-36,-159,-121v0,-96,75,-150,159,-119r0,31v-60,-32,-123,1,-126,82v-3,85,59,130,126,95","w":193},"D":{"d":"24,0r0,-251v109,-3,163,11,168,121v4,86,-57,141,-168,130xm56,-224r0,197v70,6,102,-31,103,-103v1,-60,-30,-101,-103,-94","w":206,"k":{"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"W":-4}},"E":{"d":"28,0r0,-251r117,0r0,27r-86,0r0,80r82,0r0,27r-82,0r0,90r90,0r0,27r-121,0","w":166},"F":{"d":"28,0r0,-251r112,0r0,27r-81,0r0,80r77,0r0,27r-77,0r0,117r-31,0","w":153,"k":{"\u00eb":13,"\u00e3":16,"\u00e0":16,"\u00e4":16,",":46,".":46,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e5":16,"e":13,"\u00e9":13,"\u00ea":13,"\u00e8":13,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"r":16}},"G":{"d":"193,-138r0,128v-15,5,-41,13,-63,13v-80,0,-113,-61,-113,-129v0,-102,83,-152,171,-117r0,32v-66,-35,-136,-9,-138,79v-2,77,45,125,112,100r0,-79r-42,0r0,-27r73,0","w":220,"k":{",":13,".":13}},"H":{"d":"28,0r0,-251r31,0r0,107r88,0r0,-107r32,0r0,251r-32,0r0,-117r-88,0r0,117r-31,0","w":206},"I":{"d":"28,0r0,-251r31,0r0,251r-31,0","w":87},"J":{"d":"8,0r0,-31v28,9,50,-3,50,-37r0,-183r31,0r0,185v2,51,-30,79,-81,66","w":113,"k":{",":21,".":21,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"K":{"d":"24,0r0,-251r32,0r1,109r83,-109r37,0r-94,119r102,132r-41,0r-88,-122r0,122r-32,0","w":186,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"y":16,"\u00fd":16,"\u00ff":16}},"L":{"d":"28,0r0,-251r31,0r0,224r83,0r0,27r-114,0","w":146,"k":{"T":27,"V":20,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":47,"\u2019":33,"W":13,"y":16,"\u00fd":16,"\u00ff":16}},"M":{"d":"28,0r0,-251r49,0r63,200r65,-200r47,0r0,251r-30,0r-1,-217r-71,217r-23,0r-69,-217r0,217r-30,0","w":280},"N":{"d":"28,0r0,-251r39,0r95,207r0,-207r31,0r0,251r-40,0r-95,-206r0,206r-30,0","w":220,"k":{",":13,".":13}},"O":{"d":"17,-123v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,87,-35,131,-94,131v-56,0,-92,-48,-92,-126xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"P":{"d":"28,-251v72,-4,134,1,134,71v0,57,-39,80,-103,75r0,105r-31,0r0,-251xm59,-225r0,94v44,4,70,-11,70,-46v0,-42,-28,-50,-70,-48","k":{"\u00e4":20,",":46,".":46,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"Q":{"d":"198,47r-39,0r-38,-46v-65,11,-103,-42,-104,-124v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,64,-19,105,-53,122xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105","w":220,"k":{",":13,".":13}},"R":{"d":"92,-251v83,-8,101,109,22,125v13,6,22,10,27,25r36,101r-34,0r-29,-85v-7,-26,-24,-30,-55,-29r0,114r-31,0r0,-251r64,0xm59,-225r0,85v42,5,72,-13,72,-44v0,-38,-32,-44,-72,-41","w":186,"k":{"T":13,"V":9,"Y":16,"\u00dd":16,"\u0178":16}},"S":{"d":"131,-246r0,31v-28,-19,-84,-13,-82,26v0,16,7,26,43,47v39,22,52,44,52,73v0,40,-25,72,-73,72v-20,0,-40,-5,-53,-11r0,-33v30,25,94,20,93,-23v0,-19,-5,-31,-39,-52v-45,-27,-56,-43,-56,-75v0,-58,67,-75,115,-55","w":159,"k":{",":20,".":20}},"T":{"d":"64,0r0,-224r-58,0r0,-27r147,0r0,27r-57,0r0,224r-32,0","w":159,"k":{"\u00fc":27,"\u00f2":27,"\u00f6":27,"\u00ec":13,"\u00ee":13,"\u00ed":13,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":40,".":40,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"a":27,"\u00e6":27,"\u00e1":27,"e":27,"\u00e9":27,"i":13,"\u0131":13,"\u00ef":13,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"r":27,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,"y":13,"\u00fd":13,"\u00ff":13,"-":20,"h":13,"w":23,":":27,";":27}},"U":{"d":"107,3v-115,0,-71,-149,-79,-254r31,0r0,163v0,39,18,65,48,65v30,0,47,-26,47,-65r0,-163r31,0v-8,105,36,254,-78,254","w":213,"k":{",":20,".":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"V":{"d":"80,0r-77,-251r35,0r59,205r61,-205r32,0r-79,251r-31,0","w":193,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":7,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":40,".":40,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"i":7,"\u0131":7,"\u00ed":7,"\u00ef":7,"\u00ec":7,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":16,":":13,";":13}},"W":{"d":"58,0r-55,-251r33,0r42,203r45,-203r40,0r46,203r44,-203r30,0r-54,251r-38,0r-48,-215r-48,215r-37,0","w":286,"k":{"\u00fc":7,"\u00f6":6,"\u00ea":6,"\u00e4":13,",":13,".":13,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,"u":7,"\u00fa":7,"\u00fb":7,"\u00f9":7,"-":7,":":13,";":13}},"X":{"d":"2,0r76,-133r-67,-118r38,0r52,92r51,-92r34,0r-70,119r75,132r-37,0r-59,-105r-57,105r-36,0","w":193},"Y":{"d":"77,0r0,-105r-75,-146r36,0r56,111r55,-111r35,0r-75,146r0,105r-32,0","w":186,"k":{"\u00fc":16,"\u00f6":29,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":46,".":46,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"\u00e3":29,"e":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00e8":29,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":29,"\u00f8":29,"\u0153":29,"\u00f3":29,"\u00f4":29,"\u00f2":29,"\u00f5":29,"u":16,"\u00fa":16,"\u00fb":16,"\u00f9":16,"-":33,":":27,";":27,"S":13,"\u0160":13}},"Z":{"d":"12,0r0,-30r102,-194r-99,0r0,-27r137,0r0,27r-105,197r107,0r0,27r-142,0","w":166},"[":{"d":"32,50r0,-322r55,0r0,21r-29,0r0,280r29,0r0,21r-55,0","w":100},"\\":{"d":"67,3r-67,-257r27,0r66,257r-26,0","w":93},"]":{"d":"13,50r0,-21r29,0r0,-280r-29,0r0,-21r55,0r0,322r-55,0","w":100},"^":{"d":"17,-95r79,-156r24,0r79,156r-26,0r-65,-132r-65,132r-26,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"18,-186r23,-84r28,0r-18,84r-33,0","w":86,"k":{"\u2018":34,"A":36,"\u00c6":36,"\u00c1":36,"\u00c2":36,"\u00c4":36,"\u00c0":36,"\u00c5":36,"\u00c3":36}},"a":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32","w":166},"b":{"d":"49,-92v0,46,13,70,41,70v28,0,40,-24,40,-70v0,-46,-12,-70,-40,-70v-28,0,-41,24,-41,70xm18,0r1,-270r30,0r1,112v40,-57,110,-25,110,66v0,96,-78,119,-112,65r-1,27r-29,0","k":{",":13,".":13}},"c":{"d":"131,-179r-1,27v-44,-20,-85,-5,-85,62v0,61,44,81,86,57r2,28v-63,27,-120,-17,-120,-85v0,-73,54,-113,118,-89","w":140},"d":{"d":"124,-92v0,-46,-12,-70,-40,-70v-28,0,-41,24,-41,70v0,46,13,70,41,70v28,0,40,-24,40,-70xm154,-270r2,270r-30,0r-1,-27v-8,14,-22,30,-49,30v-38,0,-63,-32,-63,-95v0,-92,69,-121,111,-66r0,-112r30,0"},"e":{"d":"148,-83r-103,0v-6,64,55,75,92,47r1,28v-64,30,-125,-2,-125,-84v0,-58,25,-94,71,-94v46,0,68,43,64,103xm45,-106r73,0v0,-38,-12,-57,-36,-57v-19,0,-36,14,-37,57","w":159,"k":{",":13,".":13}},"f":{"d":"35,0r0,-159r-29,0r0,-25r29,0v-2,-47,-3,-92,46,-90v8,0,16,1,23,3r0,25v-18,-10,-39,-2,-39,24r0,38r33,0r0,25r-33,0r0,159r-30,0","w":100,"k":{"\u201d":13,",":20,".":20}},"g":{"d":"43,-92v0,46,13,70,41,70v28,0,40,-24,40,-70v0,-46,-12,-70,-40,-70v-28,0,-41,24,-41,70xm156,-184v-4,61,-1,128,-2,192v-1,74,-76,83,-132,61r1,-31v35,28,110,19,102,-38r0,-28v-39,61,-112,29,-112,-64v0,-90,73,-123,112,-65r1,-27r30,0"},"h":{"d":"22,0r0,-270r30,0r1,112v21,-44,99,-36,99,31r0,127r-31,0r0,-118v0,-29,-11,-42,-30,-42v-59,-1,-34,103,-39,160r-30,0"},"i":{"d":"25,0r0,-184r30,0r0,184r-30,0xm23,-259r34,0r0,36r-34,0r0,-36","w":79},"j":{"d":"-4,77r0,-25v17,4,29,4,29,-22r0,-214r30,0r0,218v4,38,-24,53,-59,43xm23,-259r34,0r0,36r-34,0r0,-36","w":79},"k":{"d":"52,-110r63,-74r35,0r-72,82r79,102r-37,0r-68,-93r0,93r-30,0r0,-270r30,0r0,160","w":159,"k":{"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"l":{"d":"25,0r0,-270r30,0r0,270r-30,0","w":79},"m":{"d":"22,0r-1,-184r29,0r1,28v17,-40,72,-40,89,-1v22,-47,98,-36,98,30r0,127r-30,0r0,-126v0,-23,-10,-34,-28,-34v-55,1,-29,105,-35,160r-30,0r0,-126v0,-23,-10,-34,-28,-34v-55,1,-29,105,-35,160r-30,0","w":259},"n":{"d":"22,0r-1,-184r29,0r1,28v22,-50,101,-37,101,29r0,127r-31,0r0,-118v0,-29,-11,-42,-30,-42v-59,-1,-34,103,-39,160r-30,0"},"o":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm13,-92v0,-58,25,-94,74,-94v49,0,74,36,74,94v0,58,-25,95,-74,95v-49,0,-74,-37,-74,-95","k":{",":13,".":13}},"p":{"d":"49,-92v0,46,13,70,41,70v28,0,40,-24,40,-70v0,-46,-12,-70,-40,-70v-28,0,-41,24,-41,70xm19,78r-1,-262r29,0v1,8,-1,20,2,27v8,-14,21,-29,48,-29v38,0,63,31,63,94v0,92,-69,123,-111,67r0,103r-30,0","k":{",":13,".":13}},"q":{"d":"124,-92v0,-46,-12,-70,-40,-70v-28,0,-41,24,-41,70v0,46,13,70,41,70v28,0,40,-24,40,-70xm124,78r-1,-103v-40,57,-110,24,-110,-67v0,-95,79,-119,112,-65r1,-27r30,0r-2,262r-30,0"},"r":{"d":"22,0r-1,-184r29,0r1,29v10,-22,26,-31,53,-31r0,30v-66,-16,-50,92,-52,156r-30,0","w":106,"k":{",":33,".":33,"-":16}},"s":{"d":"12,-8r2,-28v22,19,78,20,78,-12v0,-39,-88,-37,-79,-85v-4,-44,56,-64,98,-47r-2,26v-19,-12,-68,-12,-66,18v3,37,86,33,78,82v9,53,-67,71,-109,46","w":133,"k":{",":13,".":13}},"t":{"d":"103,-27r0,25v-33,12,-68,4,-68,-39r0,-118r-29,0r0,-25r29,0r0,-37r30,-9r0,46r38,0r0,25r-38,0r0,108v-3,32,20,33,38,24","w":106},"u":{"d":"152,-184r1,184r-29,0v-1,-8,1,-20,-2,-27v-22,50,-100,36,-100,-29r0,-128r30,0r0,119v0,29,11,42,30,42v59,0,34,-103,39,-161r31,0"},"v":{"d":"59,0r-56,-184r33,0r41,154r41,-154r32,0r-55,184r-36,0","w":153,"k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"w":{"d":"243,-184r-48,184r-34,0r-39,-155r-36,155r-34,0r-49,-184r32,0r36,154r34,-154r36,0r38,154r34,-154r30,0","w":246,"k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"x":{"d":"3,0r55,-99r-49,-85r33,0r35,67r35,-67r33,0r-51,86r56,98r-34,0r-41,-76r-39,76r-33,0","w":153},"y":{"d":"143,-184r-63,221v-11,39,-29,48,-66,41r1,-28v18,6,31,9,37,-19r7,-28r-58,-187r32,0r42,150r38,-150r30,0","w":146,"k":{",":27,".":27}},"z":{"d":"14,-184r113,0r0,28r-85,130r87,0r0,26r-118,0r0,-27r85,-131r-82,0r0,-26","w":140},"{":{"d":"97,-272r0,16v-49,-12,-32,56,-32,94v0,35,-20,49,-31,51v11,2,31,16,31,51v0,36,-21,104,32,94r0,16v-36,3,-57,-6,-58,-43v-1,-41,9,-111,-28,-110r0,-16v65,-4,-22,-174,86,-153","w":100},"|":{"d":"26,90r0,-360r28,0r0,360r-28,0","w":79},"}":{"d":"3,50r0,-16v22,1,32,1,32,-26r0,-68v0,-35,20,-49,31,-51v-11,-2,-31,-16,-31,-51v0,-36,20,-104,-32,-94r0,-16v36,-3,57,6,58,43v1,41,-9,111,28,110r0,16v-65,4,22,174,-86,153","w":100},"~":{"d":"70,-117v17,-4,66,27,77,27v8,0,19,-8,31,-27r13,19v-13,23,-28,32,-45,32v-12,4,-67,-29,-79,-26v-9,0,-17,6,-29,26r-13,-18v13,-23,27,-33,45,-33","w":216},"\u00a1":{"d":"81,68r-36,0r5,-185r26,0xm46,-143r0,-41r35,0r0,41r-35,0","w":126},"\u00a2":{"d":"84,-29r19,-131v-28,1,-47,22,-47,70v0,31,11,52,28,61xm143,-179r-2,27v-7,-4,-14,-6,-22,-7r-20,135v16,4,32,-4,44,-9r1,28v-12,5,-33,10,-49,7r-7,44r-16,0r7,-47v-37,-10,-55,-46,-55,-89v0,-59,31,-96,83,-96r6,-42r16,0r-6,43v7,1,15,3,20,6","w":172},"\u00a3":{"d":"19,0r0,-26r25,0r0,-95r-25,0r0,-23r25,0v-11,-88,43,-130,115,-102r-3,28v-33,-20,-84,-13,-82,41r0,33r58,0r0,23r-58,0r0,95r83,0r0,26r-138,0","w":172},"\u00a5":{"d":"72,0r0,-51r-55,0r0,-23r55,0r0,-26r-55,0r0,-23r46,0r-61,-128r33,0r51,110r52,-110r33,0r-61,128r46,0r0,23r-54,0r0,26r54,0r0,23r-54,0r0,51r-30,0","w":172},"\u0192":{"d":"8,75r4,-26v39,12,37,9,49,-73r15,-101r-32,0r0,-23r36,0v8,-66,26,-131,85,-100r-4,24v-38,-25,-43,27,-50,76r32,0r0,23r-35,0v-17,75,-13,241,-100,200","w":172},"\u00a7":{"d":"23,34r3,-28v24,22,87,25,87,-16v0,-42,-90,-48,-90,-96v0,-16,6,-32,33,-52v-45,-26,-24,-98,37,-96v14,0,38,6,46,11r-4,27v-26,-18,-72,-18,-73,16v6,40,88,49,88,97v0,21,-22,42,-31,49v12,8,24,19,24,43v1,60,-76,72,-120,45xm73,-147v-32,37,-28,52,29,83v28,-38,23,-55,-29,-83","w":172},"\u00a4":{"d":"27,-126v0,36,25,61,59,61v34,0,59,-25,59,-61v0,-36,-25,-60,-59,-60v-34,0,-59,24,-59,60xm16,-41r-14,-15r19,-19v-23,-27,-24,-75,0,-102r-19,-18r14,-15r19,19v28,-24,75,-24,103,0r19,-19r14,15r-19,18v23,27,25,75,0,102r19,19r-14,15r-19,-19v-28,24,-75,24,-103,0","w":172},"'":{"d":"30,-186r0,-84r26,0r0,84r-26,0","w":86},"\u201c":{"d":"91,-186r24,-84r28,0r-18,84r-34,0xm37,-186r24,-84r28,0r-18,84r-34,0","w":180,"k":{"\u2018":13,"A":46,"\u00c6":46,"\u00c1":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u00c5":46,"\u00c3":46}},"\u00ab":{"d":"125,-19r-40,-75r40,-74r26,0r-36,74r36,75r-26,0xm69,-19r-40,-75r40,-74r26,0r-36,74r36,75r-26,0","w":180},"\u2013":{"d":"0,-89r0,-24r180,0r0,24r-180,0","w":180},"\u00b7":{"d":"20,-107v0,-13,10,-23,23,-23v13,0,23,10,23,23v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23","w":86},"\u00b6":{"d":"87,45r0,-160v-44,0,-74,-30,-74,-67v0,-76,83,-71,159,-69r0,296r-23,0r0,-276r-38,0r0,276r-24,0","w":199},"\u201d":{"d":"37,-186r18,-84r34,0r-24,84r-28,0xm91,-186r18,-84r34,0r-24,84r-28,0","w":180,"k":{" ":13}},"\u00bb":{"d":"29,-19r36,-75r-36,-74r26,0r40,74r-40,75r-26,0xm85,-19r36,-75r-36,-74r26,0r40,74r-40,75r-26,0","w":180},"\u2026":{"d":"43,0r0,-40r34,0r0,40r-34,0xm163,0r0,-40r34,0r0,40r-34,0xm283,0r0,-40r34,0r0,40r-34,0","w":360},"\u00bf":{"d":"99,-118v11,49,-46,80,-46,120v0,44,49,49,79,29r2,29v-48,22,-112,8,-112,-52v0,-51,51,-71,50,-126r27,0xm103,-184r0,41r-35,0r0,-41r35,0","w":159},"`":{"d":"32,-209r-37,-52r36,0r24,52r-23,0","w":73},"\u00b4":{"d":"19,-209r24,-52r35,0r-36,52r-23,0","w":73},"\u00af":{"d":"-11,-225r0,-21r95,0r0,21r-95,0","w":73},"\u00a8":{"d":"-6,-221r0,-36r28,0r0,36r-28,0xm51,-221r0,-36r29,0r0,36r-29,0","w":73},"\u00b8":{"d":"39,0r16,0r-15,22v20,-4,42,3,41,24v6,29,-51,40,-74,25r5,-12v15,7,43,5,43,-11v0,-22,-31,-5,-36,-17","w":73},"\u2014":{"d":"0,-89r0,-24r360,0r0,24r-360,0","w":360},"\u00c6":{"d":"3,0r125,-251r132,0r0,27r-80,0r0,80r75,0r0,27r-75,0r0,90r83,0r0,27r-115,0r0,-66r-78,0r-32,66r-35,0xm82,-93r66,0r0,-135","w":280},"\u00aa":{"d":"21,-226r-2,-19v28,-18,78,-9,79,29r1,73r-20,0v-1,-5,1,-12,-2,-15v-10,25,-74,23,-69,-14v-3,-28,26,-42,69,-39v7,-35,-42,-30,-56,-15xm50,-157v22,-1,29,-16,27,-38v-21,-4,-51,2,-47,20v0,11,6,18,20,18","w":106},"\u0141":{"d":"28,0r0,-100r-24,23r0,-31r24,-23r0,-120r31,0r0,90r46,-44r0,31r-46,44r0,103r83,0r0,27r-114,0","w":146,"k":{"T":27,"V":20,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":47,"\u2019":33,"W":13,"y":16,"\u00fd":16,"\u00ff":16}},"\u00d8":{"d":"57,-71r100,-126v-9,-19,-24,-31,-45,-31v-33,0,-62,28,-62,105v0,18,2,37,7,52xm163,-180r-99,125v9,19,24,32,45,32v33,0,61,-28,61,-105v0,-18,-2,-37,-7,-52xm5,-4r30,-38v-12,-21,-18,-49,-18,-81v0,-122,96,-168,160,-99r27,-34r12,9r-31,38v12,21,18,49,18,81v0,122,-96,168,-159,99r-27,34","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"\u0152":{"d":"17,-123v0,-107,50,-128,145,-128r98,0r0,27r-80,0r0,80r75,0r0,27r-75,0r0,90r83,0r0,27r-158,3v-52,0,-88,-48,-88,-126xm148,-27r0,-197v-64,-14,-98,8,-98,101v0,81,31,107,98,96","w":280},"\u00ba":{"d":"31,-197v0,26,9,39,26,39v17,0,25,-13,25,-39v0,-27,-8,-40,-25,-40v-17,0,-26,13,-26,40xm7,-197v0,-35,17,-57,50,-57v33,0,49,22,49,57v0,34,-16,56,-49,56v-33,0,-50,-22,-50,-56","w":113},"\u00e6":{"d":"145,-114r73,0v0,-30,-12,-49,-36,-49v-19,0,-36,14,-37,49xm32,-143r-3,-28v34,-21,86,-24,104,16v9,-18,24,-31,51,-31v43,-1,66,38,64,95r-103,0v-5,74,51,83,92,55r1,28v-38,19,-100,14,-111,-27v-20,53,-114,54,-114,-15v0,-42,37,-69,104,-64v7,-56,-59,-59,-85,-29xm74,-21v29,1,46,-29,43,-70v-46,-2,-74,13,-74,41v0,17,10,29,31,29","w":259},"\u0131":{"d":"25,0r0,-184r30,0r0,184r-30,0","w":79},"\u0142":{"d":"25,0r-1,-111r-24,31r0,-26r25,-31r0,-133r30,0r1,94r24,-30r0,26r-25,31r0,149r-30,0","w":79},"\u00f8":{"d":"49,-55r70,-89v-29,-38,-74,-14,-74,52v0,14,1,27,4,37xm19,5r-11,-9r20,-25v-32,-53,-14,-157,59,-157v21,0,38,7,50,20r17,-22r11,8r-20,25v33,52,15,158,-58,158v-22,0,-38,-8,-50,-21xm125,-129r-70,89v29,38,74,14,74,-52v0,-14,-1,-27,-4,-37","k":{",":13,".":13}},"\u0153":{"d":"45,-92v0,46,13,70,44,70v31,0,43,-24,43,-70v0,-46,-12,-70,-43,-70v-31,0,-44,24,-44,70xm161,-106r77,0v0,-38,-11,-57,-37,-57v-22,0,-40,14,-40,57xm269,-83r-108,0v-7,64,60,75,96,47r1,28v-41,19,-96,16,-111,-29v-34,75,-134,37,-134,-55v0,-58,26,-94,76,-94v31,0,46,12,58,38v29,-69,132,-39,122,49r0,16","w":280,"k":{",":13,".":13}},"\u00df":{"d":"21,0r0,-196v0,-46,18,-78,66,-78v72,0,90,109,22,129v31,7,51,17,51,72v0,47,-33,88,-89,73r1,-26v30,9,58,6,58,-42v0,-54,-15,-59,-54,-61r0,-26v33,0,44,-12,44,-54v0,-26,-9,-41,-33,-41v-32,0,-36,28,-36,56r0,194r-30,0","k":{",":13,".":13}},"\u00b9":{"d":"45,-102r0,-126r-21,21r-10,-16v17,-11,23,-33,56,-29r0,150r-25,0","w":103},"\u00ac":{"d":"17,-115r0,-25r182,0r0,99r-24,0r0,-74r-158,0","w":216},"\u00b5":{"d":"22,78r0,-262r30,0r0,119v0,29,11,42,30,42v59,0,34,-103,39,-161r31,0r1,184r-29,0v-1,-8,1,-20,-2,-27v-12,31,-50,39,-70,18r0,87r-30,0"},"\u2122":{"d":"66,-102r0,-133r-47,0r0,-16r117,0r0,16r-47,0r0,133r-23,0xm165,-102r0,-149r37,0r44,115r43,-115r37,0r0,149r-23,0r-1,-130r-49,130r-15,0r-50,-130r0,130r-23,0","w":360},"\u00d0":{"d":"24,0r0,-122r-28,0r0,-23r28,0r0,-106v109,-3,163,11,168,121v4,86,-57,141,-168,130xm56,-224r0,79r58,0r0,23r-58,0r0,95v70,6,102,-31,103,-103v1,-60,-30,-101,-103,-94","w":206,"k":{"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"W":-4}},"\u00bd":{"d":"62,12r113,-275r23,0r-113,275r-23,0xm45,-102r0,-126r-21,21r-10,-16v17,-11,23,-33,56,-29r0,150r-25,0xm163,0r0,-17v41,-44,62,-73,62,-92v1,-29,-37,-31,-55,-13r-3,-21v34,-19,82,-7,82,29v0,25,-25,64,-60,95r63,0r0,19r-89,0","w":259},"\u00b1":{"d":"17,-97r0,-25r79,0r0,-60r24,0r0,60r79,0r0,25r-79,0r0,61r-24,0r0,-61r-79,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},"\u00de":{"d":"59,-208v62,-5,103,14,103,71v0,57,-39,80,-103,75r0,62r-31,0r0,-251r31,0r0,43xm59,-182r0,94v44,4,70,-11,70,-46v0,-42,-28,-50,-70,-48"},"\u00bc":{"d":"217,0r0,-32r-64,0r0,-20r58,-99r29,0r0,101r17,0r0,18r-17,0r0,32r-23,0xm217,-50v-1,-26,2,-55,-1,-79r-44,79r45,0xm62,12r113,-275r23,0r-113,275r-23,0xm45,-102r0,-126r-21,21r-10,-16v17,-11,23,-33,56,-29r0,150r-25,0","w":259},"\u00f7":{"d":"17,-79r0,-24r182,0r0,24r-182,0xm85,-162v0,-13,10,-23,23,-23v13,0,23,10,23,23v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23xm85,-21v0,-13,10,-23,23,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-23,-11,-23,-24","w":216},"\u00a6":{"d":"26,63r0,-126r28,0r0,126r-28,0xm26,-117r0,-126r28,0r0,126r-28,0","w":79},"\u00b0":{"d":"15,-197v0,-31,26,-57,57,-57v31,0,57,26,57,57v0,31,-26,57,-57,57v-31,0,-57,-26,-57,-57xm35,-197v0,20,17,37,37,37v20,0,37,-17,37,-37v0,-20,-17,-37,-37,-37v-20,0,-37,17,-37,37","w":144},"\u00fe":{"d":"49,-92v0,46,13,70,41,70v28,0,40,-24,40,-70v0,-46,-12,-70,-40,-70v-28,0,-41,24,-41,70xm19,78r0,-348r30,0r1,112v6,-13,20,-28,47,-28v38,0,63,31,63,94v0,92,-69,123,-111,67r0,103r-30,0","k":{",":13,".":13}},"\u00be":{"d":"217,0r0,-32r-64,0r0,-20r58,-99r29,0r0,101r17,0r0,18r-17,0r0,32r-23,0xm217,-50v-1,-26,2,-55,-1,-79r-44,79r45,0xm62,12r113,-275r23,0r-113,275r-23,0xm7,-105r2,-21v26,15,62,11,64,-21v1,-19,-21,-27,-46,-24r0,-17v26,2,46,-8,45,-24v-1,-27,-38,-31,-58,-16r-2,-20v32,-12,83,-8,83,32v0,22,-15,31,-30,36v20,2,31,18,31,37v0,38,-52,52,-89,38","w":259},"\u00b2":{"d":"7,-102r0,-16v41,-44,62,-74,62,-93v1,-28,-37,-30,-55,-13r-3,-20v34,-20,84,-9,83,28v0,25,-26,65,-61,96r63,0r0,18r-89,0","w":103},"\u00ae":{"d":"95,-51r0,-150v49,0,109,-8,109,42v0,24,-16,42,-39,42r43,66r-26,0r-41,-66r-21,0r0,66r-25,0xm120,-182r0,46v28,-1,60,6,60,-24v0,-27,-34,-22,-60,-22xm16,-126v0,-71,57,-128,128,-128v71,0,128,57,128,128v0,71,-57,129,-128,129v-71,0,-128,-58,-128,-129xm40,-126v0,60,45,105,104,105v59,0,104,-45,104,-105v0,-60,-45,-105,-104,-105v-59,0,-104,45,-104,105","w":288},"\u00f0":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm49,-220r-12,-10r28,-17v-9,-6,-21,-11,-31,-14r11,-13v15,3,28,9,40,15r26,-15r12,9r-25,16v39,28,63,74,63,140v0,75,-23,112,-74,112v-49,0,-74,-37,-74,-95v0,-79,67,-114,112,-79v-9,-30,-28,-53,-48,-66"},"\u00d7":{"d":"43,-8r-18,-18r65,-65r-65,-65r18,-18r65,65r65,-65r18,18r-65,65r65,65r-18,18r-65,-65","w":216},"\u00b3":{"d":"7,-105r2,-21v26,15,62,11,64,-21v1,-19,-21,-27,-46,-24r0,-17v26,2,46,-8,45,-24v-1,-27,-38,-31,-58,-16r-2,-20v32,-12,83,-8,83,32v0,22,-15,31,-30,36v20,2,31,18,31,37v0,38,-52,52,-89,38","w":103},"\u00a9":{"d":"190,-101r22,0v-17,93,-146,56,-140,-25v-10,-85,128,-113,140,-26r-22,0v-17,-62,-100,-34,-94,26v-7,59,83,87,94,25xm16,-126v0,-71,57,-128,128,-128v71,0,128,57,128,128v0,71,-57,129,-128,129v-71,0,-128,-58,-128,-129xm40,-126v0,60,45,105,104,105v59,0,104,-45,104,-105v0,-60,-45,-105,-104,-105v-59,0,-104,45,-104,105","w":288},"\u00c1":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125xm85,-264r24,-52r36,0r-37,52r-23,0","w":206},"\u00c2":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125xm54,-264r36,-52r27,0r36,52r-27,0r-23,-32r-22,32r-27,0","w":206},"\u00c4":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125xm60,-276r0,-36r29,0r0,36r-29,0xm118,-276r0,-36r29,0r0,36r-29,0","w":206},"\u00c0":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125xm98,-264r-36,-52r35,0r24,52r-23,0","w":206},"\u00c5":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125xm66,-297v0,-21,16,-37,37,-37v21,0,38,16,38,37v0,21,-17,37,-38,37v-21,0,-37,-16,-37,-37xm82,-297v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21","w":206},"\u00c3":{"d":"87,-251r35,0r82,251r-33,0r-21,-66r-95,0r-20,66r-32,0xm63,-93r79,0r-39,-125xm51,-270v4,-48,44,-42,74,-25v6,0,10,-5,12,-15r19,0v-4,50,-44,39,-72,25v-6,0,-14,3,-15,15r-18,0","w":206},"\u00c7":{"d":"176,-37r0,32v-18,6,-36,10,-55,7r-13,20v20,-4,41,4,41,24v5,29,-51,40,-75,25r5,-12v15,7,44,5,44,-11v0,-22,-32,-5,-37,-17r20,-31v-62,-12,-89,-66,-89,-126v0,-96,75,-150,159,-119r0,31v-60,-32,-123,1,-126,82v-3,85,59,130,126,95","w":193},"\u00c9":{"d":"28,0r0,-251r117,0r0,27r-86,0r0,80r82,0r0,27r-82,0r0,90r90,0r0,27r-121,0xm66,-264r24,-52r35,0r-36,52r-23,0","w":166},"\u00ca":{"d":"28,0r0,-251r117,0r0,27r-86,0r0,80r82,0r0,27r-82,0r0,90r90,0r0,27r-121,0xm34,-264r36,-52r27,0r36,52r-27,0r-22,-32r-23,32r-27,0","w":166},"\u00cb":{"d":"28,0r0,-251r117,0r0,27r-86,0r0,80r82,0r0,27r-82,0r0,90r90,0r0,27r-121,0xm40,-276r0,-36r29,0r0,36r-29,0xm98,-276r0,-36r29,0r0,36r-29,0","w":166},"\u00c8":{"d":"28,0r0,-251r117,0r0,27r-86,0r0,80r82,0r0,27r-82,0r0,90r90,0r0,27r-121,0xm78,-264r-36,-52r35,0r25,52r-24,0","w":166},"\u00cd":{"d":"28,0r0,-251r31,0r0,251r-31,0xm26,-264r24,-52r35,0r-36,52r-23,0","w":87},"\u00ce":{"d":"28,0r0,-251r31,0r0,251r-31,0xm-6,-264r36,-52r27,0r36,52r-27,0r-22,-32r-23,32r-27,0","w":87},"\u00cf":{"d":"28,0r0,-251r31,0r0,251r-31,0xm0,-276r0,-36r29,0r0,36r-29,0xm58,-276r0,-36r29,0r0,36r-29,0","w":87},"\u00cc":{"d":"28,0r0,-251r31,0r0,251r-31,0xm39,-264r-37,-52r35,0r25,52r-23,0","w":87},"\u00d1":{"d":"28,0r0,-251r39,0r95,207r0,-207r31,0r0,251r-40,0r-95,-206r0,206r-30,0xm58,-270v4,-48,44,-42,74,-25v6,0,10,-5,12,-15r19,0v-4,50,-44,38,-73,25v-6,0,-13,3,-14,15r-18,0","w":220,"k":{",":13,".":13}},"\u00d3":{"d":"17,-123v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,87,-35,131,-94,131v-56,0,-92,-48,-92,-126xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105xm92,-264r24,-52r36,0r-37,52r-23,0","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"\u00d4":{"d":"17,-123v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,87,-35,131,-94,131v-56,0,-92,-48,-92,-126xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105xm60,-264r36,-52r28,0r36,52r-28,0r-22,-32r-22,32r-28,0","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"\u00d6":{"d":"17,-123v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,87,-35,131,-94,131v-56,0,-92,-48,-92,-126xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105xm67,-276r0,-36r29,0r0,36r-29,0xm125,-276r0,-36r28,0r0,36r-28,0","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"\u00d2":{"d":"17,-123v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,87,-35,131,-94,131v-56,0,-92,-48,-92,-126xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105xm105,-264r-37,-52r36,0r24,52r-23,0","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"\u00d5":{"d":"17,-123v0,-87,36,-131,95,-131v56,0,91,48,91,126v0,87,-35,131,-94,131v-56,0,-92,-48,-92,-126xm50,-123v0,51,17,100,59,100v33,0,61,-28,61,-105v0,-51,-16,-100,-58,-100v-33,0,-62,28,-62,105xm58,-270v4,-48,44,-42,74,-25v6,0,10,-5,12,-15r19,0v-4,50,-44,38,-73,25v-6,0,-13,3,-14,15r-18,0","w":220,"k":{"T":16,"V":6,"Y":16,"\u00dd":16,"\u0178":16,",":20,".":20,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":13}},"\u0160":{"d":"131,-246r0,31v-28,-19,-84,-13,-82,26v0,16,7,26,43,47v39,22,52,44,52,73v0,40,-25,72,-73,72v-20,0,-40,-5,-53,-11r0,-33v30,25,94,20,93,-23v0,-19,-5,-31,-39,-52v-45,-27,-56,-43,-56,-75v0,-58,67,-75,115,-55xm66,-264r-36,-52r28,0r22,33r22,-33r28,0r-36,52r-28,0","w":159,"k":{",":20,".":20}},"\u00da":{"d":"107,3v-115,0,-71,-149,-79,-254r31,0r0,163v0,39,18,65,48,65v30,0,47,-26,47,-65r0,-163r31,0v-8,105,36,254,-78,254xm89,-264r24,-52r35,0r-36,52r-23,0","w":213,"k":{",":20,".":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00db":{"d":"107,3v-115,0,-71,-149,-79,-254r31,0r0,163v0,39,18,65,48,65v30,0,47,-26,47,-65r0,-163r31,0v-8,105,36,254,-78,254xm57,-264r36,-52r27,0r36,52r-27,0r-22,-32r-23,32r-27,0","w":213,"k":{",":20,".":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00dc":{"d":"107,3v-115,0,-71,-149,-79,-254r31,0r0,163v0,39,18,65,48,65v30,0,47,-26,47,-65r0,-163r31,0v-8,105,36,254,-78,254xm63,-276r0,-36r29,0r0,36r-29,0xm121,-276r0,-36r29,0r0,36r-29,0","w":213,"k":{",":20,".":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00d9":{"d":"107,3v-115,0,-71,-149,-79,-254r31,0r0,163v0,39,18,65,48,65v30,0,47,-26,47,-65r0,-163r31,0v-8,105,36,254,-78,254xm102,-264r-37,-52r35,0r25,52r-23,0","w":213,"k":{",":20,".":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00dd":{"d":"77,0r0,-105r-75,-146r36,0r56,111r55,-111r35,0r-75,146r0,105r-32,0xm75,-264r24,-52r36,0r-37,52r-23,0","w":186,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":46,".":46,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"\u00e3":29,"e":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00e8":29,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":29,"\u00f8":29,"\u0153":29,"\u00f3":29,"\u00f4":29,"\u00f6":29,"\u00f2":29,"\u00f5":29,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"-":33,":":27,";":27,"S":13,"\u0160":13}},"\u0178":{"d":"77,0r0,-105r-75,-146r36,0r56,111r55,-111r35,0r-75,146r0,105r-32,0xm50,-276r0,-36r29,0r0,36r-29,0xm108,-276r0,-36r28,0r0,36r-28,0","w":186,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,",":46,".":46,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"\u00e3":29,"e":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00e8":29,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":29,"\u00f8":29,"\u0153":29,"\u00f3":29,"\u00f4":29,"\u00f6":29,"\u00f2":29,"\u00f5":29,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"-":33,":":27,";":27,"S":13,"\u0160":13}},"\u017d":{"d":"12,0r0,-30r102,-194r-99,0r0,-27r137,0r0,27r-105,197r107,0r0,27r-142,0xm70,-264r-36,-52r27,0r23,33r22,-33r27,0r-36,52r-27,0","w":166},"\u00e1":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32xm66,-209r24,-52r35,0r-36,52r-23,0","w":166},"\u00e2":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32xm34,-209r36,-52r27,0r36,52r-27,0r-22,-33r-23,33r-27,0","w":166},"\u00e4":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32xm40,-221r0,-36r29,0r0,36r-29,0xm98,-221r0,-36r29,0r0,36r-29,0","w":166},"\u00e0":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32xm78,-209r-36,-52r35,0r25,52r-24,0","w":166},"\u00e5":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32xm50,-240v0,-21,17,-38,38,-38v21,0,37,17,37,38v0,21,-16,37,-37,37v-21,0,-38,-16,-38,-37xm67,-240v0,12,9,20,21,20v12,0,21,-8,21,-20v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21","w":166},"\u00e3":{"d":"117,-112v13,-59,-60,-60,-85,-31r-3,-28v48,-27,116,-18,117,47r1,124r-27,0v-2,-8,0,-19,-3,-25v-15,39,-104,39,-104,-25v0,-41,38,-67,104,-62xm74,-21v34,-1,47,-30,43,-69v-37,-6,-74,9,-74,37v0,19,10,32,31,32xm31,-215v4,-48,44,-43,74,-25v6,0,10,-6,12,-16r19,0v-4,24,-14,39,-31,39v-15,0,-51,-34,-55,2r-19,0","w":166},"\u00e7":{"d":"49,71r5,-12v15,7,43,5,43,-11v0,-22,-31,-5,-37,-17r20,-30v-45,-6,-67,-44,-67,-91v0,-74,54,-113,118,-89r-1,27v-44,-20,-85,-5,-85,62v0,61,44,81,86,57r2,28v-9,4,-25,8,-38,8r-13,19v20,-4,42,3,41,24v6,28,-51,40,-74,25","w":140},"\u00e9":{"d":"148,-83r-103,0v-6,64,55,75,92,47r1,28v-64,30,-125,-2,-125,-84v0,-58,25,-94,71,-94v46,0,68,43,64,103xm45,-106r73,0v0,-38,-12,-57,-36,-57v-19,0,-36,14,-37,57xm62,-209r24,-52r36,0r-37,52r-23,0","w":159,"k":{",":13,".":13}},"\u00ea":{"d":"148,-83r-103,0v-6,64,55,75,92,47r1,28v-64,30,-125,-2,-125,-84v0,-58,25,-94,71,-94v46,0,68,43,64,103xm45,-106r73,0v0,-38,-12,-57,-36,-57v-19,0,-36,14,-37,57xm30,-209r36,-52r28,0r36,52r-28,0r-22,-33r-22,33r-28,0","w":159,"k":{",":13,".":13}},"\u00eb":{"d":"148,-83r-103,0v-6,64,55,75,92,47r1,28v-64,30,-125,-2,-125,-84v0,-58,25,-94,71,-94v46,0,68,43,64,103xm45,-106r73,0v0,-38,-12,-57,-36,-57v-19,0,-36,14,-37,57xm37,-221r0,-36r29,0r0,36r-29,0xm94,-221r0,-36r29,0r0,36r-29,0","w":159,"k":{",":13,".":13}},"\u00e8":{"d":"148,-83r-103,0v-6,64,55,75,92,47r1,28v-64,30,-125,-2,-125,-84v0,-58,25,-94,71,-94v46,0,68,43,64,103xm45,-106r73,0v0,-38,-12,-57,-36,-57v-19,0,-36,14,-37,57xm75,-209r-37,-52r36,0r24,52r-23,0","w":159,"k":{",":13,".":13}},"\u00ed":{"d":"25,0r0,-184r30,0r0,184r-30,0xm22,-209r24,-52r36,0r-37,52r-23,0","w":79},"\u00ee":{"d":"25,0r0,-184r30,0r0,184r-30,0xm-10,-209r36,-52r28,0r36,52r-28,0r-22,-33r-22,33r-28,0","w":79},"\u00ef":{"d":"25,0r0,-184r30,0r0,184r-30,0xm-3,-221r0,-36r29,0r0,36r-29,0xm54,-221r0,-36r29,0r0,36r-29,0","w":79},"\u00ec":{"d":"25,0r0,-184r30,0r0,184r-30,0xm35,-209r-37,-52r36,0r24,52r-23,0","w":79},"\u00f1":{"d":"22,0r-1,-184r29,0r1,28v22,-50,101,-37,101,29r0,127r-31,0r0,-118v0,-29,-11,-42,-30,-42v-59,-1,-34,103,-39,160r-30,0xm34,-215v4,-48,44,-43,74,-25v6,0,11,-6,13,-16r18,0v-4,24,-13,39,-30,39v-15,3,-52,-34,-56,2r-19,0"},"\u00f3":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm13,-92v0,-58,25,-94,74,-94v49,0,74,36,74,94v0,58,-25,95,-74,95v-49,0,-74,-37,-74,-95xm69,-209r24,-52r36,0r-37,52r-23,0","k":{",":13,".":13}},"\u00f4":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm13,-92v0,-58,25,-94,74,-94v49,0,74,36,74,94v0,58,-25,95,-74,95v-49,0,-74,-37,-74,-95xm37,-209r36,-52r27,0r36,52r-27,0r-22,-33r-23,33r-27,0","k":{",":13,".":13}},"\u00f6":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm13,-92v0,-58,25,-94,74,-94v49,0,74,36,74,94v0,58,-25,95,-74,95v-49,0,-74,-37,-74,-95xm44,-221r0,-36r28,0r0,36r-28,0xm101,-221r0,-36r29,0r0,36r-29,0","k":{",":13,".":13}},"\u00f2":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm13,-92v0,-58,25,-94,74,-94v49,0,74,36,74,94v0,58,-25,95,-74,95v-49,0,-74,-37,-74,-95xm82,-209r-37,-52r36,0r24,52r-23,0","k":{",":13,".":13}},"\u00f5":{"d":"45,-92v0,46,13,70,42,70v29,0,42,-24,42,-70v0,-46,-13,-70,-42,-70v-29,0,-42,24,-42,70xm13,-92v0,-58,25,-94,74,-94v49,0,74,36,74,94v0,58,-25,95,-74,95v-49,0,-74,-37,-74,-95xm34,-215v4,-48,44,-43,74,-25v6,0,11,-6,13,-16r18,0v-4,24,-13,39,-30,39v-15,3,-52,-34,-56,2r-19,0","k":{",":13,".":13}},"\u0161":{"d":"12,-8r2,-28v22,19,78,20,78,-12v0,-39,-88,-37,-79,-85v-4,-44,56,-64,98,-47r-2,26v-19,-12,-68,-12,-66,18v3,37,86,33,78,82v9,53,-67,71,-109,46xm53,-209r-36,-52r27,0r23,33r22,-33r27,0r-36,52r-27,0","w":133,"k":{",":13,".":13}},"\u00fa":{"d":"152,-184r1,184r-29,0v-1,-8,1,-20,-2,-27v-22,50,-100,36,-100,-29r0,-128r30,0r0,119v0,29,11,42,30,42v59,0,34,-103,39,-161r31,0xm69,-209r24,-52r36,0r-37,52r-23,0"},"\u00fb":{"d":"152,-184r1,184r-29,0v-1,-8,1,-20,-2,-27v-22,50,-100,36,-100,-29r0,-128r30,0r0,119v0,29,11,42,30,42v59,0,34,-103,39,-161r31,0xm37,-209r36,-52r27,0r36,52r-27,0r-22,-33r-23,33r-27,0"},"\u00fc":{"d":"152,-184r1,184r-29,0v-1,-8,1,-20,-2,-27v-22,50,-100,36,-100,-29r0,-128r30,0r0,119v0,29,11,42,30,42v59,0,34,-103,39,-161r31,0xm44,-221r0,-36r28,0r0,36r-28,0xm101,-221r0,-36r29,0r0,36r-29,0"},"\u00f9":{"d":"152,-184r1,184r-29,0v-1,-8,1,-20,-2,-27v-22,50,-100,36,-100,-29r0,-128r30,0r0,119v0,29,11,42,30,42v59,0,34,-103,39,-161r31,0xm82,-209r-37,-52r36,0r24,52r-23,0"},"\u00fd":{"d":"143,-184r-63,221v-11,39,-29,48,-66,41r1,-28v18,6,31,9,37,-19r7,-28r-58,-187r32,0r42,150r38,-150r30,0xm55,-209r25,-52r35,0r-37,52r-23,0","w":146,"k":{",":27,".":27}},"\u00ff":{"d":"143,-184r-63,221v-11,39,-29,48,-66,41r1,-28v18,6,31,9,37,-19r7,-28r-58,-187r32,0r42,150r38,-150r30,0xm30,-221r0,-36r29,0r0,36r-29,0xm88,-221r0,-36r29,0r0,36r-29,0","w":146,"k":{",":27,".":27}},"\u017e":{"d":"14,-184r113,0r0,28r-85,130r87,0r0,26r-118,0r0,-27r85,-131r-82,0r0,-26xm57,-209r-36,-52r27,0r22,33r23,-33r27,0r-36,52r-27,0","w":140},"\u00a0":{"w":86},"\u00ad":{"d":"14,-88r0,-26r78,0r0,26r-78,0","w":106}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1991, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Frutiger is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * FrutigerLTStd-BlackCn
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":187,"face":{"font-family":"FrutigerLTStd-Cn","font-weight":850,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 8 6 3 5 4 3 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-13 -342 360 90","underline-thickness":"18","underline-position":"-18","stemh":"39","stemv":"57","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u201c":13,"\u2018":13,"T":13,"V":13,"W":13,"Y":13,"\u00dd":13,"\u0178":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"44,0r0,-54r52,0r0,54r-52,0xm41,-251r57,0r-7,171r-42,0","w":139},"\"":{"d":"110,-176r0,-94r46,0r0,94r-46,0xm32,-176r0,-94r45,0r0,94r-45,0"},"#":{"d":"76,-147r-5,42r35,0r6,-42r-36,0xm16,-147r0,-33r32,0r10,-71r33,0r-10,71r36,0r10,-71r33,0r-10,71r32,0r0,33r-37,0r-5,42r31,0r0,33r-36,0r-10,72r-33,0r10,-72r-36,0r-10,72r-33,0r10,-72r-28,0r0,-33r32,0r6,-42r-27,0"},"$":{"d":"101,-101r0,65v29,-9,40,-51,0,-65xm85,-158r0,-58v-8,1,-24,4,-24,28v0,19,16,26,24,30xm85,-256r0,-30r16,0r0,30v29,2,36,3,60,11r-4,44v-15,-8,-37,-15,-56,-15r0,62v46,10,75,33,75,82v0,41,-25,71,-75,76r0,32r-16,0r0,-32v-21,-1,-52,-4,-68,-10r4,-48v19,11,41,18,64,18r0,-69v-23,-6,-73,-21,-73,-81v0,-21,10,-65,73,-70"},"%":{"d":"182,-69v0,-38,12,-73,54,-73v42,0,54,35,54,73v0,38,-12,73,-54,73v-42,0,-54,-35,-54,-73xm220,-69v0,28,2,45,16,45v14,0,17,-17,17,-45v0,-28,-3,-44,-17,-44v-14,0,-16,16,-16,44xm17,-183v0,-38,12,-73,54,-73v42,0,54,35,54,73v0,38,-12,74,-54,74v-42,0,-54,-36,-54,-74xm54,-183v0,28,3,45,17,45v14,0,16,-17,16,-45v0,-28,-2,-44,-16,-44v-14,0,-17,16,-17,44xm81,12r113,-275r33,0r-114,275r-32,0","w":306},"&":{"d":"111,-221v-42,-1,-17,53,-3,61v15,-12,27,-23,27,-39v0,-7,-3,-22,-24,-22xm141,-50r-50,-58v-22,16,-23,70,18,71v16,0,26,-5,32,-13xm139,-133r33,42v8,-13,12,-33,12,-48r49,0v0,32,-10,62,-30,86r40,53r-62,0r-14,-19v-46,49,-148,15,-148,-53v0,-15,2,-48,45,-70v-3,-3,-28,-28,-28,-55v0,-17,12,-59,76,-59v36,0,72,17,72,57v0,37,-39,62,-45,66","w":253},"\u2019":{"d":"11,-176r17,-94r54,0r-28,94r-43,0","w":93,"k":{"\u201d":13,"\u2019":24,"d":20,"s":13,"\u0161":13}},"(":{"d":"66,-272r43,0v-21,35,-45,94,-45,161v0,67,24,126,45,161r-43,0v-24,-43,-50,-89,-50,-161v0,-72,26,-118,50,-161","w":113},")":{"d":"4,-272r44,0v24,43,49,89,49,161v0,72,-25,118,-49,161r-44,0v21,-35,45,-94,45,-161v0,-67,-24,-126,-45,-161","w":113},"*":{"d":"26,-206r13,-39r43,23r-8,-48r41,0r-8,48r42,-23r12,39r-47,9r35,34r-35,24r-20,-43r-22,43r-33,-24r33,-34","w":186},"+":{"d":"89,-110r0,-72r38,0r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0","w":216},",":{"d":"4,40r17,-94r54,0r-29,94r-42,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"15,-81r0,-44r90,0r0,44r-90,0","w":119},".":{"d":"21,0r0,-54r52,0r0,54r-52,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"5,4r59,-260r38,0r-60,260r-37,0","w":106},"0":{"d":"11,-126v0,-70,16,-130,83,-130v67,0,82,60,82,130v0,70,-15,130,-82,130v-67,0,-83,-60,-83,-130xm66,-126v0,48,5,89,28,89v23,0,27,-41,27,-89v0,-48,-4,-89,-27,-89v-23,0,-28,41,-28,89"},"1":{"d":"18,-194r71,-57r45,0r0,251r-57,0r0,-185r-32,31"},"2":{"d":"17,0r0,-44v28,-35,92,-83,92,-131v0,-47,-60,-36,-84,-14r-4,-52v61,-26,147,-20,147,56v0,59,-60,114,-88,141r90,0r0,44r-153,0"},"3":{"d":"14,-6r3,-47v41,24,94,11,93,-21v-1,-39,-31,-33,-62,-34r0,-41v22,0,61,0,61,-31v0,-44,-57,-33,-86,-19r-3,-45v65,-20,141,-23,146,56v2,32,-26,46,-50,57v27,4,53,22,53,63v0,59,-90,88,-155,62"},"4":{"d":"102,-90r-1,-102r-56,102r57,0xm6,-49r0,-51r85,-151r62,0r0,161r28,0r0,41r-28,0r0,49r-54,0r0,-49r-93,0"},"5":{"d":"22,-118r0,-133r137,0r0,42r-87,0r0,47v61,-8,99,20,99,82v0,41,-31,84,-93,84v-32,0,-43,-4,-61,-11r2,-45v37,24,97,7,93,-29v-5,-53,-50,-48,-90,-37"},"6":{"d":"163,-246r-3,44v-10,-4,-27,-11,-42,-11v-42,-1,-53,40,-52,74v52,-52,107,-11,110,63v0,15,-8,80,-79,80v-71,0,-86,-66,-86,-120v0,-71,24,-140,99,-140v20,0,34,4,53,10xm94,-118v-26,0,-26,31,-26,44v0,7,0,38,26,38v23,0,25,-30,25,-43v0,-11,-2,-39,-25,-39"},"7":{"d":"169,-251r0,49r-74,202r-62,0r81,-207r-96,0r0,-44r151,0"},"8":{"d":"91,-216v-39,9,-24,59,5,67v13,-9,21,-20,21,-37v0,-6,-3,-30,-26,-30xm91,-112v-33,10,-34,78,3,76v12,0,28,-11,28,-32v0,-27,-18,-37,-31,-44xm16,-192v0,-32,27,-64,78,-64v95,0,93,98,33,122v15,3,50,23,50,68v0,39,-28,70,-84,70v-63,0,-83,-44,-83,-70v0,-25,13,-53,47,-64v-24,-7,-41,-32,-41,-62"},"9":{"d":"24,-6r3,-43v10,4,27,11,42,11v42,1,53,-40,52,-74v-52,52,-107,11,-110,-63v0,-15,8,-81,79,-81v71,0,86,67,86,121v0,71,-24,139,-99,139v-20,0,-34,-4,-53,-10xm94,-133v26,0,25,-31,25,-44v0,-7,1,-39,-25,-39v-23,0,-26,31,-26,44v0,11,3,39,26,39"},":":{"d":"21,-134r0,-54r52,0r0,54r-52,0xm21,0r0,-54r52,0r0,54r-52,0","w":93,"k":{" ":13}},";":{"d":"4,40r17,-94r54,0r-29,94r-42,0xm21,-134r0,-54r52,0r0,54r-52,0","w":93,"k":{" ":13}},"<":{"d":"199,-33r0,36r-182,-79r0,-31r182,-78r0,36r-134,58","w":216},"=":{"d":"199,-149r0,37r-182,0r0,-37r182,0xm199,-71r0,38r-182,0r0,-38r182,0","w":216},">":{"d":"17,-33r134,-58r-134,-58r0,-36r182,78r0,31r-182,79r0,-36","w":216},"?":{"d":"60,-80v-6,-46,34,-59,38,-100v4,-41,-65,-31,-78,-19r-2,-46v44,-20,143,-16,139,54v-3,53,-52,74,-49,111r-48,0xm58,0r0,-54r51,0r0,54r-51,0","w":166},"@":{"d":"183,-190r34,0r-18,93v0,7,5,10,10,10v13,0,36,-14,36,-62v0,-61,-51,-76,-93,-76v-59,0,-101,46,-101,99v0,93,108,128,177,75r30,0v-67,96,-243,66,-244,-75v0,-72,59,-130,138,-130v58,0,122,32,122,106v0,74,-65,91,-88,91v-15,1,-20,-9,-25,-17v-28,37,-89,9,-89,-42v0,-57,66,-103,108,-58xm135,-87v19,0,36,-18,36,-43v0,-23,-11,-35,-32,-35v-19,0,-34,18,-34,43v0,26,16,35,30,35","w":288},"A":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0","w":233},"B":{"d":"24,0r0,-251r93,0v53,0,70,35,70,62v0,41,-33,54,-46,59v28,6,51,21,51,61v0,64,-63,69,-78,69r-90,0xm81,-210r0,61r14,0v34,0,35,-26,35,-31v4,-13,-18,-36,-49,-30xm81,-108r0,66v26,-1,50,6,54,-33v3,-31,-23,-35,-54,-33","w":206,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"C":{"d":"196,-243r-3,49v-9,-5,-24,-15,-51,-15v-40,0,-65,32,-65,83v0,49,29,82,66,82v29,0,45,-10,51,-13r3,52v-10,3,-31,9,-63,9v-69,0,-117,-51,-117,-131v-1,-122,103,-147,179,-116","w":206},"D":{"d":"24,0r0,-251v117,-4,201,-7,201,128v0,121,-88,129,-201,123xm83,-207r0,163v57,6,80,-25,80,-79v0,-58,-23,-89,-80,-84","w":240,"k":{"V":4,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"E":{"d":"24,0r0,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0","w":186},"F":{"d":"24,0r0,-251r139,0r0,44r-82,0r0,58r79,0r0,44r-79,0r0,105r-57,0","w":173,"k":{"\u00eb":4,"\u00e3":9,"\u00e0":9,"\u00e4":9,",":27,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e5":9,"e":4,"\u00e9":4,"\u00ea":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"G":{"d":"131,-102r0,-42r89,0r0,135v-82,24,-201,30,-203,-118v0,-62,34,-129,130,-129v30,0,51,6,66,10r-4,50v-13,-6,-31,-14,-57,-14v-62,0,-75,57,-75,85v0,54,35,97,87,80r0,-57r-33,0","w":240},"H":{"d":"144,0r0,-104r-61,0r0,104r-59,0r0,-251r59,0r0,100r61,0r0,-100r59,0r0,251r-59,0","w":226},"I":{"d":"24,0r0,-251r59,0r0,251r-59,0","w":106},"J":{"d":"116,-251r0,169v0,48,-16,86,-70,86v-13,0,-31,-3,-40,-7r2,-48v24,12,49,1,49,-31r0,-169r59,0","w":140,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"K":{"d":"24,0r0,-251r59,0r1,103r61,-103r67,0r-78,117r84,134r-71,0r-64,-115r0,115r-59,0","w":219,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"y":6,"\u00fd":6,"\u00ff":6,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6}},"L":{"d":"24,0r0,-251r59,0r0,206r83,0r0,45r-142,0","w":173,"k":{"T":27,"V":27,"W":9,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":33,"\u2019":27}},"M":{"d":"229,0r-1,-199r-56,199r-39,0r-55,-199r0,199r-54,0r0,-251r89,0r41,161r44,-161r85,0r0,251r-54,0","w":306},"N":{"d":"23,0r0,-251r69,0r74,174r0,-174r51,0r0,251r-69,0r-73,-182r0,182r-52,0","w":240},"O":{"d":"17,-126v0,-74,34,-130,106,-130v72,0,107,56,107,130v0,74,-35,130,-107,130v-72,0,-106,-56,-106,-130xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"P":{"d":"81,-136v30,3,49,-5,50,-36v1,-31,-19,-37,-50,-35r0,71xm24,0r0,-251v84,-2,166,-6,166,80v0,53,-39,87,-107,79r0,92r-59,0","w":200,"k":{"\u00e4":6,",":33,".":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"Q":{"d":"227,49r-66,0r-32,-45v-77,3,-111,-54,-112,-130v0,-74,34,-130,106,-130v124,0,138,199,54,247xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87","w":246,"k":{",":6,".":9}},"R":{"d":"24,0r0,-251v77,1,167,-15,169,65v0,11,-4,50,-50,62v18,2,25,12,34,42r26,82r-62,0r-19,-67v-10,-34,-17,-35,-39,-35r0,102r-59,0xm81,-209r0,65v31,4,54,-8,53,-33v6,-15,-20,-38,-53,-32","w":213,"k":{"V":4,"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"163,-247r-2,47v-25,-13,-84,-26,-84,14v0,46,99,25,99,114v0,48,-37,76,-87,76v-31,0,-57,-7,-68,-10r3,-49v27,14,92,30,92,-14v0,-49,-99,-25,-99,-115v0,-8,3,-72,87,-72v23,0,37,4,59,9","w":193,"k":{",":9,".":9}},"T":{"d":"60,0r0,-206r-54,0r0,-45r168,0r0,45r-54,0r0,206r-60,0","w":180,"k":{"\u00fc":20,"\u00f2":20,"\u00f6":20,"\u00ec":6,"\u00ee":6,"\u00ed":6,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":17,"\u00e5":17,"\u00e0":17,"\u00e4":17,"\u00e2":17,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"y":20,"\u00fd":20,"\u00ff":20,",":27,".":27,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":17,"\u00e6":17,"\u00e1":17,"e":20,"\u00e9":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f5":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,"-":33,"i":6,"\u0131":6,"\u00ef":6,"r":20,"w":20,":":13,";":13}},"U":{"d":"21,-91r0,-160r59,0r0,169v0,25,9,41,33,41v24,0,34,-16,34,-41r0,-169r59,0r0,160v0,62,-36,95,-93,95v-57,0,-92,-33,-92,-95","w":226,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"V":{"d":"78,0r-75,-251r63,0r45,183r46,-183r60,0r-76,251r-63,0","w":219,"k":{"\u00f6":20,"\u00f4":20,"\u00ee":6,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":27,".":27,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":20,"\u00e6":20,"\u00e1":20,"e":20,"\u00e9":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":27,"i":6,"\u0131":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,":":9,";":9}},"W":{"d":"186,0r-33,-195r-31,195r-69,0r-51,-251r57,0r31,178r30,-178r69,0r31,178r33,-178r52,0r-50,251r-69,0","w":306,"k":{"\u00f6":9,"\u00ea":9,"\u00e4":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":9,"\u00e9":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f2":9,"\u00f5":9,"-":13,":":6,";":6}},"X":{"d":"75,-133r-64,-118r66,0r34,79r38,-79r63,0r-65,118r70,133r-66,0r-40,-90r-45,90r-63,0","w":219},"Y":{"d":"77,0r0,-96r-76,-155r67,0r41,97r37,-97r66,0r-76,156r0,95r-59,0","w":213,"k":{"\u00fc":13,"\u00f6":27,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,"-":33,":":13,";":13,"S":6,"\u0160":6}},"Z":{"d":"11,0r0,-48r97,-158r-95,0r0,-45r162,0r0,46r-98,160r99,0r0,45r-165,0","w":186},"[":{"d":"26,50r0,-322r77,0r0,36r-33,0r0,250r33,0r0,36r-77,0","w":113},"\\":{"d":"42,-256r60,260r-38,0r-59,-260r37,0","w":106},"]":{"d":"87,-272r0,322r-76,0r0,-36r33,0r0,-250r-33,0r0,-36r76,0","w":113},"^":{"d":"24,-113r67,-138r34,0r67,138r-37,0r-47,-101r-47,101r-37,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"82,-270r-17,94r-54,0r29,-94r42,0","w":93,"k":{"\u2018":24,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33}},"a":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47","w":193},"b":{"d":"18,0r2,-270r57,0r0,110v7,-17,23,-30,49,-30v47,0,66,42,66,92v0,60,-24,101,-66,101v-34,0,-44,-22,-52,-33v0,13,-1,23,-2,30r-54,0xm132,-94v0,-30,-2,-58,-27,-58v-23,0,-28,28,-28,58v0,22,5,56,28,56v26,0,27,-37,27,-56","w":206,"k":{",":13,".":13}},"c":{"d":"150,-48r2,43v-17,4,-33,8,-51,8v-72,0,-89,-61,-89,-95v0,-75,67,-117,138,-89r-2,42v-10,-4,-22,-8,-34,-8v-43,0,-43,48,-43,55v1,56,43,59,79,44","w":159},"d":{"d":"187,-270r1,270r-54,0v-2,-6,1,-20,-2,-30v-6,12,-18,33,-51,33v-42,0,-66,-41,-66,-101v0,-50,19,-92,66,-92v27,-1,40,15,49,30r0,-110r57,0xm74,-94v0,19,2,56,28,56v41,0,38,-113,0,-114v-25,0,-28,28,-28,58","w":206},"e":{"d":"69,-110r59,0v0,-24,-7,-46,-30,-46v-29,0,-29,36,-29,46xm180,-93r0,14r-111,0v-5,45,69,53,99,28r2,43v-18,7,-41,11,-60,11v-66,0,-95,-40,-95,-97v0,-50,29,-96,83,-96v17,0,82,-1,82,97","w":193,"k":{",":6,".":9,"x":4}},"f":{"d":"3,-148r0,-40r33,0v-1,-50,-1,-84,59,-86v20,0,31,3,37,4r-2,40v-27,-12,-43,8,-37,42r34,0r0,40r-34,0r0,148r-57,0r0,-148r-33,0","w":133,"k":{"\u2019":-4,",":20,".":20}},"g":{"d":"74,-94v0,15,3,54,28,54v23,0,28,-28,28,-54v0,-22,-5,-55,-28,-55v-26,0,-28,36,-28,55xm188,-188r-1,165v0,27,-1,103,-96,103v-27,0,-49,-6,-67,-11r2,-47v10,5,33,17,59,17v45,0,46,-33,46,-72v-3,10,-18,33,-50,33v-33,0,-66,-23,-66,-94v0,-60,24,-96,67,-96v34,0,44,21,51,32r1,-30r54,0","w":206,"k":{".":9}},"h":{"d":"20,0r0,-270r57,0r0,110v6,-21,27,-30,48,-30v83,2,48,115,55,190r-57,0r0,-116v0,-23,-9,-29,-21,-29v-18,0,-25,16,-25,40r0,105r-57,0","w":200},"i":{"d":"22,0r0,-188r56,0r0,188r-56,0xm22,-220r0,-50r56,0r0,50r-56,0","w":100},"j":{"d":"22,-188r56,0r0,199v6,56,-40,81,-87,64r1,-38v15,5,30,3,30,-25r0,-200xm22,-220r0,-50r56,0r0,50r-56,0","w":100},"k":{"d":"22,0r0,-270r56,0r1,158r48,-76r59,0r-59,86r63,102r-64,0r-48,-89r0,89r-56,0","w":193},"l":{"d":"22,0r0,-270r56,0r0,270r-56,0","w":100},"m":{"d":"224,0r0,-116v0,-22,-9,-29,-22,-29v-17,0,-23,12,-23,26r0,119r-57,0r0,-116v0,-24,-11,-29,-20,-29v-19,0,-25,16,-25,40r0,105r-57,0r-2,-188r52,0v1,8,2,19,2,32v8,-42,92,-46,102,-3v8,-18,21,-31,51,-31v83,2,48,115,55,190r-56,0","w":300},"n":{"d":"123,0r0,-116v0,-23,-9,-29,-21,-29v-18,0,-25,16,-25,40r0,105r-57,0r-2,-188r52,0v1,8,2,19,2,32v9,-21,23,-34,53,-34v83,2,48,115,55,190r-57,0","w":200},"o":{"d":"15,-94v0,-56,30,-96,88,-96v58,0,89,40,89,96v0,57,-31,97,-89,97v-58,0,-88,-40,-88,-97xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58","w":206,"k":{",":13,".":13,"x":6}},"p":{"d":"20,78r-2,-266r54,0v2,6,0,20,3,30v6,-12,18,-32,51,-32v42,0,66,41,66,101v0,50,-19,92,-66,92v-26,0,-42,-14,-49,-31r0,106r-57,0xm132,-94v0,-19,-1,-55,-27,-55v-41,0,-38,112,0,113v25,0,27,-28,27,-58","w":206,"k":{",":13,".":13}},"q":{"d":"188,-188r-1,266r-57,0r-1,-106v-7,17,-22,31,-48,31v-47,0,-66,-42,-66,-92v0,-60,24,-101,66,-101v34,0,44,21,52,32v0,-13,0,-23,1,-30r54,0xm74,-94v0,30,3,58,28,58v39,-1,40,-113,0,-113v-26,0,-28,36,-28,55","w":206},"r":{"d":"20,0r-2,-188r52,0v0,11,2,23,2,34v12,-22,24,-38,61,-36r0,52v-73,-17,-54,70,-56,138r-57,0","w":140,"k":{",":20,".":20,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"c":6,"\u00e7":6,"d":4,"g":4,"p":4,"q":6,"s":4,"\u0161":4,"-":20}},"s":{"d":"89,-55v-12,-21,-79,-24,-79,-79v0,-20,15,-56,71,-56v23,0,43,4,52,7r-2,43v-18,-9,-62,-17,-67,3v3,29,84,23,79,82v-6,66,-75,66,-131,49r2,-44v16,15,78,20,75,-5","w":153},"t":{"d":"5,-148r0,-40r32,0r0,-38r56,-18r0,56r37,0r0,40r-37,0r0,86v-1,27,21,27,38,20r0,40v-39,10,-95,8,-95,-51r0,-95r-31,0","w":140},"u":{"d":"180,-188r2,188r-52,0v-2,-7,1,-21,-2,-31v-9,21,-23,34,-53,34v-83,-2,-48,-115,-55,-191r57,0r0,116v0,23,10,30,22,30v18,0,24,-16,24,-40r0,-106r57,0","w":200},"v":{"d":"60,0r-59,-188r59,0r36,134r34,-134r55,0r-58,188r-67,0","w":186},"w":{"d":"2,-188r57,0r28,134r26,-134r65,0r26,134r27,-134r54,0r-50,188r-61,0r-31,-137r-29,137r-62,0","w":286,"k":{",":20,".":20}},"x":{"d":"122,0r-29,-63r-32,63r-59,0r58,-100r-53,-88r64,0r26,57r25,-57r59,0r-53,88r57,100r-63,0","w":186},"y":{"d":"185,-188r-66,205v-18,57,-46,72,-100,58r2,-42v23,13,54,-10,46,-33r-65,-188r59,0r35,128r34,-128r55,0","w":186,"k":{",":20,".":20}},"z":{"d":"12,-145r0,-43r130,0r0,47r-70,99r72,0r0,42r-134,0r0,-47r71,-98r-69,0","w":153},"{":{"d":"6,-95r0,-31v13,0,31,-8,31,-34r0,-64v2,-43,36,-51,79,-48r0,29v-50,-11,-34,48,-34,88v0,34,-25,43,-40,44v15,1,40,8,40,47v0,35,-20,96,34,86r0,28v-43,3,-79,-4,-79,-48r0,-61v0,-28,-18,-36,-31,-36","w":119},"|":{"d":"21,90r0,-360r38,0r0,360r-38,0","w":79},"}":{"d":"113,-126r0,31v-13,0,-30,8,-30,36r0,61v-2,43,-36,51,-79,48r0,-28v49,11,34,-46,34,-86v0,-39,25,-46,40,-47v-15,-1,-40,-10,-40,-44v0,-36,21,-97,-34,-88r0,-29v43,-3,79,4,79,48r0,64v0,26,17,34,30,34","w":119},"~":{"d":"150,-60v-41,0,-92,-51,-112,1r-13,-32v8,-15,20,-31,43,-31v45,1,86,52,110,-1r13,32v-9,15,-22,31,-41,31","w":216},"\u00a1":{"d":"96,-188r0,54r-52,0r0,-54r52,0xm98,64r-57,0r8,-172r42,0","w":139},"\u00a2":{"d":"101,-48r14,-97v-49,21,-36,76,-14,97xm135,-145r-15,105v16,3,30,-2,42,-7r1,43v-16,4,-32,8,-50,8r-6,45r-20,0r7,-46v-57,-10,-70,-63,-70,-94v0,-60,34,-101,98,-99r6,-41r19,0r-6,43v6,2,13,4,21,7r-3,43v-8,-3,-15,-6,-24,-7"},"\u00a3":{"d":"40,-42r0,-75r-26,0r0,-32r26,0v-3,-64,12,-105,85,-107v19,0,35,4,47,7r-2,42v-31,-16,-84,-9,-76,39r0,19r54,0r0,32r-54,0r0,75r79,0r0,42r-159,0r0,-42r26,0"},"\u00a5":{"d":"17,-102r0,-37r33,0r-46,-112r54,0r37,105r35,-105r54,0r-46,112r33,0r0,37r-49,0v-3,6,-2,15,-2,24r51,0r0,38r-51,0r0,40r-52,0r0,-40r-51,0r0,-38r51,0v0,-9,1,-19,-3,-24r-48,0"},"\u0192":{"d":"26,-109r5,-40r36,0v10,-48,11,-109,68,-107v17,0,29,5,37,8r-5,37v-20,-13,-40,-5,-41,34r-5,28r35,0r-5,40r-37,0v-13,80,-15,225,-117,180r4,-38v17,15,35,4,40,-24r19,-118r-34,0"},"\u00a7":{"d":"154,-246r-4,42v-20,-11,-71,-25,-71,6v0,10,3,12,30,27v38,21,59,31,59,66v0,26,-17,39,-28,49v41,33,25,104,-55,103v-22,0,-44,-6,-63,-13r4,-43v23,13,74,29,80,-5v-10,-40,-87,-40,-87,-93v0,-25,20,-46,31,-49v-44,-34,-33,-100,45,-100v24,0,51,7,59,10xm77,-141v-26,35,-7,45,34,68v23,-35,7,-46,-34,-68","w":186},"\u00a4":{"d":"161,-213r20,20r-19,19v20,29,20,68,0,97r19,19r-20,19r-19,-19v-30,21,-67,21,-97,0r-19,19r-20,-19r20,-19v-21,-30,-21,-67,0,-97r-20,-19r20,-20r19,19v30,-20,67,-20,97,0xm94,-77v25,0,45,-22,45,-49v0,-27,-20,-48,-45,-48v-25,0,-46,21,-46,48v0,27,21,49,46,49"},"'":{"d":"24,-176r0,-94r45,0r0,94r-45,0","w":93},"\u201c":{"d":"164,-270r-17,94r-54,0r29,-94r42,0xm94,-270r-17,94r-54,0r29,-94r42,0","k":{"\u2018":13,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33}},"\u00ab":{"d":"13,-94r36,-74r45,0r-33,74r33,75r-45,0xm87,-94r35,-74r45,0r-32,74r32,75r-45,0"},"\u2013":{"d":"0,-84r0,-39r180,0r0,39r-180,0","w":180},"\u00b7":{"d":"47,-72v-17,0,-28,-12,-28,-28v0,-16,11,-28,28,-28v17,0,28,12,28,28v0,16,-11,28,-28,28","w":93},"\u00b6":{"d":"80,45r0,-168v-36,0,-65,-25,-65,-63v-1,-88,99,-60,178,-65r0,296r-38,0r0,-267r-38,0r0,267r-37,0","w":223},"\u201d":{"d":"23,-176r17,-94r54,0r-28,94r-43,0xm93,-176r17,-94r54,0r-29,94r-42,0","k":{" ":13}},"\u00bb":{"d":"139,-168r35,74r-35,75r-45,0r32,-75r-32,-74r45,0xm65,-168r35,74r-35,75r-45,0r32,-75r-32,-74r45,0"},"\u2026":{"d":"34,0r0,-54r52,0r0,54r-52,0xm154,0r0,-54r52,0r0,54r-52,0xm274,0r0,-54r52,0r0,54r-52,0","w":360},"\u00bf":{"d":"107,-107v6,45,-34,58,-38,99v-4,42,65,32,78,19r2,47v-45,18,-144,16,-139,-54v3,-53,52,-75,49,-111r48,0xm109,-188r0,54r-52,0r0,-54r52,0","w":166},"`":{"d":"35,-209r-36,-52r50,0r19,52r-33,0","w":79},"\u00b4":{"d":"12,-209r19,-52r50,0r-36,52r-33,0","w":79},"\u00af":{"d":"-13,-220r0,-31r106,0r0,31r-106,0","w":79},"\u00a8":{"d":"-12,-218r0,-45r42,0r0,45r-42,0xm50,-218r0,-45r42,0r0,45r-42,0","w":79},"\u00b8":{"d":"33,-3r20,0r-14,23v21,-7,43,5,43,27v0,38,-61,37,-82,25r7,-16v5,4,47,14,44,-9v-2,-20,-32,-3,-37,-16","w":79},"\u2014":{"d":"0,-84r0,-39r360,0r0,39r-360,0","w":360},"\u00c6":{"d":"156,0r0,-56r-69,0r-23,56r-62,0r115,-251r176,0r0,44r-82,0r0,56r77,0r0,44r-77,0r0,63r86,0r0,44r-141,0xm156,-99r-1,-113r-50,113r51,0","w":313},"\u00aa":{"d":"63,-256v75,-4,47,57,54,113r-35,0v-1,-5,1,-12,-2,-15v-1,6,-15,17,-33,17v-23,0,-38,-14,-38,-34v0,-42,48,-37,72,-37v-9,-34,-31,-20,-56,-10r-2,-27v10,-3,27,-7,40,-7xm44,-176v0,13,12,13,15,13v18,0,23,-14,22,-32v-13,0,-37,1,-37,19","w":125},"\u0141":{"d":"24,0r0,-75r-24,20r0,-43r24,-20r0,-133r59,0r0,84r47,-38r0,42r-47,39r0,79r83,0r0,45r-142,0","w":173,"k":{"T":27,"V":27,"W":9,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":33,"\u2019":27}},"\u00d8":{"d":"80,-89r79,-98v-7,-16,-19,-26,-36,-26v-44,0,-51,74,-43,124xm166,-163r-79,99v7,16,19,26,36,26v44,0,53,-76,43,-125xm14,-5r26,-33v-47,-75,-23,-218,83,-218v30,0,53,10,70,26r23,-29r17,13r-26,33v48,75,22,217,-84,217v-30,0,-52,-9,-69,-25r-24,29","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0152":{"d":"127,-254r170,3r0,44r-84,0r0,56r79,0r0,44r-79,0r0,63r89,0r0,44r-186,3v-77,0,-103,-65,-103,-129v0,-72,34,-129,114,-128xm73,-126v3,86,32,90,81,80r0,-160v-52,-14,-83,15,-81,80","w":313},"\u00ba":{"d":"67,-256v38,0,57,25,57,57v0,34,-19,58,-57,58v-37,0,-58,-24,-58,-58v0,-32,21,-57,58,-57xm67,-165v13,0,18,-12,18,-34v0,-20,-5,-33,-18,-33v-13,0,-19,13,-19,33v0,22,6,34,19,34","w":133},"\u00e6":{"d":"36,-136r-3,-43v33,-10,88,-21,115,6v11,-9,28,-17,51,-17v17,0,81,-1,81,97r0,14r-110,0v0,22,14,43,46,43v19,0,39,-7,53,-15r1,43v-47,17,-104,18,-134,-20v-26,50,-129,38,-123,-26v7,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm89,-33v29,-1,35,-30,34,-57v-18,0,-57,1,-57,32v0,13,9,25,23,25xm170,-113r59,0v0,-18,-6,-44,-28,-44v-12,0,-31,10,-31,44","w":293},"\u0131":{"d":"22,0r0,-188r56,0r0,188r-56,0","w":100},"\u0142":{"d":"22,0r0,-82r-22,22r0,-42r22,-21r0,-147r56,0r0,90r22,-22r0,41r-22,22r0,139r-56,0","w":100},"\u00f8":{"d":"76,-72r50,-63v-5,-11,-13,-17,-23,-17v-26,0,-33,46,-27,80xm131,-113r-49,63v4,9,11,14,21,14v25,0,32,-42,28,-77xm19,0r19,-24v-46,-55,-23,-166,65,-166v22,0,40,6,54,16r16,-20r15,10r-18,22v45,56,20,165,-67,165v-19,0,-37,-4,-52,-15r-18,23","w":206,"k":{",":13,".":13,"x":6}},"\u0153":{"d":"186,-110r60,0v0,-24,-6,-46,-30,-46v-30,0,-30,36,-30,46xm298,-79r-110,0v0,22,14,43,46,43v19,0,39,-7,53,-15r1,43v-40,16,-99,15,-125,-10v-14,13,-35,21,-60,21v-58,0,-88,-40,-88,-97v0,-56,30,-96,88,-96v25,0,46,7,60,20v14,-13,32,-20,54,-20v17,0,81,-1,81,97r0,14xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58","w":313,"k":{",":6,".":9,"x":4}},"\u00df":{"d":"22,0r0,-194v0,-45,26,-80,83,-80v70,0,79,51,79,69v1,43,-29,58,-46,63v36,5,54,30,54,68v0,43,-37,91,-98,74r2,-41v22,9,40,-6,39,-38v0,-30,-9,-40,-38,-41r0,-41v7,0,34,0,34,-38v0,-9,-1,-36,-26,-36v-27,0,-27,25,-27,51r0,184r-56,0","w":206},"\u00b9":{"d":"84,-254r0,152r-40,0r0,-111r-20,19r-18,-25r46,-35r32,0","w":121},"\u00ac":{"d":"162,-39r0,-73r-145,0r0,-37r182,0r0,110r-37,0","w":216},"\u00b5":{"d":"20,78r0,-266r57,0r0,116v0,23,10,30,22,30v18,0,24,-16,24,-40r0,-106r57,0r2,188r-52,0v-2,-7,1,-21,-2,-31v-6,22,-37,47,-56,26r0,83r-52,0","w":200},"\u2122":{"d":"168,-102r0,-149r52,0r35,93r36,-93r52,0r0,149r-35,0r-1,-105r-38,105r-27,0r-40,-105r0,105r-34,0xm59,-102r0,-120r-42,0r0,-29r122,0r0,29r-42,0r0,120r-38,0","w":360},"\u00d0":{"d":"0,-108r0,-41r24,0r0,-102v117,-4,201,-7,201,128v0,121,-88,129,-201,123r0,-108r-24,0xm120,-149r0,41r-37,0r0,64v57,6,80,-25,80,-79v0,-58,-23,-89,-80,-84r0,58r37,0","w":240,"k":{"V":4,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00bd":{"d":"54,12r114,-275r32,0r-113,275r-33,0xm84,-254r0,152r-40,0r0,-111r-20,19r-18,-25r46,-35r32,0xm164,0r0,-27v19,-21,60,-50,60,-77v0,-26,-40,-21,-54,-7r-3,-34v39,-16,98,-13,98,33v0,34,-38,68,-55,83r56,0r0,29r-102,0","w":280},"\u00b1":{"d":"89,-135r0,-47r38,0r0,47r72,0r0,38r-72,0r0,47r-38,0r0,-47r-72,0r0,-38r72,0xm17,0r0,-37r182,0r0,37r-182,0","w":216},"\u00de":{"d":"81,-177r0,72v30,3,49,-5,50,-36v1,-31,-19,-38,-50,-36xm24,0r0,-251r59,0r0,30v66,-4,107,18,107,80v0,53,-39,87,-107,79r0,62r-59,0","w":200},"\u00bc":{"d":"213,-54v-1,-19,2,-43,-1,-60r-32,60r33,0xm152,-27r0,-33r55,-93r44,0r0,99r15,0r0,27r-15,0r0,27r-39,0r0,-27r-60,0xm61,12r113,-275r33,0r-114,275r-32,0xm84,-254r0,152r-40,0r0,-111r-20,19r-18,-25r46,-35r32,0","w":280},"\u00f7":{"d":"17,-72r0,-38r182,0r0,38r-182,0xm108,-190v17,0,28,11,28,27v0,16,-11,28,-28,28v-17,0,-28,-12,-28,-28v0,-16,11,-27,28,-27xm108,8v-17,0,-28,-11,-28,-27v0,-16,11,-28,28,-28v17,0,28,12,28,28v0,16,-11,27,-28,27","w":216},"\u00a6":{"d":"21,63r0,-126r38,0r0,126r-38,0xm21,-117r0,-126r38,0r0,126r-38,0","w":79},"\u00b0":{"d":"14,-197v0,-32,26,-59,58,-59v32,0,58,27,58,59v0,32,-26,58,-58,58v-32,0,-58,-26,-58,-58xm42,-197v0,16,14,29,30,29v16,0,30,-13,30,-29v0,-16,-14,-30,-30,-30v-16,0,-30,14,-30,30","w":144},"\u00fe":{"d":"20,78r0,-348r57,0r0,108v2,-6,16,-28,49,-28v42,0,66,41,66,101v0,50,-19,92,-66,92v-26,0,-42,-14,-49,-31r0,106r-57,0xm132,-94v0,-19,-1,-55,-27,-55v-41,0,-38,112,0,113v25,0,27,-28,27,-58","w":206,"k":{",":13,".":13}},"\u00be":{"d":"213,-54v-1,-19,2,-43,-1,-60r-32,60r33,0xm152,-27r0,-33r55,-93r44,0r0,99r15,0r0,27r-15,0r0,27r-39,0r0,-27r-60,0xm67,12r114,-275r32,0r-113,275r-33,0xm31,-166r0,-27v14,0,40,1,40,-15v-2,-26,-38,-20,-56,-11r-2,-30v40,-11,97,-15,97,34v0,18,-15,29,-32,34v18,2,34,13,34,38v0,47,-65,49,-103,36r2,-30v25,15,60,6,60,-11v0,-21,-22,-18,-40,-18","w":280},"\u00b2":{"d":"10,-102r0,-27v19,-21,59,-50,59,-77v0,-27,-40,-20,-54,-7r-2,-34v39,-16,98,-12,98,34v-1,34,-40,66,-55,83r56,0r0,28r-102,0","w":121},"\u00ae":{"d":"94,-57r0,-139v48,1,103,-9,103,42v0,25,-15,35,-33,37r35,60r-33,0r-31,-59r-12,0r0,59r-29,0xm123,-172r0,32v20,-1,46,5,45,-17v-1,-19,-26,-14,-45,-15xm51,-126v0,58,41,99,93,99v51,0,93,-41,93,-99v0,-58,-42,-99,-93,-99v-52,0,-93,41,-93,99xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130","w":288},"\u00f0":{"d":"74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58xm56,-202r-20,-19r37,-17v-10,-6,-20,-12,-30,-15r42,-21v11,3,22,7,33,14r31,-14r19,19r-28,13v70,61,82,244,-37,245v-58,0,-88,-40,-88,-97v0,-73,65,-124,109,-77v-5,-20,-16,-36,-29,-49","w":206},"\u00d7":{"d":"82,-91r-59,-58r27,-27r58,59r58,-59r27,27r-58,58r58,58r-27,27r-58,-58r-58,58r-27,-27","w":216},"\u00b3":{"d":"31,-166r0,-27v14,0,40,1,40,-15v-2,-26,-38,-20,-56,-11r-2,-30v40,-11,97,-15,97,34v0,18,-15,29,-32,34v18,2,34,13,34,38v0,47,-65,49,-103,36r2,-30v25,15,60,6,60,-11v0,-21,-22,-18,-40,-18","w":121},"\u00a9":{"d":"144,-225v-52,0,-93,41,-93,99v0,58,41,99,93,99v51,0,93,-41,93,-99v0,-58,-42,-99,-93,-99xm181,-105r29,0v-5,35,-32,55,-62,55v-42,0,-71,-34,-71,-77v0,-83,122,-107,133,-22r-29,0v-16,-46,-76,-26,-72,22v-6,48,63,67,72,22xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130","w":288},"\u00c1":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0xm89,-267r19,-53r50,0r-36,53r-33,0","w":233},"\u00c2":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0xm63,-267r28,-53r52,0r27,53r-36,0r-17,-31r-18,31r-36,0","w":233},"\u00c4":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0xm64,-274r0,-45r43,0r0,45r-43,0xm126,-274r0,-45r43,0r0,45r-43,0","w":233},"\u00c0":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0xm112,-267r-36,-53r49,0r20,53r-33,0","w":233},"\u00c5":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0xm77,-302v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm96,-302v0,11,10,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-21,9,-21,20","w":233},"\u00c3":{"d":"171,0r-16,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm144,-99r-27,-104r-30,104r57,0xm87,-272r-27,0v1,-21,12,-44,34,-44v25,0,47,28,53,0r26,0v0,3,-2,44,-34,44v-22,0,-49,-27,-52,0","w":233},"\u00c7":{"d":"94,31r17,-29v-57,-10,-94,-58,-94,-129v-1,-122,103,-147,179,-116r-3,49v-9,-5,-24,-15,-51,-15v-40,0,-65,32,-65,83v0,49,29,82,66,82v29,0,45,-10,51,-13r3,52v-9,3,-37,10,-68,9r-10,16v21,-7,43,5,43,27v0,37,-61,38,-82,25r7,-16v5,4,47,14,44,-9v-2,-20,-32,-3,-37,-16","w":206},"\u00c9":{"d":"24,0r0,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0xm66,-267r19,-53r50,0r-36,53r-33,0","w":186},"\u00ca":{"d":"24,0r0,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0xm40,-267r28,-53r52,0r27,53r-36,0r-17,-31r-18,31r-36,0","w":186},"\u00cb":{"d":"24,0r0,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0xm41,-274r0,-45r43,0r0,45r-43,0xm103,-274r0,-45r43,0r0,45r-43,0","w":186},"\u00c8":{"d":"24,0r0,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0xm89,-267r-36,-53r49,0r20,53r-33,0","w":186},"\u00cd":{"d":"24,0r0,-251r59,0r0,251r-59,0xm25,-267r20,-53r49,0r-36,53r-33,0","w":106},"\u00ce":{"d":"24,0r0,-251r59,0r0,251r-59,0xm0,-267r27,-53r52,0r28,53r-36,0r-18,-31r-17,31r-36,0","w":106},"\u00cf":{"d":"24,0r0,-251r59,0r0,251r-59,0xm1,-274r0,-45r43,0r0,45r-43,0xm63,-274r0,-45r42,0r0,45r-42,0","w":106},"\u00cc":{"d":"24,0r0,-251r59,0r0,251r-59,0xm48,-267r-36,-53r50,0r19,53r-33,0","w":106},"\u00d1":{"d":"23,0r0,-251r69,0r74,174r0,-174r51,0r0,251r-69,0r-73,-182r0,182r-52,0xm90,-272r-26,0v1,-21,12,-44,34,-44v25,0,46,28,52,0r27,0v0,3,-2,44,-34,44v-23,0,-49,-27,-53,0","w":240},"\u00d3":{"d":"17,-126v0,-74,34,-130,106,-130v72,0,107,56,107,130v0,74,-35,130,-107,130v-72,0,-106,-56,-106,-130xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87xm95,-267r20,-53r50,0r-36,53r-34,0","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d4":{"d":"17,-126v0,-74,34,-130,106,-130v72,0,107,56,107,130v0,74,-35,130,-107,130v-72,0,-106,-56,-106,-130xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87xm70,-267r28,-53r51,0r28,53r-36,0r-18,-31r-17,31r-36,0","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d6":{"d":"17,-126v0,-74,34,-130,106,-130v72,0,107,56,107,130v0,74,-35,130,-107,130v-72,0,-106,-56,-106,-130xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87xm71,-274r0,-45r43,0r0,45r-43,0xm133,-274r0,-45r43,0r0,45r-43,0","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d2":{"d":"17,-126v0,-74,34,-130,106,-130v72,0,107,56,107,130v0,74,-35,130,-107,130v-72,0,-106,-56,-106,-130xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87xm118,-267r-36,-53r50,0r20,53r-34,0","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d5":{"d":"17,-126v0,-74,34,-130,106,-130v72,0,107,56,107,130v0,74,-35,130,-107,130v-72,0,-106,-56,-106,-130xm77,-126v0,48,12,88,46,88v34,0,47,-40,47,-88v0,-48,-13,-87,-47,-87v-34,0,-46,39,-46,87xm94,-272r-27,0v1,-21,12,-44,34,-44v25,-1,47,28,52,0r27,0v0,3,-2,44,-34,44v-22,0,-49,-27,-52,0","w":246,"k":{"T":6,"V":6,"Y":13,"\u00dd":13,"\u0178":13,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0160":{"d":"163,-247r-2,47v-25,-13,-84,-26,-84,14v0,46,99,25,99,114v0,48,-37,76,-87,76v-31,0,-57,-7,-68,-10r3,-49v27,14,92,30,92,-14v0,-49,-99,-25,-99,-115v0,-8,3,-72,87,-72v23,0,37,4,59,9xm71,-267r-28,-53r36,0r18,31r17,-31r36,0r-27,53r-52,0","w":193,"k":{",":9,".":9}},"\u00da":{"d":"21,-91r0,-160r59,0r0,169v0,25,9,41,33,41v24,0,34,-16,34,-41r0,-169r59,0r0,160v0,62,-36,95,-93,95v-57,0,-92,-33,-92,-95xm85,-267r20,-53r49,0r-36,53r-33,0","w":226,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00db":{"d":"21,-91r0,-160r59,0r0,169v0,25,9,41,33,41v24,0,34,-16,34,-41r0,-169r59,0r0,160v0,62,-36,95,-93,95v-57,0,-92,-33,-92,-95xm60,-267r27,-53r52,0r28,53r-36,0r-18,-31r-17,31r-36,0","w":226,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dc":{"d":"21,-91r0,-160r59,0r0,169v0,25,9,41,33,41v24,0,34,-16,34,-41r0,-169r59,0r0,160v0,62,-36,95,-93,95v-57,0,-92,-33,-92,-95xm61,-274r0,-45r43,0r0,45r-43,0xm123,-274r0,-45r43,0r0,45r-43,0","w":226,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00d9":{"d":"21,-91r0,-160r59,0r0,169v0,25,9,41,33,41v24,0,34,-16,34,-41r0,-169r59,0r0,160v0,62,-36,95,-93,95v-57,0,-92,-33,-92,-95xm108,-267r-36,-53r50,0r19,53r-33,0","w":226,"k":{",":9,".":9,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dd":{"d":"77,0r0,-96r-76,-155r67,0r41,97r37,-97r66,0r-76,156r0,95r-59,0xm78,-267r20,-53r50,0r-36,53r-34,0","w":213,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":33,":":13,";":13,"S":6,"\u0160":6}},"\u0178":{"d":"77,0r0,-96r-76,-155r67,0r41,97r37,-97r66,0r-76,156r0,95r-59,0xm54,-274r0,-45r43,0r0,45r-43,0xm116,-274r0,-45r43,0r0,45r-43,0","w":213,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":33,":":13,";":13,"S":6,"\u0160":6}},"\u017d":{"d":"11,0r0,-48r97,-158r-95,0r0,-45r162,0r0,46r-98,160r99,0r0,45r-165,0xm68,-267r-28,-53r36,0r18,31r17,-31r36,0r-27,53r-52,0","w":186},"\u00e1":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47xm69,-209r19,-52r50,0r-36,52r-33,0","w":193},"\u00e2":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47xm43,-209r28,-52r52,0r27,52r-36,0r-17,-31r-18,31r-36,0","w":193},"\u00e4":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47xm45,-218r0,-45r42,0r0,45r-42,0xm107,-218r0,-45r42,0r0,45r-42,0","w":193},"\u00e0":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47xm92,-209r-36,-52r49,0r20,52r-33,0","w":193},"\u00e5":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47xm60,-243v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm80,-243v0,11,9,20,20,20v11,0,21,-9,21,-20v0,-11,-10,-21,-21,-21v-11,0,-20,10,-20,21","w":193},"\u00e3":{"d":"35,-136r-2,-43v15,-5,39,-11,60,-11v118,0,70,100,83,190r-52,0r-2,-26v-3,12,-25,29,-52,29v-35,0,-58,-23,-58,-57v0,-70,73,-62,110,-63v0,-36,-27,-36,-35,-36v-14,0,-30,4,-52,17xm122,-80r0,-10v-23,0,-58,1,-58,32v0,24,20,25,25,25v5,0,33,-1,33,-47xm67,-214r-27,0v1,-21,13,-44,35,-44v25,0,46,28,52,0r26,0v0,3,-2,44,-34,44v-23,0,-48,-27,-52,0","w":193},"\u00e7":{"d":"66,31r18,-30v-114,-26,-87,-195,21,-191v19,0,28,5,45,9r-2,42v-10,-4,-22,-8,-34,-8v-43,0,-43,48,-43,55v1,56,43,59,79,44r2,43v-16,4,-32,8,-50,8r-11,17v21,-7,43,4,43,27v0,38,-61,37,-82,25r7,-16v5,4,47,14,44,-9v-3,-20,-32,-3,-37,-16","w":159},"\u00e9":{"d":"69,-110r59,0v0,-24,-7,-46,-30,-46v-29,0,-29,36,-29,46xm180,-93r0,14r-111,0v-5,45,69,53,99,28r2,43v-18,7,-41,11,-60,11v-66,0,-95,-40,-95,-97v0,-50,29,-96,83,-96v17,0,82,-1,82,97xm69,-209r19,-52r50,0r-36,52r-33,0","w":193,"k":{",":6,".":9,"x":4}},"\u00ea":{"d":"69,-110r59,0v0,-24,-7,-46,-30,-46v-29,0,-29,36,-29,46xm180,-93r0,14r-111,0v-5,45,69,53,99,28r2,43v-18,7,-41,11,-60,11v-66,0,-95,-40,-95,-97v0,-50,29,-96,83,-96v17,0,82,-1,82,97xm43,-209r28,-52r52,0r27,52r-36,0r-17,-31r-18,31r-36,0","w":193,"k":{",":6,".":9,"x":4}},"\u00eb":{"d":"69,-110r59,0v0,-24,-7,-46,-30,-46v-29,0,-29,36,-29,46xm180,-93r0,14r-111,0v-5,45,69,53,99,28r2,43v-18,7,-41,11,-60,11v-66,0,-95,-40,-95,-97v0,-50,29,-96,83,-96v17,0,82,-1,82,97xm45,-218r0,-45r42,0r0,45r-42,0xm107,-218r0,-45r42,0r0,45r-42,0","w":193,"k":{",":6,".":9,"x":4}},"\u00e8":{"d":"69,-110r59,0v0,-24,-7,-46,-30,-46v-29,0,-29,36,-29,46xm180,-93r0,14r-111,0v-5,45,69,53,99,28r2,43v-18,7,-41,11,-60,11v-66,0,-95,-40,-95,-97v0,-50,29,-96,83,-96v17,0,82,-1,82,97xm92,-209r-36,-52r49,0r20,52r-33,0","w":193,"k":{",":6,".":9,"x":4}},"\u00ed":{"d":"22,0r0,-188r56,0r0,188r-56,0xm22,-209r19,-52r50,0r-36,52r-33,0","w":100},"\u00ee":{"d":"22,0r0,-188r56,0r0,188r-56,0xm-4,-209r28,-52r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":100},"\u00ef":{"d":"22,0r0,-188r56,0r0,188r-56,0xm-2,-218r0,-45r42,0r0,45r-42,0xm60,-218r0,-45r42,0r0,45r-42,0","w":100},"\u00ec":{"d":"22,0r0,-188r56,0r0,188r-56,0xm45,-209r-36,-52r50,0r19,52r-33,0","w":100},"\u00f1":{"d":"123,0r0,-116v0,-23,-9,-29,-21,-29v-18,0,-25,16,-25,40r0,105r-57,0r-2,-188r52,0v1,8,2,19,2,32v9,-21,23,-34,53,-34v83,2,48,115,55,190r-57,0xm70,-214r-26,0v1,-21,12,-44,34,-44v25,0,46,28,52,0r27,0v0,3,-3,44,-35,44v-23,0,-48,-27,-52,0","w":200},"\u00f3":{"d":"15,-94v0,-56,30,-96,88,-96v58,0,89,40,89,96v0,57,-31,97,-89,97v-58,0,-88,-40,-88,-97xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58xm75,-209r20,-52r49,0r-36,52r-33,0","w":206,"k":{",":13,".":13,"x":6}},"\u00f4":{"d":"15,-94v0,-56,30,-96,88,-96v58,0,89,40,89,96v0,57,-31,97,-89,97v-58,0,-88,-40,-88,-97xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58xm50,-209r27,-52r52,0r28,52r-36,0r-18,-31r-17,31r-36,0","w":206,"k":{",":13,".":13,"x":6}},"\u00f6":{"d":"15,-94v0,-56,30,-96,88,-96v58,0,89,40,89,96v0,57,-31,97,-89,97v-58,0,-88,-40,-88,-97xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58xm51,-218r0,-45r43,0r0,45r-43,0xm113,-218r0,-45r43,0r0,45r-43,0","w":206,"k":{",":13,".":13,"x":6}},"\u00f2":{"d":"15,-94v0,-56,30,-96,88,-96v58,0,89,40,89,96v0,57,-31,97,-89,97v-58,0,-88,-40,-88,-97xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58xm98,-209r-36,-52r50,0r19,52r-33,0","w":206,"k":{",":13,".":13,"x":6}},"\u00f5":{"d":"15,-94v0,-56,30,-96,88,-96v58,0,89,40,89,96v0,57,-31,97,-89,97v-58,0,-88,-40,-88,-97xm74,-94v0,37,9,58,29,58v20,0,29,-21,29,-58v0,-37,-9,-58,-29,-58v-20,0,-29,21,-29,58xm73,-214r-26,0v1,-21,12,-44,34,-44v25,0,46,28,52,0r27,0v0,3,-2,44,-34,44v-23,0,-49,-27,-53,0","w":206,"k":{",":13,".":13,"x":6}},"\u0161":{"d":"89,-55v-12,-21,-79,-24,-79,-79v0,-20,15,-56,71,-56v23,0,43,4,52,7r-2,43v-18,-9,-62,-17,-67,3v3,29,84,23,79,82v-6,66,-75,66,-131,49r2,-44v16,15,78,20,75,-5xm51,-209r-28,-52r36,0r18,31r17,-31r36,0r-27,52r-52,0","w":153},"\u00fa":{"d":"180,-188r2,188r-52,0v-2,-7,1,-21,-2,-31v-9,21,-23,34,-53,34v-83,-2,-48,-115,-55,-191r57,0r0,116v0,23,10,30,22,30v18,0,24,-16,24,-40r0,-106r57,0xm72,-209r19,-52r50,0r-36,52r-33,0","w":200},"\u00fb":{"d":"180,-188r2,188r-52,0v-2,-7,1,-21,-2,-31v-9,21,-23,34,-53,34v-83,-2,-48,-115,-55,-191r57,0r0,116v0,23,10,30,22,30v18,0,24,-16,24,-40r0,-106r57,0xm46,-209r28,-52r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":200},"\u00fc":{"d":"180,-188r2,188r-52,0v-2,-7,1,-21,-2,-31v-9,21,-23,34,-53,34v-83,-2,-48,-115,-55,-191r57,0r0,116v0,23,10,30,22,30v18,0,24,-16,24,-40r0,-106r57,0xm48,-218r0,-45r42,0r0,45r-42,0xm110,-218r0,-45r42,0r0,45r-42,0","w":200},"\u00f9":{"d":"180,-188r2,188r-52,0v-2,-7,1,-21,-2,-31v-9,21,-23,34,-53,34v-83,-2,-48,-115,-55,-191r57,0r0,116v0,23,10,30,22,30v18,0,24,-16,24,-40r0,-106r57,0xm95,-209r-36,-52r50,0r19,52r-33,0","w":200},"\u00fd":{"d":"185,-188r-66,205v-18,57,-46,72,-100,58r2,-42v23,13,54,-10,46,-33r-65,-188r59,0r35,128r34,-128r55,0xm66,-209r19,-52r50,0r-36,52r-33,0","w":186,"k":{",":20,".":20}},"\u00ff":{"d":"185,-188r-66,205v-18,57,-46,72,-100,58r2,-42v23,13,54,-10,46,-33r-65,-188r59,0r35,128r34,-128r55,0xm41,-218r0,-45r43,0r0,45r-43,0xm103,-218r0,-45r43,0r0,45r-43,0","w":186,"k":{",":20,".":20}},"\u017e":{"d":"12,-145r0,-43r130,0r0,47r-70,99r72,0r0,42r-134,0r0,-47r71,-98r-69,0xm51,-209r-28,-52r36,0r18,31r17,-31r36,0r-27,52r-52,0","w":153},"\u00a0":{"w":93},"\u00ad":{"d":"15,-81r0,-44r90,0r0,44r-90,0","w":119}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1994, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Frutiger is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * FrutigerLTStd-Bold
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":200,"face":{"font-family":"FrutigerLTStd-Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 5 4 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-8 -337 360 90","underline-thickness":"18","underline-position":"-18","stemh":"35","stemv":"50","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100},"!":{"d":"49,-74r-7,-177r56,0r-8,177r-41,0xm45,0r0,-50r50,0r0,50r-50,0","w":140},"\"":{"d":"98,-161r0,-90r43,0r0,90r-43,0xm32,-161r0,-90r44,0r0,90r-44,0","w":173},"#":{"d":"178,-103r0,29r-33,0r-11,74r-31,0r10,-74r-37,0r-10,74r-32,0r10,-74r-32,0r0,-29r36,0r6,-46r-31,0r0,-28r36,0r10,-74r32,0r-10,74r36,0r11,-74r31,0r-10,74r29,0r0,28r-33,0r-6,46r29,0xm123,-149r-37,0r-6,46r37,0"},"$":{"d":"93,-156r0,-56v-23,7,-29,48,0,56xm110,-95r0,55v27,-9,28,-46,0,-55xm93,-282r17,0r0,26v21,0,41,3,59,9r-5,42v-17,-7,-34,-11,-54,-11r0,67v32,13,74,25,74,77v0,47,-33,70,-74,75r0,29r-17,0r0,-28v-29,0,-42,-3,-68,-9r5,-46v19,10,40,19,63,15r0,-67v-32,-13,-72,-26,-72,-76v0,-49,33,-71,72,-76r0,-27"},"%":{"d":"262,-24v33,0,33,-75,0,-75v-19,0,-23,22,-23,37v0,15,4,38,23,38xm262,4v-39,0,-60,-24,-60,-66v0,-42,21,-66,60,-66v39,0,60,24,60,66v0,42,-21,66,-60,66xm99,-123v-39,0,-61,-24,-61,-66v0,-42,22,-67,61,-67v39,0,59,25,59,67v0,42,-20,66,-59,66xm99,-152v19,0,22,-22,22,-37v0,-15,-3,-38,-22,-38v-33,0,-33,75,0,75xm88,8r156,-267r29,0r-155,267r-30,0","w":360},"&":{"d":"156,-48r-56,-63v-41,13,-38,80,12,78v17,0,33,-4,44,-15xm112,-158v13,-6,32,-21,32,-36v0,-18,-13,-26,-27,-26v-14,0,-29,8,-29,26v0,14,14,26,24,36xm140,-132r46,50v12,-14,15,-35,16,-54r44,0v-1,32,-13,62,-33,86r45,50r-61,0r-17,-22v-47,48,-158,28,-158,-47v0,-30,13,-52,53,-69v-19,-18,-35,-31,-35,-60v2,-74,146,-82,148,-1v0,35,-21,51,-48,67","w":259},"\u2019":{"d":"12,-161r23,-90r53,0r-33,90r-43,0","w":100,"k":{"\u2019":25,"s":27,"\u0161":27,"t":6}},"(":{"d":"72,-272r45,0v-67,88,-68,232,0,322r-45,0v-76,-90,-76,-234,0,-322","w":119},")":{"d":"48,50r-45,0v67,-90,68,-234,0,-322r45,0v76,88,76,232,0,322","w":119},"*":{"d":"174,-182r-50,11r35,39r-33,23r-26,-44r-27,44r-33,-23r35,-39r-49,-11r12,-38r48,21r-6,-52r41,0r-6,52r48,-21"},"+":{"d":"89,-110r0,-72r38,0r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0","w":216},",":{"d":"8,40r23,-90r53,0r-33,90r-43,0","w":100},"-":{"d":"107,-77r-94,0r0,-40r94,0r0,40","w":119},".":{"d":"25,0r0,-50r50,0r0,50r-50,0","w":100},"\/":{"d":"8,4r87,-260r38,0r-88,260r-37,0","w":140},"0":{"d":"100,-33v38,0,37,-60,37,-92v0,-32,0,-93,-37,-93v-37,0,-37,61,-37,93v0,32,0,92,37,92xm100,4v-77,0,-87,-76,-87,-129v0,-63,19,-131,87,-131v73,0,88,73,88,131v0,58,-15,129,-88,129"},"1":{"d":"28,-192r74,-59r45,0r0,251r-51,0r0,-194r-42,35"},"2":{"d":"182,0r-167,0r0,-42v23,-23,108,-94,108,-140v0,-49,-72,-36,-99,-14r-3,-42v58,-32,153,-25,153,56v0,53,-54,102,-95,142r103,0r0,40"},"3":{"d":"16,-4r3,-43v36,16,104,23,109,-24v4,-38,-39,-40,-80,-39r0,-40v38,2,81,-4,79,-33v-3,-47,-68,-36,-100,-20r-3,-40v56,-19,147,-30,153,52v3,35,-23,49,-47,61v32,4,48,28,48,59v0,85,-94,82,-162,67"},"4":{"d":"51,-90r63,0r-1,-109xm6,-52r0,-41r94,-158r62,0r0,161r32,0r0,38r-32,0r0,52r-48,0r0,-52r-108,0"},"5":{"d":"176,-251r0,37r-96,0r-2,54v51,-10,105,4,105,79v0,47,-33,85,-98,85v-19,0,-42,-3,-59,-7r1,-45v31,18,106,23,105,-32v-1,-48,-61,-49,-102,-36r2,-135r144,0"},"6":{"d":"172,-247r-6,41v-13,-6,-27,-10,-44,-10v-43,-1,-61,43,-59,78v36,-53,122,-17,122,52v0,54,-27,90,-84,90v-70,0,-85,-58,-85,-117v0,-68,22,-143,103,-143v18,0,36,3,53,9xm100,-125v-24,0,-34,22,-34,47v0,24,10,45,35,45v45,-1,44,-93,-1,-92"},"7":{"d":"18,-212r0,-39r162,0r0,41r-89,210r-55,0r93,-212r-111,0"},"8":{"d":"13,-68v-1,-29,18,-46,46,-63v-25,-11,-42,-32,-42,-58v0,-45,34,-67,80,-67v44,0,84,19,84,61v0,23,-14,49,-42,60v33,15,49,37,49,66v0,51,-37,73,-87,73v-49,0,-88,-21,-88,-72xm65,-188v0,22,23,32,40,38v33,-8,40,-68,-3,-68v-18,0,-37,10,-37,30xm95,-110v-42,10,-42,77,6,77v20,0,36,-13,36,-34v0,-25,-21,-36,-42,-43"},"9":{"d":"28,-5r7,-40v13,6,27,10,44,10v44,1,62,-43,59,-79v-36,52,-122,18,-122,-51v0,-54,26,-91,83,-91v70,0,86,58,86,117v0,68,-23,143,-104,143v-18,0,-36,-3,-53,-9xm100,-126v24,0,34,-23,34,-48v0,-24,-10,-44,-35,-44v-45,1,-44,93,1,92"},":":{"d":"25,-135r0,-50r50,0r0,50r-50,0xm25,0r0,-50r50,0r0,50r-50,0","w":100},";":{"d":"8,40r23,-90r53,0r-33,90r-43,0xm25,-135r0,-50r50,0r0,50r-50,0","w":100},"<":{"d":"199,-34r0,37r-182,-79r0,-31r182,-78r0,37r-134,57","w":216},"=":{"d":"199,-149r0,37r-182,0r0,-37r182,0xm199,-71r0,38r-182,0r0,-38r182,0","w":216},">":{"d":"17,-34r134,-57r-134,-57r0,-37r182,78r0,31r-182,79r0,-37","w":216},"?":{"d":"66,-73v-3,-60,46,-69,53,-112v-4,-46,-66,-35,-97,-19r-4,-40v60,-21,153,-21,153,53v0,50,-65,71,-61,118r-44,0xm63,0r0,-50r50,0r0,50r-50,0","w":180},"@":{"d":"149,-161v-39,-3,-59,73,-13,76v38,3,59,-73,13,-76xm227,-51r31,0v-68,95,-244,67,-245,-75v0,-72,59,-130,140,-130v58,0,122,32,122,106v0,74,-67,100,-91,100v-11,0,-17,-7,-20,-18v-29,36,-92,12,-92,-41v0,-67,75,-118,116,-64r4,-17r30,0r-22,100v0,3,1,5,5,5v18,0,41,-19,41,-64v0,-59,-51,-73,-93,-73v-60,0,-102,45,-102,96v0,91,106,124,176,75","w":288},"A":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0","w":259},"B":{"d":"80,-112r0,72v35,0,75,2,75,-35v0,-42,-38,-37,-75,-37xm80,-212r0,62v31,0,68,3,68,-30v0,-36,-36,-32,-68,-32xm29,0r0,-251v78,5,161,-24,169,64v3,31,-22,50,-50,57v34,3,58,26,58,57v0,98,-93,68,-177,73","w":219},"C":{"d":"210,-46r2,42v-98,25,-195,-11,-195,-117v0,-107,95,-159,195,-124r-4,42v-66,-37,-139,6,-139,78v0,73,76,110,141,79","w":219},"D":{"d":"29,0r0,-251v115,-3,214,-3,214,125v0,127,-98,130,-214,126xm80,-212r0,172v64,6,110,-20,110,-86v0,-66,-46,-92,-110,-86","w":259},"E":{"d":"29,0r0,-251r148,0r0,39r-97,0r0,62r89,0r0,40r-89,0r0,70r98,0r0,40r-149,0"},"F":{"d":"29,0r0,-251r140,0r0,39r-89,0r0,62r85,0r0,40r-85,0r0,110r-51,0","w":180,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,",":46,".":46}},"G":{"d":"229,-245r-4,42v-70,-34,-156,1,-156,78v0,62,52,104,119,86r0,-65r-53,0r0,-40r101,0r0,135v-102,33,-219,5,-219,-112v0,-115,108,-157,212,-124","w":259},"H":{"d":"29,0r0,-251r51,0r0,101r100,0r0,-101r51,0r0,251r-51,0r0,-110r-100,0r0,110r-51,0","w":259},"I":{"d":"25,0r0,-251r50,0r0,251r-50,0","w":100},"J":{"d":"8,0r0,-44v7,3,14,4,24,4v33,0,33,-26,33,-44r0,-167r50,0r0,191v0,27,-18,64,-69,64v-14,0,-24,0,-38,-4","w":140},"K":{"d":"29,0r0,-251r51,0r0,108r90,-108r62,0r-103,118r108,133r-66,0r-91,-117r0,117r-51,0","w":240},"L":{"d":"29,0r0,-251r51,0r0,211r97,0r0,40r-148,0","w":180,"k":{"T":33,"V":33,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":40,"\u00dd":40,"\u0178":40,"\u2019":27}},"M":{"d":"29,0r0,-251r81,0r60,190r60,-190r81,0r0,251r-49,0r0,-207r-68,207r-48,0r-69,-207r0,207r-48,0","w":339},"N":{"d":"27,0r0,-251r62,0r96,188r0,-188r48,0r0,251r-61,0r-97,-188r0,188r-48,0","w":259},"O":{"d":"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181","w":280},"P":{"d":"75,-212r0,77v34,1,66,-1,66,-37v0,-36,-30,-42,-66,-40xm25,0r0,-251v82,-1,168,-7,168,76v0,66,-52,83,-118,80r0,95r-50,0","k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":61,".":61}},"Q":{"d":"257,48r-61,0r-44,-44v-87,5,-136,-49,-135,-130v0,-77,43,-130,123,-130v138,0,162,200,60,247xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181","w":280},"R":{"d":"75,-212r0,68v34,0,70,2,70,-35v0,-36,-37,-33,-70,-33xm25,0r0,-251v78,4,168,-21,173,68v1,31,-22,52,-52,59v14,1,21,15,26,26r41,98r-56,0r-31,-78v-7,-25,-22,-27,-51,-26r0,104r-50,0","w":219,"k":{"T":6,"V":6,"W":6,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"169,-247r-5,42v-33,-13,-91,-25,-91,24v0,44,111,25,111,109v1,79,-92,87,-159,67r5,-46v31,19,101,29,101,-17v0,-48,-110,-28,-110,-111v1,-80,85,-88,148,-68"},"T":{"d":"75,0r0,-212r-72,0r0,-39r194,0r0,39r-72,0r0,212r-50,0","k":{"\u00fc":33,"\u0161":40,"\u00f2":40,"\u00f6":40,"\u00e8":40,"\u00eb":40,"\u00ea":40,"\u00e3":40,"\u00e5":40,"\u00e0":40,"\u00e4":40,"\u00e2":40,"w":40,"y":40,"\u00fd":40,"\u00ff":40,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,",":40,".":40,"c":40,"\u00e7":40,"e":40,"\u00e9":40,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f5":40,"-":42,"a":40,"\u00e6":40,"\u00e1":40,"r":33,"s":40,"u":33,"\u00fa":33,"\u00fb":33,"\u00f9":33,":":26,";":30}},"U":{"d":"27,-91r0,-160r51,0v9,79,-31,216,52,216v83,0,43,-138,52,-216r51,0r0,160v0,67,-39,95,-103,95v-64,0,-103,-28,-103,-95","w":259},"V":{"d":"90,0r-86,-251r54,0r65,197r63,-197r51,0r-85,251r-62,0","w":240,"k":{"\u00f6":20,"\u00f4":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":46,".":46,"e":20,"\u00e9":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f2":20,"\u00f5":20,"-":20,"a":20,"\u00e6":20,"\u00e1":20,"r":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":12,";":17,"i":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4}},"W":{"d":"70,0r-66,-251r53,0r47,201r43,-201r68,0r45,201r47,-201r49,0r-65,251r-65,0r-46,-201r-45,201r-65,0","w":360,"k":{"\u00fc":6,"\u00f6":6,"\u00ea":6,"\u00e4":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":27,".":27,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,"-":10,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":2,";":6}},"X":{"d":"4,0r82,-131r-75,-120r58,0r53,89r54,-89r54,0r-76,120r83,131r-60,0r-58,-98r-59,98r-56,0","w":240},"Y":{"d":"96,0r0,-99r-92,-152r59,0r59,105r61,-105r53,0r-90,152r0,99r-50,0","w":240,"k":{"\u00fc":27,"\u00f6":33,"v":20,"A":35,"\u00c6":35,"\u00c1":35,"\u00c2":35,"\u00c4":35,"\u00c0":35,"\u00c5":35,"\u00c3":35,",":40,".":40,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f2":33,"\u00f5":33,"q":33,"-":40,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,":":33,";":33,"i":3,"\u0131":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"p":27}},"Z":{"d":"13,0r0,-41r118,-171r-113,0r0,-39r167,0r0,41r-119,170r121,0r0,40r-174,0"},"[":{"d":"26,50r0,-322r81,0r0,35r-35,0r0,252r35,0r0,35r-81,0","w":119},"\\":{"d":"95,4r-88,-260r38,0r87,260r-37,0","w":140},"]":{"d":"13,-272r81,0r0,322r-81,0r0,-35r35,0r0,-252r-35,0r0,-35","w":119},"^":{"d":"61,-113r-37,0r67,-138r34,0r67,138r-37,0r-47,-100","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"12,-161r33,-90r43,0r-23,90r-53,0","w":100,"k":{"\u2018":25}},"a":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32"},"b":{"d":"73,-93v0,26,11,60,43,60v32,0,41,-34,41,-60v0,-25,-9,-59,-40,-59v-31,0,-44,33,-44,59xm25,0r0,-270r48,0r1,108v13,-18,30,-28,55,-28v57,0,78,46,78,97v0,51,-21,97,-78,97v-21,0,-43,-7,-57,-27r0,23r-47,0","w":219},"c":{"d":"149,-184r-4,39v-38,-19,-82,1,-82,51v0,51,47,75,87,52r3,40v-73,22,-140,-15,-140,-92v0,-71,63,-114,136,-90","w":159},"d":{"d":"63,-93v0,26,9,60,41,60v60,0,58,-119,-1,-119v-31,0,-40,34,-40,59xm148,0r0,-21v-14,18,-34,25,-57,25v-57,0,-78,-46,-78,-97v0,-51,21,-97,78,-97v25,-1,40,10,56,26r0,-106r48,0r0,270r-47,0","w":219},"e":{"d":"59,-111r82,0v-1,-23,-12,-43,-39,-43v-27,0,-41,18,-43,43xm174,-50r0,40v-68,35,-161,5,-161,-82v0,-54,28,-98,86,-98v69,0,88,47,88,112r-128,0v2,58,79,54,115,28"},"f":{"d":"42,0r0,-150r-35,0r0,-35r35,0v-10,-67,32,-102,95,-85r-4,40v-14,-14,-48,-4,-42,22r0,23r42,0r0,35r-42,0r0,150r-49,0","w":140,"k":{"\u2019":-6,"f":6,"\u00df":6}},"g":{"d":"104,-37v30,0,43,-27,43,-58v0,-32,-12,-57,-40,-57v-61,1,-58,115,-3,115xm149,-185r46,0r0,167v0,50,-20,98,-98,98v-19,0,-41,-3,-64,-13r4,-41v15,8,39,16,54,16v52,1,58,-42,55,-72v-9,16,-30,30,-57,30v-55,0,-76,-44,-76,-94v0,-45,23,-96,78,-96v25,-1,43,11,58,30r0,-25","w":219},"h":{"d":"25,0r0,-270r48,0r1,110v12,-18,33,-30,58,-30v86,-1,59,110,63,190r-48,0r0,-99v0,-23,0,-53,-31,-53v-65,0,-37,90,-43,152r-48,0","w":219},"i":{"d":"26,0r0,-185r48,0r0,185r-48,0xm26,-219r0,-46r48,0r0,46r-48,0","w":100},"j":{"d":"-5,77r1,-35v26,-1,30,-6,30,-35r0,-192r48,0r0,199v0,26,-8,66,-56,66v-8,0,-17,-1,-23,-3xm26,-219r0,-46r48,0r0,46r-48,0","w":100},"k":{"d":"26,0r0,-270r48,0r1,159r57,-74r57,0r-69,82r78,103r-61,0r-63,-90r0,90r-48,0"},"l":{"d":"26,0r0,-270r48,0r0,270r-48,0","w":100},"m":{"d":"24,0r0,-185r45,0v1,8,-2,20,1,26v28,-44,90,-41,110,2v11,-22,35,-33,58,-33v86,1,50,113,58,190r-48,0r0,-111v0,-17,0,-41,-28,-41v-59,0,-29,94,-36,152r-48,0r0,-111v0,-17,0,-41,-28,-41v-59,0,-29,94,-36,152r-48,0","w":320},"n":{"d":"25,0r0,-185r46,0r0,25v35,-54,124,-32,124,43r0,117r-48,0r0,-99v0,-23,0,-53,-31,-53v-65,0,-37,90,-43,152r-48,0","w":219},"o":{"d":"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55","w":219},"p":{"d":"25,76r0,-261r46,0v1,8,-2,20,1,26v11,-18,29,-31,57,-31v57,0,78,46,78,97v0,51,-21,97,-79,97v-22,1,-37,-6,-55,-25r0,97r-48,0xm117,-152v-31,0,-44,33,-44,59v0,26,11,60,43,60v32,0,41,-34,41,-60v0,-25,-9,-59,-40,-59","w":219},"q":{"d":"147,76r-1,-97v-17,21,-33,25,-54,25v-58,0,-79,-46,-79,-97v0,-51,21,-97,79,-97v28,-1,43,14,57,31r0,-26r46,0r0,261r-48,0xm103,-152v-31,0,-40,34,-40,59v0,26,9,60,41,60v60,0,58,-119,-1,-119","w":219},"r":{"d":"26,0r0,-185r43,0r0,42v2,-20,31,-57,66,-45r0,48v-4,-3,-13,-4,-22,-4v-60,0,-33,88,-39,144r-48,0","w":140,"k":{",":33,".":33,"c":6,"\u00e7":6,"d":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"n":-6,"\u00f1":-6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"q":6,"-":20}},"s":{"d":"138,-183r-3,36v-23,-7,-72,-18,-72,13v0,30,84,11,84,78v0,63,-77,69,-132,52r3,-39v25,13,71,24,79,-11v0,-36,-84,-11,-84,-78v0,-60,77,-66,125,-51","w":159},"t":{"d":"99,4v-74,3,-56,-85,-58,-154r-36,0r0,-35r36,0r0,-37r48,-16r0,53r43,0r0,35r-43,0r0,86v-5,27,25,38,45,26r1,38v-10,3,-22,4,-36,4","w":140},"u":{"d":"195,-185r0,185r-46,0r0,-25v-35,50,-124,33,-124,-43r0,-117r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0","w":219},"v":{"d":"73,0r-69,-185r52,0r47,135r45,-135r48,0r-69,185r-54,0","k":{",":27,".":27}},"w":{"d":"67,0r-63,-185r51,0r42,137r37,-137r56,0r41,137r39,-137r46,0r-57,185r-57,0r-41,-141r-39,141r-55,0","w":320,"k":{",":20,".":20}},"x":{"d":"67,-97r-57,-88r57,0r36,60r36,-60r51,0r-56,88r63,97r-58,0r-41,-69r-42,69r-53,0"},"y":{"d":"57,-185r46,135r44,-135r49,0r-69,184v-14,53,-45,97,-112,76r4,-36v24,8,60,1,56,-30r-71,-194r53,0","k":{",":33,".":33}},"z":{"d":"17,-148r0,-37r147,0r0,39r-92,109r95,0r0,37r-154,0r0,-39r94,-109r-90,0","w":180},"{":{"d":"6,-95r0,-31v13,0,30,-8,30,-34r0,-64v2,-43,37,-51,80,-48r0,29v-50,-11,-34,48,-34,88v0,34,-25,43,-40,44v15,1,40,8,40,47v0,35,-20,96,34,86r0,28v-43,3,-80,-4,-80,-48r0,-61v0,-28,-17,-36,-30,-36","w":119},"|":{"d":"21,-270r38,0r0,360r-38,0r0,-360","w":79},"}":{"d":"113,-126r0,31v-13,0,-29,8,-29,36r0,61v-2,43,-37,51,-80,48r0,-28v49,11,34,-46,34,-86v0,-39,25,-46,40,-47v-15,-1,-40,-10,-40,-44v0,-36,21,-97,-34,-88r0,-29v43,-3,80,4,80,48v0,37,-7,103,29,98","w":119},"~":{"d":"150,-60v-41,-2,-92,-52,-112,1r-13,-32v8,-15,20,-31,43,-31v45,1,86,52,110,-1r13,32v-9,15,-22,31,-41,31","w":216},"\u00a1":{"d":"42,66r8,-178r40,0r8,178r-56,0xm44,-135r0,-50r51,0r0,50r-51,0","w":140},"\u00a2":{"d":"93,-52r30,-100v-41,1,-54,68,-30,100xm144,-219r21,0r-10,33v4,0,8,1,12,2r-4,39v-5,-3,-12,-5,-19,-6r-35,113v16,10,46,3,59,-4r3,40v-19,6,-51,9,-74,3r-10,31r-20,0r11,-37v-80,-38,-55,-206,57,-184"},"\u00a3":{"d":"19,0r0,-37r32,0r0,-79r-27,0r0,-29r27,0v-13,-86,56,-129,133,-104r-2,39v-35,-16,-87,2,-80,41r0,24r52,0r0,29r-52,0r0,79r80,0r0,37r-163,0"},"\u00a5":{"d":"204,-251r-62,118r35,0r0,29r-50,0v-4,4,-3,14,-3,22r53,0r0,29r-53,0r0,53r-48,0r0,-53r-53,0r0,-29r53,0v0,-8,1,-18,-3,-22r-50,0r0,-29r36,0r-63,-118r51,0r55,111r55,-111r47,0"},"\u0192":{"d":"45,-146r41,0v11,-53,16,-115,81,-110v10,0,20,2,30,4r-7,38v-22,-9,-41,-1,-46,25r-9,43r44,0r-5,29r-44,0r-22,118v-4,24,-15,79,-68,79v-13,0,-25,0,-37,-4r7,-35v28,8,46,-12,45,-31r25,-127r-41,0"},"\u00a7":{"d":"61,-111v0,23,47,31,65,42v8,-6,13,-16,13,-27v0,-25,-36,-28,-65,-42v-6,5,-13,15,-13,27xm162,-248r-4,39v-27,-9,-83,-22,-86,15v-3,37,105,25,105,91v0,19,-10,37,-27,46v15,9,25,24,25,41v-3,69,-87,74,-147,55r4,-42v18,8,40,15,60,15v20,0,37,-6,37,-25v0,-37,-105,-27,-105,-90v0,-23,9,-38,27,-48v-16,-11,-25,-23,-25,-43v0,-63,79,-71,136,-54"},"\u00a4":{"d":"172,-220r22,21r-21,21v22,31,21,72,0,103r21,21r-22,21r-20,-21v-30,22,-73,23,-103,0r-21,21r-22,-21r21,-21v-22,-31,-21,-72,0,-103r-21,-21r22,-21r21,21v30,-23,73,-22,103,0xm50,-126v0,28,23,51,50,51v27,0,50,-23,50,-51v0,-28,-23,-52,-50,-52v-27,0,-50,24,-50,52"},"'":{"d":"28,-161r0,-90r44,0r0,90r-44,0","w":100},"\u201c":{"d":"12,-161r33,-90r43,0r-23,90r-53,0xm85,-161r33,-90r43,0r-23,90r-53,0","w":173},"\u00ab":{"d":"98,-97r42,-74r46,0r-40,74r40,74r-46,0xm18,-97r42,-74r45,0r-39,74r39,74r-45,0"},"\u2013":{"d":"0,-80r0,-33r180,0r0,33r-180,0","w":180},"\u00b7":{"d":"50,-75v-17,0,-28,-11,-28,-27v0,-16,11,-28,28,-28v17,0,28,12,28,28v0,16,-11,27,-28,27","w":100},"\u00b6":{"d":"80,45r0,-168v-50,0,-79,-25,-79,-63v-1,-87,111,-61,192,-65r0,296r-38,0r0,-267r-38,0r0,267r-37,0","w":223},"\u201d":{"d":"12,-161r23,-90r53,0r-33,90r-43,0xm85,-161r23,-90r53,0r-33,90r-43,0","w":173},"\u00bb":{"d":"102,-97r-42,74r-46,0r40,-74r-40,-74r46,0xm183,-97r-43,74r-45,0r39,-74r-39,-74r45,0"},"\u2026":{"d":"85,0r-50,0r0,-50r50,0r0,50xm205,0r-50,0r0,-50r50,0r0,50xm325,0r-50,0r0,-50r50,0r0,50","w":360},"\u00bf":{"d":"114,-112v3,60,-47,69,-53,112v6,48,66,35,97,18r4,40v-59,22,-153,20,-153,-52v0,-50,65,-71,61,-118r44,0xm117,-185r0,50r-51,0r0,-50r51,0","w":180},"`":{"d":"60,-263r30,52r-30,0r-50,-52r50,0","w":100},"\u00b4":{"d":"10,-211r30,-52r50,0r-50,52r-30,0","w":100},"\u00af":{"d":"102,-222r-104,0r0,-29r104,0r0,29","w":100},"\u00a8":{"d":"66,-261r42,0r0,42r-42,0r0,-42xm34,-219r-42,0r0,-42r42,0r0,42","w":100},"\u00b8":{"d":"27,72r7,-19v12,4,43,12,44,-7v1,-15,-19,-14,-30,-10v-13,-13,9,-24,15,-36r23,0v-4,7,-15,13,-16,20v19,-5,44,-1,44,22v2,45,-61,42,-87,30","w":100},"\u2014":{"d":"0,-80r0,-33r360,0r0,33r-360,0","w":360},"\u00c6":{"d":"181,-97r-9,-117r-62,117r71,0xm3,0r138,-251r179,0r0,39r-97,0r5,62r84,0r0,40r-80,0r6,70r84,0r0,40r-133,0r-4,-58r-97,0r-31,58r-54,0","w":339},"\u00aa":{"d":"120,-141r-30,0v-1,-5,1,-12,-2,-15v-15,31,-78,22,-78,-14v0,-41,42,-40,77,-40v0,-36,-44,-25,-64,-13r0,-24v37,-17,95,-15,95,40v0,23,1,47,2,66xm41,-172v12,25,49,7,46,-19v-19,0,-44,-3,-46,19","w":129},"\u0141":{"d":"29,0r0,-87r-26,15r0,-33r26,-16r0,-130r51,0r0,101r60,-36r0,33r-60,36r0,77r97,0r0,40r-148,0","w":180,"k":{"T":33,"V":33,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":40,"\u00dd":40,"\u0178":40,"\u2019":27}},"\u00d8":{"d":"82,-70r101,-130v-11,-10,-25,-16,-43,-16v-71,1,-86,91,-58,146xm197,-183r-102,130v11,11,26,18,45,18v72,0,86,-94,57,-148xm231,-262r16,14r-19,25v23,23,35,57,35,97v0,76,-43,130,-123,130v-30,0,-54,-7,-73,-20r-21,26r-16,-13r21,-27v-23,-22,-34,-56,-34,-96v0,-77,43,-130,123,-130v28,0,52,7,71,19","w":280},"\u0152":{"d":"176,-40r0,-172v-64,-12,-107,24,-107,88v0,57,44,99,107,84xm320,-251r0,39r-93,0r0,62r85,0r0,40r-85,0r0,70r95,0r0,40v-144,-9,-300,53,-305,-124v-3,-114,91,-140,209,-127r94,0","w":339},"\u00ba":{"d":"72,-256v34,0,63,23,63,59v0,37,-28,59,-63,59v-35,0,-64,-22,-64,-59v0,-36,30,-59,64,-59xm73,-234v-22,0,-30,18,-30,37v0,20,6,37,29,37v23,0,28,-18,28,-37v0,-18,-6,-37,-27,-37","w":142},"\u00e6":{"d":"180,-111r81,0v0,-23,-11,-43,-38,-43v-28,0,-43,19,-43,43xm294,-50r0,40v-43,22,-112,21,-141,-19v-29,49,-140,48,-140,-22v0,-61,63,-65,121,-63v5,-54,-74,-46,-101,-20r-1,-42v42,-17,99,-25,129,10v14,-15,33,-24,63,-24v66,0,83,55,83,112r-127,0v0,58,79,54,114,28xm59,-51v0,11,10,20,27,20v35,0,48,-18,48,-55v-35,-1,-72,-1,-75,35","w":320},"\u0131":{"d":"74,0r-48,0r0,-185r48,0r0,185","w":100},"\u0142":{"d":"26,0r0,-105r-26,15r0,-33r26,-16r0,-131r48,0r0,103r26,-16r0,33r-26,16r0,134r-48,0","w":100},"\u00f8":{"d":"70,-60r68,-83v-47,-33,-96,29,-68,83xm150,-127r-69,83v7,7,16,11,29,11v48,0,55,-58,40,-94xm185,-198r14,12r-19,23v53,55,25,167,-70,167v-22,0,-42,-5,-57,-15r-20,24r-14,-12r20,-24v-57,-56,-14,-167,71,-167v21,0,40,5,55,15","w":219},"\u0153":{"d":"110,-154v-63,0,-65,121,0,123v36,0,48,-30,48,-61v0,-31,-12,-62,-48,-62xm327,-78r-121,0v0,57,72,56,106,29r2,39v-6,4,-23,14,-58,14v-31,0,-59,-6,-75,-30v-58,67,-168,17,-168,-65v0,-93,116,-131,166,-67v14,-21,40,-32,65,-32v67,0,83,54,83,112xm206,-111r75,0v-1,-23,-11,-43,-37,-43v-24,0,-38,21,-38,43","w":339},"\u00df":{"d":"74,0r-48,0v8,-114,-38,-276,88,-274v40,0,82,22,82,66v0,32,-16,56,-48,64v36,5,61,33,61,67v0,60,-56,90,-115,75r1,-37v30,7,64,11,64,-43v0,-32,-27,-41,-57,-41r0,-38v27,0,44,-12,44,-39v0,-20,-10,-37,-32,-37v-28,0,-40,27,-40,51r0,186","w":219},"\u00b9":{"d":"4,-217r50,-36r34,0r0,151r-37,0r0,-115r-28,22","w":129},"\u00ac":{"d":"162,-39r0,-73r-145,0r0,-37r182,0r0,110r-37,0","w":216},"\u00b5":{"d":"25,76r0,-261r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0r0,185r-46,0r0,-25v-9,25,-50,42,-76,17r0,84r-48,0","w":219},"\u2122":{"d":"167,-102r0,-149r53,0r35,93r36,-93r52,0r0,149r-36,0r0,-105r-38,105r-27,0r-39,-105r0,105r-36,0xm59,-102r0,-120r-42,0r0,-29r122,0r0,29r-42,0r0,120r-38,0","w":360},"\u00d0":{"d":"29,0r0,-121r-23,0r0,-31r23,0r0,-99v115,-3,214,-3,214,125v0,127,-98,130,-214,126xm80,-121r0,81v64,6,110,-20,110,-86v0,-66,-46,-92,-110,-86r0,60r52,0r0,31r-52,0","w":259},"\u00bd":{"d":"48,8r150,-267r30,0r-150,267r-30,0xm4,-217r50,-36r33,0r0,151r-37,0r0,-115r-28,22xm288,-108v0,31,-43,65,-61,77r61,0r0,31r-108,0r0,-30v15,-5,68,-53,66,-74v-1,-28,-44,-20,-60,-7r-2,-31v37,-21,104,-18,104,34","w":300},"\u00b1":{"d":"89,-135r0,-47r38,0r0,47r72,0r0,38r-72,0r0,48r-38,0r0,-48r-72,0r0,-38r72,0xm17,0r0,-37r182,0r0,37r-182,0","w":216},"\u00de":{"d":"75,0r-50,0r0,-251r50,0r0,41v63,-2,118,12,118,77v0,67,-52,82,-118,79r0,54xm75,-170r0,77v35,1,66,-2,66,-38v0,-36,-30,-41,-66,-39"},"\u00bc":{"d":"194,-57r42,0v-1,-20,2,-44,-1,-62xm164,-28r0,-31r65,-93r45,0r0,95r17,0r0,29r-17,0r0,28r-38,0r0,-28r-72,0xm59,8r150,-267r30,0r-150,267r-30,0xm7,-217r50,-36r34,0r0,151r-37,0r0,-115r-28,22","w":300},"\u00f7":{"d":"199,-72r-182,0r0,-38r182,0r0,38xm108,-190v17,0,28,11,28,27v0,16,-11,28,-28,28v-17,0,-28,-12,-28,-28v0,-16,11,-27,28,-27xm108,8v-17,0,-28,-11,-28,-27v0,-16,11,-28,28,-28v17,0,28,12,28,28v0,16,-11,27,-28,27","w":216},"\u00a6":{"d":"21,-243r38,0r0,126r-38,0r0,-126xm21,-63r38,0r0,126r-38,0r0,-126","w":79},"\u00b0":{"d":"72,-229v-19,0,-32,12,-32,31v0,19,13,32,32,32v19,0,32,-13,32,-32v0,-19,-13,-31,-32,-31xm72,-256v32,0,58,26,58,58v0,33,-25,58,-58,58v-33,0,-58,-25,-58,-58v0,-32,26,-58,58,-58","w":144},"\u00fe":{"d":"25,76r0,-346r48,0r1,109v9,-15,27,-29,55,-29v57,0,78,46,78,97v0,51,-21,97,-78,97v-29,1,-42,-11,-56,-25r0,97r-48,0xm117,-152v-31,0,-44,33,-44,59v0,26,11,60,43,60v32,0,41,-34,41,-60v0,-25,-9,-59,-40,-59","w":219},"\u00be":{"d":"240,-57r0,-62r-41,62r41,0xm278,-28r0,28r-38,0r0,-28r-72,0r0,-31r65,-93r45,0r0,95r17,0r0,29r-17,0xm63,8r150,-267r30,0r-150,267r-30,0xm12,-217r-2,-30v39,-15,98,-16,104,28v3,20,-12,32,-30,39v21,1,32,17,32,35v0,50,-65,52,-111,40r2,-30v24,8,67,14,70,-12v2,-20,-31,-18,-49,-16r0,-30v21,0,47,2,49,-17v-5,-26,-45,-18,-65,-7","w":300},"\u00b2":{"d":"119,-209v0,31,-43,65,-61,77r62,0r0,30r-109,0r0,-29v15,-5,67,-54,66,-75v-1,-29,-45,-20,-60,-6r-2,-32v38,-21,104,-17,104,35","w":129},"\u00ae":{"d":"14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm51,-126v0,60,41,102,93,102v51,0,93,-42,93,-102v0,-60,-42,-101,-93,-101v-52,0,-93,41,-93,101xm92,-54r0,-144v50,0,112,-8,112,43v0,26,-16,36,-38,38r38,63r-32,0r-34,-61r-15,0r0,61r-31,0xm123,-139v22,-2,52,7,50,-19v-1,-22,-29,-16,-50,-17r0,36","w":288},"\u00f0":{"d":"111,-148v-32,0,-48,32,-48,58v0,26,12,57,47,57v63,0,62,-115,1,-115xm52,-214r30,-19v-13,-8,-26,-14,-36,-18r22,-24v16,6,32,13,46,21r33,-21r19,17r-30,19v42,32,70,78,70,137v0,68,-35,106,-96,106v-61,0,-97,-42,-97,-95v0,-68,69,-117,129,-83v-8,-17,-22,-33,-38,-45r-33,22","w":219},"\u00d7":{"d":"82,-91r-58,-58r26,-26r58,58r58,-58r26,26r-58,58r58,58r-26,26r-58,-59r-58,59r-26,-26","w":216},"\u00b3":{"d":"17,-217r-2,-30v38,-15,97,-16,103,28v3,20,-11,32,-29,39v21,1,32,17,32,35v0,50,-66,52,-112,40r2,-30v25,8,64,14,68,-12v3,-21,-30,-17,-47,-16r0,-30v21,0,44,2,47,-17v-3,-27,-43,-17,-62,-7","w":129},"\u00a9":{"d":"237,-126v0,-60,-42,-101,-93,-101v-52,0,-93,41,-93,101v0,60,41,102,93,102v51,0,93,-42,93,-102xm182,-105r30,0v-5,35,-32,55,-63,55v-45,0,-73,-34,-73,-77v0,-84,125,-107,135,-22r-29,0v-16,-46,-75,-27,-71,22v-7,48,62,67,71,22xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130","w":288},"\u00c1":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0xm100,-267r30,-53r50,0r-50,53r-30,0","w":259},"\u00c2":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0xm113,-320r36,0r38,53r-32,0r-25,-31r-25,31r-32,0","w":259},"\u00c4":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0xm146,-318r42,0r0,42r-42,0r0,-42xm114,-276r-42,0r0,-42r42,0r0,42","w":259},"\u00c0":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0xm130,-320r29,53r-29,0r-50,-53r50,0","w":259},"\u00c5":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0xm92,-298v0,-21,17,-39,38,-39v21,0,38,18,38,39v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm111,-298v0,10,8,19,19,19v10,0,19,-9,19,-19v0,-11,-9,-19,-19,-19v-11,0,-19,8,-19,19","w":259},"\u00c3":{"d":"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0xm159,-276v-22,0,-38,-14,-56,-14v-13,0,-17,9,-17,16r-20,0v0,-22,16,-44,37,-44v20,0,36,16,55,16v11,0,16,-8,16,-18r20,0v0,24,-13,44,-35,44","w":259},"\u00c7":{"d":"210,-46r2,42v-20,4,-40,9,-62,8v-3,5,-12,11,-12,16v19,-5,43,0,43,22v2,45,-61,42,-87,30r8,-19v12,4,44,12,44,-7v0,-15,-20,-14,-31,-10v-13,-12,8,-23,14,-34v-67,-7,-112,-47,-112,-123v0,-107,95,-159,195,-124r-4,42v-66,-37,-139,6,-139,78v0,73,76,110,141,79","w":219},"\u00c9":{"d":"29,0r0,-251r148,0r0,39r-97,0r0,62r89,0r0,40r-89,0r0,70r98,0r0,40r-149,0xm71,-267r29,-53r50,0r-50,53r-29,0"},"\u00ca":{"d":"29,0r0,-251r148,0r0,39r-97,0r0,62r89,0r0,40r-89,0r0,70r98,0r0,40r-149,0xm83,-320r36,0r38,53r-32,0r-25,-31r-25,31r-32,0"},"\u00cb":{"d":"29,0r0,-251r148,0r0,39r-97,0r0,62r89,0r0,40r-89,0r0,70r98,0r0,40r-149,0xm116,-318r42,0r0,42r-42,0r0,-42xm84,-276r-42,0r0,-42r42,0r0,42"},"\u00c8":{"d":"29,0r0,-251r148,0r0,39r-97,0r0,62r89,0r0,40r-89,0r0,70r98,0r0,40r-149,0xm100,-320r30,53r-30,0r-50,-53r50,0"},"\u00cd":{"d":"25,0r0,-251r50,0r0,251r-50,0xm21,-267r29,-53r50,0r-50,53r-29,0","w":100},"\u00ce":{"d":"25,0r0,-251r50,0r0,251r-50,0xm33,-320r36,0r38,53r-32,0r-25,-31r-25,31r-32,0","w":100},"\u00cf":{"d":"25,0r0,-251r50,0r0,251r-50,0xm66,-318r42,0r0,42r-42,0r0,-42xm34,-276r-42,0r0,-42r42,0r0,42","w":100},"\u00cc":{"d":"25,0r0,-251r50,0r0,251r-50,0xm50,-320r30,53r-30,0r-50,-53r50,0","w":100},"\u00d1":{"d":"27,0r0,-251r62,0r96,188r0,-188r48,0r0,251r-61,0r-97,-188r0,188r-48,0xm159,-276v-22,0,-38,-14,-56,-14v-13,0,-17,9,-17,16r-20,0v0,-22,16,-44,37,-44v20,0,36,16,55,16v11,0,16,-8,16,-18r20,0v0,24,-13,44,-35,44","w":259},"\u00d3":{"d":"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181xm111,-267r29,-53r50,0r-50,53r-29,0","w":280},"\u00d4":{"d":"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181xm123,-320r36,0r38,53r-32,0r-25,-31r-25,31r-32,0","w":280},"\u00d6":{"d":"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181xm156,-318r42,0r0,42r-42,0r0,-42xm124,-276r-42,0r0,-42r42,0r0,42","w":280},"\u00d2":{"d":"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181xm140,-320r30,53r-30,0r-50,-53r50,0","w":280},"\u00d5":{"d":"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181xm169,-276v-22,0,-38,-14,-56,-14v-13,0,-17,9,-17,16r-20,0v0,-22,16,-44,37,-44v20,0,36,16,55,16v11,0,16,-8,16,-18r20,0v0,24,-13,44,-35,44","w":280},"\u0160":{"d":"169,-247r-5,42v-33,-13,-91,-25,-91,24v0,44,111,25,111,109v1,79,-92,87,-159,67r5,-46v31,19,101,29,101,-17v0,-48,-110,-28,-110,-111v1,-80,85,-88,148,-68xm119,-267r-36,0r-40,-53r32,0r25,31r25,-31r32,0"},"\u00da":{"d":"27,-91r0,-160r51,0v9,79,-31,216,52,216v83,0,43,-138,52,-216r51,0r0,160v0,67,-39,95,-103,95v-64,0,-103,-28,-103,-95xm100,-267r30,-53r50,0r-50,53r-30,0","w":259},"\u00db":{"d":"27,-91r0,-160r51,0v9,79,-31,216,52,216v83,0,43,-138,52,-216r51,0r0,160v0,67,-39,95,-103,95v-64,0,-103,-28,-103,-95xm113,-320r36,0r38,53r-32,0r-25,-31r-25,31r-32,0","w":259},"\u00dc":{"d":"27,-91r0,-160r51,0v9,79,-31,216,52,216v83,0,43,-138,52,-216r51,0r0,160v0,67,-39,95,-103,95v-64,0,-103,-28,-103,-95xm146,-318r42,0r0,42r-42,0r0,-42xm114,-276r-42,0r0,-42r42,0r0,42","w":259},"\u00d9":{"d":"27,-91r0,-160r51,0v9,79,-31,216,52,216v83,0,43,-138,52,-216r51,0r0,160v0,67,-39,95,-103,95v-64,0,-103,-28,-103,-95xm130,-320r29,53r-29,0r-50,-53r50,0","w":259},"\u00dd":{"d":"96,0r0,-99r-92,-152r59,0r59,105r61,-105r53,0r-90,152r0,99r-50,0xm91,-267r30,-53r49,0r-49,53r-30,0","w":240,"k":{"v":20,"A":35,"\u00c6":35,"\u00c1":35,"\u00c2":35,"\u00c4":35,"\u00c0":35,"\u00c5":35,"\u00c3":35,",":40,".":40,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f6":33,"\u00f2":33,"\u00f5":33,"q":33,"-":40,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,":":33,";":33,"i":3,"\u0131":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"p":27}},"\u0178":{"d":"96,0r0,-99r-92,-152r59,0r59,105r61,-105r53,0r-90,152r0,99r-50,0xm136,-318r42,0r0,42r-42,0r0,-42xm104,-276r-42,0r0,-42r42,0r0,42","w":240,"k":{"v":20,"A":35,"\u00c6":35,"\u00c1":35,"\u00c2":35,"\u00c4":35,"\u00c0":35,"\u00c5":35,"\u00c3":35,",":40,".":40,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f6":33,"\u00f2":33,"\u00f5":33,"q":33,"-":40,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,":":33,";":33,"i":3,"\u0131":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"p":27}},"\u017d":{"d":"13,0r0,-41r118,-171r-113,0r0,-39r167,0r0,41r-119,170r121,0r0,40r-174,0xm119,-267r-36,0r-40,-53r32,0r25,31r25,-31r32,0"},"\u00e1":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32xm73,-211r30,-52r50,0r-50,52r-30,0"},"\u00e2":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32xm83,-263r36,0r38,52r-32,0r-25,-31r-25,31r-32,0"},"\u00e4":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32xm116,-261r42,0r0,42r-42,0r0,-42xm84,-219r-42,0r0,-42r42,0r0,42"},"\u00e0":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32xm94,-263r29,52r-29,0r-50,-52r50,0"},"\u00e5":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32xm62,-247v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39v-21,0,-38,-18,-38,-39xm81,-247v0,10,8,19,19,19v10,0,19,-9,19,-19v0,-11,-9,-19,-19,-19v-11,0,-19,8,-19,19"},"\u00e3":{"d":"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32xm129,-220v-23,0,-38,-12,-56,-13v-13,0,-17,9,-17,16r-20,0v0,-22,16,-44,37,-44v20,0,36,15,56,15v11,0,15,-7,15,-17r20,0v0,24,-13,43,-35,43"},"\u00e7":{"d":"149,-184r-4,39v-38,-19,-82,1,-82,51v0,51,47,75,87,52r3,40v-12,4,-24,6,-40,6v-4,5,-13,11,-13,16v19,-5,44,-1,44,22v2,45,-61,42,-87,30r7,-19v12,4,43,12,44,-7v1,-16,-20,-14,-31,-10v-11,-13,8,-22,14,-33v-52,-5,-78,-45,-78,-97v0,-71,63,-114,136,-90","w":159},"\u00e9":{"d":"59,-111r82,0v-1,-23,-12,-43,-39,-43v-27,0,-41,18,-43,43xm174,-50r0,40v-68,35,-161,5,-161,-82v0,-54,28,-98,86,-98v69,0,88,47,88,112r-128,0v2,58,79,54,115,28xm73,-211r30,-52r50,0r-50,52r-30,0"},"\u00ea":{"d":"59,-111r82,0v-1,-23,-12,-43,-39,-43v-27,0,-41,18,-43,43xm174,-50r0,40v-68,35,-161,5,-161,-82v0,-54,28,-98,86,-98v69,0,88,47,88,112r-128,0v2,58,79,54,115,28xm83,-263r36,0r38,52r-32,0r-25,-31r-25,31r-32,0"},"\u00eb":{"d":"59,-111r82,0v-1,-23,-12,-43,-39,-43v-27,0,-41,18,-43,43xm174,-50r0,40v-68,35,-161,5,-161,-82v0,-54,28,-98,86,-98v69,0,88,47,88,112r-128,0v2,58,79,54,115,28xm116,-261r42,0r0,42r-42,0r0,-42xm84,-219r-42,0r0,-42r42,0r0,42"},"\u00e8":{"d":"59,-111r82,0v-1,-23,-12,-43,-39,-43v-27,0,-41,18,-43,43xm174,-50r0,40v-68,35,-161,5,-161,-82v0,-54,28,-98,86,-98v69,0,88,47,88,112r-128,0v2,58,79,54,115,28xm94,-263r29,52r-29,0r-50,-52r50,0"},"\u00ed":{"d":"74,0r-48,0r0,-185r48,0r0,185xm23,-211r30,-52r50,0r-50,52r-30,0","w":100},"\u00ee":{"d":"74,0r-48,0r0,-185r48,0r0,185xm33,-263r36,0r38,52r-32,0r-25,-31r-25,31r-32,0","w":100},"\u00ef":{"d":"74,0r-48,0r0,-185r48,0r0,185xm66,-261r42,0r0,42r-42,0r0,-42xm34,-219r-42,0r0,-42r42,0r0,42","w":100},"\u00ec":{"d":"74,0r-48,0r0,-185r48,0r0,185xm44,-263r29,52r-29,0r-50,-52r50,0","w":100},"\u00f1":{"d":"25,0r0,-185r46,0r0,25v35,-54,124,-32,124,43r0,117r-48,0r0,-99v0,-23,0,-53,-31,-53v-65,0,-37,90,-43,152r-48,0xm139,-220v-22,0,-38,-12,-55,-13v-13,0,-18,9,-18,16r-20,0v0,-22,16,-44,37,-44v20,0,36,15,56,15v11,0,15,-7,15,-17r20,0v0,24,-13,43,-35,43","w":219},"\u00f3":{"d":"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55xm84,-211r29,-52r50,0r-50,52r-29,0","w":219},"\u00f4":{"d":"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55xm93,-263r36,0r38,52r-32,0r-24,-31r-26,31r-32,0","w":219},"\u00f6":{"d":"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55xm126,-261r42,0r0,42r-42,0r0,-42xm94,-219r-42,0r0,-42r42,0r0,42","w":219},"\u00f2":{"d":"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55xm104,-263r30,52r-30,0r-50,-52r50,0","w":219},"\u00f5":{"d":"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55xm139,-220v-22,0,-38,-12,-55,-13v-13,0,-18,9,-18,16r-20,0v0,-22,16,-44,37,-44v20,0,36,15,56,15v11,0,15,-7,15,-17r20,0v0,24,-13,43,-35,43","w":219},"\u0161":{"d":"138,-183r-3,36v-23,-7,-72,-18,-72,13v0,30,84,11,84,78v0,63,-77,69,-132,52r3,-39v25,13,71,24,79,-11v0,-36,-84,-11,-84,-78v0,-60,77,-66,125,-51xm99,-211r-36,0r-40,-52r32,0r25,31r25,-31r32,0","w":159},"\u00fa":{"d":"195,-185r0,185r-46,0r0,-25v-35,50,-124,33,-124,-43r0,-117r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0xm84,-211r29,-52r50,0r-50,52r-29,0","w":219},"\u00fb":{"d":"195,-185r0,185r-46,0r0,-25v-35,50,-124,33,-124,-43r0,-117r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0xm93,-263r36,0r38,52r-32,0r-24,-31r-26,31r-32,0","w":219},"\u00fc":{"d":"195,-185r0,185r-46,0r0,-25v-35,50,-124,33,-124,-43r0,-117r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0xm126,-261r42,0r0,42r-42,0r0,-42xm94,-219r-42,0r0,-42r42,0r0,42","w":219},"\u00f9":{"d":"195,-185r0,185r-46,0r0,-25v-35,50,-124,33,-124,-43r0,-117r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0xm104,-263r30,52r-30,0r-50,-52r50,0","w":219},"\u00fd":{"d":"57,-185r46,135r44,-135r49,0r-69,184v-14,53,-45,97,-112,76r4,-36v24,8,60,1,56,-30r-71,-194r53,0xm73,-211r30,-52r50,0r-50,52r-30,0","k":{",":33,".":33}},"\u00ff":{"d":"57,-185r46,135r44,-135r49,0r-69,184v-14,53,-45,97,-112,76r4,-36v24,8,60,1,56,-30r-71,-194r53,0xm116,-261r42,0r0,42r-42,0r0,-42xm84,-219r-42,0r0,-42r42,0r0,42","k":{",":33,".":33}},"\u017e":{"d":"17,-148r0,-37r147,0r0,39r-92,109r95,0r0,37r-154,0r0,-39r94,-109r-90,0xm109,-211r-36,0r-40,-52r32,0r25,31r25,-31r32,0","w":180},"\u00a0":{"w":100},"\u00ad":{"d":"107,-77r-94,0r0,-40r94,0r0,40","w":119}}});

if (Prototype.Browser.IE) {
    if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {
        Prototype.BrowserFeatures['Version'] = new Number(RegExp.$1);
    }
}
Object.extend(Prototype.Browser, {
    IE6: (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) ? (Number(RegExp.$1) == 6 ? true : false) : false,
    IE7: (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) ? (Number(RegExp.$1) == 7 ? true : false) : false,
    IE8: (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) ? (Number(RegExp.$1) == 8 ? true : false) : false,
    IE9: (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) ? (Number(RegExp.$1) == 9 ? true : false) : false
});
//Prototype.Browser.IE6 = Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 6;

if (!Prototype.Browser.IE) {
	/* cufon */
	Cufon.set('fontFamily', 'FrutigerLTStd-Cn')
		.replace('.fcn')
		.replace('.btn-checkout')
		.replace('.site-title h1, .page-title h4, .site-title h4, .titlebox-big h5, .main h2, .col-main h3, .footer h3, .block-header-search h4, .block-header-basket h4') //headings
		.replace('#popup-container  h1')
		.replace('.main .item .price') //uebersicht
		.replace('.titlebox-small-content')
		.replace('.block-item-configurator .price-box .price') //product view price, starter highlight
		.replace('.cart-table h3, .cart-price .price') //warenkorb
		.replace('.main .box-messages ul') //mitteilungen
		.replace('button.button span span, button.btn-small-green span span, .checkout-heading li h2', {textShadow: '-1px -1px rgba(0,0,0,0.2)'}) //buttons
		.replace('.checkout-roundup .price-txt', {textShadow: '-1px -1px rgba(0,0,0,0.2)'}) //preise
		.replace('.page-title h1', {textShadow: '-1px -1px rgba(0,0,0,0.2)'}) //grosse titel
		.replace('.block-header-navigation li a', {hover: {textShadow: '-1px -1px rgba(0,0,0,0.2)'}}) //navigation
		.replace('.starter-navi li a', {hover: true}); //tabs navigation

	Cufon.set('fontFamily', 'FrutigerLTStd-BoldCn')
		.replace('.cart-price .price, .starter .box .old-price .price')
		.replace('.main .item .price-box .regular-price .price, .main .item .price-box .minimal-price .price, .main .item .price-box .special-price .price', {trim: 'advanced'})
		.replace('.box-product .price-box .regular-price .price, .box-product .price-box .minimal-price .price, .box-product .price-box .special-price .price', {trim: 'advanced'})
		.replace('.checkout-roundup .price-txt .price', {textShadow: '-1px -1px rgba(0,0,0,0.2)'});
		
	Cufon.set('fontFamily', 'FrutigerLTStd-ExtraBlackCn')
		.replace('.cart-table-head tr th')
		.replace('.checkout-roundup h3, .checkout-roundup h4', {textShadow: '-1px -1px rgba(0,0,0,0.2)'})
		.replace('.bg-darkblue span')
		.replace('#checkout-step-login h2 strong')
		.replace('.starter .box .special-price .price');
		
	Cufon.set('fontFamily', 'FrutigerLTStd-Bold')
		.replace('.address-box h3, .col-main h3.product-name');

	//popup
	Cufon.replace('#popup-container h1', {
		fontFamily: 'FrutigerLTStd-Cn'
	});
	Cufon.replace('#btn-close-popup', {
		fontFamily: 'FrutigerLTStd-BoldCn',
		textShadow: '-1px -1px rgba(0,0,0,0.2)'
	});
}

/*
 * SuxStarter von Philipp Merle fÃ¼r Genesis Shop
 * modifiziert von RÃ©my BÃ¶hler fÃ¼r Integra
*/
var SuxStarter = Class.create();
SuxStarter.prototype = {
    instances: [],
    initialize: function(containerSelector, options) {
        this.options = {
            interval: 0
        };
        if (options) {
            $H(this.options).each(function(pair) {
                if (options[pair.key]) this.options[pair.key] = options[pair.key];
            }, this);
        }
        var containers = $$(containerSelector);
        containers.each(function(container) {
            this.create(container);
        }, this);
    },
    create: function(container) {
        container = $(container);
        container.addClassName('tab-container');
        var index = this.instances.length;
        this.instances[index] = container;
        var tabList = new Element('ul');
        tabList.addClassName('starter-navi');
        if (container && container.hasChildNodes()) {
            var i = 0;
            container.childElements().each(function(box) {
				if(box.hasClassName('box-hide'))
					box.setStyle({display: 'block'});

				box.cleanWhitespace();
                var handleName = 'starter-content-' + index + '-' + i;
                var boxWrapper = new Element('div');
                boxWrapper.addClassName('starter-content ' + handleName);
                boxWrapper.writeAttribute('handle', handleName);
                box.wrap(boxWrapper);
                var header = $(box.firstChild);

                var li = new Element('li');
                li.addClassName('tab-list-tab');
                if (i > 0) {
                    boxWrapper.hide();
                } else {
                    li.addClassName('active');
                }
                li.writeAttribute('name', handleName);
                var a = new Element('a');
                a.innerHTML = header.innerHTML;

                Element.remove(header);
                li.insert(a);
                li.observe('click', this.tabClicked.bind(this, li));
                tabList.insert({bottom: li});
                i++;
            }, this);
        }
        container.insert({top: tabList});
        if (this.options.interval) {
            this.setInterval(this.options.interval, index);
            container.observe('click', this.stopInterval.bind(this, index));
        }
    },
    setInterval: function(interval, index) {
        this.instances[index].interval =
            new PeriodicalExecuter(this.nextView.bind(this, index), interval);
    },
    stopInterval: function(index) {
        if (this.instances[index].interval) {
            this.instances[index].interval.stop();
        }
    },
    nextView: function(index) {
        var nextTab = this.instances[index].select('li.tab-list-tab.active + li.tab-list-tab')[0];
        if (!nextTab) {
            nextTab = this.instances[index].select('li.tab-list-tab')[0];
        }
        this.tabClicked(nextTab);
    },
    tabClicked: function(clickedElement, force) {
        force = (force === true) ? true : false;
        if (clickedElement.hasClassName('active') && !force) {
            return;
        }
        var boxClass = clickedElement.readAttribute('name');
        var boxSelector = '.tab-container .' + boxClass;
        $$(boxSelector).each(function(el) {
            this.toggleElement(el, clickedElement);
        }, this);
    },
    toggleElement: function(element, handleElement) {
        if (element.visible()) {
            // hide element

			if(Prototype.Browser.IE && Prototype.BrowserFeatures['Version'] < 9) {
				//IE nicht faden

				element.hide();
				handleElement.removeClassName('active');
				//refresh cufon
				Cufon.set('fontFamily', 'FrutigerLTStd-Cn').replace('.starter-navi li a', {hover: true});
			} else {
				Effect.Fade(element, {
					duration: 0.3,
					afterFinish: function() {
						handleElement.removeClassName('active');
						//refresh cufon
						Cufon.set('fontFamily', 'FrutigerLTStd-Cn').replace('.starter-navi li a', {hover: true});
					}
				});
			}
        } else {
            handleElement.parentNode.select('.active').each(function(el) {
                this.tabClicked(el, true);
            }, this);
            // show element
            handleElement.addClassName('active');
            if(Prototype.Browser.IE && Prototype.BrowserFeatures['Version'] < 9) {
				//IE nicht faden
				element.show();
			} else {
				Effect.Appear(element, {duration: 1});
			}
			//refresh cufon
			Cufon.set('fontFamily', 'FrutigerLTStd-Cn').replace('.starter-navi li a', {hover: true});
        }
    }
}

/*
 * SuxGallery von RÃ©my BÃ¶hler
 */
var SuxGallery = Class.create();
SuxGallery.prototype = {
    initialize: function(popupSelector) {
        //console.info('SuxGallery::initialize');
        $$(popupSelector).each(function(gallery) {
			
            this.create(gallery);
        }, this);
    },
	create: function(gallery) {
		//console.info('SuxGallery::create');
        gallery = $(gallery);
		gallery.cleanWhitespace();

		if(gallery.down('.gallery-container').childElements().length > 1) {
			gallery.down('.button-gallery-left').setStyle({display: 'block'}).observe('click', function(event){
				this.go_left(gallery);
			}.bind(this));
			gallery.down('.button-gallery-right').setStyle({display: 'block'}).observe('click', function(event){
				this.go_right(gallery);
			}.bind(this));
		}
    },
	go_right: function(gallery){
		//console.info('SuxGallery::go_right');
		/*console.info('@param gallery ');
		console.info(gallery);
		console.info('@param info '+info);*/
		var gallery_container = gallery.down('.gallery-container');
		var left = parseInt(gallery_container.getStyle('left'));
		var images = gallery_container.childElements().length;
		var frame_width = parseInt(gallery.getStyle('width'));
		/*console.info(left);
		console.info(images);
		console.info(frame_width);*/

		var left_to = left - frame_width;
		if(left_to < ((images-1) * frame_width)*-1)
			left_to = 0;

		left_to -= left_to % frame_width;

		//console.info(left_to);
		//gallery_container.setStyle({left: left_to+'px'});
		new Effect.Morph(gallery_container, {
			style: 'left: '+left_to+'px', // CSS Properties
			duration: 0.6 // Core Effect properties
		});

	},
	go_left: function(gallery){
		//console.info('SuxGallery::go_left');
		/*console.info('@param gallery ');
		console.info(gallery);
		console.info('@param info '+info);*/
		var gallery_container = gallery.down('.gallery-container');
		var left = parseInt(gallery_container.getStyle('left'));
		var images = gallery_container.childElements().length;
		var frame_width = parseInt(gallery.getStyle('width'));
		/*console.info(left);
		console.info(images);
		console.info(frame_width);*/

		var left_to = left + frame_width;
		if(left_to > 0)
			left_to = ((images - 1) * frame_width)*-1;

		left_to -= left_to % frame_width;

		//console.info(left_to);
		new Effect.Morph(gallery_container, {
			style: 'left: '+left_to+'px', // CSS Properties
			duration: 0.6 // Core Effect properties
		});
	}
}

/*
 * SuxPopUp von RÃ©my BÃ¶hler
 */
var SuxPopUp = Class.create();
SuxPopUp.prototype = {
    initialize: function(popupSelector) {
        //console.info('SuxPopUp::initialize');
		var popup = $$(popupSelector);
        popup.each(function(popup) {
            this.create(popup);
        }, this);
    },
    create: function(popup) {
		//console.info('SuxPopUp::create');
        popup = $(popup);

		popup.observe('click', function(event){
			this.open(event.target.innerHTML);
		}.bind(this));
    },
	/* Opens Popup from Elements Content
	 *
	 * @param content display elements content
	 * @param writeback write content back to this element
	 * @param callback	execute on close event
	 * @param strict_callback cancel close if callback returns error
	 * @param callback_after_writeback a function called after the writeback
	 **/
    open: function(content, writeback, callback, strict_callback, callback_after_writeback) {
        //console.info('SuxPopUp::open');
		if(writeback == undefined)writeback = false;
		if(strict_callback == undefined)strict_callback = false;
		if(callback_after_writeback == undefined)callback_after_writeback = false;
		//console.info(writeback);

		//create overlay
		var overlay = new Element('div');
		overlay.id = 'popup-overlay';
		overlay.style.display = 'block';
		overlay.setStyle({opacity: 0});

		//create popup
		var popupContainer = new Element('div');
		popupContainer.id = 'popup-container';
		popupContainer.setStyle({opacity: 0});

		var popup = new Element('div');
		popup.addClassName('popup');

		var popupContent = new Element('div');
		popupContent.addClassName('popup-content');

		var popupFooter = new Element('div');
		popupFooter.addClassName('popup-footer');

		var popupContentContainer = new Element('div');
		popupContentContainer.id = 'popup-content-container';

		//close button
		var label = sx_translate.close;
		if(content.hasClassName != undefined && content.hasClassName('close_label_save')){
			label = sx_translate.save;
		}
		var btn_close = '<div class="center"><button class="button btn-blue-small" id="btn-close-popup"><span><span>'+label+'</span></span></button></div>';

		//add childs
		if(writeback) {
			$(content).childElements().each(function(element){
				popupContentContainer.insert({bottom: element});
			});
		} else {
			popupContentContainer.insert({bottom: content});
		}
		popupContent.insert({bottom: popupContentContainer});
		popupFooter.insert({bottom: btn_close});
		popup.insert({bottom: popupContent});
		popup.insert({bottom: popupFooter});
		popupContainer.insert({bottom: popup});

		//append elements to body
		if(Prototype.Browser.IE6) {
			//IE6 hide selects
			$$('select').each(
				function(el){
					Element.setStyle(el, {visibility: 'hidden'});
				}
			);
		}
		/*window.document.body.appendChild(popupContainer);
		window.document.body.appendChild(overlay);*/
		window.document.body.insert({top: popupContainer});
		window.document.body.insert({top: overlay});
		

		//cufon
		Cufon.refresh('#btn-close-popup');
		Cufon.refresh('#popup-container h1');

		//animate them
		Effect.Appear(popupContainer, {duration: 0.5, from: 0, to: 1});
		Effect.Appear(overlay, {duration: 0.3, from: 0, to: 0.75});

		//add close observer
		overlay.observe('click', this.close.bind(this, writeback, callback));
		$('btn-close-popup').observe('click', this.close.bind(this, writeback, callback, strict_callback, callback_after_writeback));
    },
	close: function(writeback, callback, strict_callback, callback_after_writeback) {
		//console.info('SuxPopUp::close');
		//Element.remove($('popup-overlay'));
		//console.info(writeback);
		//console.info(callback);

		if(callback) {
			//call the callback function
			var ret = callback();

			if(!ret && strict_callback) {
				//console.info('strict_callback: callback returned false');
				return false;
			}
		}

		if(writeback) {
			//write content back to element taken from
			/*console.info($(writeback).childElements());
			$(writeback).childElements().each(function(element){
				console.info('noch eins');
				Element.remove($(element));
			});*/

			/* Opera Bugfix */
			$$('#popup-content-container select').each(function(element){
				var val = $F(element);
				element.childElements().each(function(option){
					option.writeAttribute('selected', null); //reset
					if(option.value == val)
						option.writeAttribute('selected', 'selected');
				});
			});

			$('popup-content-container').childElements().each(function(element){
				$(writeback).insert({bottom: element});
			});
		}

		if(callback_after_writeback)
			callback_after_writeback();


		Effect.Fade($('popup-overlay'), {
			duration: 0.3,
			afterFinish: function(){
				Element.remove($('popup-overlay'));
			}
		});
		Effect.Fade($('popup-container'), {
			duration: 0.2,
			afterFinish: function(){
				Element.remove($('popup-container'));
				if(Prototype.Browser.IE6) {
					//IE6 show selects
					$$('select').each(
						function(el){
							Element.setStyle(el, {visibility: 'visible'});
						}
					);
				}
			}
		});
		return true;
	}
}
window.onload = function(){
	new SuxPopUp('.popup-list .popup');

	//cart refresh
	$$('.checkout-cart-index select.qty').each(
		function(item) {
			Event.observe(item, 'change', function(){
				$('shopping-cart').submit();
			});
		}.bind(this)
	);

	//popups
	$$('a[href^=#popup-]').each(
		function(item){
			//console.info($(item));
			Event.observe(item, 'click', function(event){
				SuxPopUp.prototype.open($(item.readAttribute('href').substr(1)).innerHTML);
				event.stop();
			});
		}
	);


	/* input box labels labels */
	$$('.input-box label').each(function(element){
		var input = $(element).previous('input');
		if($F(input))
			Element.hide(element);

		Element.observe(element, 'click', function(event){
			event.target.hide();
			input.focus();
		});
		Element.observe(input, 'focus', function(){
			this.next('label').hide();
		});
		Element.observe(input, 'blur', function(){
			if($F(this)){
				this.next('label').hide();
			} else {
				this.next('label').show();
			}
		});
	});

	/* remove validation-advices */
	$$('.input-box input').each(function(input){
		Element.observe(input, 'focus', function(event){
			if(event.target.next('.validation-advice'))
				event.target.next('.validation-advice').hide();
		});
		Element.observe(input, 'keydown', function(event){
			if(event.target.next('.validation-advice'))
				event.target.next('.validation-advice').hide();
		});
	});
	/*var search_lock = false;
	Element.observe($('search'), 'focus', function(el){
		if(search_lock == false)
			Form.Element.setValue(el.target, '');

		search_lock = true;
	});*/


	if (Prototype.Browser.IE6) {
		$('ie6-notice').show();
		/* IE6 Navigation hover Workaround */
		$$('.block-header-navigation li, .gallery .button').each(
			function(item) {
				Event.observe(item, 'mouseover', function(event){
					$(item).addClassName('hover');
				});
				Event.observe(item, 'mouseout', function(event){
					$(item).removeClassName('hover');
				});
			}
		);
		//TODO: IE6 disabled options workaround
	}

};

/*

CUSTOM FORM ELEMENTS

Created by Ryan Fait
www.ryanfait.com

modified for genesis shop by Philipp Merle

*/
var IE6 = Prototype.Browser.IE && parseInt(
            navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)
        ) < 7;
var checkboxHeight = '11';
var radioHeight = '11';


/* No need to change anything after this */


document.write('<style type="text/css">input.radio, input.sx-radio, input.checkbox, input.sx-checkbox { display: block; /*position: absolute;*/ width: 0; height: 0; margin: 0 15px 16px 0; padding: 0; text-indent: -20px; z-index: -1; } /* select { position: relative; opacity: 0; filter: alpha(opacity=0); -ms-filter: "alpha(opacity=0)"; -khtml-opacity: 0; -moz-opacity: 0; z-index: 5; } .disabled { opacity: 0.5; filter: alpha(opacity=50); } */ </style>');

var Custom = {
    setout: false,
    cache: {},
    init: function() {
        var inputs = $$('input[type=radio]');
        var inputsCb = $$('input[type=checkbox]');
        inputs = inputs.concat(inputsCb); // ie9 issue - comma separated selector not working

        var inputsSelect, span = Array(), textnode, option;

        for (a = 0; a < inputs.length; a++) {

            inputs[a].setStyle('display: block; position: absolute; width: 0; height: 0; padding: 0; margin: 0; text-indent: -20px; z-index: -1;');

            span[a] = new Element('span');
            span[a].id = 'select' + inputs[a].identify();
            span[a].className = inputs[a].type + ' ' + inputs[a].className;

            if(inputs[a].checked == true) {
                if(inputs[a].type == "checkbox") {
                    position = "0 -" + checkboxHeight + "px";
                    span[a].style.backgroundPosition = position;
                } else {
                    position = "0 -" + radioHeight + "px";
                    span[a].style.backgroundPosition = position;
                }
            }
            inputs[a].parentNode.insertBefore(span[a], inputs[a]);
            inputs[a].observe('click', Custom.clear);
            Custom.cache[inputs[a].identify()] = span[a];
//            Element.store(inputs[a], 'wrapper', span[a].identify());
            if(!inputs[a].getAttribute('disabled')) {
                span[a].observe('mouseover', Custom.over);
                span[a].observe('mouseout', Custom.out);
                span[a].observe('mouseup', Custom.check);
            } else {
                span[a].className = span[a].addClassName('disabled');
            }
        }
        // ignore select boxes for IE6
        // select replacement does not work for integra shop (product detail)
//        if (!IE6) {
//            inputsSelect = $$('select');
//            for (a = 0; a < inputsSelect.length; a++) {
//                var width = inputsSelect[a].getWidth();
//                option = inputsSelect[a].options[inputsSelect[a].selectedIndex];
//                textnode = option.text;
//                span[a] = new Element('span');
//                var inner = new Element('span');
//                inner.addClassName('inner');
//                inner.update(textnode);
//                span[a].className = inputsSelect[a].className;
//                span[a].addClassName('select');
//                span[a].id = 'select' + inputsSelect[a].identify();
//                span[a].writeAttribute('value', inputsSelect[a].getValue());
//                inputsSelect[a].setStyle({
//                    'position': 'absolute',
//                    'left': 0,
//                    'top': 0
//                });
//                inputsSelect[a].wrap(inner);
//                inner.wrap(span[a]);
//                width = width - parseInt(span[a].getStyle('padding-right'))
//                    - parseInt(span[a].getStyle('padding-left'))
//                    - parseInt(span[a].getStyle('border-left-width'))
//                    - parseInt(span[a].getStyle('border-right-width'));
//                if (width < 50) {
//                    width = 'auto';
//                    inputsSelect[a].setStyle({'width': 'auto'});
//                } else {
//                    width = width + 'px';
//                }
//                span[a].setStyle({
//                    'position': 'relative',
//                    'width': width,
//                    'display': 'inline-block'
//                });
//                Custom.cache[inputsSelect[a].identify()] = span[a];
//                //Element.store(inputsSelect[a], 'wrapper', span[a].identify());
//                if(!inputsSelect[a].hasAttribute('disabled')) {
//                    inputsSelect[a].observe('change', Custom.choose);
//                } else {
//                    span[a].addClassName('disabled');
//                }
//            }
//        }
        new PeriodicalExecuter(Custom.elementObserver, 0.5);
    },
    over: function() {
        var element = $(this.nextSibling);
        if(element.checked == true && this.hasClassName('checkbox')) {
            this.style.backgroundPosition = "0 -" + checkboxHeight*2 + "px";
        }
        return false;
    },
    out: function() {
        var element = $(this.nextSibling);
        if (element.checked == true && this.hasClassName('checkbox')) {
            this.style.backgroundPosition = "0 -" + checkboxHeight + "px";
        }
        return false;
    },
    check: function() {
        $(this.nextSibling).click();
        return false;
        element = this.nextSibling;
        if (element.checked == true && element.type == "checkbox") {
            this.style.backgroundPosition = "0 0";
            element.checked = false;
        } else {
            if(element.type == "checkbox") {
                this.style.backgroundPosition = "0 -" + checkboxHeight + "px";
            } else {
                this.style.backgroundPosition = "0 -" + radioHeight + "px";
                group = this.nextSibling.name;
                inputs = $$('input');
                for(a = 0; a < inputs.length; a++) {
                    if(inputs[a].name == group && inputs[a] != this.nextSibling) {
                        inputs[a].previousSibling.style.backgroundPosition = "0 0";
                    }
                }
            }
            element.checked = true;
        }
        return false;
    },
    clear: function(evt) {
        var inputs = $$('input[type=radio], input[type=checkbox]');
        for (var b = 0; b < inputs.length; b++) {
            if(inputs[b].type == 'checkbox' && inputs[b].checked == true) {
                inputs[b].previousSibling.style.backgroundPosition = '0 -' + checkboxHeight + 'px';
            } else if (inputs[b].type == 'checkbox') {
                inputs[b].previousSibling.style.backgroundPosition = '0 0';
            } else if (inputs[b].type == 'radio' && inputs[b].checked == true) {
                inputs[b].previousSibling.style.backgroundPosition = '0 -' + radioHeight + 'px';
            } else if (inputs[b].type == 'radio') {
                inputs[b].previousSibling.style.backgroundPosition = '0 0';
            }
        }
        return false;
    },
    choose: function() {
        Custom.setout = true;
        var option = this.options[this.selectedIndex];
        var w = $('select' + this.identify());
        var inner = w.firstChild;
        if (inner) {
            if (inner.firstChild != this) {
                inner.removeChild(inner.firstChild);
            }
            inner.insert({'top': option.text});
        }
        w.writeAttribute('value', this.getValue());
        Custom.setout = false;
        return false;
    },
    elementObserver: function() {
        if (Custom.setout) {
            return;
        }
        // we need to know about changes on root element
        var selector = 'input[type=radio], input[type=checkbox]' + (IE6) ? ', select' : '';
        $$(selector).each(function(element) {
            var w = Custom.cache[element.identify()];
            if (!w) {
                return;
            }
            if (element.hasAttribute('disabled') && !w.hasClassName('disabled')) {
                w.addClassName('disabled');
                element.stopObserving();
            } else if (!element.hasAttribute('disabled') && w.hasClassName('disabled')) {
                w.removeClassName('disabled');
                if (w.hasClassName('select')) {
                    element.observe('change', Custom.choose.bind(element));
                } else {
                    w.observe('mousedown', Custom.over);
                    w.observe('mousedown', Custom.out);
                    w.observe('mouseup', Custom.check);
                }
            }
            w.className = element.className;
            if (element.hasAttribute('type')) {
                w.addClassName((element.readAttribute('type') == 'radio') ? 'radio' : 'checkbox');
            } else {
                w.addClassName('select');
                if (element.hasAttribute('disabled')) {
                    w.addClassName('disabled');
                }
                // have there been changes on selected option?
                var selected = element.options[element.selectedIndex];
                var inner = w.firstChild;
                if (selected && inner) {
                    if (inner.firstChild != element) {
                        inner.removeChild(inner.firstChild);
                    }
                    inner.insert({'top': selected.text});
                }
            }
        });
    }
}
// we need to override RegionUpdater
RegionUpdater.addMethods({
   setMarkDisplay: function(elem, display) {
        elem = $(elem);
        var labelElement =  elem.up(2).down('label > span.required') ||
                            elem.up(3).down('label > span.required') ||
                            elem.up(2).down('label.required > em') ||
                            elem.up(3).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');
                }
            }
        }
    }
});


//window.onload = Custom.init;
/* 
 * SuxColorSelector
 * @author Philipp Merle
 */

var SuxColorSelector = Class.create();
SuxColorSelector.prototype = {
    initialize: function(addInto, colorDef, valueDef, colorDesc, selected) {
        this.parent = $(addInto);
        this.colors = $H(colorDef);
        this.values= $H(valueDef);
        this.descriptions = $H(colorDesc);
        this.create();
        if (selected.length) {
            selected.each(function(colorCode) {
                this.container.down('ul li.'+colorCode+' div').addClassName('active');
                var value = this.values.get(colorCode);
                if (typeof value == 'object') {
                    value.each(function(val) {
                        this.addColor(colorCode, val);
                    }, this);
                } else {
                    this.addColor(colorCode, value);
                }
            }, this);
        }
    },
    create: function() {
        this.container = new Element('div');
        this.container.addClassName('colorselector');
        this.container.insert(new Element('div').addClassName('name'));
        var colorList = new Element('ul');
        this.colors.each(function(color) {

			if(this.values.get(color.key) === undefined) //zeige nur vorhandene
				return;

            var colorLi = new Element('li');
            var colorBtn = new Element('div');
            colorLi.addClassName(color[0]);
            colorLi.setStyle({backgroundColor: color[1]});
            colorBtn.writeAttribute('text', this.descriptions.get(color[0]));
            colorBtn.observe('click', this.toggleColor.bind(this, color[0]));
            colorLi.insert(colorBtn);
            colorList.insert(colorLi);
        }, this);
        colorList.insert(new Element('li').addClassName('clear'));
        this.container.insert(colorList);
        this.parent.insert({'before': this.container});
        this.container.observe('mouseover', this.focusContainer.bind(this));
        this.container.observe('mouseout', this.unfocusContainer.bind(this));
    },
    focusContainer: function(e) {
        var list = this.container.down('ul');
        list.addClassName('focus');
        var colorEl = Event.findElement(e ,'div[text]');
        if (colorEl) {
            this.container.down('div.name').update(colorEl.readAttribute('text'));
        }
    },
    unfocusContainer: function() {
        var list = this.container.down('ul');
        list.removeClassName('focus');
        this.container.down('div.name').update('');
    },
    toggleColor: function(code) {
        var colorBtn = this.container.down('ul li.'+code+' div');
        if (colorBtn.hasClassName('active')) {
            colorBtn.removeClassName('active');
            this.removeColor(code);
        } else {
            colorBtn.addClassName('active');
            this.addColor(code, this.values.get(code));
        }
        this.fire();
    },
    addColor: function(code, value) {
        if (typeof value == 'object') {
            value.each(function(val) {
                this.addColorInput(code, val);
            }, this);
        } else {
            this.addColorInput(code, value);
        }
    },
    addColorInput: function(code, value) {
        if (this.container.getElementsBySelector('input[code='+code+'][value='+value+']').length) {
            return;
        }
        this.input = new Element('input');
        this.input.writeAttribute('type', 'hidden');
        this.input.writeAttribute('name', 'color[]');
        this.input.writeAttribute('value', value);
        this.input.writeAttribute('code', code);
        this.container.insert(this.input);
    },
    removeColor: function(code) {
        this.container.getElementsBySelector('input[code='+code+']').each(function(el) {
            el.remove();
        }, this);
    },
    fire: function() {
        Event.fire(this.container.up('form'), 'navigation:change');
    }
}

