/* 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);

 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));
 }
 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) { return Validation.validate(elm,{useTitle : useTitles, onElementValidate : callback}); });
 } else {
 result = Form.getElements(this.form).collect(function(elm) { return Validation.validate(elm,{useTitle : useTitles, onElementValidate : callback}); }).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);
 }
}

Object.extend(Validation, {
 validate : function(elm, options){
 options = Object.extend({
 useTitle : false,
 onElementValidate : function(result, elm) {}
 }, options || {});
 elm = $(elm);

 var cn = $w(elm.className);
 return result = cn.all(function(value) {
 var test = Validation.test(value,elm,options.useTitle);
 options.onElementValidate(test, elm);
 return test;
 });
 },
 insertAdvice : function(elm, advice){
 var container = $(elm).up('.field-row');
 if(container){
 Element.insert(container, {after: advice});
 } else if (elm.up('td.value')) {
 elm.up('td.value').insert({bottom: advice});
 } else if (elm.advaiceContainer && $(elm.advaiceContainer)) {
 $(elm.advaiceContainer).update(advice);
 }
 else {
 switch (elm.type.toLowerCase()) {
 case 'checkbox':
 case 'radio':
 var p = elm.parentNode;
 if(p) {
 Element.insert(p, {'bottom': advice});
 } else {
 Element.insert(elm, {'after': advice});
 }
 break;
 default:
 Element.insert(elm, {'after': advice});
 }
 }
 },
 showAdvice : function(elm, advice, adviceName){
 if(!elm.advices){
 elm.advices = new Hash();
 }
 else{
 elm.advices.each(function(pair){
 this.hideAdvice(elm, pair.value);
 }.bind(this));
 }
 elm.advices.set(adviceName, advice);
 if(typeof Effect == 'undefined') {
 advice.style.display = 'block';
 } else {
 if(!advice._adviceAbsolutize) {
 new Effect.Appear(advice, {duration : 1 });
 } else {
 Position.absolutize(advice);
 advice.show();
 advice.setStyle({
 'top':advice._adviceTop,
 'left': advice._adviceLeft,
 'width': advice._adviceWidth,
 'z-index': 1000
 });
 advice.addClassName('advice-absolute');
 }
 }
 },
 hideAdvice : function(elm, advice){
 if(advice != null) advice.hide();
 },
 updateCallback : function(elm, status) {
 if (typeof elm.callbackFunction != 'undefined') {
 eval(elm.callbackFunction+'(\''+elm.id+'\',\''+status+'\')');
 }
 },
 ajaxError : function(elm, errorMsg) {
 var name = 'validate-ajax';
 var advice = Validation.getAdvice(name, elm);
 if (advice == null) {
 advice = this.createAdvice(name, elm, false, errorMsg);
 }
 this.showAdvice(elm, advice, 'validate-ajax');
 this.updateCallback(elm, 'failed');

 elm.addClassName('validation-failed');
 elm.addClassName('validate-ajax');
 if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
 var container = elm.up(Validation.defaultOptions.containerClassName);
 if (container && this.allowContainerClassName(elm)) {
 container.removeClassName('validation-passed');
 container.addClassName('validation-error');
 }
 }
 },
 allowContainerClassName: function (elm) {
 if (elm.type == 'radio' || elm.type == 'checkbox') {
 return elm.hasClassName('change-container-classname');
 }
 
 return true;
 },
 test : function(name, elm, useTitle) {
 var v = Validation.get(name);
 var prop = '__advice'+name.camelize();
 try {
 if(Validation.isVisible(elm) && !v.test($F(elm), elm)) {
 //if(!elm[prop]) {
 var advice = Validation.getAdvice(name, elm);
 if (advice == null) {
 advice = this.createAdvice(name, elm, useTitle);
 }
 this.showAdvice(elm, advice, name);
 this.updateCallback(elm, 'failed');
 //}
 elm[prop] = 1;
 if (!elm.advaiceContainer) {
 elm.removeClassName('validation-passed');
 elm.addClassName('validation-failed');
 } 
 
 if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
 var container = elm.up(Validation.defaultOptions.containerClassName);
 if (container && this.allowContainerClassName(elm)) {
 container.removeClassName('validation-passed');
 container.addClassName('validation-error');
 }
 }
 return false;
 } else {
 var advice = Validation.getAdvice(name, elm);
 this.hideAdvice(elm, advice);
 this.updateCallback(elm, 'passed');
 elm[prop] = '';
 elm.removeClassName('validation-failed');
 elm.addClassName('validation-passed');
 if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
 var container = elm.up(Validation.defaultOptions.containerClassName);
 if (container && !container.down('.validation-failed') && this.allowContainerClassName(elm)) {
 if (!Validation.get('IsEmpty').test(elm.value) || !this.isVisible(elm)) { 
 container.addClassName('validation-passed');
 } else {
 container.removeClassName('validation-passed');
 }
 container.removeClassName('validation-error');
 }
 }
 return true;
 }
 } catch(e) {
 throw(e)
 }
 },
 isVisible : function(elm) {
 while(elm.tagName != 'BODY') {
 if(!$(elm).visible()) return false;
 elm = elm.parentNode;
 }
 return true;
 },
 getAdvice : function(name, elm) {
 return $('advice-' + name + '-' + Validation.getElmID(elm)) || $('advice-' + Validation.getElmID(elm));
 },
 createAdvice : function(name, elm, useTitle, customError) {
 var v = Validation.get(name);
 var errorMsg = useTitle ? ((elm && elm.title) ? elm.title : v.error) : v.error;
 if (customError) {
 errorMsg = customError;
 }
 try {
 if (Translator){
 errorMsg = Translator.translate(errorMsg);
 }
 }
 catch(e){}

 advice = '<div class="validation-advice" id="advice-' + name + '-' + Validation.getElmID(elm) +'" style="display:none">' + errorMsg + '</div>'


 Validation.insertAdvice(elm, advice);
 advice = Validation.getAdvice(name, elm);
 if($(elm).hasClassName('absolute-advice')) {
 var dimensions = $(elm).getDimensions();
 var originalPosition = Position.cumulativeOffset(elm);

 advice._adviceTop = (originalPosition[1] + dimensions.height) + 'px';
 advice._adviceLeft = (originalPosition[0]) + 'px';
 advice._adviceWidth = (dimensions.width) + 'px';
 advice._adviceAbsolutize = true;
 }
 return advice;
 },
 getElmID : function(elm) {
 return elm.id ? elm.id : elm.name;
 },
 reset : function(elm) {
 elm = $(elm);
 var cn = $w(elm.className);
 cn.each(function(value) {
 var prop = '__advice'+value.camelize();
 if(elm[prop]) {
 var advice = Validation.getAdvice(value, elm);
 if (advice) {
 advice.hide();
 }
 elm[prop] = '';
 }
 elm.removeClassName('validation-failed');
 elm.removeClassName('validation-passed');
 if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
 var container = elm.up(Validation.defaultOptions.containerClassName);
 if (container) {
 container.removeClassName('validation-passed');
 container.removeClassName('validation-error');
 }
 }
 });
 },
 add : function(className, error, test, options) {
 var nv = {};
 nv[className] = new Validator(className, error, test, options);
 Object.extend(Validation.methods, nv);
 },
 addAllThese : function(validators) {
 var nv = {};
 $A(validators).each(function(value) {
 nv[value[0]] = new Validator(value[0], value[1], value[2], (value.length > 3 ? value[3] : {}));
 });
 Object.extend(Validation.methods, nv);
 },
 get : function(name) {
 return Validation.methods[name] ? Validation.methods[name] : Validation.methods['_LikeNoIDIEverSaw_'];
 },
 methods : {
 '_LikeNoIDIEverSaw_' : new Validator('_LikeNoIDIEverSaw_','',{})
 }
});

Validation.add('IsEmpty', '', function(v) {
 return (v == '' || (v == null) || (v.length == 0) || /^\s+$/.test(v)); // || /^\s+$/.test(v));
});

Validation.addAllThese([
 ['validate-select', 'Please select an option.', function(v) {
 return ((v != "none") && (v != null) && (v.length != 0));
 }],
 ['required-entry', 'This is a required field.', function(v) {
 return !Validation.get('IsEmpty').test(v);
 }],
 ['validate-number', 'Please enter a valid number in this field.', function(v) {
 return Validation.get('IsEmpty').test(v) || (!isNaN(parseNumber(v)) && !/^\s+$/.test(parseNumber(v)));
 }],
 ['validate-digits', 'Please use numbers only in this field. please avoid spaces or other characters such as dots or commas.', function(v) {
 return Validation.get('IsEmpty').test(v) || !/[^\d]/.test(v);
 }],
 ['validate-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,!\#\$%&'\*\+/=\?\^_`\{\|}~-]+(\.[a-z0-9,!#\$%&'\*\+/=\?\^_`\{\|}~-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.([a-z]{2,})/i.test(v)
 }],
 ['validate-emailSender', 'Please use only letters (a-z or A-Z), numbers (0-9) , underscore(_) or spaces in this field.', function (v) {
 return Validation.get('IsEmpty').test(v) || /^[a-zA-Z0-9_\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) {
 if ($('password')) {
 var pass = $('password');
 }
 else {
 var pass = $$('.validate-password').length ? $$('.validate-password')[0] : $$('.validate-admin-password')[0];
 }
 var conf = $('confirmation') ? $('confirmation') : $$('.validate-cpassword')[0];
 return (pass.value == conf.value);
 }],
 ['validate-url', 'Please enter a valid URL. http:// is required', 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 Identifier. For example example-page, example-page.html or anotherlevel/example-page', function (v) {
 return Validation.get('IsEmpty').test(v) || /^[A-Z0-9][A-Z0-9_\/-]+(\.[A-Z0-9_-]+)*$/i.test(v)
 }],
 ['validate-xml-identifier', 'Please enter a valid XML-identifier. For example something_1, block5, id-4', function (v) {
 return Validation.get('IsEmpty').test(v) || /^[A-Z][A-Z0-9_\/-]*$/i.test(v)
 }],
 ['validate-ssn', 'Please enter a valid social security number. For example 123-45-6789.', function(v) {
 return Validation.get('IsEmpty').test(v) || /^\d{3}-?\d{2}-?\d{4}$/.test(v);
 }],
 ['validate-zip', 'Please enter a valid zip code. For example 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 doesn\'t 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 doesn\'t 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 = $('ccsave_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', 'Maximum length exceeded.', function (v, elm) {
 var re = new RegExp(/^maximum-length-[0-9]+$/);
 var result = true;
 $w(elm.className).each(function(name, index) {
 if (name.match(re) && result) {
 var length = name.split('-')[2];
 result = (v.length <= length);
 }
 });
 return result;
 }]
]);


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

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

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

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({
 '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],
 'SS': [new RegExp('^((6759[0-9]{12})|(49[013][1356][0-9]{13})|(633[34][0-9]{12})|(633110[0-9]{10})|(564182[0-9]{10}))([0-9]{2,3})?$'), new RegExp('^([0-9]{3}|[0-9]{4})?$'), true],
 'OT': [false, new RegExp('^([0-9]{3}|[0-9]{4})?$'), false]
});

/*
 * Copyright (c) 2006 Jonathan Weiss <jw@innerewut.de>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */


/* tooltip-0.2.js - Small tooltip library on top of Prototype 
 * by Jonathan Weiss <jw@innerewut.de> distributed under the BSD license. 
 *
 * This tooltip library works in two modes. If it gets a valid DOM element 
 * or DOM id as an argument it uses this element as the tooltip. This 
 * element will be placed (and shown) near the mouse pointer when a trigger-
 * element is moused-over.
 * If it gets only a text as an argument instead of a DOM id or DOM element
 * it will create a div with the classname 'tooltip' that holds the given text.
 * This newly created div will be used as the tooltip. This is usefull if you 
 * want to use tooltip.js to create popups out of title attributes.
 * 
 *
 * Usage: 
 * <script src="/javascripts/prototype.js" type="text/javascript"></script>
 * <script src="/javascripts/tooltip.js" type="text/javascript"></script>
 * <script type="text/javascript">
 * // with valid DOM id
 * var my_tooltip = new Tooltip('id_of_trigger_element', 'id_of_tooltip_to_show_element')
 *
 * // with text
 * var my_other_tooltip = new Tooltip('id_of_trigger_element', 'a nice description')
 *
 * // create popups for each element with a title attribute
 * Event.observe(window,"load",function() {
 * $$("*").findAll(function(node){
 * return node.getAttribute('title');
 * }).each(function(node){
 * new Tooltip(node,node.title);
 * node.removeAttribute("title");
 * });
 * });
 * 
 * </script>
 * 
 * Now whenever you trigger a mouseOver on the `trigger` element, the tooltip element will
 * be shown. On o mouseOut the tooltip disappears. 
 * 
 * Example:
 * 
 * <script src="/javascripts/prototype.js" type="text/javascript"></script>
 * <script src="/javascripts/scriptaculous.js" type="text/javascript"></script>
 * <script src="/javascripts/tooltip.js" type="text/javascript"></script>
 *
 * <div id='tooltip' style="display:none; margin: 5px; background-color: red;">
 * Detail infos on product 1....<br />
 * </div>
 *
 * <div id='product_1'>
 * This is product 1
 * </div>
 *
 * <script type="text/javascript">
 * var my_tooltip = new Tooltip('product_1', 'tooltip')
 * </script>
 *
 * You can use my_tooltip.destroy() to remove the event observers and thereby the tooltip.
 */

var Tooltip = Class.create();
Tooltip.prototype = {
 initialize: function(element, tool_tip) {
 var options = Object.extend({
 default_css: false,
 margin: "0px",
 padding: "5px",
 backgroundColor: "#d6d6fc",
 min_distance_x: 5,
 min_distance_y: 5,
 delta_x: 0,
 delta_y: 0,
 zindex: 1000
 }, arguments[2] || {});

 this.element = $(element);

 this.options = options;
 
 // use the supplied tooltip element or create our own div
 if($(tool_tip)) {
 this.tool_tip = $(tool_tip);
 } else {
 this.tool_tip = $(document.createElement("div")); 
 document.body.appendChild(this.tool_tip);
 this.tool_tip.addClassName("tooltip");
 this.tool_tip.appendChild(document.createTextNode(tool_tip));
 }

 // hide the tool-tip by default
 this.tool_tip.hide();

 this.eventMouseOver = this.showTooltip.bindAsEventListener(this);
 this.eventMouseOut = this.hideTooltip.bindAsEventListener(this);
 this.eventMouseMove = this.moveTooltip.bindAsEventListener(this);

 this.registerEvents();
 },

 destroy: function() {
 Event.stopObserving(this.element, "mouseover", this.eventMouseOver);
 Event.stopObserving(this.element, "mouseout", this.eventMouseOut);
 Event.stopObserving(this.element, "mousemove", this.eventMouseMove);
 },

 registerEvents: function() {
 Event.observe(this.element, "mouseover", this.eventMouseOver);
 Event.observe(this.element, "mouseout", this.eventMouseOut);
 Event.observe(this.element, "mousemove", this.eventMouseMove);
 },

 moveTooltip: function(event){
 Event.stop(event);
 // get Mouse position
 var mouse_x = Event.pointerX(event);
 var mouse_y = Event.pointerY(event);
 
 // decide if wee need to switch sides for the tooltip
 var dimensions = Element.getDimensions( this.tool_tip );
 var element_width = dimensions.width;
 var element_height = dimensions.height;
 
 if ( (element_width + mouse_x) >= ( this.getWindowWidth() - this.options.min_distance_x) ){ // too big for X
 mouse_x = mouse_x - element_width;
 // apply min_distance to make sure that the mouse is not on the tool-tip
 mouse_x = mouse_x - this.options.min_distance_x;
 } else {
 mouse_x = mouse_x + this.options.min_distance_x;
 }
 
 if ( (element_height + mouse_y) >= ( this.getWindowHeight() - this.options.min_distance_y) ){ // too big for Y
 mouse_y = mouse_y - element_height;
 // apply min_distance to make sure that the mouse is not on the tool-tip
 mouse_y = mouse_y - this.options.min_distance_y;
 } else {
 mouse_y = mouse_y + this.options.min_distance_y;
 } 
 
 // now set the right styles
 this.setStyles(mouse_x, mouse_y);
 },
 
 
 showTooltip: function(event) {
 Event.stop(event);
 this.moveTooltip(event);
 new Element.show(this.tool_tip);
 },
 
 setStyles: function(x, y){
 // set the right styles to position the tool tip
 Element.setStyle(this.tool_tip, { position:'absolute',
 top:y + this.options.delta_y + "px",
 left:x + this.options.delta_x + "px",
 zindex:this.options.zindex
 });
 
 // apply default theme if wanted
 if (this.options.default_css){
 Element.setStyle(this.tool_tip, { margin:this.options.margin,
 padding:this.options.padding,
 backgroundColor:this.options.backgroundColor,
 zindex:this.options.zindex
 }); 
 } 
 },

 hideTooltip: function(event){
 new Element.hide(this.tool_tip);
 },

 getWindowHeight: function(){
 var innerHeight;
 if (navigator.appVersion.indexOf('MSIE')>0) {
 innerHeight = document.body.clientHeight;
 } else {
 innerHeight = window.innerHeight;
 }
 return innerHeight; 
 },
 
 getWindowWidth: function(){
 var innerWidth;
 if (navigator.appVersion.indexOf('MSIE')>0) {
 innerWidth = document.body.clientWidth;
 } else {
 innerWidth = window.innerWidth;
 }
 return innerWidth; 
 }

}

// script.aculo.us builder.js v1.7.1_beta3, Fri May 25 17:19:41 +0200 2007

// Copyright (c) 2005-2007 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.7.1_beta3, Fri May 25 17:19:41 +0200 2007

// Copyright (c) 2005-2007 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) { }
};

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

Array.prototype.call = function() {
 var args = arguments;
 this.each(function(f){ f.apply(this, args) });
}

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

var Effect = {
 _elementDoesNotExistError: {
 name: 'ElementDoesNotExistError',
 message: 'The specified DOM element does not exist, but is required for this effect to operate'
 },
 tagifyText: function(element) {
 if(typeof Builder == 'undefined')
 throw("Effect.tagifyText requires including script.aculo.us' builder.js library");
 
 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(
 Builder.node('span',{style: tagifyStyle},
 character == ' ' ? String.fromCharCode(160) : character), 
 child);
 });
 Element.remove(child);
 }
 });
 },
 multiple: function(element, effect) {
 var elements;
 if(((typeof element == 'object') || 
 (typeof element == 'function')) && 
 (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);
 }
};

var Effect2 = Effect; // deprecated

/* ------------- transitions ------------- */

Effect.Transitions = {
 linear: Prototype.K,
 sinoidal: function(pos) {
 return (-Math.cos(pos*Math.PI)/2) + 0.5;
 },
 reverse: function(pos) {
 return 1-pos;
 },
 flicker: function(pos) {
 var pos = ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
 return (pos > 1 ? 1 : pos);
 },
 wobble: function(pos) {
 return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
 },
 pulse: function(pos, pulses) { 
 pulses = pulses || 5; 
 return (
 Math.round((pos % (1/pulses)) * pulses) == 0 ? 
 ((pos * pulses * 2) - Math.floor(pos * pulses * 2)) : 
 1 - ((pos * pulses * 2) - Math.floor(pos * pulses * 2))
 );
 },
 none: function(pos) {
 return 0;
 },
 full: function(pos) {
 return 1;
 }
};

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

Effect.ScopedQueue = Class.create();
Object.extend(Object.extend(Effect.ScopedQueue.prototype, 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 = (typeof effect.options.queue == 'string') ? 
 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(typeof queueName != 'string') return queueName;
 
 if(!this.instances[queueName])
 this.instances[queueName] = new Effect.ScopedQueue();
 
 return this.instances[queueName];
 }
}
Effect.Queue = Effect.Queues.get('global');

Effect.DefaultOptions = {
 transition: Effect.Transitions.sinoidal,
 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'
}

Effect.Base = function() {};
Effect.Base.prototype = {
 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.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;
 
 eval('this.render = function(pos){ '+
 'if(this.state=="idle"){this.state="running";'+
 codeForEvent(options,'beforeSetup')+
 (this.setup ? 'this.setup();':'')+ 
 codeForEvent(options,'afterSetup')+
 '};if(this.state=="running"){'+
 'pos=this.options.transition(pos)*'+this.fromToDelta+'+'+this.options.from+';'+
 'this.position=pos;'+
 codeForEvent(options,'beforeUpdate')+
 (this.update ? 'this.update(pos);':'')+
 codeForEvent(options,'afterUpdate')+
 '}}');
 
 this.event('beforeStart');
 if(!this.options.sync)
 Effect.Queues.get(typeof this.options.queue == 'string' ? 
 '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 = Math.round(pos * this.totalFrames);
 if(frame > this.currentFrame) {
 this.render(pos);
 this.currentFrame = frame;
 }
 }
 },
 cancel: function() {
 if(!this.options.sync)
 Effect.Queues.get(typeof this.options.queue == 'string' ? 
 '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(typeof this[property] != 'function') data[property] = this[property];
 return '#<Effect:' + data.inspect() + ',options:' + $H(this.options).inspect() + '>';
 }
}

Effect.Parallel = Class.create();
Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
 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.Event = Class.create();
Object.extend(Object.extend(Effect.Event.prototype, Effect.Base.prototype), {
 initialize: function() {
 var options = Object.extend({
 duration: 0
 }, arguments[0] || {});
 this.start(options);
 },
 update: Prototype.emptyFunction
});

Effect.Opacity = Class.create();
Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
 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();
Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
 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() {
 // Bug in Opera: Opera returns the "real" position of a static element or
 // relative element that does not have top/left explicitly set.
 // ==> Always set top and left for position relative elements in your stylesheets 
 // (to 0 if you do not need them) 
 this.element.makePositioned();
 this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
 this.originalTop = parseFloat(this.element.getStyle('top') || '0');
 if(this.options.mode == 'absolute') {
 // absolute movement, so we need to calc deltaX and deltaY
 this.options.x = this.options.x - this.originalLeft;
 this.options.y = this.options.y - this.originalTop;
 }
 },
 update: function(position) {
 this.element.setStyle({
 left: Math.round(this.options.x * position + this.originalLeft) + 'px',
 top: Math.round(this.options.y * position + this.originalTop) + '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();
Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
 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 = Math.round(width) + 'px';
 if(this.options.scaleY) d.height = Math.round(height) + '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();
Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
 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+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) });
 },
 finish: function() {
 this.element.setStyle(Object.extend(this.oldStyle, {
 backgroundColor: this.options.restorecolor
 }));
 }
});

Effect.ScrollTo = Class.create();
Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), {
 initialize: function(element) {
 this.element = $(element);
 this.start(arguments[1] || {});
 },
 setup: function() {
 Position.prepare();
 var offsets = Position.cumulativeOffset(this.element);
 if(this.options.offset) offsets[1] += this.options.offset;
 var max = window.innerHeight ? 
 window.height - window.innerHeight :
 document.body.scrollHeight - 
 (document.documentElement.clientHeight ? 
 document.documentElement.clientHeight : document.body.clientHeight);
 this.scrollStart = Position.deltaY;
 this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
 },
 update: function(position) {
 Position.prepare();
 window.scrollTo(Position.deltaX, 
 this.scrollStart + (position*this.delta));
 }
});

/* ------------- 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 oldStyle = {
 top: element.getStyle('top'),
 left: element.getStyle('left') };
 return new Effect.Move(element, 
 { x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
 new Effect.Move(effect.element,
 { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
 new Effect.Move(effect.element,
 { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
 new Effect.Move(effect.element,
 { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
 new Effect.Move(effect.element,
 { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
 new Effect.Move(effect.element,
 { x: -20, y: 0, duration: 0.05, 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');
 return new Effect.Scale(element, window.opera ? 0 : 1,
 Object.extend({ scaleContent: false, 
 scaleX: false, 
 scaleMode: 'box',
 scaleFrom: 100,
 restoreAfterFinish: true,
 beforeStartInternal: 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().setStyle({bottom: oldInnerBottom});
 effect.element.down().undoPositioned();
 }
 }, 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] || {};
 var oldOpacity = element.getInlineOpacity();
 var transition = options.transition || Effect.Transitions.sinoidal;
 var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
 reverser.bind(transition);
 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();
Object.extend(Object.extend(Effect.Morph.prototype, Effect.Base.prototype), {
 initialize: function(element) {
 this.element = $(element);
 if(!this.element) throw(Effect._elementDoesNotExistError);
 var options = Object.extend({
 style: {}
 }, arguments[1] || {});
 if (typeof options.style == 'string') {
 if(options.style.indexOf(':') == -1) {
 var cssText = '', selector = '.' + options.style;
 $A(document.styleSheets).reverse().each(function(styleSheet) {
 if (styleSheet.cssRules) cssRules = styleSheet.cssRules;
 else if (styleSheet.rules) cssRules = styleSheet.rules;
 $A(cssRules).reverse().each(function(rule) {
 if (selector == rule.selectorText) {
 cssText = rule.style.cssText;
 throw $break;
 }
 });
 if (cssText) throw $break;
 });
 this.style = cssText.parseStyle();
 options.afterFinishInternal = function(effect){
 effect.element.addClassName(effect.options.style);
 effect.transforms.each(function(transform) {
 if(transform.style != 'opacity')
 effect.element.style[transform.style] = '';
 });
 }
 } else this.style = options.style.parseStyle();
 } else this.style = $H(options.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 + Math.round(
 ((transform.targetValue - transform.originalValue) * position) * 1000)/1000 + transform.unit;
 this.element.setStyle(style, true);
 }
});

Effect.Transform = Class.create();
Object.extend(Effect.Transform.prototype, {
 initialize: function(tracks){
 this.tracks = [];
 this.options = arguments[1] || {};
 this.addTracks(tracks);
 },
 addTracks: function(tracks){
 tracks.each(function(track){
 var data = $H(track).values().first();
 this.tracks.push($H({
 ids: $H(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 elements = [$(track.ids) || $$(track.ids)].flatten();
 return elements.map(function(e){ return new track.effect(e, Object.extend({ sync:true }, track.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.prototype.parseStyle = function(){
 var element = document.createElement('div');
 element.innerHTML = '<div style="' + this + '"></div>';
 var style = element.childNodes[0].style, styleRules = $H();
 
 Element.CSS_PROPERTIES.each(function(property){
 if(style[property]) styleRules[property] = style[property]; 
 });
 if(Prototype.Browser.IE && this.indexOf('opacity') > -1) {
 styleRules.opacity = this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1];
 }
 return styleRules;
};

Element.morph = function(element, style) {
 new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || {}));
 return element;
};

['getInlineOpacity','forceRerendering','setContentZoom',
 'collectTextNodes','collectTextNodesIgnoreClass','morph'].each( 
 function(f) { Element.Methods[f] = Element[f]; }
);

Element.Methods.visualEffect = function(element, effect, options) {
 s = effect.dasherize().camelize();
 effect_class = s.charAt(0).toUpperCase() + s.substring(1);
 new Effect[effect_class](element, options);
 return $(element);
};

Element.addMethods();
// script.aculo.us dragdrop.js v1.7.1_beta3, Fri May 25 17:19:41 +0200 2007

// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
// (c) 2005-2007 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(typeof Effect == 'undefined')
 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((typeof containment == 'object') &&
 (containment.constructor == Array)) {
 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 affected = [];

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

 if(affected.length>0) {
 drop = Droppables.findDeepestChild(affected);
 Position.within(drop.element, point[0], point[1]);
 if(drop.onHover)
 drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element));

 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();
Draggable._dragging = {};

Draggable.prototype = {
 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 = typeof element._opacity == 'number' ? 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] || typeof arguments[1].endeffect == 'undefined')
 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 && (typeof options.handle == 'string'))
 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.delta = this.currentDelta();
 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(typeof Draggable._dragging[this.element] != 'undefined' &&
 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.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);
 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) {
 Position.relativize(this.element);
 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 && typeof revert == 'function') 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(typeof this.options.snap == 'function') {
 p = this.options.snap(p[0],p[1],this);
 } else {
 if(this.options.snap instanceof Array) {
 p = p.map( function(v, i) {
 return Math.round(v/this.options.snap[i])*this.options.snap[i] }.bind(this))
 } else {
 p = p.map( function(v) {
 return Math.round(v/this.options.snap)*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 };
 }
}

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

var SortableObserver = Class.create();
SortableObserver.prototype = {
 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){
 var s = Sortable.options(element);

 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).getElementsByClassName(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.7.1_beta3, Fri May 25 17:19:41 +0200 2007

// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
// (c) 2005-2007 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
// (c) 2005-2007 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 = function() {};
Autocompleter.Base.prototype = {
 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;

 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);

 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, 'keypress', this.onKeyPress.bindAsEventListener(this));

 // Turn autocomplete back on when the user leaves the page, so that the
 // field's value will be remembered on Mozilla-based browsers.
 Event.observe(window, 'beforeunload', function(){ 
 element.setAttribute('autocomplete', 'on'); 
 });
 },

 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();
 if(Prototype.Browser.WebKit) Event.stop(event);
 return;
 case Event.KEY_DOWN:
 this.markNext();
 this.render();
 if(Prototype.Browser.WebKit) 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);
 },
 
 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 = document.getElementsByClassName(this.options.select, selectedElement) || [];
 if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
 } else
 value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
 
 var lastTokenPos = this.findLastToken();
 if (lastTokenPos != -1) {
 var newValue = this.element.value.substr(0, lastTokenPos + 1);
 var whitespace = this.element.value.substr(lastTokenPos + 1).match(/^\s+/);
 if (whitespace)
 newValue += whitespace[0];
 this.element.value = newValue + value;
 } else {
 this.element.value = 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; 
 if(this.getToken().length>=this.options.minChars) {
 this.getUpdatedChoices();
 } else {
 this.active = false;
 this.hide();
 }
 },

 getToken: function() {
 var tokenPos = this.findLastToken();
 if (tokenPos != -1)
 var ret = this.element.value.substr(tokenPos + 1).replace(/^\s+/,'').replace(/\s+$/,'');
 else
 var ret = this.element.value;

 return /\n/.test(ret) ? '' : ret;
 },

 findLastToken: function() {
 var lastTokenPos = -1;

 for (var i=0; i<this.options.tokens.length; i++) {
 var thisTokenPos = this.element.value.lastIndexOf(this.options.tokens[i]);
 if (thisTokenPos > lastTokenPos)
 lastTokenPos = thisTokenPos;
 }
 return lastTokenPos;
 }
}

Ajax.Autocompleter = Class.create();
Object.extend(Object.extend(Ajax.Autocompleter.prototype, Autocompleter.Base.prototype), {
 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.Local.prototype = Object.extend(new 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
//
// see documentation on http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor

// 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();
Ajax.InPlaceEditor.defaultHighlightColor = "#FFFF99";
Ajax.InPlaceEditor.prototype = {
 initialize: function(element, url, options) {
 this.url = url;
 this.element = $(element);

 this.options = Object.extend({
 paramName: "value",
 okButton: true,
 okLink: false,
 okText: "ok",
 cancelButton: false,
 cancelLink: true,
 cancelText: "cancel",
 textBeforeControls: '',
 textBetweenControls: '',
 textAfterControls: '',
 savingText: "Saving...",
 clickToEditText: "Click to edit",
 okText: "ok",
 rows: 1,
 onComplete: function(transport, element) {
 new Effect.Highlight(element, {startcolor: this.options.highlightcolor});
 },
 onFailure: function(transport) {
 alert("Error communicating with the server: " + transport.responseText.stripTags());
 },
 callback: function(form) {
 return Form.serialize(form);
 },
 handleLineBreaks: true,
 loadingText: 'Loading...',
 savingClassName: 'inplaceeditor-saving',
 loadingClassName: 'inplaceeditor-loading',
 formClassName: 'inplaceeditor-form',
 highlightcolor: Ajax.InPlaceEditor.defaultHighlightColor,
 highlightendcolor: "#FFFFFF",
 externalControl: null,
 submitOnBlur: false,
 ajaxOptions: {},
 evalScripts: false
 }, options || {});

 if(!this.options.formId && this.element.id) {
 this.options.formId = this.element.id + "-inplaceeditor";
 if ($(this.options.formId)) {
 // there's already a form with that name, don't specify an id
 this.options.formId = null;
 }
 }
 
 if (this.options.externalControl) {
 this.options.externalControl = $(this.options.externalControl);
 }
 
 this.originalBackground = Element.getStyle(this.element, 'background-color');
 if (!this.originalBackground) {
 this.originalBackground = "transparent";
 }
 
 this.element.title = this.options.clickToEditText;
 
 this.onclickListener = this.enterEditMode.bindAsEventListener(this);
 this.mouseoverListener = this.enterHover.bindAsEventListener(this);
 this.mouseoutListener = this.leaveHover.bindAsEventListener(this);
 Event.observe(this.element, 'click', this.onclickListener);
 Event.observe(this.element, 'mouseover', this.mouseoverListener);
 Event.observe(this.element, 'mouseout', this.mouseoutListener);
 if (this.options.externalControl) {
 Event.observe(this.options.externalControl, 'click', this.onclickListener);
 Event.observe(this.options.externalControl, 'mouseover', this.mouseoverListener);
 Event.observe(this.options.externalControl, 'mouseout', this.mouseoutListener);
 }
 },
 enterEditMode: function(evt) {
 if (this.saving) return;
 if (this.editing) return;
 this.editing = true;
 this.onEnterEditMode();
 if (this.options.externalControl) {
 Element.hide(this.options.externalControl);
 }
 Element.hide(this.element);
 this.createForm();
 this.element.parentNode.insertBefore(this.form, this.element);
 if (!this.options.loadTextURL) Field.scrollFreeActivate(this.editField);
 // stop the event to avoid a page refresh in Safari
 if (evt) {
 Event.stop(evt);
 }
 return false;
 },
 createForm: function() {
 this.form = document.createElement("form");
 this.form.id = this.options.formId;
 Element.addClassName(this.form, this.options.formClassName)
 this.form.onsubmit = this.onSubmit.bind(this);

 this.createEditField();

 if (this.options.textarea) {
 var br = document.createElement("br");
 this.form.appendChild(br);
 }
 
 if (this.options.textBeforeControls)
 this.form.appendChild(document.createTextNode(this.options.textBeforeControls));

 if (this.options.okButton) {
 var okButton = document.createElement("input");
 okButton.type = "submit";
 okButton.value = this.options.okText;
 okButton.className = 'editor_ok_button';
 this.form.appendChild(okButton);
 }
 
 if (this.options.okLink) {
 var okLink = document.createElement("a");
 okLink.href = "#";
 okLink.appendChild(document.createTextNode(this.options.okText));
 okLink.onclick = this.onSubmit.bind(this);
 okLink.className = 'editor_ok_link';
 this.form.appendChild(okLink);
 }
 
 if (this.options.textBetweenControls && 
 (this.options.okLink || this.options.okButton) && 
 (this.options.cancelLink || this.options.cancelButton))
 this.form.appendChild(document.createTextNode(this.options.textBetweenControls));
 
 if (this.options.cancelButton) {
 var cancelButton = document.createElement("input");
 cancelButton.type = "submit";
 cancelButton.value = this.options.cancelText;
 cancelButton.onclick = this.onclickCancel.bind(this);
 cancelButton.className = 'editor_cancel_button';
 this.form.appendChild(cancelButton);
 }

 if (this.options.cancelLink) {
 var cancelLink = document.createElement("a");
 cancelLink.href = "#";
 cancelLink.appendChild(document.createTextNode(this.options.cancelText));
 cancelLink.onclick = this.onclickCancel.bind(this);
 cancelLink.className = 'editor_cancel editor_cancel_link'; 
 this.form.appendChild(cancelLink);
 }
 
 if (this.options.textAfterControls)
 this.form.appendChild(document.createTextNode(this.options.textAfterControls));
 },
 hasHTMLLineBreaks: function(string) {
 if (!this.options.handleLineBreaks) return false;
 return string.match(/<br/i) || string.match(/<p>/i);
 },
 convertHTMLLineBreaks: function(string) {
 return string.replace(/<br>/gi, "\n").replace(/<br\/>/gi, "\n").replace(/<\/p>/gi, "\n").replace(/<p>/gi, "");
 },
 createEditField: function() {
 var text;
 if(this.options.loadTextURL) {
 text = this.options.loadingText;
 } else {
 text = this.getText();
 }

 var obj = this;
 
 if (this.options.rows == 1 && !this.hasHTMLLineBreaks(text)) {
 this.options.textarea = false;
 var textField = document.createElement("input");
 textField.obj = this;
 textField.type = "text";
 textField.name = this.options.paramName;
 textField.value = text;
 textField.style.backgroundColor = this.options.highlightcolor;
 textField.className = 'editor_field';
 var size = this.options.size || this.options.cols || 0;
 if (size != 0) textField.size = size;
 if (this.options.submitOnBlur)
 textField.onblur = this.onSubmit.bind(this);
 this.editField = textField;
 } else {
 this.options.textarea = true;
 var textArea = document.createElement("textarea");
 textArea.obj = this;
 textArea.name = this.options.paramName;
 textArea.value = this.convertHTMLLineBreaks(text);
 textArea.rows = this.options.rows;
 textArea.cols = this.options.cols || 40;
 textArea.className = 'editor_field'; 
 if (this.options.submitOnBlur)
 textArea.onblur = this.onSubmit.bind(this);
 this.editField = textArea;
 }
 
 if(this.options.loadTextURL) {
 this.loadExternalText();
 }
 this.form.appendChild(this.editField);
 },
 getText: function() {
 return this.element.innerHTML;
 },
 loadExternalText: function() {
 Element.addClassName(this.form, this.options.loadingClassName);
 this.editField.disabled = true;
 new Ajax.Request(
 this.options.loadTextURL,
 Object.extend({
 asynchronous: true,
 onComplete: this.onLoadedExternalText.bind(this)
 }, this.options.ajaxOptions)
 );
 },
 onLoadedExternalText: function(transport) {
 Element.removeClassName(this.form, this.options.loadingClassName);
 this.editField.disabled = false;
 this.editField.value = transport.responseText.stripTags();
 Field.scrollFreeActivate(this.editField);
 },
 onclickCancel: function() {
 this.onComplete();
 this.leaveEditMode();
 return false;
 },
 onFailure: function(transport) {
 this.options.onFailure(transport);
 if (this.oldInnerHTML) {
 this.element.innerHTML = this.oldInnerHTML;
 this.oldInnerHTML = null;
 }
 return false;
 },
 onSubmit: function() {
 // onLoading resets these so we need to save them away for the Ajax call
 var form = this.form;
 var value = this.editField.value;
 
 // do this first, sometimes the ajax call returns before we get a chance to switch on Saving...
 // which means this will actually switch on Saving... *after* we've left edit mode causing Saving...
 // to be displayed indefinitely
 this.onLoading();
 
 if (this.options.evalScripts) {
 new Ajax.Request(
 this.url, Object.extend({
 parameters: this.options.callback(form, value),
 onComplete: this.onComplete.bind(this),
 onFailure: this.onFailure.bind(this),
 asynchronous:true, 
 evalScripts:true
 }, this.options.ajaxOptions));
 } else {
 new Ajax.Updater(
 { success: this.element,
 // don't update on failure (this could be an option)
 failure: null }, 
 this.url, Object.extend({
 parameters: this.options.callback(form, value),
 onComplete: this.onComplete.bind(this),
 onFailure: this.onFailure.bind(this)
 }, this.options.ajaxOptions));
 }
 // stop the event to avoid a page refresh in Safari
 if (arguments.length > 1) {
 Event.stop(arguments[0]);
 }
 return false;
 },
 onLoading: function() {
 this.saving = true;
 this.removeForm();
 this.leaveHover();
 this.showSaving();
 },
 showSaving: function() {
 this.oldInnerHTML = this.element.innerHTML;
 this.element.innerHTML = this.options.savingText;
 Element.addClassName(this.element, this.options.savingClassName);
 this.element.style.backgroundColor = this.originalBackground;
 Element.show(this.element);
 },
 removeForm: function() {
 if(this.form) {
 if (this.form.parentNode) Element.remove(this.form);
 this.form = null;
 }
 },
 enterHover: function() {
 if (this.saving) return;
 this.element.style.backgroundColor = this.options.highlightcolor;
 if (this.effect) {
 this.effect.cancel();
 }
 Element.addClassName(this.element, this.options.hoverClassName)
 },
 leaveHover: function() {
 if (this.options.backgroundColor) {
 this.element.style.backgroundColor = this.oldBackground;
 }
 Element.removeClassName(this.element, this.options.hoverClassName)
 if (this.saving) return;
 this.effect = new Effect.Highlight(this.element, {
 startcolor: this.options.highlightcolor,
 endcolor: this.options.highlightendcolor,
 restorecolor: this.originalBackground
 });
 },
 leaveEditMode: function() {
 Element.removeClassName(this.element, this.options.savingClassName);
 this.removeForm();
 this.leaveHover();
 this.element.style.backgroundColor = this.originalBackground;
 Element.show(this.element);
 if (this.options.externalControl) {
 Element.show(this.options.externalControl);
 }
 this.editing = false;
 this.saving = false;
 this.oldInnerHTML = null;
 this.onLeaveEditMode();
 },
 onComplete: function(transport) {
 this.leaveEditMode();
 this.options.onComplete.bind(this)(transport, this.element);
 },
 onEnterEditMode: function() {},
 onLeaveEditMode: function() {},
 dispose: function() {
 if (this.oldInnerHTML) {
 this.element.innerHTML = this.oldInnerHTML;
 }
 this.leaveEditMode();
 Event.stopObserving(this.element, 'click', this.onclickListener);
 Event.stopObserving(this.element, 'mouseover', this.mouseoverListener);
 Event.stopObserving(this.element, 'mouseout', this.mouseoutListener);
 if (this.options.externalControl) {
 Event.stopObserving(this.options.externalControl, 'click', this.onclickListener);
 Event.stopObserving(this.options.externalControl, 'mouseover', this.mouseoverListener);
 Event.stopObserving(this.options.externalControl, 'mouseout', this.mouseoutListener);
 }
 }
};

Ajax.InPlaceCollectionEditor = Class.create();
Object.extend(Ajax.InPlaceCollectionEditor.prototype, Ajax.InPlaceEditor.prototype);
Object.extend(Ajax.InPlaceCollectionEditor.prototype, {
 createEditField: function() {
 if (!this.cached_selectTag) {
 var selectTag = document.createElement("select");
 var collection = this.options.collection || [];
 var optionTag;
 collection.each(function(e,i) {
 optionTag = document.createElement("option");
 optionTag.value = (e instanceof Array) ? e[0] : e;
 if((typeof this.options.value == 'undefined') && 
 ((e instanceof Array) ? this.element.innerHTML == e[1] : e == optionTag.value)) optionTag.selected = true;
 if(this.options.value==optionTag.value) optionTag.selected = true;
 optionTag.appendChild(document.createTextNode((e instanceof Array) ? e[1] : e));
 selectTag.appendChild(optionTag);
 }.bind(this));
 this.cached_selectTag = selectTag;
 }

 this.editField = this.cached_selectTag;
 if(this.options.loadTextURL) this.loadExternalText();
 this.form.appendChild(this.editField);
 this.options.callback = function(form, value) {
 return "value=" + encodeURIComponent(value);
 }
 }
});

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

Form.Element.DelayedObserver = Class.create();
Form.Element.DelayedObserver.prototype = {
 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.7.1_beta3, Fri May 25 17:19:41 +0200 2007

// Copyright (c) 2005-2007 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 = {};
Control.Slider = Class.create();

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

 if(handle instanceof Array) {
 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(
 (slider.options.sliderValue instanceof Array ?
 slider.options.sliderValue[i] : slider.options.sliderValue) ||
 slider.range.start), i);
 Element.makePositioned(h); // fix IE
 Event.observe(h, "mousedown", slider.eventMouseDown);
 });

 Event.observe(this.track, "mousedown", this.eventMouseDown);
 Event.observe(document, "mouseup", this.eventMouseUp);
 Event.observe(this.track.parentNode.parentNode, "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;
 },
 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.alignY);
 },
 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.
 *
 * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.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']);
 }
}

/**
 * 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,
 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.DOB = Class.create();
Varien.DOB.prototype = {
 initialize: function(selector, required, format) {
 var el = $$(selector)[0];
 this.day = Element.select($(el), '.dob-day input')[0];
 this.month = Element.select($(el), '.dob-month input')[0];
 this.year = Element.select($(el), '.dob-year input')[0];
 this.dob = Element.select($(el), '.dob-full input')[0];
 this.advice = Element.select($(el), '.validation-advice')[0];
 this.required = required;
 this.format = format;

 this.day.validate = this.validate.bind(this);
 this.month.validate = this.validate.bind(this);
 this.year.validate = this.validate.bind(this);

 this.advice.hide();
 },

 validate: function() {
 var error = false;

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

 if (error !== false) {
 try {
 this.advice.innerHTML = Translator.translate(error);
 }
 catch (e) {
 this.advice.innerHTML = error;
 }
 this.advice.show();
 return false;
 }

 this.advice.hide();
 return true;
 }
}

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();
});
/**
 * 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.
 *
 * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.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)
 {
 this.countryEl = $(countryEl);
 this.regionTextEl = $(regionTextEl);
 this.regionSelectEl = $(regionSelectEl);
 this.regions = regions;

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

 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);
 }
 },

 setMarkDisplay: function(elem, display){
 elem = $(elem);
 var labelElement = elem.up(1).down('label > span.required') || 
 elem.up(2).down('label > span.required') ||
 elem.up(1).down('label.required > em') ||
 elem.up(2).down('label.required > em');
 if(labelElement) {
 display ? labelElement.show() : labelElement.hide();
 }
 }
}
/**
 * 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.
 *
 * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
 */
function toggleMenu(el, over)
{
 if (over) {
 Element.addClassName(el, 'over');
 }
 else {
 Element.removeClassName(el, 'over');
 }
}

/**
 * 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) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.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.
 *
 * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.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.set = function(name, value){
 var argv = arguments;
 var argc = arguments.length;
 var expires = (argc > 2) ? argv[2] : null;
 var path = (argc > 3) ? argv[3] : '/';
 var domain = (argc > 4) ? argv[4] : null;
 var secure = (argc > 5) ? argv[5] : false;
 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 url= "/index.php/oeuvres.html?search=yes";
function generateURL(){
 
 /*peintures = false;
 sculptures = false;
 if (document.getElementById("search-peintures") && document.getElementById("search-peintures").checked){
 peintures = true;
 }
 if (document.getElementById("search-sculptures") && document.getElementById("search-sculptures").checked){
 sculptures = true;
 }
 if (!peintures && !sculptures){
 peintures = true;
 }
 if (peintures && sculptures){
 url += "/id/21";
 } else if (peintures){
 url += "/id/3";
 } else {
 url += "/id/4";
 }*/
 
 if (document.getElementById("top_recherche_categorie") && document.getElementById("top_recherche_categorie").value != "0"){
 url += "&categorie="+document.getElementById("top_recherche_categorie").value;
 }
 if (document.getElementById("top_recherche_theme") && document.getElementById("top_recherche_theme").value != "0"){
 url += "&themes="+document.getElementById("top_recherche_theme").value;
 }
 if (document.getElementById("top_recherche_artiste") && document.getElementById("top_recherche_artiste").value != "0"){
 url += "&cat="+document.getElementById("top_recherche_artiste").value;
 }
 if (document.getElementById("top_recherche_budget") && document.getElementById("top_recherche_budget").value != "0"){
 url += "&price=1,"+document.getElementById("top_recherche_budget").value;
 }

 document.getElementById("lienrecherche").href=url;
}

function generateURLPrice(){
 if (document.getElementById("budget-precis") && document.getElementById("budget-precis").value != "0"){
 url += "&price=1,"+document.getElementById("budget-precis").value;
 }
 document.getElementById("search-price-link").href=url;
}

/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 * Copyright 2009, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 * More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML=' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
/* ColorBox v1.3.2 - a full featured, light-weight, customizable lightbox based on jQuery 1.3 */
(function(z){var p="colorbox",n="hover",v=true,O=false,U,l=!z.support.opacity,Q=l&&!window.XMLHttpRequest,T="click.colorbox",w="cbox_open",I="cbox_load",s="cbox_complete",H="cbox_cleanup",m="cbox_closed",L="resize.cbox_resize",E,R,S,d,x,i,b,D,c,M,B,f,q,h,k,J,j,G,r,V,g,e,a,o,y,N,u,K,F,A={transition:"elastic",speed:350,width:O,height:O,innerWidth:O,innerHeight:O,initialWidth:"400",initialHeight:"400",maxWidth:O,maxHeight:O,scalePhotos:v,scrolling:v,inline:O,html:O,iframe:O,photo:O,href:O,title:O,rel:O,opacity:0.9,preloading:v,current:"image {current} of {total}",previous:"precedent",next:"suivant",close:"fermer",open:O,overlayClose:v,slideshow:O,slideshowAuto:v,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",preloadIMG:v};function C(W,X){X=X==="x"?document.documentElement.clientWidth:document.documentElement.clientHeight;return(typeof W==="string")?Math.round((W.match(/%/)?(X/100)*parseInt(W,10):parseInt(W,10))):W}function t(W){return N.photo||W.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)}function P(){for(var W in N){if(typeof(N[W])==="function"){N[W]=N[W].call(o)}}}U=z.fn.colorbox=function(X,W){if(this.length){this.each(function(){var Y=z(this).data(p)?z.extend({},z(this).data(p),X):z.extend({},A,X);z(this).data(p,Y).addClass("cboxelement")})}else{z(this).data(p,z.extend({},A,X))}z(this).unbind(T).bind(T,function(Z){o=this;N=z(o).data(p);P();F=W||O;var Y=N.rel||o.rel;if(Y&&Y!=="nofollow"){c=z(".cboxelement").filter(function(){var aa=z(this).data(p).rel||this.rel;return(aa===Y)});y=c.index(o);if(y<0){c=c.add(o);y=c.length-1}}else{c=z(o);y=0}if(!u){u=v;K=v;z().bind("keydown.cbox_close",function(aa){if(aa.keyCode===27){aa.preventDefault();U.close()}}).bind("keydown.cbox_arrows",function(aa){if(aa.keyCode===37){aa.preventDefault();G.click()}else{if(aa.keyCode===39){aa.preventDefault();j.click()}}});if(N.overlayClose){E.css({cursor:"pointer"}).one("click",U.close)}o.blur();z.event.trigger(w);r.html(N.close);E.css({opacity:N.opacity}).show();N.w=C(N.initialWidth,"x");N.h=C(N.initialHeight,"y");U.position(0);if(Q){M.bind("resize.cboxie6 scroll.cboxie6",function(){E.css({width:M.width(),height:M.height(),top:M.scrollTop(),left:M.scrollLeft()})}).trigger("scroll.cboxie6")}}U.slideshow();U.load();Z.preventDefault()});if(X&&X.open){z(this).triggerHandler(T)}return this};U.init=function(){function W(X){return z('<div id="cbox'+X+'"/>')}M=z(window);R=z('<div id="colorbox"/>');E=W("Overlay").hide();S=W("Wrapper");d=W("Content").append(B=W("LoadedContent").css({width:0,height:0}),f=W("LoadingOverlay"),q=W("LoadingGraphic"),h=W("Title"),k=W("Current"),J=W("Slideshow"),j=W("Next"),G=W("Previous"),r=W("Close"));S.append(z("<div/>").append(W("TopLeft"),x=W("TopCenter"),W("TopRight")),z("<div/>").append(i=W("MiddleLeft"),d,b=W("MiddleRight")),z("<div/>").append(W("BottomLeft"),D=W("BottomCenter"),W("BottomRight"))).children().children().css({"float":"left"});z("body").prepend(E,R.append(S));if(l){R.addClass("cboxIE");if(Q){E.css("position","absolute")}}d.children().addClass(n).mouseover(function(){z(this).addClass(n)}).mouseout(function(){z(this).removeClass(n)}).hide();V=x.height()+D.height()+d.outerHeight(v)-d.height();g=i.width()+b.width()+d.outerWidth(v)-d.width();e=B.outerHeight(v);a=B.outerWidth(v);R.css({"padding-bottom":V,"padding-right":g}).hide();j.click(U.next);G.click(U.prev);r.click(U.close);d.children().removeClass(n)};U.position=function(ab,Y){var aa,X=document.documentElement.clientHeight,Z=Math.max(X-N.h-e-V,0)/2+M.scrollTop(),W=Math.max(document.documentElement.clientWidth-N.w-a-g,0)/2+M.scrollLeft();aa=(R.width()===N.w+a&&R.height()===N.h+e)?0:ab;S[0].style.width=S[0].style.height="9999px";function ac(ad){x[0].style.width=D[0].style.width=d[0].style.width=ad.style.width;q[0].style.height=f[0].style.height=d[0].style.height=i[0].style.height=b[0].style.height=ad.style.height}R.dequeue().animate({width:N.w+a,height:N.h+e,top:Z,left:W},{duration:aa,complete:function(){ac(this);K=O;S[0].style.width=(N.w+a+g)+"px";S[0].style.height=(N.h+e+V)+"px";if(Y){Y()}},step:function(){ac(this)}})};U.resize=function(aa){if(!u){return}var ab,Z,X,ad,ah,W,af,Y=N.transition==="none"?0:N.speed;M.unbind(L);if(!aa){af=setTimeout(function(){var ai=B.wrapInner("<div style='overflow:auto'></div>").children();N.h=ai.height();B.css({height:N.h});ai.replaceWith(ai.children());U.position(Y)},1);return}B.remove();B=z('<div id="cboxLoadedContent"/>').html(aa);function ae(){N.w=N.w||B.width();return N.w}function ac(){N.h=N.h||B.height();return N.h}B.hide().appendTo(E).css({width:ae(),overflow:N.scrolling?"auto":"hidden"}).css({height:ac()}).prependTo(d);z("#cboxPhoto").css({cssFloat:"none"});if(Q){z("select:not(#colorbox select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(H,function(){this.style.visibility="inherit"})}function ag(ai){U.position(ai,function(){if(!u){return}if(l){if(W){B.fadeIn(100)}R[0].style.removeAttribute("filter")}d.children().show();if(N.iframe){B.append("<iframe id='cboxIframe'"+(N.scrolling?" ":"scrolling='no'")+" name='iframe_"+new Date().getTime()+"' frameborder=0 src='"+(N.href||o.href)+"' />")}f.hide();q.hide();J.hide();if(c.length>1){k.html(N.current.replace(/\{current\}/,y+1).replace(/\{total\}/,c.length));j.html(N.next);G.html(N.previous);if(N.slideshow){J.show()}}else{k.hide();j.hide();G.hide()}h.html(N.title||o.title);z.event.trigger(s);if(F){F.call(o)}if(N.transition==="fade"){R.fadeTo(Y,1,function(){if(l){R[0].style.removeAttribute("filter")}})}M.bind(L,function(){U.position(0)})})}if((N.transition==="fade"&&R.fadeTo(Y,0,function(){ag(0)}))||ag(Y)){}if(N.preloading&&c.length>1){Z=y>0?c[y-1]:c[c.length-1];ad=y<c.length-1?c[y+1]:c[0];ah=z(ad).data(p).href||ad.href;X=z(Z).data(p).href||Z.href;if(t(ah)){z("<img />").attr("src",ah)}if(t(X)){z("<img />").attr("src",X)}}};U.load=function(){var X,W,aa,Z=U.resize;K=v;function Y(ad){var ac=z(ad),ae=ac.find("img"),ab=ae.length;(function af(){var ag=new Image();ab=ab-1;if(ab>=0&&N.preloadIMG){ag.onload=af;ag.src=ae[ab].src}else{Z(ac)}}())}o=c[y];N=z(o).data(p);P();z.event.trigger(I);N.h=N.height?C(N.height,"y")-e-V:N.innerHeight?C(N.innerHeight,"y"):O;N.w=N.width?C(N.width,"x")-a-g:N.innerWidth?C(N.innerWidth,"x"):O;N.mw=N.w;N.mh=N.h;if(N.maxWidth){N.mw=C(N.maxWidth,"x")-a-g;N.mw=N.w&&N.w<N.mw?N.w:N.mw}if(N.maxHeight){N.mh=C(N.maxHeight,"y")-e-V;N.mh=N.h&&N.h<N.mh?N.h:N.mh}X=N.href||o.href;f.show();q.show();r.show();if(N.inline){z('<div id="cboxInlineTemp" />').hide().insertBefore(z(X)[0]).bind(I+" "+H,function(){z(this).replaceWith(B.children())});Z(z(X))}else{if(N.iframe){Z(" ")}else{if(N.html){Y(N.html)}else{if(t(X)){W=new Image();W.onload=function(){var ab;W.onload=null;W.id="cboxPhoto";z(W).css({margin:"auto",border:"none",display:"block",cssFloat:"left"});if(N.scalePhotos){aa=function(){W.height-=W.height*ab;W.width-=W.width*ab};if(N.mw&&W.width>N.mw){ab=(W.width-N.mw)/W.width;aa()}if(N.mh&&W.height>N.mh){ab=(W.height-N.mh)/W.height;aa()}}if(N.h){W.style.marginTop=Math.max(N.h-W.height,0)/2+"px"}Z(W);if(c.length>1){z(W).css({cursor:"pointer"}).click(U.next)}if(l){W.style.msInterpolationMode="bicubic"}};W.src=X}else{z("<div />").load(X,function(ab,ac){if(ac==="success"){Y(this)}else{Z(z("<p>Request unsuccessful.</p>"))}})}}}}};U.next=function(){if(!K){y=y<c.length-1?y+1:0;U.load()}};U.prev=function(){if(!K){y=y>0?y-1:c.length-1;U.load()}};U.slideshow=function(){var X,W,Y="cboxSlideshow_";J.bind(m,function(){J.unbind();clearTimeout(W);R.removeClass(Y+"off "+Y+"on")});function Z(){J.text(N.slideshowStop).bind(s,function(){W=setTimeout(U.next,N.slideshowSpeed)}).bind(I,function(){clearTimeout(W)}).one("click",function(){X();z(this).removeClass(n)});R.removeClass(Y+"off").addClass(Y+"on")}X=function(){clearTimeout(W);J.text(N.slideshowStart).unbind(s+" "+I).one("click",function(){Z();W=setTimeout(U.next,N.slideshowSpeed);z(this).removeClass(n)});R.removeClass(Y+"on").addClass(Y+"off")};if(N.slideshow&&c.length>1){if(N.slideshowAuto){Z()}else{X()}}};U.close=function(){z.event.trigger(H);u=O;z().unbind("keydown.cbox_close keydown.cbox_arrows");M.unbind(L+" resize.cboxie6 scroll.cboxie6");E.css({cursor:"auto"}).fadeOut("fast");R.stop(v,O).fadeOut("fast",function(){B.remove();R.css({opacity:1});d.children().hide();z.event.trigger(m)})};U.element=function(){return o};U.settings=A;z(U.init)}(jQuery));
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.06
 */
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-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.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.alt=w;n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1985, 1987, 1991, 1993, 1997 Adobe Systems Incorporated. All
 * Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Trademark:
 * Created by Type-Designer 3.0
 */
Cufon.registerFont({"w":159,"face":{"font-family":"Helvetica-CondensedLight","font-weight":300,"font-stretch":"expanded","units-per-em":"360","panose-1":"2 11 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-21 -355 282 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":79},"!":{"d":"29,-270r4,202r15,0r4,-202r-23,0xm53,-5r0,-31r-25,0r0,31r25,0","w":79},"\"":{"d":"26,-189r19,0r0,-81r-19,0r0,81xm66,-189r19,0r0,-81r-19,0r0,81","w":111},"#":{"d":"18,0r17,0r23,-90r25,0r-23,90r18,0r22,-90r33,0r5,-18r-34,0r13,-47r33,0r5,-19r-34,0r23,-94r-17,0r-23,94r-26,0r24,-94r-17,0r-23,94r-35,0r-5,19r35,0r-12,47r-35,0r-5,18r36,0xm62,-108r13,-47r24,0r-12,47r-25,0"},"$":{"d":"71,-145v-44,-7,-50,-89,0,-93r0,93xm88,-113v35,8,54,52,30,84v-7,10,-17,16,-30,16r0,-100xm9,-76v-2,48,19,77,62,81r0,30r17,0r0,-30v38,-4,63,-28,63,-69v0,-45,-33,-59,-63,-74r0,-100v22,5,35,25,35,50r21,0v-1,-40,-20,-63,-56,-70r0,-22r-17,0r0,24v-36,4,-58,26,-58,63v0,42,26,57,58,72r0,107v-31,-2,-40,-28,-40,-62r-22,0"},"%":{"d":"254,-64v0,-37,-11,-64,-47,-65v-38,0,-48,28,-48,65v0,38,9,66,48,65v34,-2,47,-25,47,-65xm233,-81v2,28,2,66,-25,66v-25,0,-29,-18,-29,-49v0,-24,4,-48,28,-49v18,0,25,15,26,32xm122,-197v0,-36,-10,-65,-47,-65v-38,0,-49,27,-49,65v0,38,10,64,48,64v35,-1,48,-25,48,-64xm75,-246v40,0,36,97,0,97v-24,0,-29,-18,-29,-48v1,-24,5,-49,29,-49xm77,5r16,0r110,-272r-16,0","w":280},"&":{"d":"150,-43v-20,45,-108,36,-104,-25v3,-38,17,-51,41,-70xm94,-169v-19,-21,-44,-83,4,-87v48,3,21,77,-4,87xm49,-227v1,35,11,45,28,72v-28,22,-50,41,-54,85v-7,80,105,100,139,45r19,28r25,0r-30,-48v11,-20,18,-48,18,-78r-23,0v0,22,-4,41,-10,57r-56,-87v24,-18,43,-38,44,-75v1,-29,-20,-48,-50,-48v-30,0,-51,19,-50,49","w":219},"'":{"d":"26,-189r19,0r0,-81r-19,0r0,81","w":71},"(":{"d":"88,69v-59,-85,-62,-262,0,-345r-17,0v-69,82,-66,261,0,345r17,0","w":100},")":{"d":"12,-276v60,84,61,262,0,345r17,0v69,-80,67,-263,0,-345r-17,0","w":100},"*":{"d":"56,-213r-26,37r12,10r28,-39r27,39r13,-9r-26,-38r39,-13r-5,-16r-40,15r0,-41r-15,0r0,41r-41,-15r-5,15","w":140},"+":{"d":"71,-79r0,79r18,0r0,-79r64,0r0,-19r-64,0r0,-78r-18,0r0,78r-63,0r0,19r63,0"},",":{"d":"39,0v-1,17,1,31,-11,36r0,13v30,-6,24,-44,25,-81r-25,0r0,32r11,0","w":79},"-":{"d":"106,-97r0,-21r-93,0r0,21r93,0","w":119},".":{"d":"53,0r0,-32r-25,0r0,32r25,0","w":79},"\/":{"d":"-4,34r20,0r88,-304r-20,0","w":100},"0":{"d":"81,-268v-64,0,-68,66,-68,135v0,69,1,138,66,138v64,0,68,-67,68,-132v0,-69,-2,-141,-66,-141xm78,-14v-42,-7,-41,-51,-41,-113v0,-56,-6,-114,41,-121v51,4,45,63,45,119v0,57,2,109,-45,115"},"1":{"d":"83,-268v-4,38,-21,48,-61,49r0,17v18,0,44,-1,57,-4r0,206r23,0r0,-268r-19,0"},"2":{"d":"77,-249v56,-2,49,90,18,113v-32,42,-89,59,-83,136r131,0r0,-22r-107,0v12,-77,102,-85,107,-174v4,-64,-76,-96,-112,-50v-11,15,-17,34,-17,58r23,0v1,-33,8,-60,40,-61"},"3":{"d":"77,5v79,7,91,-133,21,-143v58,-18,51,-135,-23,-130v-40,3,-57,31,-58,72r21,0v1,-28,9,-52,38,-52v27,-1,38,21,38,48v0,39,-21,55,-61,53r0,20v44,-4,68,16,68,56v0,33,-13,57,-45,57v-31,0,-43,-23,-43,-56r-22,0v-1,49,22,71,66,75"},"4":{"d":"10,-94r0,22r91,0r0,72r24,0r0,-72r23,0r0,-19r-23,0r0,-177r-22,0xm31,-91r70,-135r0,135r-70,0"},"5":{"d":"73,-14v-29,0,-38,-20,-40,-50r-23,0v2,43,19,69,63,69v51,-1,70,-39,70,-91v-1,-48,-16,-85,-64,-87v-15,-1,-32,8,-37,13r10,-81r80,0r0,-22r-100,0r-15,136r20,0v5,-14,18,-26,37,-26v37,0,46,29,46,66v0,39,-10,73,-47,73"},"6":{"d":"80,-14v-57,0,-61,-136,0,-136v35,0,43,30,43,66v0,37,-10,70,-43,70xm14,-131v-3,66,4,134,67,136v50,1,66,-42,66,-90v0,-46,-17,-84,-62,-84v-23,0,-37,11,-48,25v3,-46,4,-100,46,-104v25,-2,35,15,37,39r21,0v0,-35,-22,-59,-56,-59v-65,0,-68,70,-71,137"},"7":{"d":"64,0v5,-103,39,-178,84,-242r0,-21r-130,0r0,22r107,0v-46,60,-77,144,-85,241r24,0"},"8":{"d":"51,-143v-62,23,-45,155,26,148v83,13,92,-125,32,-148v47,-21,37,-133,-29,-125v-63,-7,-79,104,-29,125xm81,-150v-26,0,-38,-21,-37,-48v0,-27,8,-50,36,-50v27,0,36,22,36,49v0,26,-10,49,-35,49xm78,-14v-56,0,-57,-117,1,-117v33,0,45,23,45,56v-1,35,-11,61,-46,61"},"9":{"d":"38,-179v0,-34,7,-69,42,-69v35,0,42,37,42,74v0,34,-9,61,-42,61v-35,0,-42,-31,-42,-66xm145,-131v2,-66,-2,-137,-65,-137v-49,0,-66,42,-66,91v0,46,17,84,62,84v23,0,35,-11,46,-26v-1,49,-2,105,-44,105v-25,0,-35,-16,-37,-40r-22,0v0,34,22,61,56,59v65,-3,68,-67,70,-136"},":":{"d":"53,-156r0,-32r-25,0r0,32r25,0xm53,0r0,-32r-25,0r0,32r25,0","w":79},";":{"d":"39,0v-1,17,1,31,-11,36r0,13v30,-6,24,-44,25,-81r-25,0r0,32r11,0xm28,-156r25,0r0,-32r-25,0r0,32","w":79},"<":{"d":"7,-80r146,84r0,-20v-41,-26,-88,-46,-127,-74r127,-70r0,-20r-146,84r0,16"},"=":{"d":"153,-130r-145,0r0,19r145,0r0,-19xm153,-66r-145,0r0,19r145,0r0,-19"},">":{"d":"153,-96r-146,-85r0,20r127,73r0,2r-127,70r0,20r146,-84r0,-16"},"?":{"d":"108,-204v0,59,-62,73,-55,142r20,0v-4,-69,57,-82,57,-144v0,-62,-79,-85,-110,-40v-9,13,-13,32,-13,53r23,0v-1,-34,7,-58,41,-57v26,0,37,20,37,46xm76,0r0,-32r-25,0r0,32r25,0","w":140},"@":{"d":"84,-112v3,-45,28,-91,71,-91v56,0,25,70,13,103v-6,18,-24,31,-48,31v-21,0,-37,-19,-36,-43xm195,-66v-21,3,-14,-21,-10,-33r38,-113r-20,0r-5,17v-6,-15,-23,-25,-42,-25v-59,0,-87,52,-90,112v-1,30,18,55,49,55v21,0,36,-7,48,-18v-1,15,15,21,29,21v55,0,87,-52,87,-108v0,-67,-54,-119,-127,-119v-85,0,-140,57,-143,141v-4,109,112,175,213,124v22,-12,39,-29,51,-51r-20,0v-20,29,-58,52,-102,52v-74,0,-124,-49,-124,-123v0,-74,49,-126,123,-126v64,0,111,36,111,100v0,46,-23,88,-66,94","w":288},"A":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"B":{"d":"140,-78v0,56,-39,59,-94,57r0,-110v52,-1,94,-1,94,53xm132,-203v0,50,-36,53,-86,51r0,-97v47,-1,86,-2,86,46xm156,-204v3,-68,-64,-69,-134,-66r0,270v77,2,141,1,141,-78v0,-37,-17,-55,-44,-65v24,-8,37,-31,37,-61","w":180},"C":{"d":"23,-143v0,91,26,176,111,141v29,-12,42,-48,43,-89r-23,0v-2,39,-11,77,-51,77v-55,0,-57,-64,-57,-123v0,-56,1,-119,55,-119v37,0,48,30,51,64r23,0v1,-46,-26,-86,-73,-84v-68,2,-79,63,-79,133","w":200},"D":{"d":"156,-169v3,76,3,155,-79,148r-28,0r0,-228r36,0v53,-3,69,34,71,80xm180,-156v-2,-68,-28,-121,-106,-114r-48,0r0,270r53,0v92,4,103,-64,101,-156","w":200},"E":{"d":"148,0r0,-21r-100,0r0,-110r90,0r0,-21r-90,0r0,-97r99,0r0,-21r-123,0r0,270r124,0"},"F":{"d":"48,0r0,-131r90,0r0,-21r-90,0r0,-97r101,0r0,-21r-124,0r0,270r23,0","k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":40,",":40}},"G":{"d":"17,-140v0,76,6,143,77,146v27,1,44,-13,59,-34r2,28r19,0r0,-134r-81,0r0,21r57,0v-1,51,-6,99,-55,99v-52,0,-55,-64,-55,-121v-1,-60,3,-121,58,-121v35,0,45,29,50,60r22,0v-2,-47,-26,-80,-73,-80v-72,0,-80,63,-80,136","w":200},"H":{"d":"48,0r0,-134r104,0r0,134r24,0r0,-270r-24,0r0,115r-104,0r0,-115r-24,0r0,270r24,0","w":200},"I":{"d":"52,0r0,-270r-24,0r0,270r24,0","w":79},"J":{"d":"61,-14v-33,0,-34,-31,-33,-65r-24,0v-1,48,9,85,55,85v41,1,55,-24,55,-64r0,-212r-24,0r0,211v1,26,-4,45,-29,45","w":140},"K":{"d":"48,0r0,-102r30,-40r74,142r25,0r-84,-161r80,-109r-27,0r-98,135r0,-135r-24,0r0,270r24,0","w":180},"L":{"d":"150,0r0,-21r-100,0r0,-249r-23,0r0,270r123,0","k":{"\u00ff":13,"\u00fd":13,"\u00dd":33,"\u0178":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"M":{"d":"50,-247r68,247r25,0r68,-247r0,247r23,0r0,-270r-38,0r-66,235r-64,-235r-40,0r0,270r24,0r0,-247","w":259},"N":{"d":"53,-270r-29,0r0,270r23,0r1,-231r100,231r28,0r0,-270r-23,0r-1,232","w":200},"O":{"d":"21,-143v0,76,5,149,78,149v71,0,81,-64,81,-135v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,133xm156,-135v0,58,-1,121,-54,121v-56,0,-58,-64,-58,-123v0,-55,1,-119,55,-119v54,0,57,63,57,121","w":200},"P":{"d":"166,-199v0,-77,-65,-71,-139,-71r0,270r24,0r0,-122v68,4,115,-11,115,-77xm143,-197v0,52,-40,56,-92,54r0,-106v51,-1,92,-1,92,52","w":180,"k":{"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"A":13,".":46,",":46}},"Q":{"d":"99,-256v71,0,58,109,55,178v-1,15,-6,27,-12,38r-27,-22r-13,16r27,22v-63,36,-90,-44,-85,-113v4,-55,1,-119,55,-119xm21,-142v0,75,5,145,78,148v20,0,36,-4,48,-15r30,24r13,-16r-30,-24v17,-27,20,-60,20,-104v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,134","w":200},"R":{"d":"158,-201v0,-72,-64,-72,-135,-69r0,270r23,0r0,-127v50,-3,85,1,85,54v0,30,2,53,10,73r26,0v-26,-37,6,-130,-49,-138v26,-5,40,-33,40,-63xm135,-199v0,48,-39,54,-89,51r0,-101v49,-1,89,-2,89,50","w":180,"k":{"\u00dd":6,"\u0178":6,"Y":6,"T":6}},"S":{"d":"89,6v79,0,104,-107,38,-139v-33,-16,-85,-19,-84,-70v0,-30,17,-54,47,-53v29,0,47,20,46,51r23,0v1,-42,-27,-71,-69,-71v-43,0,-70,31,-70,74v0,90,119,53,123,133v2,33,-22,55,-55,55v-35,-1,-50,-27,-51,-62r-23,0v0,48,26,82,75,82","w":180},"T":{"d":"68,-249r0,249r24,0r0,-249r61,0r0,-21r-146,0r0,21r61,0","k":{"\u00ff":20,"\u00fd":20,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":20,"w":27,"u":27,"s":27,"r":27,"o":27,"i":6,"e":27,"c":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"99,-14v-39,0,-49,-20,-49,-60r0,-196r-24,0r0,199v0,50,23,77,74,77v55,0,74,-34,74,-88r0,-188r-24,0r0,194v1,39,-13,62,-51,62","w":200},"V":{"d":"77,0r27,0r71,-270r-22,0r-63,239r-60,-239r-25,0","w":180,"k":{"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"u":6,"r":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"143,-270r-27,0r-45,228r-41,-228r-24,0r52,270r27,0r44,-231r45,231r27,0r53,-270r-23,0r-44,229","w":259,"k":{"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"76,-139r-70,139r26,0r58,-117r58,117r26,0r-70,-139r67,-131r-26,0r-55,108r-54,-108r-26,0","w":180},"Y":{"d":"90,-141r-57,-129r-26,0r71,155r0,115r24,0r0,-115r72,-155r-25,0","w":180,"k":{"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00ef":6,"\u00ee":6,"\u00ed":6,"\u00ec":6,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"v":6,"u":13,"q":20,"p":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"148,0r0,-21r-111,0r111,-229r0,-20r-131,0r0,21r106,0r-111,227r0,22r136,0"},"[":{"d":"82,21r-34,0r0,-281r34,0r0,-16r-55,0r0,313r55,0r0,-16","w":100},"\\":{"d":"10,-270r-20,0r88,304r20,0","w":79},"]":{"d":"73,37r0,-313r-55,0r0,16r35,0r0,281r-35,0r0,16r55,0","w":100},"^":{"d":"72,-270r-48,148r17,0r39,-121r39,121r17,0r-49,-148r-15,0"},"_":{"d":"0,27r0,18r180,0r0,-18r-180,0","w":180},"`":{"d":"82,-218r-40,-50r-28,0r50,50r18,0","w":119},"a":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122","w":140},"b":{"d":"84,-185v52,0,45,93,34,141v-4,17,-15,31,-36,31v-37,0,-37,-48,-38,-90v0,-40,3,-82,40,-82xm145,-100v0,-50,-7,-101,-56,-104v-18,-1,-31,9,-45,21r0,-87r-21,0r0,270r21,0v1,-6,-2,-15,1,-19v9,16,22,24,42,24v51,-2,58,-53,58,-105"},"c":{"d":"13,-100v-3,65,23,124,86,99v22,-9,29,-34,30,-65v-6,1,-16,-2,-21,1v-3,27,-6,52,-34,52v-38,0,-40,-44,-40,-84v0,-42,-1,-85,38,-88v23,-2,34,22,35,45r20,0v0,-35,-19,-65,-54,-64v-52,1,-58,50,-60,104","w":140},"d":{"d":"37,-96v0,-42,2,-89,40,-89v36,0,40,39,40,77v-1,45,2,95,-39,95v-37,0,-41,-43,-41,-83xm73,5v23,1,34,-11,44,-24r0,19r21,0r0,-270r-21,0r-1,87v-9,-11,-24,-21,-42,-21v-51,0,-58,52,-58,104v0,52,5,104,57,105"},"e":{"d":"106,-65v8,49,-52,72,-67,25v-5,-18,-5,-37,-6,-60r94,0v1,-53,-5,-104,-57,-104v-51,0,-57,51,-57,105v0,65,22,124,83,98v21,-9,30,-33,30,-64r-20,0xm33,-119v-2,-38,19,-84,56,-60v15,10,17,35,17,60r-73,0","w":140},"f":{"d":"74,-270v-47,-5,-47,26,-46,71r-22,0r0,19r22,0r0,180r21,0r0,-180r24,0r0,-19r-24,0v2,-27,-8,-57,25,-53r0,-18","w":79},"g":{"d":"37,-97v1,-38,1,-88,38,-88v43,0,42,47,42,91v0,39,-3,81,-39,81v-37,0,-42,-44,-41,-84xm76,68v45,-1,62,-27,62,-72r0,-195r-21,0v-1,6,2,14,-1,18v-11,-14,-22,-23,-44,-23v-51,0,-55,54,-55,107v-1,53,5,100,56,102v21,1,32,-9,44,-19v-1,34,-3,67,-41,64v-16,-1,-34,-10,-34,-27r-21,0v1,30,24,46,55,45"},"h":{"d":"137,-144v14,-64,-68,-76,-93,-37r0,-89r-21,0r0,270r21,0r0,-156v7,-16,21,-28,42,-29v27,-1,30,19,30,45r0,140r21,0r0,-144"},"i":{"d":"50,0r0,-199r-20,0r0,199r20,0xm52,-236r0,-34r-24,0r0,34r24,0","w":79},"j":{"d":"32,19v1,21,-5,30,-24,30r0,19v32,0,45,-13,45,-48r0,-219r-21,0r0,218xm30,-270r0,33r24,0r0,-33r-24,0","w":79},"k":{"d":"43,0r0,-73r22,-30r48,103r22,0r-55,-125r54,-74r-26,0r-65,94r0,-165r-21,0r0,270r21,0","w":140},"l":{"d":"50,0r0,-270r-20,0r0,270r20,0","w":79},"m":{"d":"127,-181v-13,-32,-71,-28,-85,0r0,-18r-21,0r0,199r21,0r0,-152v2,-19,18,-32,38,-33v24,-1,31,17,30,41r0,144r21,0r0,-145v0,-24,16,-41,40,-41v20,0,28,15,28,34r0,152r21,0r0,-150v9,-60,-70,-68,-93,-31","w":240},"n":{"d":"136,-158v3,-53,-72,-57,-92,-21r0,-20r-21,0r0,199r21,0r0,-147v-1,-20,22,-38,42,-38v25,0,30,16,30,41r0,144r20,0r0,-158"},"o":{"d":"18,-104v0,60,6,109,62,109v55,0,63,-51,63,-105v0,-53,-9,-104,-62,-104v-52,0,-63,46,-63,100xm122,-100v0,43,-3,87,-43,87v-40,0,-40,-48,-40,-91v0,-38,3,-81,39,-81v40,0,44,43,44,85"},"p":{"d":"82,-13v-39,0,-40,-44,-40,-87v0,-42,1,-85,41,-85v38,0,38,47,38,87v0,41,-1,85,-39,85xm82,-204v-19,0,-32,11,-40,23r0,-18r-21,0r0,267r21,0r1,-84v9,14,23,21,41,21v54,-2,58,-52,58,-109v-1,-52,-8,-99,-60,-100"},"q":{"d":"117,-100v0,43,-2,87,-41,87v-36,0,-39,-46,-39,-85v0,-42,1,-87,41,-87v39,0,38,44,39,85xm75,5v19,1,32,-10,41,-21r0,84r22,0r0,-267r-21,0v-1,6,2,14,-1,18v-8,-13,-21,-23,-40,-23v-52,0,-59,50,-59,106v0,55,5,102,58,103"},"r":{"d":"93,-204v-26,1,-38,9,-48,28r0,-23r-20,0r0,199r21,0v8,-69,-28,-182,47,-182r0,-22","w":100,"k":{"\u00ff":-6,"\u00fd":-6,"y":-6,"w":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"121,-148v6,-51,-59,-72,-92,-43v-11,10,-14,27,-13,44v5,57,87,39,89,96v1,21,-13,38,-34,38v-25,0,-37,-16,-38,-41r-21,0v-1,38,19,59,57,59v58,0,74,-69,38,-101v-18,-24,-68,-19,-70,-58v-1,-19,9,-31,29,-31v22,0,34,16,34,37r21,0","w":140},"t":{"d":"24,-32v-2,31,17,40,48,34r0,-17v-17,4,-27,-1,-27,-19r0,-146r27,0r0,-19r-27,0r0,-58r-21,0r0,58r-18,0r0,19r18,0r0,148","w":79},"u":{"d":"22,-52v-12,63,67,73,94,34r0,18r20,0r0,-199r-20,0r0,151v-7,16,-21,36,-44,35v-22,-1,-29,-13,-30,-35r0,-151r-20,0r0,147"},"v":{"d":"28,-199r-22,0r53,199r23,0r52,-199r-21,0r-43,161","w":140,"k":{".":20,",":20}},"w":{"d":"112,-199r-23,0r-32,159r-32,-159r-21,0r42,199r23,0r31,-156r31,156r22,0r43,-199r-20,0r-33,159","w":200,"k":{".":13,",":13}},"x":{"d":"112,0r23,0r-53,-104r50,-95r-24,0r-39,77r-37,-77r-24,0r49,95r-52,104r22,0r42,-84","w":140},"y":{"d":"58,1v-7,27,-12,55,-48,48r0,19v52,8,58,-29,70,-71r54,-196r-21,0r-44,161r-41,-161r-22,0","w":140,"k":{".":20,",":20}},"z":{"d":"113,0r0,-18r-84,0r83,-161r0,-20r-101,0r0,19r79,0r-84,160r0,20r107,0","w":119},"{":{"d":"100,-276v-66,-7,-53,57,-53,114v0,27,-10,33,-30,41v73,1,-25,158,83,154v-64,-9,8,-141,-61,-155v67,-6,-3,-135,61,-154","w":126},"|":{"d":"31,-270r0,360r18,0r0,-360r-18,0","w":79},"}":{"d":"109,-121v-16,-6,-29,-14,-29,-40v0,-52,17,-122,-53,-115v63,11,-9,142,61,155v-67,6,2,135,-61,154v66,7,53,-57,53,-114v0,-27,7,-35,29,-40","w":126},"~":{"d":"112,-89v-27,-3,-60,-33,-86,-11v-6,6,-12,14,-18,23r11,13v21,-55,79,14,116,-14v7,-6,13,-13,18,-21r-12,-12v-7,10,-15,21,-29,22"},"\u0192":{"d":"157,-263v-58,-21,-72,44,-79,96r-43,0r0,17r40,0r-34,183v-5,13,-17,17,-33,12r-4,20v53,15,64,-34,71,-78r22,-137r45,0r0,-17r-42,0v8,-33,8,-95,52,-76"},"\u0160":{"d":"89,6v79,0,104,-107,38,-139v-33,-16,-85,-19,-84,-70v0,-30,17,-54,47,-53v29,0,47,20,46,51r23,0v1,-42,-27,-71,-69,-71v-43,0,-70,31,-70,74v0,90,119,53,123,133v2,33,-22,55,-55,55v-35,-1,-50,-27,-51,-62r-23,0v0,48,26,82,75,82xm90,-300r-30,-36r-23,0r41,50r24,0r41,-50r-23,0","w":180},"\u0152":{"d":"92,-256v72,9,54,134,44,203v-3,22,-16,39,-40,39v-55,0,-52,-68,-52,-130v0,-52,1,-107,48,-112xm88,6v35,2,42,-12,56,-35r0,29r122,0r0,-21r-99,0r0,-108r89,0r0,-21r-89,0r0,-99r97,0r0,-21r-120,0v-1,10,2,23,-1,31v-9,-22,-22,-37,-50,-37v-69,0,-73,69,-73,140v0,66,4,139,68,142","w":280},"\u0161":{"d":"121,-148v6,-51,-59,-72,-92,-43v-11,10,-14,27,-13,44v5,57,87,39,89,96v1,21,-13,38,-34,38v-25,0,-37,-16,-38,-41r-21,0v-1,38,19,59,57,59v58,0,74,-69,38,-101v-18,-24,-68,-19,-70,-58v-1,-19,9,-31,29,-31v22,0,34,16,34,37r21,0xm67,-228r-30,-37r-23,0r40,50r24,0r42,-50r-24,0","w":140},"\u0153":{"d":"204,-64v8,48,-53,71,-66,24v-5,-18,-6,-38,-6,-61r93,0v1,-53,-3,-102,-55,-103v-28,0,-38,11,-48,32v-9,-21,-24,-32,-47,-32v-52,2,-62,49,-62,103v1,55,5,104,59,106v24,0,40,-10,50,-31v11,37,71,41,90,11v8,-13,12,-29,13,-49r-21,0xm112,-102v0,43,-1,89,-40,89v-34,0,-38,-41,-38,-78v1,-45,-1,-94,40,-94v38,0,38,43,38,83xm133,-119v-2,-39,18,-83,55,-60v16,10,16,34,16,60r-71,0","w":240},"\u0178":{"d":"90,-141r-57,-129r-26,0r71,155r0,115r24,0r0,-115r72,-155r-25,0xm50,-293r23,0r0,-37r-23,0r0,37xm107,-293r23,0r0,-37r-23,0r0,37","w":180,"k":{"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00ef":6,"\u00ee":6,"\u00ed":6,"\u00ec":6,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u00a1":{"d":"51,-5v0,-20,-2,-99,-5,-130r-14,0r-4,202r23,0r0,-72xm53,-167r0,-32r-25,0r0,32r25,0","w":79},"\u00a2":{"d":"44,-96v1,-43,1,-92,48,-85r-33,156v-13,-14,-15,-42,-15,-71xm118,-65v-1,31,-12,59,-46,50r34,-157v6,7,10,19,11,34r20,0v-1,-24,-10,-46,-26,-56r10,-48r-16,0r-9,42v-61,-8,-74,44,-74,101v1,40,4,83,32,96r-12,54r16,0r10,-48v46,9,73,-19,70,-68r-20,0"},"\u00a3":{"d":"21,8v32,-37,93,17,133,-14r-8,-17v-31,22,-65,-8,-102,2v22,-18,33,-61,23,-97r50,0r0,-15r-55,0v-18,-33,-39,-113,21,-113v33,0,41,28,43,59r22,0v-2,-46,-19,-79,-68,-78v-69,0,-70,83,-41,132r-32,0r0,15r37,0v16,49,-3,88,-35,112"},"\u00a4":{"d":"14,-148v-20,24,-19,72,0,97r-14,14r17,17r15,-14v29,23,68,20,97,0r14,14r17,-17r-14,-14v19,-23,21,-73,0,-97r14,-14r-17,-17r-14,14v-24,-20,-71,-22,-97,0r-15,-14r-17,17xm81,-158v34,2,57,23,57,58v0,36,-24,59,-58,59v-34,0,-57,-23,-58,-58v-1,-33,26,-61,59,-59"},"\u00a5":{"d":"163,-266r-24,0r-59,127r-57,-127r-26,0r71,153r0,12r-49,0r0,17r49,0r0,19r-49,0r0,17r49,0r0,48r24,0r0,-48r48,0r0,-17r-48,0r0,-19r49,0r0,-17r-49,0r0,-12"},"\u00a6":{"d":"31,63r18,0r0,-126r-18,0r0,126xm31,-243r0,126r18,0r0,-126r-18,0","w":79},"\u00a7":{"d":"56,-172v28,27,98,47,69,102v-4,8,-12,12,-20,16v-29,-26,-99,-46,-70,-101v4,-8,12,-13,21,-17xm44,-181v-41,15,-47,81,-6,102v26,26,78,35,78,81v0,19,-14,36,-36,35v-25,0,-36,-19,-37,-45r-19,0v0,36,21,61,57,61v53,0,72,-68,36,-96v26,-14,43,-49,25,-83v-21,-39,-97,-45,-97,-103v0,-20,14,-31,35,-31v25,-1,35,21,37,44r20,0v-1,-35,-22,-58,-57,-60v-57,-4,-71,66,-36,95"},"\u00a8":{"d":"20,-222r23,0r0,-37r-23,0r0,37xm77,-222r23,0r0,-37r-23,0r0,37","w":119},"\u00a9":{"d":"6,-135v0,83,53,141,138,141v85,0,138,-58,138,-141v0,-84,-54,-142,-138,-142v-83,0,-138,59,-138,142xm265,-135v0,74,-48,125,-121,125v-73,0,-121,-52,-121,-125v0,-73,48,-125,121,-125v73,0,121,51,121,125xm74,-136v0,86,125,113,140,27r-20,0v-1,22,-21,37,-44,37v-34,1,-56,-32,-56,-65v0,-35,20,-65,56,-64v23,0,41,16,44,36r20,0v-5,-32,-30,-52,-65,-53v-46,0,-75,35,-75,82","w":288},"\u00aa":{"d":"40,-162v-25,0,-25,-39,-2,-45v12,-3,21,-9,26,-12v0,27,3,57,-24,57xm79,-171v-5,-42,18,-105,-33,-105v-22,0,-34,12,-34,33v5,-1,14,2,13,-4v2,-12,6,-18,20,-18v20,-2,21,15,19,32v-13,15,-60,12,-56,48v-7,37,40,43,58,22v0,10,12,13,22,10r0,-9v-8,-1,-8,-1,-9,-9","w":95},"\u00ab":{"d":"81,-47r0,-22r-37,-29r37,-29r0,-21r-51,38r0,25xm148,-47r0,-22r-37,-29r37,-29r0,-21r-51,38r0,25","w":180},"\u00ac":{"d":"8,-130r0,19r126,0r0,78r19,0r0,-97r-145,0"},"\u00ad":{"d":"153,-98r-145,0r0,19r145,0r0,-19"},"\u2212":{"d":"153,-98r-145,0r0,19r145,0r0,-19"},"\u00ae":{"d":"6,-135v0,83,53,141,138,141v85,0,138,-58,138,-141v0,-84,-54,-142,-138,-142v-83,0,-138,59,-138,142xm265,-135v0,74,-48,125,-121,125v-73,0,-121,-52,-121,-125v0,-73,48,-125,121,-125v73,0,121,51,121,125xm215,-172v1,-55,-68,-42,-122,-43r0,159r19,0r0,-73r35,0r43,73r23,0r-47,-73v29,-1,50,-13,49,-43xm196,-173v0,37,-46,26,-84,29r0,-56v36,2,83,-9,84,27","w":288},"\u00af":{"d":"7,-248r0,16r106,0r0,-16r-106,0","w":119},"\u00b0":{"d":"72,-160v32,0,54,-22,54,-54v0,-32,-22,-54,-54,-54v-32,0,-54,22,-54,54v0,32,22,54,54,54xm72,-253v21,0,40,18,40,39v0,21,-19,40,-40,40v-21,0,-40,-19,-40,-40v0,-21,19,-39,40,-39","w":144},"\u00b1":{"d":"71,-97r0,61r18,0r0,-61r64,0r0,-19r-64,0r0,-60r-18,0r0,60r-63,0r0,19r63,0xm153,-18r-145,0r0,18r145,0r0,-18"},"\u00b2":{"d":"47,-255v24,0,31,34,20,53v-18,30,-67,42,-61,95r84,0r0,-16r-69,0v11,-44,69,-51,69,-102v0,-39,-50,-57,-72,-30v-7,9,-11,21,-11,35r17,0v1,-18,5,-34,23,-35","w":95},"\u00b3":{"d":"69,-226v0,22,-15,28,-37,28r0,16v26,-1,42,7,41,32v0,19,-7,32,-26,31v-20,0,-27,-10,-26,-30r-17,0v0,30,17,42,44,45v48,5,61,-81,13,-86v38,-11,32,-78,-15,-78v-25,0,-38,19,-38,43r16,0v2,-16,5,-28,22,-29v19,0,22,11,23,28","w":95},"\u00b4":{"d":"56,-218r49,-50r-28,0r-40,50r19,0","w":119},"\u00b5":{"d":"77,-13v-25,1,-34,-11,-35,-35r0,-151r-20,0r0,267r20,0r0,-72v23,18,59,7,74,-14r0,18r20,0r0,-199r-20,0r0,151v-5,15,-21,34,-39,35"},"\u00b6":{"d":"19,-200v2,39,23,66,63,68r0,174r21,0r0,-288r36,0r0,288r20,0r0,-312v-72,-3,-144,-4,-140,70","w":203},"\u00b7":{"d":"53,-72r0,-32r-25,0r0,32r25,0","w":79},"\u2219":{"d":"53,-72r0,-32r-25,0r0,32r25,0","w":79},"\u00b8":{"d":"71,45v0,19,-29,21,-47,12r-6,11v27,13,72,9,73,-23v0,-20,-20,-30,-41,-24r17,-21v-25,-3,-24,20,-36,30v10,8,40,-5,40,15","w":119},"\u00b9":{"d":"60,-268v-3,23,-14,29,-39,30r0,10r37,-3r0,124r18,0r0,-161r-16,0","w":95},"\u00ba":{"d":"89,-215v0,-32,-7,-61,-41,-61v-33,-1,-40,27,-41,59v-1,36,6,64,41,64v34,0,41,-29,41,-62xm46,-164v-38,-2,-35,-99,0,-101v33,-2,28,41,27,70v-1,17,-8,32,-27,31","w":95},"\u00bb":{"d":"99,-127r37,29r-37,29r0,22r51,-38r0,-25r-51,-38r0,21xm32,-148r0,21r37,29r-37,29r0,22r51,-38r0,-25","w":180},"\u00bc":{"d":"144,-57r0,16r59,0r0,41r17,0r0,-41r13,0r0,-14r-13,0r0,-106r-17,0xm157,-55r46,-80r0,80r-46,0xm33,0r19,0r162,-268r-18,0xm47,-268v-3,23,-14,29,-40,30r0,10r37,-3r0,124r18,0r0,-161r-15,0","w":239},"\u00bd":{"d":"27,0r19,0r162,-268r-18,0xm41,-268v-3,23,-14,29,-40,30r0,10r37,-3r0,124r18,0r0,-161r-15,0xm196,-147v38,0,27,62,0,74v-21,20,-46,31,-42,73r85,0r0,-16r-69,0v11,-44,69,-51,69,-102v0,-40,-51,-57,-73,-29v-7,9,-10,20,-10,34r17,0v1,-18,5,-34,23,-34","w":239},"\u00be":{"d":"144,-57r0,16r59,0r0,41r17,0r0,-41r14,0r0,-14r-14,0r0,-106r-17,0xm45,0r18,0r162,-268r-18,0xm158,-55r45,-80r0,80r-45,0xm71,-226v0,22,-15,29,-38,28r0,17v26,-2,42,6,41,31v0,19,-7,32,-26,32v-20,0,-25,-11,-26,-31r-16,0v0,29,15,42,43,45v51,5,60,-79,14,-86v38,-12,31,-81,-16,-78v-24,2,-37,19,-37,43r15,0v2,-17,5,-29,23,-29v18,0,22,11,23,28","w":239},"\u00bf":{"d":"30,7v1,-61,64,-75,54,-143r-20,0v4,70,-57,82,-57,145v0,62,81,85,110,39v9,-13,13,-31,13,-52r-22,0v-1,33,-7,58,-42,57v-25,-1,-36,-20,-36,-46xm61,-199r0,32r25,0r0,-32r-25,0","w":140},"\u00c0":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0xm113,-289r-40,-50r-28,0r49,50r19,0","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c1":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0xm86,-289r50,-50r-28,0r-40,50r18,0","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c2":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0xm87,-326r29,37r24,0r-41,-50r-24,0r-41,50r23,0","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c3":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0xm133,-330v-11,46,-64,-23,-88,11v-5,8,-10,15,-11,25v4,0,11,1,14,-1v13,-48,90,42,99,-35r-14,0","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c4":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0xm50,-293r23,0r0,-37r-23,0r0,37xm107,-293r23,0r0,-37r-23,0r0,37","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c5":{"d":"54,-104r36,-136r36,136r-72,0xm77,-270r-73,270r23,0r22,-83r82,0r21,83r24,0r-72,-270r-27,0xm54,-319v0,19,17,36,36,36v19,0,36,-17,36,-36v0,-19,-17,-36,-36,-36v-19,0,-36,17,-36,36xm66,-319v0,-12,12,-24,24,-24v12,0,24,12,24,24v0,12,-12,24,-24,24v-12,0,-24,-12,-24,-24","w":180,"k":{"\u00ff":6,"\u00fd":6,"\u00dd":20,"\u0178":20,"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"\u00c6":{"d":"2,0r24,0r28,-82r70,0r0,82r124,0r0,-21r-101,0r0,-109r91,0r0,-21r-91,0r0,-98r100,0r0,-21r-149,0xm124,-249r0,146r-62,0r51,-146r11,0","w":259},"\u00c7":{"d":"23,-143v0,76,5,141,71,149v-3,9,-23,21,-12,28v13,-4,34,-4,34,11v-2,20,-29,20,-47,12r-5,11v27,13,71,9,72,-23v0,-21,-20,-30,-41,-24r12,-15v48,-6,69,-45,70,-97r-23,0v-2,39,-11,77,-51,77v-55,0,-57,-64,-57,-123v0,-56,1,-119,55,-119v37,0,48,30,51,64r23,0v1,-46,-26,-86,-73,-84v-68,2,-79,63,-79,133","w":200},"\u00c8":{"d":"148,0r0,-21r-100,0r0,-110r90,0r0,-21r-90,0r0,-97r99,0r0,-21r-123,0r0,270r124,0xm103,-289r-40,-50r-28,0r49,50r19,0"},"\u00c9":{"d":"148,0r0,-21r-100,0r0,-110r90,0r0,-21r-90,0r0,-97r99,0r0,-21r-123,0r0,270r124,0xm76,-289r50,-50r-28,0r-40,50r18,0"},"\u00ca":{"d":"148,0r0,-21r-100,0r0,-110r90,0r0,-21r-90,0r0,-97r99,0r0,-21r-123,0r0,270r124,0xm80,-326r30,37r23,0r-41,-50r-24,0r-41,50r23,0"},"\u00cb":{"d":"148,0r0,-21r-100,0r0,-110r90,0r0,-21r-90,0r0,-97r99,0r0,-21r-123,0r0,270r124,0xm40,-293r23,0r0,-37r-23,0r0,37xm97,-293r23,0r0,-37r-23,0r0,37"},"\u00cc":{"d":"52,0r0,-270r-24,0r0,270r24,0xm63,-289r-40,-50r-28,0r49,50r19,0","w":79},"\u00cd":{"d":"52,0r0,-270r-24,0r0,270r24,0xm36,-289r50,-50r-28,0r-40,50r18,0","w":79},"\u00ce":{"d":"52,0r0,-270r-24,0r0,270r24,0xm40,-326r30,37r23,0r-41,-50r-24,0r-41,50r23,0","w":79},"\u00cf":{"d":"52,0r0,-270r-24,0r0,270r24,0xm0,-293r23,0r0,-37r-23,0r0,37xm57,-293r23,0r0,-37r-23,0r0,37","w":79},"\u00d0":{"d":"157,-135v-2,64,-10,120,-80,114r-28,0r0,-123r49,0r0,-19r-49,0r0,-86v89,-9,111,29,108,114xm180,-156v-2,-71,-28,-119,-106,-114r-48,0r0,107r-26,0r0,19r26,0r0,144r53,0v91,3,103,-64,101,-156","w":200},"\u00d1":{"d":"53,-270r-29,0r0,270r23,0r1,-231r100,231r28,0r0,-270r-23,0r-1,232xm143,-330v-11,46,-64,-23,-88,11v-5,8,-10,15,-11,25v4,0,11,1,14,-1v13,-48,91,42,99,-35r-14,0","w":200},"\u00d2":{"d":"21,-143v0,76,5,149,78,149v71,0,81,-64,81,-135v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,133xm156,-135v0,58,-1,121,-54,121v-56,0,-58,-64,-58,-123v0,-55,1,-119,55,-119v54,0,57,63,57,121xm123,-289r-40,-50r-28,0r49,50r19,0","w":200},"\u00d3":{"d":"21,-143v0,76,5,149,78,149v71,0,81,-64,81,-135v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,133xm156,-135v0,58,-1,121,-54,121v-56,0,-58,-64,-58,-123v0,-55,1,-119,55,-119v54,0,57,63,57,121xm96,-289r50,-50r-28,0r-40,50r18,0","w":200},"\u00d4":{"d":"21,-143v0,76,5,149,78,149v71,0,81,-64,81,-135v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,133xm156,-135v0,58,-1,121,-54,121v-56,0,-58,-64,-58,-123v0,-55,1,-119,55,-119v54,0,57,63,57,121xm100,-326r30,37r23,0r-41,-50r-24,0r-40,50r23,0","w":200},"\u00d5":{"d":"21,-143v0,76,5,149,78,149v71,0,81,-64,81,-135v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,133xm156,-135v0,58,-1,121,-54,121v-56,0,-58,-64,-58,-123v0,-55,1,-119,55,-119v54,0,57,63,57,121xm143,-330v-11,46,-64,-23,-88,11v-5,8,-10,15,-11,25v4,0,11,1,14,-1v13,-48,91,42,99,-35r-14,0","w":200},"\u00d6":{"d":"21,-143v0,76,5,149,78,149v71,0,81,-64,81,-135v0,-76,-5,-147,-80,-147v-69,0,-79,65,-79,133xm156,-135v0,58,-1,121,-54,121v-56,0,-58,-64,-58,-123v0,-55,1,-119,55,-119v54,0,57,63,57,121xm60,-293r24,0r0,-37r-24,0r0,37xm117,-293r23,0r0,-37r-23,0r0,37","w":200},"\u00d7":{"d":"80,-73r59,59r14,-13r-60,-59r60,-60r-14,-13r-59,60r-59,-60r-13,13r59,60r-59,59r13,13"},"\u00d8":{"d":"151,-203v11,75,18,220,-77,181v-7,-5,-13,-13,-17,-22xm49,-67v-10,-73,-17,-220,77,-181v7,5,13,12,17,22xm21,-143v0,43,-1,73,12,103r-24,41r15,9r19,-31v12,16,29,27,56,27v71,-1,81,-64,81,-135v0,-43,-1,-72,-13,-102r23,-39r-16,-7r-17,28v-12,-17,-29,-27,-57,-27v-69,1,-79,65,-79,133","w":200},"\u00d9":{"d":"99,-14v-39,0,-49,-20,-49,-60r0,-196r-24,0r0,199v0,50,23,77,74,77v55,0,74,-34,74,-88r0,-188r-24,0r0,194v1,39,-13,62,-51,62xm123,-289r-40,-50r-28,0r49,50r19,0","w":200},"\u00da":{"d":"99,-14v-39,0,-49,-20,-49,-60r0,-196r-24,0r0,199v0,50,23,77,74,77v55,0,74,-34,74,-88r0,-188r-24,0r0,194v1,39,-13,62,-51,62xm96,-289r50,-50r-28,0r-40,50r18,0","w":200},"\u00db":{"d":"99,-14v-39,0,-49,-20,-49,-60r0,-196r-24,0r0,199v0,50,23,77,74,77v55,0,74,-34,74,-88r0,-188r-24,0r0,194v1,39,-13,62,-51,62xm100,-326r30,37r23,0r-41,-50r-24,0r-40,50r23,0","w":200},"\u00dc":{"d":"99,-14v-39,0,-49,-20,-49,-60r0,-196r-24,0r0,199v0,50,23,77,74,77v55,0,74,-34,74,-88r0,-188r-24,0r0,194v1,39,-13,62,-51,62xm60,-293r24,0r0,-37r-24,0r0,37xm117,-293r23,0r0,-37r-23,0r0,37","w":200},"\u00dd":{"d":"90,-141r-57,-129r-26,0r71,155r0,115r24,0r0,-115r72,-155r-25,0xm86,-289r50,-50r-28,0r-40,50r18,0","w":180,"k":{"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00ef":6,"\u00ee":6,"\u00ed":6,"\u00ec":6,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u00de":{"d":"166,-151v0,-63,-48,-79,-115,-74r0,-45r-24,0r0,270r24,0r0,-77v66,4,116,-11,115,-74xm143,-151v0,48,-41,57,-92,53r0,-106v51,-3,92,4,92,53","w":180},"\u00df":{"d":"81,-276v-47,0,-57,35,-57,82r0,194r21,0r0,-222v1,-21,12,-36,35,-36v27,0,35,20,34,48v-1,32,-6,45,-39,45r0,19v40,2,45,23,46,68v0,32,0,64,-30,65v-8,0,-16,-6,-20,-11r0,22v6,4,15,6,23,7v42,-1,48,-40,48,-82v0,-37,-5,-70,-34,-79v45,-22,33,-120,-27,-120"},"\u00e0":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122xm93,-218r-40,-50r-29,0r50,50r19,0","w":140},"\u00e1":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122xm66,-218r50,-50r-29,0r-39,50r18,0","w":140},"\u00e2":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122xm70,-255r30,37r23,0r-41,-50r-24,0r-41,50r23,0","w":140},"\u00e3":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122xm27,-222v13,-52,90,43,100,-37r-14,0v-10,46,-65,-22,-89,12v-6,7,-9,15,-10,25r13,0","w":140},"\u00e4":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122xm30,-222r23,0r0,-37r-23,0r0,37xm87,-222r23,0r0,-37r-23,0r0,37","w":140},"\u00e5":{"d":"58,-13v-31,2,-33,-41,-23,-61v7,-15,50,-24,63,-33v1,44,1,91,-40,94xm118,-150v11,-56,-59,-67,-90,-40v-9,9,-13,23,-13,41v7,-1,21,4,21,-5v3,-19,8,-31,31,-31v31,0,32,25,29,53v-22,29,-93,21,-87,81v3,33,10,56,45,56v21,0,35,-10,45,-21v-1,19,18,22,34,17r0,-15v-12,-1,-15,-2,-15,-14r0,-122xm34,-251v0,19,16,36,36,36v20,0,36,-17,36,-36v0,-19,-17,-36,-36,-36v-19,0,-36,17,-36,36xm46,-251v0,-12,12,-23,24,-23v12,0,24,11,24,23v0,11,-12,24,-24,24v-12,0,-24,-12,-24,-24","w":140},"\u00e6":{"d":"117,-120v-16,-63,63,-93,71,-23v1,7,1,15,1,23r-72,0xm154,-13v-39,0,-38,-46,-38,-88r94,0v0,-54,-6,-103,-57,-103v-21,0,-30,7,-41,20v-13,-24,-66,-26,-84,-6v-8,9,-13,24,-14,42r21,0v-1,-22,10,-37,31,-37v30,0,30,21,30,51v-23,35,-87,17,-87,82v0,35,9,58,45,57v22,0,40,-9,52,-29v17,45,98,33,100,-13v2,-8,3,-17,3,-27r-20,0v0,28,-8,51,-35,51xm95,-56v7,45,-65,63,-65,10v0,-46,39,-43,65,-61r0,51","w":219},"\u00e7":{"d":"13,-100v0,52,4,100,53,104r-18,26v8,8,40,-6,39,15v-1,20,-29,20,-47,12r-5,11v27,13,72,9,73,-23v0,-20,-20,-30,-41,-24r13,-17v35,-1,49,-34,49,-70v-6,1,-16,-2,-21,1v-3,27,-6,52,-34,52v-38,0,-40,-44,-40,-84v0,-42,-1,-85,38,-88v23,-2,34,22,35,45r20,0v0,-35,-19,-65,-54,-64v-52,1,-60,50,-60,104","w":140},"\u00e8":{"d":"106,-65v8,49,-52,72,-67,25v-5,-18,-5,-37,-6,-60r94,0v1,-53,-5,-104,-57,-104v-51,0,-57,51,-57,105v0,65,22,124,83,98v21,-9,30,-33,30,-64r-20,0xm33,-119v-2,-38,19,-84,56,-60v15,10,17,35,17,60r-73,0xm93,-218r-40,-50r-29,0r50,50r19,0","w":140},"\u00e9":{"d":"106,-65v8,49,-52,72,-67,25v-5,-18,-5,-37,-6,-60r94,0v1,-53,-5,-104,-57,-104v-51,0,-57,51,-57,105v0,65,22,124,83,98v21,-9,30,-33,30,-64r-20,0xm33,-119v-2,-38,19,-84,56,-60v15,10,17,35,17,60r-73,0xm66,-218r50,-50r-29,0r-39,50r18,0","w":140},"\u00ea":{"d":"106,-65v8,49,-52,72,-67,25v-5,-18,-5,-37,-6,-60r94,0v1,-53,-5,-104,-57,-104v-51,0,-57,51,-57,105v0,65,22,124,83,98v21,-9,30,-33,30,-64r-20,0xm33,-119v-2,-38,19,-84,56,-60v15,10,17,35,17,60r-73,0xm70,-255r30,37r23,0r-41,-50r-24,0r-41,50r23,0","w":140},"\u00eb":{"d":"106,-65v8,49,-52,72,-67,25v-5,-18,-5,-37,-6,-60r94,0v1,-53,-5,-104,-57,-104v-51,0,-57,51,-57,105v0,65,22,124,83,98v21,-9,30,-33,30,-64r-20,0xm33,-119v-2,-38,19,-84,56,-60v15,10,17,35,17,60r-73,0xm30,-222r23,0r0,-37r-23,0r0,37xm87,-222r23,0r0,-37r-23,0r0,37","w":140},"\u00ec":{"d":"46,0r0,-199r-20,0r0,199r20,0xm59,-218r-40,-50r-28,0r49,50r19,0","w":72},"\u00ed":{"d":"46,0r0,-199r-20,0r0,199r20,0xm32,-218r50,-50r-28,0r-40,50r18,0","w":72},"\u00ee":{"d":"46,0r0,-199r-20,0r0,199r20,0xm32,-255r30,37r23,0r-41,-50r-24,0r-41,50r24,0","w":72},"\u00ef":{"d":"46,0r0,-199r-20,0r0,199r20,0xm-4,-222r23,0r0,-37r-23,0r0,37xm53,-222r23,0r0,-37r-23,0r0,37","w":72},"\u00f0":{"d":"74,-267r-27,-24r-13,11v9,7,18,16,25,23r-27,19r9,10r27,-19v11,12,28,35,33,48v-59,-21,-86,36,-84,95v2,57,6,109,63,109v54,0,63,-52,63,-106v0,-72,-22,-114,-61,-156r27,-18r-9,-10xm79,-13v-42,0,-40,-47,-41,-91v0,-38,4,-81,40,-81v40,0,44,43,44,85v0,43,-3,87,-43,87"},"\u00f1":{"d":"136,-158v3,-53,-72,-57,-92,-21r0,-20r-21,0r0,199r21,0r0,-147v-1,-20,22,-38,42,-38v25,0,30,16,30,41r0,144r20,0r0,-158xm37,-222v14,-52,90,43,100,-37r-14,0v-10,46,-64,-22,-88,12v-5,8,-10,15,-11,25r13,0"},"\u00f2":{"d":"18,-104v0,60,6,109,62,109v55,0,63,-51,63,-105v0,-53,-9,-104,-62,-104v-52,0,-63,46,-63,100xm122,-100v0,43,-3,87,-43,87v-40,0,-40,-48,-40,-91v0,-38,3,-81,39,-81v40,0,44,43,44,85xm103,-218r-40,-50r-28,0r49,50r19,0"},"\u00f3":{"d":"18,-104v0,60,6,109,62,109v55,0,63,-51,63,-105v0,-53,-9,-104,-62,-104v-52,0,-63,46,-63,100xm122,-100v0,43,-3,87,-43,87v-40,0,-40,-48,-40,-91v0,-38,3,-81,39,-81v40,0,44,43,44,85xm76,-218r50,-50r-28,0r-40,50r18,0"},"\u00f4":{"d":"18,-104v0,60,6,109,62,109v55,0,63,-51,63,-105v0,-53,-9,-104,-62,-104v-52,0,-63,46,-63,100xm122,-100v0,43,-3,87,-43,87v-40,0,-40,-48,-40,-91v0,-38,3,-81,39,-81v40,0,44,43,44,85xm80,-255r30,37r23,0r-41,-50r-24,0r-41,50r23,0"},"\u00f5":{"d":"18,-104v0,60,6,109,62,109v55,0,63,-51,63,-105v0,-53,-9,-104,-62,-104v-52,0,-63,46,-63,100xm122,-100v0,43,-3,87,-43,87v-40,0,-40,-48,-40,-91v0,-38,3,-81,39,-81v40,0,44,43,44,85xm37,-222v14,-52,90,43,100,-37r-14,0v-10,46,-64,-22,-88,12v-5,8,-10,15,-11,25r13,0"},"\u00f6":{"d":"18,-104v0,60,6,109,62,109v55,0,63,-51,63,-105v0,-53,-9,-104,-62,-104v-52,0,-63,46,-63,100xm122,-100v0,43,-3,87,-43,87v-40,0,-40,-48,-40,-91v0,-38,3,-81,39,-81v40,0,44,43,44,85xm40,-222r23,0r0,-37r-23,0r0,37xm97,-222r23,0r0,-37r-23,0r0,37"},"\u00f7":{"d":"8,-98r0,19r145,0r0,-19r-145,0xm69,-140r23,0r0,-37r-23,0r0,37xm69,0r23,0r0,-37r-23,0r0,37"},"\u00f8":{"d":"118,-146v12,56,6,158,-59,126v-5,-4,-10,-9,-13,-17xm41,-57v-6,-56,-9,-148,57,-123v5,4,11,9,14,15xm81,-204v-75,-2,-69,110,-55,170r-27,40r12,9r22,-33v9,14,24,23,47,23v77,1,69,-115,52,-173r22,-33r-14,-7r-16,25v-10,-11,-22,-21,-43,-21"},"\u00f9":{"d":"22,-52v-12,63,67,73,94,34r0,18r20,0r0,-199r-20,0r0,151v-7,16,-21,36,-44,35v-22,-1,-29,-13,-30,-35r0,-151r-20,0r0,147xm103,-218r-40,-50r-28,0r49,50r19,0"},"\u00fa":{"d":"22,-52v-12,63,67,73,94,34r0,18r20,0r0,-199r-20,0r0,151v-7,16,-21,36,-44,35v-22,-1,-29,-13,-30,-35r0,-151r-20,0r0,147xm76,-218r50,-50r-28,0r-40,50r18,0"},"\u00fb":{"d":"22,-52v-12,63,67,73,94,34r0,18r20,0r0,-199r-20,0r0,151v-7,16,-21,36,-44,35v-22,-1,-29,-13,-30,-35r0,-151r-20,0r0,147xm80,-251r30,36r23,0r-41,-50r-24,0r-41,50r23,0"},"\u00fc":{"d":"22,-52v-12,63,67,73,94,34r0,18r20,0r0,-199r-20,0r0,151v-7,16,-21,36,-44,35v-22,-1,-29,-13,-30,-35r0,-151r-20,0r0,147xm40,-222r23,0r0,-37r-23,0r0,37xm97,-222r23,0r0,-37r-23,0r0,37"},"\u00fd":{"d":"58,1v-7,27,-12,55,-48,48r0,19v52,8,58,-29,70,-71r54,-196r-21,0r-44,161r-41,-161r-22,0xm66,-218r50,-50r-29,0r-39,50r18,0","w":140,"k":{".":20,",":20}},"\u00fe":{"d":"42,-99v0,-40,1,-86,39,-86v39,0,40,46,40,86v-1,40,-2,86,-40,86v-38,0,-39,-46,-39,-86xm82,-204v-19,0,-32,11,-40,23r0,-89r-21,0r0,338r21,0r0,-84v10,14,24,21,42,21v53,-2,58,-55,58,-109v0,-52,-8,-99,-60,-100"},"\u00ff":{"d":"58,1v-7,27,-12,55,-48,48r0,19v52,8,58,-29,70,-71r54,-196r-21,0r-44,161r-41,-161r-22,0xm30,-222r23,0r0,-37r-23,0r0,37xm87,-222r23,0r0,-37r-23,0r0,37","w":140,"k":{".":20,",":20}},"\u00a0":{"w":79}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Bitstream Vera is a trademark of Bitstream, Inc.
 * 
 * Manufacturer:
 * Bitstream Inc.
 * 
 * Vendor URL:
 * http://www.bitstream.com
 */
Cufon.registerFont({"w":229,"face":{"font-family":"Bitstream Vera Serif","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 6 3 5 6 5 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-35 -334.48 381 85","underline-thickness":"23.3789","underline-position":"-25.8398","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":114},"!":{"d":"72,5v-13,0,-23,-11,-23,-23v0,-13,9,-24,23,-24v12,-1,24,11,24,24v0,12,-12,23,-24,23xm50,-262r45,0r-12,144r0,44r-21,0v1,-68,-8,-125,-12,-188","w":144},"\"":{"d":"63,-262r0,97r-28,0r0,-97r28,0xm130,-262r0,97r-28,0r0,-97r28,0","w":165},"#":{"d":"183,-158r-49,0r-15,58r50,0xm158,-258r-18,73r50,0r18,-73r30,0r-18,73r54,0r0,27r-61,0r-14,58r55,0r0,27r-62,0r-18,73r-30,0r18,-73r-50,0r-18,73r-30,0r18,-73r-54,0r0,-27r61,0r14,-58r-55,0r0,-27r62,0r18,-73r30,0","w":301},"$":{"d":"121,-12v36,2,54,-38,31,-63v-7,-7,-18,-12,-31,-16r0,79xm104,-209v-32,-1,-50,36,-29,59v6,6,16,11,29,15r0,-74xm104,5v-28,0,-51,-8,-73,-18r0,-48r19,0v1,33,20,48,54,49r0,-85v-43,-14,-73,-21,-73,-65v0,-41,31,-62,73,-64r0,-48r17,0r0,48v26,1,48,8,67,17r0,46r-20,0v-2,-27,-20,-44,-47,-46r0,80v46,15,76,21,78,67v2,43,-34,65,-78,67r0,48r-17,0r0,-48"},"%":{"d":"81,-140v44,-2,43,-109,0,-111v-45,1,-45,110,0,111xm262,-11v44,-2,43,-109,0,-111v-45,1,-45,110,0,111xm201,-66v0,-42,21,-73,61,-72v39,0,60,31,60,72v0,41,-22,71,-60,71v-39,0,-61,-30,-61,-71xm240,-267r26,0r-164,272r-26,0xm20,-196v0,-41,21,-71,60,-71v39,0,61,30,61,71v0,42,-21,73,-61,72v-39,0,-60,-31,-60,-72","w":342},"&":{"d":"92,-148v-51,33,-32,136,40,132v27,-1,48,-10,62,-25xm267,-130v-5,32,-17,58,-35,79r30,32r41,0r0,19r-70,0r-24,-25v-52,51,-190,37,-183,-56v3,-41,25,-63,54,-82v-38,-40,-7,-111,57,-104v23,2,42,6,64,12r0,45r-20,0v-3,-24,-17,-38,-44,-38v-31,0,-54,30,-35,57v29,42,81,86,116,126v14,-17,25,-39,28,-65r-32,0r0,-19r83,0r0,19r-30,0","w":320},"'":{"d":"63,-262r0,97r-28,0r0,-97r28,0","w":98},"(":{"d":"64,-109v0,75,11,119,51,148r0,17v-56,-26,-87,-82,-87,-165v0,-83,31,-139,87,-165r0,18v-40,28,-51,73,-51,147","w":140},")":{"d":"25,-274v57,26,87,82,87,165v0,83,-30,139,-87,165r0,-17v40,-29,51,-73,51,-148v0,-74,-11,-118,-51,-147r0,-18","w":140},"*":{"d":"174,-217r-69,32r69,32r-13,21r-61,-38r2,67r-24,0r2,-67r-61,38r-13,-21r69,-32r-69,-32r13,-21r61,38r-2,-67r24,0r-2,67r61,-38","w":180},"+":{"d":"165,-226r0,99r98,0r0,28r-98,0r0,99r-28,0r0,-99r-99,0r0,-28r99,0r0,-99r28,0","w":301},",":{"d":"13,35v22,-17,33,-37,32,-75r35,0v-4,45,-21,69,-53,89","w":114},"-":{"d":"16,-110r90,0r0,27r-90,0r0,-27","w":121,"k":{"\u00dd":40,"\u0178":40,"Y":40,"X":13,"W":20,"V":26,"T":13}},".":{"d":"57,5v-13,0,-23,-11,-23,-23v0,-13,9,-24,23,-24v12,-1,24,11,24,24v0,12,-12,23,-24,23","w":114},"\/":{"d":"93,-262r28,0r-93,295r-28,0","w":121},"0":{"d":"114,-250v-70,0,-59,155,-40,208v8,21,22,30,40,30v47,0,54,-56,54,-119v0,-63,-6,-119,-54,-119xm205,-131v0,75,-25,136,-91,136v-64,0,-90,-62,-90,-136v0,-74,26,-136,90,-136v66,0,91,62,91,136"},"1":{"d":"51,0r0,-19r46,0r0,-218r-53,34r0,-23r64,-41r24,0r0,248r46,0r0,19r-127,0"},"2":{"d":"101,-250v-35,1,-51,17,-55,50r-20,0r0,-47v55,-35,166,-26,164,54v-2,54,-88,122,-126,164r109,0r0,-32r21,0r0,61r-170,0r0,-19v37,-40,91,-82,118,-128v23,-40,11,-106,-41,-103"},"3":{"d":"107,-250v-32,0,-49,16,-52,45r-20,0r0,-46v54,-25,159,-26,157,47v0,35,-26,54,-58,61v40,4,66,30,68,72v4,84,-116,90,-175,58r0,-51r20,0v2,34,23,53,60,52v36,0,58,-22,58,-58v1,-47,-28,-67,-79,-63r0,-18v43,1,70,-11,70,-51v-1,-31,-17,-48,-49,-48"},"4":{"d":"126,-89r0,-140r-90,140r90,0xm203,0r-120,0r0,-19r43,0r0,-51r-115,0r0,-19r115,-178r35,0r0,178r50,0r0,19r-50,0r0,51r42,0r0,19"},"5":{"d":"164,-83v6,-69,-74,-91,-107,-48r-15,0r0,-131r139,0r0,28r-120,0r0,76v57,-34,148,2,140,75v8,88,-105,107,-170,70r0,-51r19,0v1,34,22,52,57,52v39,-1,53,-29,57,-71"},"6":{"d":"66,-85v0,40,15,73,52,73v37,0,51,-30,51,-71v0,-41,-14,-69,-51,-70v-37,0,-53,28,-52,68xm173,-213v-2,-47,-77,-46,-95,-11v-9,18,-18,44,-18,80v44,-53,146,-23,146,61v0,54,-36,89,-90,88v-66,-1,-92,-55,-92,-128v0,-109,69,-170,169,-134r0,44r-20,0"},"7":{"d":"203,-245r-103,245r-26,0r98,-234r-121,0r0,33r-21,0r0,-61r173,0r0,17"},"8":{"d":"114,-12v35,0,54,-23,54,-60v0,-37,-19,-59,-54,-59v-35,0,-53,23,-53,59v0,37,18,60,53,60xm114,-148v30,0,46,-20,46,-51v0,-31,-16,-51,-46,-51v-29,0,-46,21,-46,51v0,30,17,50,46,51xm196,-199v-1,35,-21,53,-54,59v37,5,62,28,63,68v0,52,-37,77,-91,77v-54,0,-90,-25,-90,-77v0,-40,27,-63,64,-68v-33,-6,-54,-24,-55,-59v-1,-45,35,-68,81,-68v47,0,83,23,82,68"},"9":{"d":"56,-49v3,47,76,46,95,11v10,-18,17,-44,17,-80v-44,54,-145,22,-145,-61v0,-54,36,-89,90,-88v66,1,92,55,92,128v0,108,-68,170,-169,134r0,-44r20,0xm163,-177v0,-40,-15,-73,-52,-73v-37,0,-51,30,-51,71v0,41,14,69,51,70v37,0,53,-28,52,-68"},":":{"d":"61,5v-14,0,-23,-10,-24,-23v-1,-13,11,-25,24,-24v13,0,23,12,23,24v0,13,-10,23,-23,23xm61,-110v-13,0,-24,-10,-24,-23v0,-13,11,-23,24,-23v14,0,23,9,23,23v0,14,-9,23,-23,23","w":121},";":{"d":"13,35v22,-17,33,-37,32,-75r35,0v-4,45,-21,69,-53,89xm62,-110v-13,0,-24,-10,-24,-23v0,-13,11,-23,24,-23v12,0,23,12,23,23v0,12,-10,23,-23,23","w":121},"<":{"d":"263,-179r-182,66r182,67r0,29r-225,-81r0,-29r225,-82r0,30","w":301},"=":{"d":"38,-163r225,0r0,28r-225,0r0,-28xm38,-91r225,0r0,28r-225,0r0,-28","w":301},">":{"d":"38,-179r0,-30r225,82r0,29r-225,81r0,-29r183,-67","w":301},"?":{"d":"87,5v-13,0,-24,-10,-24,-23v-1,-13,11,-25,24,-24v12,0,23,11,23,24v0,11,-12,23,-23,23xm91,-250v-29,0,-45,19,-50,45r-17,0r0,-46v55,-30,154,-19,152,53v-2,50,-32,73,-78,84r0,44r-22,0r0,-57v38,-9,61,-30,63,-71v1,-31,-18,-52,-48,-52","w":193},"@":{"d":"187,-253v87,0,145,51,148,136v2,63,-43,102,-107,102r-1,-29v-32,56,-121,23,-121,-50v0,-44,26,-80,69,-79v25,0,40,11,52,28r0,-25r28,0r0,136v38,-8,63,-40,63,-84v0,-74,-54,-117,-128,-117v-86,0,-136,55,-136,140v0,88,52,139,136,139v34,0,59,-9,79,-26r9,12v-24,21,-55,33,-96,33v-94,0,-158,-61,-158,-158v0,-96,64,-158,163,-158xm182,-36v34,0,45,-28,45,-68v0,-29,-18,-49,-45,-49v-31,0,-45,25,-45,59v0,34,14,57,45,58","w":360},"A":{"d":"72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"\u00fd":15,"\u00dd":15,"\u0178":15,"\u00ff":15,"y":15,"w":16,"v":15,"t":6,"f":6,"Y":15,"W":15,"V":18,"T":20}},"B":{"d":"202,-76v0,-62,-54,-58,-113,-57r0,114v59,1,113,6,113,-57xm189,-198v0,-52,-50,-46,-100,-46r0,92v50,0,100,6,100,-46xm243,-76v4,100,-128,72,-223,76r0,-19r33,0r0,-225r-33,0r0,-18v85,6,211,-27,209,64v-1,34,-21,51,-54,55v40,5,67,25,68,67","w":264,"k":{"\u010c":-7,"\u0106":-7,"\u011e":-7,"\u00dd":6,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u0178":6,"\u0152":-7,"\u00d5":-7,"\u00d8":-7,"\u00d6":-7,"\u00c7":-7,"Y":6,"O":-7,"G":-7,"C":-7,"-":-7}},"C":{"d":"146,-14v42,0,65,-20,75,-55r33,0v-15,45,-49,76,-108,74v-80,-2,-124,-55,-126,-136v-2,-79,51,-137,129,-136v37,0,67,10,98,22r0,61r-20,0v-8,-43,-31,-64,-81,-64v-64,1,-86,48,-86,117v0,68,23,117,86,117","w":275,"k":{".":13,",":13}},"D":{"d":"227,-131v0,-83,-48,-121,-138,-113r0,225v89,7,138,-29,138,-112xm268,-131v0,84,-57,132,-144,131r-104,0r0,-19r33,0r0,-225r-33,0r0,-18r104,0v88,-1,144,46,144,131","w":288,"k":{"V":6,".":13,"-":-7,",":13}},"E":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r211,0r0,58r-21,0r0,-37r-121,0r0,88r86,0r0,-33r22,0r0,87r-22,0r0,-32r-86,0r0,109r123,0r0,-36r22,0r0,58r-214,0","w":262,"k":{"-":-7}},"F":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r215,0r0,58r-22,0r0,-37r-124,0r0,88r90,0r0,-33r21,0r0,87r-21,0r0,-32r-90,0r0,112r42,0r0,19r-111,0","w":249,"k":{"\u00c1":31,"\u00c2":31,"\u0153":20,"\u00c3":31,"\u00c0":31,"\u00f8":20,"\u00e6":24,"\u00f5":20,"\u00f6":20,"\u00f4":20,"\u00f2":20,"\u00f3":20,"\u00eb":20,"\u00ea":20,"\u00e8":20,"\u00e9":20,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00c4":31,"o":20,"e":20,"a":24,"A":31,";":13,":":13,".":56,"-":16,",":56}},"G":{"d":"153,-267v37,1,67,9,97,21r0,62r-20,0v-7,-43,-31,-64,-80,-64v-66,0,-90,46,-90,117v0,71,25,117,91,117v29,0,53,-7,73,-19r0,-68r-50,0r0,-19r85,0r0,98v-30,16,-64,27,-108,27v-80,1,-131,-56,-131,-136v0,-80,53,-138,133,-136","w":287,"k":{"\u00dd":6,"\u0178":6,"Y":6,".":13,"-":-7,",":13}},"H":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,91r136,0r0,-91r-33,0r0,-18r102,0r0,18r-33,0r0,225r33,0r0,19r-102,0r0,-19r33,0r0,-112r-136,0r0,112r33,0r0,19r-102,0","w":313},"I":{"d":"89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"J":{"d":"94,-7v11,79,-67,97,-124,70r0,-41r20,0v0,22,9,34,31,34v35,-2,38,-22,38,-65r0,-235r-41,0r0,-18r110,0r0,18r-34,0r0,237","w":144,"k":{";":15,":":15,".":28,",":21}},"K":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,100r113,-100r-29,0r0,-18r88,0r0,18r-30,0r-113,99r127,126r29,0r0,19r-61,0r-124,-125r0,106r33,0r0,19r-102,0","w":268,"k":{"\u010c":10,"\u0106":10,"\u00fd":23,"\u00dd":10,"\u00d9":13,"\u00db":13,"\u00da":13,"\u00d2":10,"\u00d4":10,"\u00d3":10,"\u00c1":15,"\u00c2":15,"\u0178":10,"\u00ff":23,"\u0153":10,"\u0152":10,"\u00d5":10,"\u00c3":15,"\u00c0":15,"\u00f8":6,"\u00d8":10,"\u00fc":8,"\u00fb":8,"\u00f9":8,"\u00fa":8,"\u00f5":10,"\u00f6":10,"\u00f4":10,"\u00f2":10,"\u00f3":10,"\u00eb":10,"\u00ea":10,"\u00e8":10,"\u00e9":10,"\u00dc":13,"\u00d6":10,"\u00c7":10,"\u00c4":15,"y":23,"u":8,"o":10,"e":10,"Y":10,"W":13,"U":13,"O":10,"C":10,"A":15,"-":26}},"L":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,222r120,0r0,-44r21,0r0,66r-210,0","w":239,"k":{"\u00fd":6,"\u00dd":23,"\u00d9":20,"\u00db":20,"\u00da":20,"\u0178":23,"\u00ff":6,"\u00dc":20,"y":6,"Y":23,"W":31,"V":43,"U":20,"T":29}},"M":{"d":"20,0r0,-19r33,0r0,-225r-35,0r0,-18r76,0r93,186r92,-186r71,0r0,18r-35,0r0,225r34,0r0,19r-103,0r0,-19r34,0r0,-202r-90,183r-25,0r-90,-183r0,202r33,0r0,19r-88,0","w":368},"N":{"d":"18,0r0,-19r35,0r0,-225r-35,0r0,-18r67,0r157,207r0,-189r-35,0r0,-18r92,0r0,18r-35,0r0,249r-21,0r-168,-221r0,197r35,0r0,19r-92,0","w":315,"k":{";":13,":":13,".":23,",":23}},"O":{"d":"60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"P":{"d":"189,-189v0,-54,-45,-58,-100,-55r0,110v54,3,100,0,100,-55xm229,-189v0,67,-65,80,-140,74r0,96r41,0r0,19r-110,0r0,-19r33,0r0,-225r-33,0r0,-18v91,2,209,-20,209,73","w":242,"k":{"\u015f":10,"\u0161":10,"\u00d9":6,"\u00db":6,"\u00da":6,"\u00c1":33,"\u00c2":33,"\u0153":15,"\u00c3":33,"\u00c0":33,"\u00f8":15,"\u00e6":16,"\u00f5":15,"\u00f6":15,"\u00f4":15,"\u00f2":15,"\u00f3":15,"\u00eb":16,"\u00ea":16,"\u00e8":16,"\u00e9":16,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"\u00dc":6,"\u00c4":33,"s":10,"o":15,"e":16,"a":16,"U":6,"A":33,";":13,":":13,".":73,"-":20,",":73}},"Q":{"d":"237,58v-43,-3,-68,-22,-85,-53v-80,1,-134,-56,-132,-136v2,-82,46,-134,128,-136v77,-2,127,57,127,136v0,71,-40,121,-99,133v12,17,31,24,61,23r0,33xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117","w":295,"k":{".":18,"-":-13,",":18}},"R":{"d":"233,-192v0,40,-24,56,-61,62v46,14,52,74,76,111r32,0r0,19r-62,0v-20,-36,-36,-90,-63,-115v-13,-12,-42,-6,-66,-7r0,103r37,0r0,19r-106,0r0,-19r33,0r0,-225r-33,0r0,-18v89,4,216,-25,213,70xm193,-192v0,-57,-50,-53,-104,-52r0,103v53,1,104,6,104,-51","w":271,"k":{"\u00fd":6,"\u00dd":11,"\u0178":11,"\u00ff":6,"\u00f8":-7,"\u00e6":-8,"\u00e5":-8,"\u00e3":-8,"\u00e4":-8,"\u00e2":-8,"\u00e0":-8,"\u00e1":-8,"y":6,"a":-8,"Y":11,"W":8,"V":13,"T":6}},"S":{"d":"220,-72v0,91,-123,88,-187,59r0,-59r21,0v1,41,24,58,67,58v52,0,81,-40,54,-77v-41,-35,-145,-25,-145,-106v0,-82,112,-79,177,-55r0,56r-20,0v-4,-39,-24,-48,-66,-52v-48,-4,-74,44,-46,73v35,36,145,24,145,103","w":246,"k":{"\u015e":6,"\u0160":6,"S":6,".":13,"-":-13,",":13}},"T":{"d":"69,0r0,-19r33,0r0,-223r-77,0r0,41r-21,0r0,-61r233,0r0,61r-22,0r0,-41r-77,0r0,223r33,0r0,19r-102,0","w":240,"k":{"\u010d":28,"\u0107":28,"\u015f":26,"\u0161":26,"\u00c1":20,"\u00c2":20,"\u0153":28,"\u00c3":20,"\u00c0":20,"\u00f8":28,"\u00e6":28,"\u00f5":28,"\u00f6":28,"\u00f4":28,"\u00f2":28,"\u00f3":28,"\u00eb":28,"\u00ea":28,"\u00e8":28,"\u00e9":28,"\u00e7":28,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c4":20,"w":13,"s":26,"o":28,"e":28,"c":28,"a":28,"T":-7,"A":20,";":13,":":13,".":53,"-":46,",":53}},"U":{"d":"153,5v-76,0,-102,-31,-103,-109r0,-140r-33,0r0,-18r103,0r0,18r-34,0v8,92,-34,226,73,226v107,0,64,-134,73,-226r-33,0r0,-18r88,0r0,18r-33,0r0,140v-1,78,-24,109,-101,109","w":303,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"J":10,"A":11,";":13,":":13,".":33,"-":6,",":33}},"V":{"d":"63,-244r77,202r78,-202r-30,0r0,-18r77,0r0,18r-25,0r-94,244r-30,0r-93,-244r-27,0r0,-18r96,0r0,18r-29,0","w":259,"k":{"\u00fd":15,"\u00d2":6,"\u00d4":6,"\u00d3":6,"\u00c1":24,"\u00c2":24,"\u00ff":15,"\u0153":33,"\u0152":6,"\u00d5":6,"\u00c3":24,"\u00c0":24,"\u00f8":33,"\u00e6":33,"\u00d8":6,"\u00fc":23,"\u00fb":23,"\u00f9":23,"\u00fa":23,"\u00f5":33,"\u00f6":33,"\u00f4":33,"\u00f2":33,"\u00f3":33,"\u00eb":33,"\u00ea":33,"\u00e8":33,"\u00e9":33,"\u00e5":33,"\u00e3":33,"\u00e4":33,"\u00e2":33,"\u00e0":33,"\u00e1":33,"\u00d6":6,"\u00c4":24,"y":15,"u":23,"o":33,"i":6,"e":33,"a":33,"O":6,"A":24,";":36,":":36,".":63,"-":33,",":63}},"W":{"d":"274,0r-28,0r-61,-213r-60,213r-28,0r-69,-244r-26,0r0,-18r96,0r0,18r-33,0r55,194r59,-212r29,0r61,215r55,-197r-31,0r0,-18r76,0r0,18r-26,0","w":370,"k":{"\u00fd":8,"\u00c1":18,"\u00c2":18,"\u00ff":8,"\u0153":24,"\u00c3":18,"\u00c0":18,"\u00f8":24,"\u00e6":24,"\u00fc":15,"\u00fb":15,"\u00f9":15,"\u00fa":15,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e5":31,"\u00e3":31,"\u00e4":31,"\u00e2":31,"\u00e0":31,"\u00e1":31,"\u00c4":18,"y":8,"u":15,"r":16,"o":24,"i":6,"e":29,"a":31,"A":18,";":31,":":31,".":63,"-":26,",":63}},"X":{"d":"119,-112r-64,93r34,0r0,19r-87,0r0,-19r30,0r76,-110r-77,-115r-28,0r0,-18r104,0r0,18r-31,0r57,85r57,-85r-33,0r0,-18r86,0r0,18r-30,0r-69,101r82,124r29,0r0,19r-105,0r0,-19r32,0","w":256,"k":{"\u010c":6,"\u0106":6,"\u00d2":6,"\u00d4":6,"\u00d3":6,"\u00c1":13,"\u00c2":13,"\u0152":6,"\u00d5":6,"\u00c3":13,"\u00c0":13,"\u00d8":6,"\u00d6":6,"\u00c7":6,"\u00c4":13,"O":6,"C":6,"A":13,"-":13}},"Y":{"d":"68,0r0,-19r34,0r0,-94r-81,-131r-25,0r0,-18r98,0r0,18r-31,0r65,107r66,-107r-29,0r0,-18r76,0r0,18r-25,0r-79,128r0,97r34,0r0,19r-103,0","w":237,"k":{"\u010c":6,"\u0106":6,"\u00c1":28,"\u00c2":28,"\u0153":38,"\u00c3":28,"\u00c0":28,"\u00f8":31,"\u00e6":34,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":31,"\u00f6":31,"\u00f4":31,"\u00f2":31,"\u00f3":31,"\u00eb":31,"\u00ea":31,"\u00e8":31,"\u00e9":31,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c7":6,"\u00c4":28,"u":31,"o":31,"i":6,"e":31,"a":28,"C":6,"A":28,";":44,":":44,".":46,"-":40,",":46}},"Z":{"d":"16,0r0,-13r164,-228r-136,0r0,39r-22,0r0,-60r208,0r0,12r-164,228r149,0r0,-36r21,0r0,58r-220,0","w":250,"k":{".":6,",":6}},"[":{"d":"31,-274r82,0r0,19r-48,0r0,284r48,0r0,18r-82,0r0,-321","w":140},"\\":{"d":"28,-262r93,295r-28,0r-93,-295r28,0","w":121},"]":{"d":"110,-274r0,321r-82,0r0,-18r48,0r0,-284r-48,0r0,-19r82,0","w":140},"^":{"d":"168,-262r95,97r-26,0r-86,-67r-86,67r-27,0r96,-97r34,0","w":301},"_":{"d":"180,71r0,14r-180,0r0,-14r180,0","w":180},"`":{"d":"65,-288r45,67r-20,0r-60,-67r35,0","w":180},"a":{"d":"98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38","w":214},"b":{"d":"134,5v-31,0,-49,-12,-60,-34r0,29r-64,0r0,-19r31,0r0,-236r-31,0r0,-19r64,0r0,116v11,-22,29,-34,60,-34v49,0,78,44,78,98v0,54,-29,99,-78,99xm124,-172v-42,0,-50,40,-50,88v0,39,15,69,50,69v40,0,51,-34,51,-79v0,-45,-12,-78,-51,-78","w":230},"c":{"d":"109,-12v31,0,44,-16,50,-44r26,0v-9,38,-33,60,-77,61v-55,0,-90,-42,-90,-99v0,-88,93,-121,161,-81r0,48r-19,0v-4,-30,-18,-48,-51,-48v-40,0,-54,34,-53,81v0,47,12,82,53,82","w":201},"d":{"d":"96,-192v31,0,50,13,61,34r0,-97r-31,0r0,-19r63,0r0,255r31,0r0,19r-63,0r0,-29v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"e":{"d":"18,-94v0,-88,101,-128,154,-72v15,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-10,40,-35,62,-83,62v-55,1,-91,-42,-91,-99xm157,-109v5,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0","w":213},"f":{"d":"44,-187v-14,-79,51,-101,111,-78r0,36r-17,0v0,-17,-11,-27,-29,-27v-36,0,-33,33,-33,69r52,0r0,19r-52,0r0,149r42,0r0,19r-105,0r0,-19r31,0r0,-149r-31,0r0,-19r31,0","w":133,"k":{".":13,"-":13,",":13}},"g":{"d":"96,-192v31,0,50,13,61,34r0,-29r63,0r0,19r-31,0r0,164v8,82,-89,100,-153,71r0,-40r17,0v4,24,20,36,49,36v49,0,58,-39,55,-92v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"h":{"d":"122,-168v-62,0,-43,88,-46,149r28,0r0,19r-89,0r0,-19r29,0r0,-236r-31,0r0,-19r63,0r0,120v11,-23,28,-36,57,-38v80,-3,57,99,60,173r29,0r0,19r-89,0r0,-19r27,0v-6,-55,22,-150,-38,-149","w":231},"i":{"d":"55,-225v-11,0,-20,-9,-20,-20v0,-10,9,-21,20,-20v10,-1,21,10,20,20v0,11,-9,20,-20,20xm76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168","w":115},"j":{"d":"56,-225v-11,0,-20,-9,-20,-20v0,-10,9,-21,20,-20v10,-1,21,10,20,20v0,11,-9,20,-20,20xm13,63v24,0,30,-18,31,-45r0,-186r-31,0r0,-19r63,0r0,205v5,59,-67,76,-111,50r0,-38r17,0v2,21,10,33,31,33","w":111},"k":{"d":"103,0r-91,0r0,-19r29,0r0,-236r-31,0r0,-19r64,0r0,179r79,-73r-27,0r0,-19r84,0r0,19r-32,0r-55,51r71,98r27,0r0,19r-93,0r0,-19r27,0r-56,-76r-25,23r0,53r29,0r0,19","w":218,"k":{"-":6}},"l":{"d":"74,-19r30,0r0,19r-94,0r0,-19r31,0r0,-236r-31,0r0,-19r64,0r0,255","w":115},"m":{"d":"76,-154v14,-48,103,-50,111,4v10,-24,27,-41,57,-42v78,-3,54,100,58,173r30,0r0,19r-90,0r0,-19r28,0v-7,-54,22,-149,-36,-149v-60,0,-42,88,-45,149r28,0r0,19r-88,0r0,-19r28,0v-7,-54,22,-149,-36,-149v-60,0,-42,88,-45,149r28,0r0,19r-89,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33","w":341},"n":{"d":"122,-168v-62,1,-43,88,-46,149r28,0r0,19r-89,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33v11,-23,28,-36,57,-38v80,-3,57,99,60,173r29,0r0,19r-89,0r0,-19r27,0v-7,-55,23,-150,-38,-149","w":231},"o":{"d":"56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98","w":216,"k":{".":6}},"p":{"d":"124,-172v-42,0,-50,40,-50,88v0,39,15,69,50,69v40,0,51,-34,51,-79v0,-45,-12,-78,-51,-78xm134,5v-31,0,-49,-12,-60,-34r0,85r30,0r0,19r-94,0r0,-19r31,0r0,-224r-31,0r0,-19r64,0r0,29v11,-22,29,-34,60,-34v49,0,78,44,78,98v0,54,-29,99,-78,99","w":230},"q":{"d":"96,-192v31,0,50,13,61,34r0,-29r63,0r0,19r-31,0r0,224r31,0r0,19r-94,0r0,-19r31,0r0,-85v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"r":{"d":"76,-154v12,-34,55,-46,96,-33r0,47r-19,0v-1,-18,-9,-28,-27,-28v-65,-1,-48,86,-50,149r38,0r0,19r-99,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33","w":172,"k":{".":40,",":40}},"s":{"d":"166,-52v0,67,-98,66,-146,42r0,-44r19,0v1,29,20,40,50,42v36,3,58,-30,36,-52v-25,-25,-104,-20,-104,-73v0,-63,89,-64,135,-40r0,41r-18,0v5,-45,-84,-55,-87,-10v8,55,115,24,115,94","w":184},"t":{"d":"90,5v-81,4,-42,-106,-51,-173r-29,0r0,-19r29,0r0,-58r32,0r0,58r61,0r0,19r-61,0r0,119v1,27,1,37,22,37v18,0,24,-12,24,-32r25,0v-2,33,-17,47,-52,49","w":144},"u":{"d":"110,-19v62,0,43,-88,46,-149r-29,0r0,-19r61,0r0,168r30,0r0,19r-62,0r0,-33v-12,21,-27,37,-57,38v-80,3,-57,-99,-60,-173r-29,0r0,-19r61,0r0,109v1,40,5,59,39,59","w":231},"v":{"d":"89,0r-69,-168r-21,0r0,-19r86,0r0,19r-30,0r53,128r52,-128r-28,0r0,-19r70,0r0,19r-21,0r-68,168r-24,0","w":203,"k":{".":43,",":43}},"w":{"d":"173,-187r48,146r42,-127r-27,0r0,-19r67,0r0,19r-20,0r-56,168r-27,0r-46,-140r-46,140r-26,0r-55,-168r-21,0r0,-19r84,0r0,19r-30,0r42,127r48,-146r23,0","w":308,"k":{".":43,",":43}},"x":{"d":"105,-114r39,-54r-25,0r0,-19r72,0r0,19r-25,0r-50,69r58,80r25,0r0,19r-87,0r0,-19r24,0r-41,-56r-40,56r24,0r0,19r-71,0r0,-19r25,0r51,-71r-57,-78r-23,0r0,-19r84,0r0,19r-22,0","w":203,"k":{"-":6}},"y":{"d":"28,39v5,34,39,23,50,-5r12,-31r-70,-171r-21,0r0,-19r86,0r0,19r-30,0r53,128r52,-128r-28,0r0,-19r70,0r0,19r-21,0r-85,210v-9,37,-45,44,-84,33r0,-36r16,0","w":203,"k":{".":48,",":48}},"z":{"d":"14,0r0,-15r117,-153r-92,0r0,32r-19,0r0,-51r153,0r0,15r-117,153r102,0r0,-34r18,0r0,53r-162,0","w":189},"{":{"d":"92,-108v89,10,-16,169,92,148r0,19v-60,0,-85,-6,-84,-65v1,-51,8,-102,-55,-92r0,-19v60,9,57,-38,55,-92v-1,-59,24,-65,84,-65r0,19v-37,0,-52,1,-52,40v0,51,7,103,-40,107"},"|":{"d":"75,-275r0,360r-29,0r0,-360r29,0","w":121},"}":{"d":"129,-6v2,60,-24,65,-84,65r0,-19v37,0,52,-1,52,-40v0,-51,-8,-104,40,-108v-47,-5,-40,-55,-40,-107v0,-39,-15,-40,-52,-40r0,-19v59,0,85,5,84,65v-1,51,-8,102,55,92r0,19v-60,-9,-57,38,-55,92"},"~":{"d":"151,-128v42,19,84,15,112,-14r0,26v-30,28,-66,41,-114,18v-41,-19,-84,-14,-111,14r0,-27v31,-27,65,-40,113,-17","w":301},"\u00c4":{"d":"75,-311v0,-10,10,-20,21,-20v11,0,20,10,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm144,-311v0,-10,9,-20,20,-20v11,0,21,10,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"\u00fd":15,"\u00dd":15,"\u0178":15,"\u00ff":15,"y":15,"w":16,"v":15,"t":6,"f":6,"Y":15,"W":15,"V":18,"T":20}},"\u00c5":{"d":"129,-259v14,0,27,-13,27,-27v0,-14,-13,-27,-27,-27v-15,0,-26,11,-26,27v0,15,11,27,26,27xm72,-95r96,0r-48,-125xm129,-334v50,0,66,75,22,91r87,224r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0r0,-19r23,0r86,-224v-42,-17,-28,-91,22,-91","w":259},"\u00c7":{"d":"146,-14v42,0,65,-20,75,-55r33,0v-15,45,-49,76,-108,74v-80,-2,-124,-55,-126,-136v-2,-79,51,-137,129,-136v37,0,67,10,98,22r0,61r-20,0v-8,-43,-31,-64,-81,-64v-64,1,-86,48,-86,117v0,68,23,117,86,117xm136,48v33,1,21,-33,7,-48r17,0v29,20,31,69,-20,69v-11,0,-21,-2,-31,-4r0,-23v8,4,17,6,27,6","w":275,"k":{".":13,",":13}},"\u00c9":{"d":"143,-334r34,0r-46,47r-20,0xm20,0r0,-19r33,0r0,-225r-33,0r0,-18r211,0r0,58r-21,0r0,-37r-121,0r0,88r86,0r0,-33r22,0r0,87r-22,0r0,-32r-86,0r0,109r123,0r0,-36r22,0r0,58r-214,0","w":262,"k":{"-":-7}},"\u00d1":{"d":"216,-332v2,46,-52,46,-76,22v-13,-4,-23,5,-23,17r-17,0v-3,-40,44,-49,68,-25v13,8,34,5,31,-14r17,0xm18,0r0,-19r35,0r0,-225r-35,0r0,-18r67,0r157,207r0,-189r-35,0r0,-18r92,0r0,18r-35,0r0,249r-21,0r-168,-221r0,197r35,0r0,19r-92,0","w":315,"k":{";":13,":":13,".":23,",":23}},"\u00d6":{"d":"93,-311v0,-10,9,-20,20,-20v11,0,21,10,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm161,-311v0,-10,10,-20,21,-20v11,0,20,10,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00dc":{"d":"104,-311v0,-10,9,-20,20,-20v11,0,21,10,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm172,-311v1,-10,10,-20,21,-20v11,-1,20,10,20,20v1,12,-8,21,-20,21v-12,0,-21,-9,-21,-21xm153,5v-76,0,-102,-31,-103,-109r0,-140r-33,0r0,-18r103,0r0,18r-34,0v8,92,-34,226,73,226v107,0,64,-134,73,-226r-33,0r0,-18r88,0r0,18r-33,0r0,140v-1,78,-24,109,-101,109","w":303,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"J":10,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u00e1":{"d":"98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38xm124,-288r35,0r-59,66r-21,0","w":214},"\u00e0":{"d":"98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38xm75,-288r45,67r-20,0r-60,-67r35,0","w":214},"\u00e2":{"d":"85,-288r30,0r41,66r-20,0r-36,-46r-36,46r-20,0xm98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38","w":214},"\u00e4":{"d":"98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38xm45,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm114,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":214},"\u00e3":{"d":"158,-280v6,49,-45,64,-69,30v-13,-16,-32,-1,-30,20r-17,0v-6,-49,44,-63,69,-29v12,17,32,1,30,-21r17,0xm98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38","w":214},"\u00e5":{"d":"100,-316v26,0,48,22,48,48v0,26,-22,48,-48,48v-26,0,-48,-22,-48,-48v0,-26,22,-48,48,-48xm100,-241v15,0,27,-12,27,-27v0,-14,-11,-26,-27,-26v-16,0,-27,11,-27,26v0,15,12,27,27,27xm98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38","w":214},"\u00e7":{"d":"109,-12v31,0,44,-16,50,-44r26,0v-9,38,-33,60,-77,61v-55,0,-90,-42,-90,-99v0,-88,93,-121,161,-81r0,48r-19,0v-4,-30,-18,-48,-51,-48v-40,0,-54,34,-53,81v0,47,12,82,53,82xm96,48v33,1,21,-33,7,-48r17,0v29,20,31,69,-20,69v-11,0,-21,-2,-31,-4r0,-23v8,4,17,6,27,6","w":201},"\u00e9":{"d":"18,-94v0,-88,101,-128,154,-72v15,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-10,40,-35,62,-83,62v-55,1,-91,-42,-91,-99xm157,-109v5,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0xm131,-288r35,0r-59,66r-21,0","w":213},"\u00e8":{"d":"18,-94v0,-88,101,-128,154,-72v15,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-10,40,-35,62,-83,62v-55,1,-91,-42,-91,-99xm157,-109v5,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0xm82,-288r45,67r-20,0r-60,-67r35,0","w":213},"\u00ea":{"d":"92,-288r29,0r42,66r-21,0r-35,-46r-36,46r-21,0xm18,-94v0,-88,101,-128,154,-72v15,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-10,40,-35,62,-83,62v-55,1,-91,-42,-91,-99xm157,-109v5,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0","w":213},"\u00eb":{"d":"18,-94v0,-88,101,-128,154,-72v15,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-10,40,-35,62,-83,62v-55,1,-91,-42,-91,-99xm157,-109v5,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0xm52,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm121,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":213},"\u00ed":{"d":"76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168xm82,-288r35,0r-59,66r-21,0","w":115},"\u00ec":{"d":"76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168xm33,-288r45,67r-20,0r-60,-67r35,0","w":115},"\u00ee":{"d":"43,-288r29,0r42,66r-21,0r-35,-46r-36,46r-20,0xm76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168","w":115},"\u00ef":{"d":"76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168xm3,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm72,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":115},"\u00f1":{"d":"174,-280v6,49,-45,64,-69,30v-13,-16,-32,-1,-30,20r-17,0v-6,-50,44,-63,69,-29v12,17,32,1,30,-21r17,0xm122,-168v-62,1,-43,88,-46,149r28,0r0,19r-89,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33v11,-23,28,-36,57,-38v80,-3,57,99,60,173r29,0r0,19r-89,0r0,-19r27,0v-7,-55,23,-150,-38,-149","w":231},"\u00f3":{"d":"56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98xm132,-288r35,0r-59,66r-21,0","w":216,"k":{".":6}},"\u00f2":{"d":"56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98xm83,-288r45,67r-20,0r-60,-67r35,0","w":216,"k":{".":6}},"\u00f4":{"d":"94,-288r29,0r41,66r-20,0r-36,-46r-35,46r-21,0xm56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98","w":216,"k":{".":6}},"\u00f6":{"d":"56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98xm53,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm122,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":216,"k":{".":6}},"\u00f5":{"d":"166,-280v6,49,-43,63,-68,30v-12,-16,-33,-2,-31,20r-17,0v-5,-48,44,-64,69,-29v12,17,32,1,30,-21r17,0xm56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98","w":216,"k":{".":6}},"\u00fa":{"d":"110,-19v62,0,43,-88,46,-149r-29,0r0,-19r61,0r0,168r30,0r0,19r-62,0r0,-33v-12,21,-27,37,-57,38v-80,3,-57,-99,-60,-173r-29,0r0,-19r61,0r0,109v1,40,5,59,39,59xm127,-288r35,0r-59,66r-21,0","w":231},"\u00f9":{"d":"110,-19v62,0,43,-88,46,-149r-29,0r0,-19r61,0r0,168r30,0r0,19r-62,0r0,-33v-12,21,-27,37,-57,38v-80,3,-57,-99,-60,-173r-29,0r0,-19r61,0r0,109v1,40,5,59,39,59xm78,-288r45,67r-20,0r-60,-67r35,0","w":231},"\u00fb":{"d":"88,-288r29,0r42,66r-21,0r-35,-46r-36,46r-20,0xm110,-19v62,0,43,-88,46,-149r-29,0r0,-19r61,0r0,168r30,0r0,19r-62,0r0,-33v-12,21,-27,37,-57,38v-80,3,-57,-99,-60,-173r-29,0r0,-19r61,0r0,109v1,40,5,59,39,59","w":231},"\u00fc":{"d":"110,-19v62,0,43,-88,46,-149r-29,0r0,-19r61,0r0,168r30,0r0,19r-62,0r0,-33v-12,21,-27,37,-57,38v-80,3,-57,-99,-60,-173r-29,0r0,-19r61,0r0,109v1,40,5,59,39,59xm48,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm117,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":231},"\u00b0":{"d":"122,-211v0,-17,-14,-32,-32,-32v-18,0,-32,15,-32,32v0,18,14,31,32,31v17,0,32,-14,32,-31xm34,-211v0,-31,25,-57,56,-56v34,2,55,22,56,56v1,29,-26,55,-56,55v-31,0,-56,-24,-56,-55","w":180},"\u00a2":{"d":"111,-174v-64,5,-62,157,0,161r0,-161xm128,-13v23,-3,36,-19,40,-43r26,0v-8,35,-29,56,-66,61r0,47r-17,0r0,-47v-52,-3,-84,-43,-84,-99v0,-55,33,-95,84,-98r0,-46r17,0r0,46v23,2,43,8,60,17r0,48r-19,0v-3,-26,-15,-45,-41,-47r0,161"},"\u00a3":{"d":"58,-194v-6,-72,77,-85,136,-64r0,43r-19,0v-1,-22,-16,-35,-38,-35v-51,0,-44,57,-44,108r73,0r0,19r-73,0r0,102r84,0r0,-40r21,0r0,61r-174,0r0,-19r34,0r0,-104r-34,0r0,-19r34,0r0,-52"},"\u00a7":{"d":"109,-74v13,8,26,-15,26,-30v-8,-35,-28,-35,-68,-61v-43,34,-17,56,42,91xm28,-216v-2,-54,76,-60,118,-41r0,35r-16,0v0,-17,-16,-27,-35,-27v-22,0,-38,12,-37,32v3,38,110,54,106,107v-2,28,-16,38,-39,47v17,11,26,21,27,46v2,55,-81,60,-124,41r0,-36r16,0v1,20,14,28,38,28v23,0,40,-11,40,-32v0,-43,-110,-55,-106,-110v2,-25,17,-40,40,-46v-16,-10,-27,-21,-28,-44","w":180},"\u00b6":{"d":"28,-188v0,-45,35,-74,83,-74r95,0r0,18r-21,0r0,279r-19,0r0,-279r-40,0r0,279r-19,0r0,-149v-46,-3,-80,-27,-79,-74"},"\u00df":{"d":"143,-110v-55,-21,-36,-103,22,-103v-1,-27,-18,-43,-47,-43v-31,0,-44,16,-44,47r0,209r-64,0r0,-19r31,0r0,-189v-6,-67,94,-83,135,-47v13,12,20,30,21,55v-48,-8,-79,41,-36,66v32,19,62,34,64,77v2,61,-84,76,-132,49r0,-41r19,0v0,23,15,35,38,37v36,3,53,-38,35,-65v-6,-10,-28,-24,-42,-33","w":240},"\u00ae":{"d":"208,-166v0,-27,-24,-27,-51,-26r0,53v27,1,51,1,51,-27xm235,-165v0,21,-13,30,-34,32v24,9,28,39,41,59r14,0r0,12r-34,0v-19,-24,-16,-72,-65,-65r0,53r15,0r0,12r-56,0r0,-12r15,0r0,-118r-15,0r0,-12v50,2,120,-14,119,39xm292,-130v0,-69,-44,-113,-112,-113v-68,0,-112,46,-112,113v0,67,45,112,112,112v67,0,112,-45,112,-112xm50,-130v0,-79,52,-131,130,-131v78,0,130,52,130,131v0,79,-52,130,-130,130v-78,0,-130,-51,-130,-130","w":360},"\u00a9":{"d":"180,-67v24,0,37,-13,41,-34r21,0v-6,29,-27,48,-62,48v-44,1,-72,-33,-72,-77v0,-71,73,-96,129,-65r0,38r-15,0v-3,-24,-15,-36,-41,-37v-33,0,-42,27,-42,64v0,36,9,62,41,63xm50,-130v0,-79,52,-131,130,-131v78,0,130,52,130,131v0,79,-52,130,-130,130v-78,0,-130,-51,-130,-130xm292,-130v0,-69,-44,-113,-112,-113v-68,0,-112,46,-112,113v0,67,45,112,112,112v67,0,112,-45,112,-112","w":360},"\u00b4":{"d":"114,-288r35,0r-59,66r-21,0","w":180},"\u00a8":{"d":"35,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm104,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":180},"\u00c6":{"d":"75,-95r86,0r0,-149r-18,0xm127,0r0,-19r34,0r0,-57r-95,0r-26,57r28,0r0,19r-74,0r0,-19r23,0r104,-225r-38,0r0,-18r256,0r0,58r-22,0r0,-37r-121,0r0,88r87,0r0,-33r21,0r0,87r-21,0r0,-32r-87,0r0,109r124,0r0,-36r22,0r0,58r-215,0","w":360,"k":{"-":-7}},"\u00d8":{"d":"148,-248v-89,0,-103,110,-76,186r141,-156v-14,-19,-33,-30,-65,-30xm148,-14v89,5,101,-111,75,-187r-142,156v15,19,35,29,67,31xm148,-267v37,0,63,11,84,29r31,-34r14,12r-32,36v64,79,19,229,-97,229v-38,0,-63,-12,-85,-30r-32,35r-13,-12r32,-36v-18,-24,-29,-53,-30,-93v-1,-78,52,-136,128,-136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00b1":{"d":"165,-226r0,69r98,0r0,29r-98,0r0,68r-28,0r0,-68r-99,0r0,-29r99,0r0,-69r28,0xm38,-28r225,0r0,28r-225,0r0,-28","w":301},"\u00a5":{"d":"63,0r0,-19r34,0r0,-64r-71,0r0,-19r71,0v1,-18,-10,-24,-15,-36r-56,0r0,-18r46,0r-50,-88r-25,0r0,-18r97,0r0,18r-30,0r60,107r60,-107r-30,0r0,-18r76,0r0,18r-25,0r-50,88r48,0r0,18r-58,0v-5,11,-15,17,-13,36r71,0r0,19r-71,0r0,64r34,0r0,19r-103,0"},"\u00b5":{"d":"158,-33v-10,31,-58,52,-84,25r0,64r30,0r0,19r-94,0r0,-19r31,0r0,-224r-29,0r0,-19r62,0r0,109v0,40,4,59,38,59v62,0,43,-88,46,-149r-28,0r0,-19r60,0r0,169r31,0r0,18r-63,0r0,-33","w":233},"\u00aa":{"d":"33,-257v42,-18,114,-15,114,43r0,66r14,0r0,15r-40,0r0,-14v-24,29,-102,22,-99,-25v3,-41,51,-46,99,-43v3,-27,-14,-40,-39,-39v-20,0,-32,8,-35,25r-14,0r0,-28xm86,-144v30,1,39,-24,35,-57v-33,0,-71,-4,-70,28v0,19,15,29,35,29xm29,-112r123,0r0,18r-123,0r0,-18","w":171},"\u00ba":{"d":"47,-198v0,32,10,55,38,55v28,0,37,-23,37,-55v-1,-32,-9,-56,-37,-56v-29,0,-38,24,-38,56xm153,-198v0,40,-26,68,-68,68v-42,0,-69,-27,-68,-68v0,-41,26,-69,68,-69v41,0,68,29,68,69xm24,-112r121,0r0,18r-121,0r0,-18","w":169},"\u00e6":{"d":"98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm317,-57v-5,71,-118,79,-155,31v-32,45,-144,44,-144,-30v0,-58,61,-65,125,-61v3,-37,-13,-58,-48,-58v-27,0,-42,11,-46,35r-17,0r0,-38v41,-19,113,-21,133,17v24,-38,103,-41,132,-5v14,18,23,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0xm282,-109v6,-57,-52,-86,-85,-49v-9,11,-14,27,-16,49r101,0","w":338},"\u00f8":{"d":"108,-175v-52,-1,-59,72,-47,123r87,-103v-8,-13,-21,-19,-40,-20xm108,-12v53,1,60,-73,48,-125r-87,104v9,13,20,20,39,21xm18,-94v0,-81,87,-124,146,-80r25,-29r13,11r-26,30v48,55,17,174,-68,167v-24,-2,-41,-8,-56,-19r-25,31r-14,-12r27,-31v-14,-16,-22,-38,-22,-68","w":216,"k":{".":6}},"\u00bf":{"d":"113,-268v14,0,23,11,24,24v1,13,-11,23,-24,23v-12,0,-23,-11,-23,-23v0,-12,11,-24,23,-24xm110,-13v28,1,46,-19,49,-44r17,0r0,45v-54,32,-155,19,-152,-53v2,-50,33,-72,79,-83r0,-45r21,0r0,58v-37,8,-62,29,-62,70v0,32,18,52,48,52","w":193},"\u00a1":{"d":"72,-221v-14,0,-23,-11,-23,-23v0,-13,9,-24,23,-24v12,0,24,12,24,24v0,13,-11,23,-24,23xm50,0r12,-144r0,-45r21,0v-1,68,8,126,12,189r-45,0","w":144},"\u00ac":{"d":"38,-152r225,0r0,102r-28,0r0,-73r-197,0r0,-29","w":301},"\u00ab":{"d":"187,-186r0,20r-53,61r53,60r0,20r-83,-73r0,-15xm110,-186r0,20r-52,61r52,60r0,20r-82,-73r0,-15","w":220},"\u00bb":{"d":"110,-186r83,73r0,15r-83,73r0,-20r52,-60r-52,-61r0,-20xm34,-186r82,73r0,15r-82,73r0,-20r52,-60r-52,-61r0,-20","w":220},"\u00a0":{},"\u00c0":{"d":"118,-334r32,47r-21,0r-46,-47r35,0xm72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"\u00fd":15,"\u00dd":15,"\u0178":15,"\u00ff":15,"y":15,"w":16,"v":15,"t":6,"f":6,"Y":15,"W":15,"V":18,"T":20}},"\u00c3":{"d":"188,-332v4,46,-52,45,-76,22v-13,-4,-23,5,-23,17r-17,0v-3,-41,43,-46,69,-25v11,9,33,4,30,-14r17,0xm72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"\u00fd":15,"\u00dd":15,"\u0178":15,"\u00ff":15,"y":15,"w":16,"v":15,"t":6,"f":6,"Y":15,"W":15,"V":18,"T":20}},"\u00d5":{"d":"206,-332v2,46,-52,46,-76,22v-13,-4,-23,5,-23,17r-17,0v-3,-40,44,-49,68,-25v13,8,33,4,31,-14r17,0xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u0152":{"d":"61,-132v0,82,49,122,139,113r0,-225v-89,-7,-139,28,-139,112xm21,-132v0,-84,57,-130,144,-130r213,0r0,58r-22,0r0,-37r-121,0r0,88r87,0r0,-33r21,0r0,87r-21,0r0,-32r-87,0r0,109r124,0r0,-36r22,0r0,58r-216,0v-87,1,-144,-47,-144,-132","w":409,"k":{"-":-7}},"\u0153":{"d":"56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm180,-158v23,-40,104,-46,135,-8v14,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-6,71,-121,80,-155,28v-15,20,-39,34,-72,34v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v33,0,57,14,72,34xm300,-109v6,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0","w":355},"\u00f7":{"d":"151,-155v-14,0,-24,-9,-24,-23v-1,-13,11,-23,24,-23v11,0,23,12,23,23v0,12,-11,23,-23,23xm151,-24v-14,0,-23,-11,-24,-24v-1,-13,11,-23,24,-23v12,0,23,11,23,23v0,12,-11,24,-23,24xm38,-127r225,0r0,28r-225,0r0,-28","w":301},"\u00ff":{"d":"28,39v5,34,39,23,50,-5r12,-31r-70,-171r-21,0r0,-19r86,0r0,19r-30,0r53,128r52,-128r-28,0r0,-19r70,0r0,19r-21,0r-85,210v-9,37,-45,44,-84,33r0,-36r16,0xm47,-255v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20xm116,-255v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20","w":203,"k":{".":48,",":48}},"\u0178":{"d":"64,-311v0,-10,10,-20,21,-20v11,0,20,10,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm133,-311v0,-10,9,-20,20,-20v11,0,20,10,20,20v1,12,-8,21,-20,21v-12,0,-21,-9,-20,-21xm68,0r0,-19r34,0r0,-94r-81,-131r-25,0r0,-18r98,0r0,18r-31,0r65,107r66,-107r-29,0r0,-18r76,0r0,18r-25,0r-79,128r0,97r34,0r0,19r-103,0","w":237,"k":{"\u010c":6,"\u0106":6,"\u00c1":28,"\u00c2":28,"\u0153":38,"\u00c3":28,"\u00c0":28,"\u00f8":31,"\u00e6":34,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":31,"\u00f6":31,"\u00f4":31,"\u00f2":31,"\u00f3":31,"\u00eb":31,"\u00ea":31,"\u00e8":31,"\u00e9":31,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c7":6,"\u00c4":28,"u":31,"o":31,"i":6,"e":31,"a":28,"C":6,"A":28,";":44,":":44,".":46,"-":40,",":46}},"\u00a4":{"d":"158,-53v-20,20,-66,19,-87,1r-36,36r-17,-17r36,-36v-17,-23,-18,-65,1,-87r-36,-36r16,-17r37,37v20,-21,64,-20,86,-1r37,-37r17,17r-37,37v19,21,20,65,0,86r36,37r-17,16xm115,-66v26,0,47,-22,47,-47v0,-25,-22,-47,-47,-47v-25,0,-47,21,-47,47v0,26,21,47,47,47"},"\u00b7":{"d":"57,-102v-13,0,-24,-9,-24,-23v0,-13,11,-24,24,-23v12,-2,23,12,23,23v0,12,-11,23,-23,23","w":114},"\u00c2":{"d":"114,-334r31,0r41,47v-32,3,-38,-19,-56,-29v-18,10,-24,32,-56,29xm72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"\u00fd":15,"\u00dd":15,"\u0178":15,"\u00ff":15,"y":15,"w":16,"v":15,"t":6,"f":6,"Y":15,"W":15,"V":18,"T":20}},"\u00ca":{"d":"116,-334r31,0r41,47v-32,4,-39,-18,-57,-29v-18,11,-24,33,-56,29xm20,0r0,-19r33,0r0,-225r-33,0r0,-18r211,0r0,58r-21,0r0,-37r-121,0r0,88r86,0r0,-33r22,0r0,87r-22,0r0,-32r-86,0r0,109r123,0r0,-36r22,0r0,58r-214,0","w":262,"k":{"-":-7}},"\u00c1":{"d":"141,-334r35,0r-46,47r-21,0xm72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"\u00fd":15,"\u00dd":15,"\u0178":15,"\u00ff":15,"y":15,"w":16,"v":15,"t":6,"f":6,"Y":15,"W":15,"V":18,"T":20}},"\u00cb":{"d":"77,-311v0,-10,9,-20,20,-20v11,0,21,10,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm145,-311v0,-10,10,-20,21,-20v11,0,20,10,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm20,0r0,-19r33,0r0,-225r-33,0r0,-18r211,0r0,58r-21,0r0,-37r-121,0r0,88r86,0r0,-33r22,0r0,87r-22,0r0,-32r-86,0r0,109r123,0r0,-36r22,0r0,58r-214,0","w":262,"k":{"-":-7}},"\u00c8":{"d":"119,-334r32,47r-20,0r-46,-47r34,0xm20,0r0,-19r33,0r0,-225r-33,0r0,-18r211,0r0,58r-21,0r0,-37r-121,0r0,88r86,0r0,-33r22,0r0,87r-22,0r0,-32r-86,0r0,109r123,0r0,-36r22,0r0,58r-214,0","w":262,"k":{"-":-7}},"\u00cd":{"d":"82,-334r35,0r-46,47r-21,0xm89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"\u00ce":{"d":"56,-334r31,0r40,47v-32,3,-38,-19,-56,-29v-18,11,-24,33,-56,29xm89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"\u00cf":{"d":"17,-311v0,-10,9,-20,20,-20v11,0,21,10,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm85,-311v0,-10,10,-20,21,-20v11,0,20,10,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"\u00cc":{"d":"59,-334r32,47r-20,0r-46,-47r34,0xm89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"\u00d3":{"d":"159,-334r34,0r-46,47r-20,0xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00d4":{"d":"132,-334r31,0r41,47v-32,4,-38,-18,-56,-29v-18,10,-24,32,-56,29xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00d2":{"d":"135,-334r33,47r-21,0r-46,-47r34,0xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00da":{"d":"170,-334r34,0r-46,47r-20,0xm153,5v-76,0,-102,-31,-103,-109r0,-140r-33,0r0,-18r103,0r0,18r-34,0v8,92,-34,226,73,226v107,0,64,-134,73,-226r-33,0r0,-18r88,0r0,18r-33,0r0,140v-1,78,-24,109,-101,109","w":303,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"J":10,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u00db":{"d":"143,-334r31,0r41,47v-32,4,-38,-18,-56,-29v-18,10,-24,32,-56,29xm153,5v-76,0,-102,-31,-103,-109r0,-140r-33,0r0,-18r103,0r0,18r-34,0v8,92,-34,226,73,226v107,0,64,-134,73,-226r-33,0r0,-18r88,0r0,18r-33,0r0,140v-1,78,-24,109,-101,109","w":303,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"J":10,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u00d9":{"d":"146,-334r33,47r-21,0r-46,-47r34,0xm153,5v-76,0,-102,-31,-103,-109r0,-140r-33,0r0,-18r103,0r0,18r-34,0v8,92,-34,226,73,226v107,0,64,-134,73,-226r-33,0r0,-18r88,0r0,18r-33,0r0,140v-1,78,-24,109,-101,109","w":303,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"J":10,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u0131":{"d":"76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168","w":115},"\u00af":{"d":"37,-268r106,0r0,26r-106,0r0,-26","w":180},"\u00b8":{"d":"78,48v33,1,21,-33,7,-48r17,0v29,20,31,69,-20,69v-11,0,-21,-2,-31,-4r0,-23v8,4,17,6,27,6","w":180},"\u0141":{"d":"22,0r0,-19r33,0r0,-84r-28,20r-12,-16r40,-29r0,-116r-33,0r0,-18r102,0r0,18r-34,0r0,91r54,-40r13,17r-67,48r0,106r121,0r0,-44r21,0r0,66r-210,0","w":240,"k":{"\u00fd":6,"\u00dd":36,"\u00d9":6,"\u00db":6,"\u00da":6,"\u0178":36,"\u00ff":6,"\u00dc":6,"y":6,"Y":36,"W":31,"V":43,"U":6,"T":29}},"\u0142":{"d":"75,-19r31,0r0,19r-94,0r0,-19r31,0r0,-101r-24,17r-11,-15r35,-25r0,-112r-31,0r0,-19r63,0r0,109r26,-17r11,15r-37,24r0,124","w":116},"\u0160":{"d":"108,-287r-41,-47v32,-4,38,18,56,29v18,-10,24,-32,56,-29r-40,47r-31,0xm220,-72v0,91,-123,88,-187,59r0,-59r21,0v1,41,24,58,67,58v52,0,81,-40,54,-77v-41,-35,-145,-25,-145,-106v0,-82,112,-79,177,-55r0,56r-20,0v-4,-39,-24,-48,-66,-52v-48,-4,-74,44,-46,73v35,36,145,24,145,103","w":246,"k":{"\u015e":6,"\u0160":6,"S":6,".":13,"-":-13,",":13}},"\u0161":{"d":"78,-222r-42,-66r21,0r35,46r36,-46r21,0r-42,66r-29,0xm166,-52v0,67,-98,66,-146,42r0,-44r19,0v1,29,20,40,50,42v36,3,58,-30,36,-52v-25,-25,-104,-20,-104,-73v0,-63,89,-64,135,-40r0,41r-18,0v5,-45,-84,-55,-87,-10v8,55,115,24,115,94","w":184},"\u017d":{"d":"110,-287r-41,-47v32,-4,38,18,56,29v18,-10,24,-32,56,-29r-40,47r-31,0xm16,0r0,-13r164,-228r-136,0r0,39r-22,0r0,-60r208,0r0,12r-164,228r149,0r0,-36r21,0r0,58r-220,0","w":250,"k":{".":6,",":6}},"\u017e":{"d":"80,-222r-41,-66r20,0r36,46r36,-46r20,0r-41,66r-30,0xm14,0r0,-15r117,-153r-92,0r0,32r-19,0r0,-51r153,0r0,15r-117,153r102,0r0,-34r18,0r0,53r-162,0","w":189},"\u00a6":{"d":"75,-72r0,134r-29,0r0,-134r29,0xm75,-252r0,134r-29,0r0,-134r29,0","w":121},"\u00d0":{"d":"229,-131v0,-84,-49,-121,-139,-113r0,96r59,0r0,22r-59,0r0,107v89,7,139,-28,139,-112xm270,-131v0,84,-57,132,-144,131r-104,0r0,-19r33,0r0,-107r-35,0r0,-22r35,0r0,-96r-33,0r0,-18r104,0v88,-1,144,46,144,131","w":290,"k":{"\u00dd":6,"\u00c1":6,"\u00c2":6,"\u0178":6,"\u00c3":6,"\u00c0":6,"\u00c4":6,"Y":6,"V":6,"A":6,".":13,"-":-13,",":13}},"\u00f0":{"d":"108,-12v65,2,62,-106,36,-151v-56,-12,-91,13,-88,74v2,43,14,76,52,77xm47,-274v30,6,53,19,74,34r57,-27r6,14r-50,23v36,34,64,76,65,136v1,57,-35,99,-91,99v-53,0,-90,-41,-90,-96v0,-64,50,-105,118,-90v-7,-14,-14,-27,-25,-38r-57,26r-7,-13r52,-24v-14,-13,-33,-22,-55,-28","w":216,"k":{".":6}},"\u00dd":{"d":"130,-334r35,0r-47,47r-20,0xm68,0r0,-19r34,0r0,-94r-81,-131r-25,0r0,-18r98,0r0,18r-31,0r65,107r66,-107r-29,0r0,-18r76,0r0,18r-25,0r-79,128r0,97r34,0r0,19r-103,0","w":237,"k":{"\u010c":6,"\u0106":6,"\u00c1":28,"\u00c2":28,"\u0153":38,"\u00c3":28,"\u00c0":28,"\u00f8":31,"\u00e6":34,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":31,"\u00f6":31,"\u00f4":31,"\u00f2":31,"\u00f3":31,"\u00eb":31,"\u00ea":31,"\u00e8":31,"\u00e9":31,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c7":6,"\u00c4":28,"u":31,"o":31,"i":6,"e":31,"a":28,"C":6,"A":28,";":44,":":44,".":46,"-":40,",":46}},"\u00fd":{"d":"28,39v5,34,39,23,50,-5r12,-31r-70,-171r-21,0r0,-19r86,0r0,19r-30,0r53,128r52,-128r-28,0r0,-19r70,0r0,19r-21,0r-85,210v-9,37,-45,44,-84,33r0,-36r16,0xm126,-288r35,0r-59,66r-21,0","w":203,"k":{".":48,",":48}},"\u00de":{"d":"189,-131v0,-54,-45,-60,-100,-56r0,111v54,3,100,0,100,-55xm229,-131v0,68,-66,80,-140,74r0,38r41,0r0,19r-110,0r0,-19r33,0r0,-225r-33,0r0,-18r110,0r0,18r-41,0r0,39v74,-6,140,6,140,74","w":243,"k":{".":60,"-":-7,",":60}},"\u00fe":{"d":"124,-172v-42,0,-50,40,-50,88v0,39,15,69,50,69v40,0,51,-34,51,-79v0,-45,-12,-78,-51,-78xm134,5v-31,0,-49,-12,-60,-34r0,85r30,0r0,19r-94,0r0,-19r31,0r0,-311r-31,0r0,-19r64,0r0,116v11,-22,29,-34,60,-34v49,0,78,44,78,98v0,54,-29,99,-78,99","w":230,"k":{".":18,",":6}},"\u00d7":{"d":"252,-194r-81,81r81,81r-20,20r-81,-81r-81,81r-20,-20r81,-81r-81,-81r20,-20r81,81r81,-81","w":301},"\u00b9":{"d":"31,-117r0,-15r30,0r0,-112r-35,19r0,-17v20,-8,31,-24,60,-22r0,132r30,0r0,15r-85,0","w":144},"\u00b2":{"d":"62,-254v-18,0,-31,8,-32,26r-12,0r0,-28v34,-19,103,-15,102,30v0,30,-56,70,-79,93r68,0r0,-19r13,0r0,35r-106,0r0,-14v26,-29,73,-45,78,-91v2,-20,-13,-32,-32,-32","w":144},"\u00b3":{"d":"65,-254v-19,-1,-29,6,-31,22r-12,0r0,-26v32,-13,98,-17,97,27v0,19,-15,31,-35,33v25,4,41,16,42,42v1,48,-74,48,-108,31r0,-30r12,1v1,18,14,26,34,26v21,0,35,-9,35,-30v0,-25,-17,-35,-45,-33v1,-5,-3,-15,4,-13v21,0,35,-6,35,-26v0,-17,-11,-24,-28,-24","w":144},"\u00bc":{"d":"284,-53r0,-72r-54,72r54,0xm334,0r-76,0r0,-15r26,0r0,-24r-70,0r0,-15r70,-93r25,0r0,94r29,0r0,14r-29,0r0,24r25,0r0,15xm244,-267r26,0r-165,272r-27,0xm31,-117r0,-15r30,0r0,-112r-35,19r0,-17v20,-8,31,-24,60,-22r0,132r30,0r0,15r-85,0","w":348},"\u00bd":{"d":"244,-267r26,0r-165,272r-27,0xm31,-117r0,-15r30,0r0,-112r-35,19r0,-17v20,-8,31,-24,60,-22r0,132r30,0r0,15r-85,0xm266,-137v-18,0,-31,8,-32,26r-12,0r0,-28v34,-19,103,-15,102,30v0,30,-56,70,-79,93r68,0r0,-19r13,0r0,35r-106,0r0,-14v26,-29,73,-45,78,-91v2,-20,-13,-32,-32,-32","w":348},"\u00be":{"d":"284,-53r0,-72r-54,72r54,0xm334,0r-76,0r0,-15r26,0r0,-24r-70,0r0,-15r70,-93r25,0r0,94r29,0r0,14r-29,0r0,24r25,0r0,15xm244,-267r26,0r-165,272r-27,0xm65,-254v-19,-1,-29,6,-31,22r-12,0r0,-26v32,-13,98,-17,97,27v0,19,-15,31,-35,33v25,4,41,16,42,42v1,48,-74,48,-108,31r0,-30r12,1v1,18,14,26,34,26v21,0,35,-9,35,-30v0,-25,-17,-35,-45,-33v1,-5,-3,-15,4,-13v21,0,35,-6,35,-26v0,-17,-11,-24,-28,-24","w":348},"\u011e":{"d":"199,-334v-4,55,-107,55,-110,0r17,0v6,26,70,26,76,0r17,0xm153,-267v37,1,67,9,97,21r0,62r-20,0v-7,-43,-31,-64,-80,-64v-66,0,-90,46,-90,117v0,71,25,117,91,117v29,0,53,-7,73,-19r0,-68r-50,0r0,-19r85,0r0,98v-30,16,-64,27,-108,27v-80,1,-131,-56,-131,-136v0,-80,53,-138,133,-136","w":287,"k":{"\u00dd":6,"\u0178":6,"Y":6,".":13,"-":-7,",":13}},"\u011f":{"d":"170,-283v5,50,-63,64,-94,38v-9,-8,-15,-21,-16,-38r17,0v1,36,75,36,76,0r17,0xm96,-192v31,0,50,13,61,34r0,-29r63,0r0,19r-31,0r0,164v8,82,-89,100,-153,71r0,-40r17,0v4,24,20,36,49,36v49,0,58,-39,55,-92v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"\u0130":{"d":"51,-311v0,-10,9,-21,20,-21v11,0,21,10,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20xm89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"\u015e":{"d":"220,-72v0,91,-123,88,-187,59r0,-59r21,0v1,41,24,58,67,58v52,0,81,-40,54,-77v-41,-35,-145,-25,-145,-106v0,-82,112,-79,177,-55r0,56r-20,0v-4,-39,-24,-48,-66,-52v-48,-4,-74,44,-46,73v35,36,145,24,145,103xm111,48v33,1,21,-33,7,-48r17,0v29,20,31,69,-20,69v-11,0,-21,-2,-31,-4r0,-23v8,4,17,6,27,6","w":246,"k":{"\u015e":6,"\u0160":6,"S":6,".":13,"-":-13,",":13}},"\u015f":{"d":"166,-52v0,67,-98,66,-146,42r0,-44r19,0v1,29,20,40,50,42v36,3,58,-30,36,-52v-25,-25,-104,-20,-104,-73v0,-63,89,-64,135,-40r0,41r-18,0v5,-45,-84,-55,-87,-10v8,55,115,24,115,94xm80,48v33,1,21,-33,7,-48r17,0v29,20,31,69,-20,69v-11,0,-21,-2,-31,-4r0,-23v8,4,17,6,27,6","w":184},"\u0106":{"d":"155,-334r35,0r-46,47r-21,0xm146,-14v42,0,65,-20,75,-55r33,0v-15,45,-49,76,-108,74v-80,-2,-124,-55,-126,-136v-2,-79,51,-137,129,-136v37,0,67,10,98,22r0,61r-20,0v-8,-43,-31,-64,-81,-64v-64,1,-86,48,-86,117v0,68,23,117,86,117","w":275,"k":{".":13,",":13}},"\u0107":{"d":"109,-12v31,0,44,-16,50,-44r26,0v-9,38,-33,60,-77,61v-55,0,-90,-42,-90,-99v0,-88,93,-121,161,-81r0,48r-19,0v-4,-30,-18,-48,-51,-48v-40,0,-54,34,-53,81v0,47,12,82,53,82xm131,-288r35,0r-59,66r-21,0","w":201},"\u010c":{"d":"129,-287r-41,-47v32,-4,38,18,56,29v18,-10,24,-32,56,-29r-40,47r-31,0xm146,-14v42,0,65,-20,75,-55r33,0v-15,45,-49,76,-108,74v-80,-2,-124,-55,-126,-136v-2,-79,51,-137,129,-136v37,0,67,10,98,22r0,61r-20,0v-8,-43,-31,-64,-81,-64v-64,1,-86,48,-86,117v0,68,23,117,86,117","w":275,"k":{".":13,",":13}},"\u010d":{"d":"92,-222r-42,-66r21,0r36,46r35,-46r21,0r-42,66r-29,0xm109,-12v31,0,44,-16,50,-44r26,0v-9,38,-33,60,-77,61v-55,0,-90,-42,-90,-99v0,-88,93,-121,161,-81r0,48r-19,0v-4,-30,-18,-48,-51,-48v-40,0,-54,34,-53,81v0,47,12,82,53,82","w":201},"\u0111":{"d":"96,-192v31,0,50,13,61,34r0,-58r-58,0r0,-18r58,0r0,-21r-31,0r0,-19r63,0r0,40r31,0r0,18r-31,0r0,197r31,0r0,19r-63,0r0,-29v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"\u00ad":{"d":"16,-110r90,0r0,27r-90,0r0,-27","w":121},"\u20ac":{"d":"125,-12v32,0,47,-25,51,-57r24,0v-8,42,-34,74,-79,74v-52,0,-80,-48,-89,-100r-33,0r8,-18r23,0r0,-36r-31,0r8,-19r25,0v9,-52,36,-98,89,-99v32,0,50,10,74,23r0,60r-18,0v2,-55,-58,-90,-90,-45v-10,14,-17,34,-19,61r89,0r-8,19r-82,0r0,36r66,0r-8,18r-57,0v5,44,17,83,57,83"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Bitstream Vera is a trademark of Bitstream, Inc.
 * 
 * Manufacturer:
 * Bitstream Inc.
 * 
 * Vendor URL:
 * http://www.bitstream.com
 */
Cufon.registerFont({"w":250,"face":{"font-family":"Bitstream Vera Serif","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 8 3 5 6 5 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-27 -338 409 85","underline-thickness":"42.1875","underline-position":"-17.0508","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":125},"!":{"d":"79,5v-17,0,-33,-15,-33,-33v0,-18,16,-34,33,-34v17,0,33,17,33,34v0,17,-16,33,-33,33xm46,-262r66,0v-7,61,-21,113,-21,181r-24,0v0,-68,-15,-120,-21,-181","w":158},"\"":{"d":"76,-262r0,97r-42,0r0,-97r42,0xm153,-262r0,97r-41,0r0,-97r41,0","w":187},"#":{"d":"180,-153r-46,0r-13,48r47,0xm160,-258r-17,67r47,0r17,-67r39,0r-17,67r48,0r0,38r-58,0r-12,48r50,0r0,38r-59,0r-17,67r-39,0r17,-67r-46,0r-17,67r-39,0r16,-67r-49,0r0,-38r58,0r12,-48r-49,0r0,-38r59,0r17,-67r39,0","w":301},"$":{"d":"114,5v-30,0,-55,-7,-80,-15r0,-52r21,0v4,32,22,48,59,47r0,-71v-48,-11,-82,-23,-82,-72v0,-45,34,-68,82,-69r0,-47r21,0r0,47v28,2,52,7,73,16r0,48r-21,0v-4,-26,-22,-44,-52,-44r0,65v53,13,86,24,86,77v0,47,-36,69,-86,70r0,48r-21,0r0,-48xm114,-207v-26,0,-44,28,-25,47v5,5,13,10,25,13r0,-60xm135,-15v31,2,47,-30,28,-51v-6,-6,-15,-10,-28,-14r0,65"},"%":{"d":"78,-142v30,2,22,-71,16,-95v-2,-8,-8,-12,-16,-12v-22,0,-21,24,-21,53v0,31,-1,52,21,54xm9,-196v0,-46,24,-71,69,-71v45,0,69,26,69,71v0,46,-25,72,-69,72v-44,0,-69,-26,-69,-72xm238,-267r30,0r-164,272r-30,0xm195,-67v0,-45,25,-71,69,-71v44,0,69,25,69,71v0,47,-24,72,-69,72v-45,0,-69,-26,-69,-72xm264,-13v31,3,20,-71,17,-95v-3,-8,-9,-12,-17,-12v-22,0,-21,24,-21,53v0,31,-1,52,21,54","w":342},"&":{"d":"284,-140v-4,34,-14,60,-32,81r37,38r30,0r0,21r-85,0r-22,-23v-55,49,-204,35,-198,-56v2,-45,26,-67,63,-84v-9,-14,-18,-25,-18,-43v0,-67,97,-68,162,-53r0,55r-23,0v5,-49,-77,-57,-80,-11v14,47,85,97,117,138v14,-16,22,-35,24,-63r-32,0r0,-21r88,0r0,21r-31,0xm96,-144v-45,48,-4,147,74,117v9,-3,16,-7,25,-13","w":325},"'":{"d":"76,-262r0,97r-42,0r0,-97r42,0","w":110},"(":{"d":"152,-252v-74,38,-73,249,0,287r0,21v-72,-28,-118,-73,-118,-165v0,-91,46,-137,118,-165r0,22","w":170},")":{"d":"18,-274v72,28,118,73,118,165v0,92,-47,138,-118,165r0,-21v42,-27,52,-70,52,-144v0,-73,-10,-116,-52,-143r0,-22","w":170},"*":{"d":"180,-213r-63,29r63,30r-17,28r-58,-42r5,68r-32,0r5,-68r-58,42r-17,-28r63,-30r-63,-29r17,-28r58,43r-5,-69r32,0r-5,69r58,-43","w":188},"+":{"d":"171,-226r0,93r92,0r0,40r-92,0r0,93r-40,0r0,-93r-93,0r0,-40r93,0r0,-93r40,0","w":301},",":{"d":"5,35v25,-20,38,-45,35,-91v16,1,36,-2,50,1v0,58,-26,91,-66,114","w":125},"-":{"d":"20,-120r110,0r0,47r-110,0r0,-47","w":149,"k":{"\u00dd":40,"\u0178":40,"Y":40,"X":26,"W":20,"V":26,"T":60}},".":{"d":"63,5v-17,0,-34,-16,-34,-33v0,-17,17,-34,34,-34v17,0,33,17,33,34v0,17,-16,33,-33,33","w":125},"\/":{"d":"92,-262r39,0r-92,295r-39,0","w":131},"0":{"d":"125,-247v-45,10,-36,40,-36,116v0,75,-9,105,36,116v45,-10,37,-42,37,-116v0,-75,8,-105,-37,-116xm234,-131v0,82,-34,136,-109,136v-75,0,-108,-55,-108,-136v0,-81,33,-136,108,-136v75,0,109,54,109,136"},"1":{"d":"49,0r0,-21r50,0r0,-213r-55,33r0,-26r66,-40r55,0r0,246r50,0r0,21r-166,0"},"2":{"d":"97,-247v-31,1,-46,19,-50,49r-21,0r0,-56v71,-24,196,-21,191,64v-3,53,-29,66,-74,96r-73,48r124,0r0,-31r24,0r0,77r-194,0r0,-43v52,-42,122,-64,122,-141v0,-36,-14,-64,-49,-63"},"3":{"d":"100,-247v-29,0,-44,19,-48,45r-21,0r0,-53v66,-19,185,-25,186,53v-1,36,-24,54,-58,59v43,7,68,25,68,72v1,86,-130,87,-202,62r0,-58r21,0v2,32,21,51,54,52v35,0,56,-22,56,-57v0,-42,-25,-63,-70,-60r0,-21v38,2,62,-12,61,-48v0,-30,-17,-46,-47,-46"},"4":{"d":"230,0r-145,0r0,-21r39,0r0,-48r-109,0r0,-20r110,-178r66,0r0,175r45,0r0,23r-45,0r0,48r39,0r0,21xm124,-92r0,-127r-78,127r78,0"},"5":{"d":"102,-155v-21,0,-33,9,-43,22r-18,0r0,-129r162,0r0,46r-140,0r0,57v58,-42,160,-7,160,73v0,94,-116,106,-193,77r0,-58r21,0v1,34,16,52,50,52v38,0,51,-29,51,-71v0,-40,-12,-69,-50,-69"},"6":{"d":"196,-210v-4,-43,-74,-48,-93,-15v-8,14,-14,37,-14,69v54,-41,147,-8,142,70v-4,59,-38,91,-99,91v-77,1,-109,-48,-109,-128v0,-91,37,-143,122,-144v27,0,49,4,72,10r0,47r-21,0xm128,-153v-47,-4,-37,93,-26,122v4,10,14,16,26,16v31,0,33,-28,33,-69v0,-41,-1,-66,-33,-69"},"7":{"d":"221,-218r-109,218r-35,0r105,-213r-129,0r0,36r-25,0r0,-85r193,0r0,44"},"8":{"d":"223,-199v0,35,-24,52,-56,59v39,5,64,28,64,70v-1,54,-45,75,-106,75v-61,0,-105,-20,-106,-75v0,-41,25,-65,63,-70v-32,-7,-55,-24,-55,-59v0,-50,42,-68,98,-68v57,0,98,19,98,68xm125,-150v27,0,30,-17,30,-48v0,-32,-3,-49,-30,-49v-27,0,-30,17,-30,49v0,31,3,48,30,48xm125,-15v31,0,36,-20,36,-58v-1,-37,-4,-56,-36,-56v-32,0,-36,19,-36,56v0,38,4,58,36,58"},"9":{"d":"123,-109v46,4,36,-92,26,-122v-3,-11,-14,-16,-26,-16v-32,0,-34,28,-34,69v0,41,3,66,34,69xm54,-52v5,42,75,49,94,15v8,-14,14,-38,14,-70v-53,42,-142,11,-142,-69v0,-60,36,-91,98,-91v76,0,110,49,110,128v0,90,-37,143,-122,144v-26,-1,-48,-4,-73,-10r0,-47r21,0"},":":{"d":"66,-110v-18,0,-33,-15,-33,-33v-1,-17,15,-33,33,-33v18,0,34,16,34,33v0,18,-17,33,-34,33xm66,5v-17,0,-33,-16,-33,-33v0,-17,16,-34,33,-34v17,0,34,17,34,34v0,17,-17,33,-34,33","w":132},";":{"d":"66,-110v-18,0,-33,-15,-33,-33v-1,-17,15,-33,33,-33v18,0,34,16,34,33v0,18,-17,33,-34,33xm9,33v25,-20,38,-46,36,-91r50,0v0,59,-26,93,-66,116","w":132},"<":{"d":"263,-172r-172,59r172,59r0,42r-225,-81r0,-40r225,-81r0,42","w":301},"=":{"d":"38,-93r225,0r0,40r-225,0r0,-40xm38,-173r225,0r0,40r-225,0r0,-40","w":301},">":{"d":"38,-172r0,-42r225,81r0,40r-225,81r0,-42r172,-59","w":301},"?":{"d":"94,5v-17,0,-34,-16,-34,-33v0,-17,17,-34,34,-34v17,0,33,17,33,34v0,17,-16,33,-33,33xm86,-247v-28,-1,-39,19,-41,46r-22,0r0,-54v68,-22,175,-20,172,63v-2,51,-36,76,-89,79r0,36r-25,0r0,-52v30,-10,48,-29,48,-67v0,-31,-13,-51,-43,-51","w":210},"@":{"d":"184,-38v30,0,40,-29,40,-64v0,-28,-14,-50,-40,-50v-52,1,-52,114,0,114xm335,-119v3,66,-42,105,-111,103r0,-26v-33,51,-133,20,-121,-53v-11,-73,86,-106,121,-54r0,-22r38,0r0,131v33,-9,53,-37,53,-79v0,-71,-53,-112,-124,-112v-84,0,-131,55,-131,136v0,80,48,135,129,135v32,0,58,-9,80,-23r10,16v-27,17,-58,30,-97,30v-97,0,-158,-61,-158,-158v0,-98,61,-158,161,-158v90,0,147,49,150,134","w":360},"A":{"d":"-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"\u00fd":15,"\u00dd":18,"\u0178":18,"\u00ff":15,"y":15,"w":15,"v":15,"t":6,"f":6,"Y":18,"W":18,"V":26,"T":20}},"B":{"d":"284,-76v0,107,-162,69,-267,76r0,-21r33,0r0,-220r-33,0r0,-21v95,8,252,-32,252,64v0,37,-28,51,-66,55v45,3,81,24,81,67xm201,-198v0,-41,-38,-45,-83,-43r0,88v45,2,83,-3,83,-45xm209,-76v0,-50,-39,-59,-91,-56r0,111v52,2,91,-6,91,-55","w":304,"k":{"\u010c":-7,"\u0106":-7,"\u011e":-7,"\u00dd":6,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u0178":6,"\u0152":-7,"\u00d5":-7,"\u00d8":-7,"\u00d6":-7,"\u00c7":-7,"Y":6,"O":-7,"G":-7,"C":-7,"-":-7}},"C":{"d":"166,-16v39,0,58,-24,67,-59r35,0v-13,52,-46,79,-109,80v-85,0,-144,-51,-144,-136v0,-85,58,-137,144,-136v39,0,70,9,102,22r0,65r-22,0v-9,-40,-29,-66,-73,-66v-60,0,-76,48,-76,115v0,68,15,115,76,115","w":286,"k":{".":6,",":6}},"D":{"d":"222,-131v0,-78,-24,-117,-104,-110r0,220v78,6,104,-32,104,-110xm297,-131v0,88,-55,132,-145,131r-135,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0v91,-1,145,43,145,131","w":312,"k":{"V":6,".":13,"-":-7,",":13}},"E":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r236,0r0,61r-24,0r0,-37r-111,0r0,84r69,0r0,-34r24,0r0,91r-24,0r0,-33r-69,0r0,106r114,0r0,-38r24,0r0,62r-239,0","w":274,"k":{"-":-7}},"F":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r234,0r0,61r-24,0r0,-37r-109,0r0,84r67,0r0,-34r24,0r0,91r-24,0r0,-33r-67,0r0,109r42,0r0,21r-143,0","w":255,"k":{"\u00c1":21,"\u00c2":21,"\u0153":20,"\u00c3":21,"\u00c0":21,"\u00f8":20,"\u00e6":20,"\u00fc":6,"\u00fb":6,"\u00f9":6,"\u00fa":6,"\u00f5":20,"\u00f6":20,"\u00f4":20,"\u00f2":20,"\u00f3":20,"\u00eb":20,"\u00ea":20,"\u00e8":20,"\u00e9":20,"\u00e5":20,"\u00e3":20,"\u00e4":20,"\u00e2":20,"\u00e0":20,"\u00e1":20,"\u00c4":21,"u":6,"r":6,"o":20,"e":20,"a":20,"A":21,";":13,":":13,".":36,"-":16,",":36}},"G":{"d":"160,-267v43,0,77,8,110,22r0,65r-22,0v-10,-43,-30,-66,-79,-66v-62,0,-80,44,-79,115v1,68,15,115,76,115v21,0,36,-6,50,-14r0,-72r-32,0r0,-21r95,0r0,101v-36,16,-72,26,-119,27v-87,1,-145,-51,-145,-136v0,-85,58,-137,145,-136","w":307,"k":{".":13,"-":-7,",":13}},"H":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,88r105,0r0,-88r-34,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0r0,-21r34,0r0,-108r-105,0r0,108r34,0r0,21r-135,0","w":340},"I":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"J":{"d":"123,-7v9,83,-86,95,-149,70r0,-41r22,0v1,20,9,32,28,32v30,0,30,-25,31,-63r0,-232r-38,0r0,-21r140,0r0,21r-34,0r0,234","w":170,"k":{";":15,":":15,".":28,",":15}},"K":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,96r111,-96r-28,0r0,-21r98,0r0,21r-35,0r-94,81r128,139r26,0r0,21r-89,0r-117,-127r0,106r34,0r0,21r-135,0","w":312,"k":{"\u010c":10,"\u0106":10,"\u00fd":16,"\u00dd":10,"\u00d9":13,"\u00db":13,"\u00da":13,"\u00d2":10,"\u00d4":10,"\u00d3":10,"\u00c1":15,"\u00c2":15,"\u0178":10,"\u00ff":16,"\u0153":8,"\u0152":10,"\u00d5":10,"\u00c3":15,"\u00c0":15,"\u00f8":6,"\u00d8":10,"\u00fc":8,"\u00fb":8,"\u00f9":8,"\u00fa":8,"\u00f5":8,"\u00f6":8,"\u00f4":8,"\u00f2":8,"\u00f3":8,"\u00eb":8,"\u00ea":8,"\u00e8":8,"\u00e9":8,"\u00dc":13,"\u00d6":10,"\u00c7":10,"\u00c4":15,"y":16,"u":8,"o":8,"e":8,"Y":10,"W":13,"U":13,"O":10,"C":10,"A":15,"-":26}},"L":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,217r103,0r0,-42r24,0r0,66r-228,0","w":253,"k":{"\u00fd":13,"\u00dd":23,"\u00d9":20,"\u00db":20,"\u00da":20,"\u0178":23,"\u00ff":13,"\u00dc":20,"y":13,"Y":23,"W":24,"V":43,"U":20,"T":29}},"M":{"d":"15,0r0,-21r34,0r0,-220r-34,0r0,-21r108,0r75,168r76,-168r108,0r0,21r-34,0r0,220r34,0r0,21r-135,0r0,-21r33,0r0,-200r-81,183r-45,0r-81,-183r0,200r34,0r0,21r-92,0","w":398},"N":{"d":"16,0r0,-21r33,0r0,-220r-33,0r0,-21r82,0r158,185r0,-164r-33,0r0,-21r92,0r0,21r-34,0r0,241r-46,0r-161,-190r0,169r34,0r0,21r-92,0","w":329,"k":{";":13,":":13,".":23,",":23}},"O":{"d":"90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"P":{"d":"262,-186v0,67,-68,84,-144,77r0,88r42,0r0,21r-143,0r0,-21r33,0r0,-220r-33,0r0,-21v102,4,245,-26,245,76xm188,-186v0,-39,-26,-60,-70,-55r0,111v44,5,70,-16,70,-56","w":270,"k":{"\u00c1":26,"\u00c2":26,"\u0153":10,"\u00c3":26,"\u00c0":26,"\u00f8":10,"\u00e6":10,"\u00f5":10,"\u00f6":10,"\u00f4":10,"\u00f2":10,"\u00f3":10,"\u00eb":10,"\u00ea":10,"\u00e8":10,"\u00e9":10,"\u00e5":10,"\u00e3":10,"\u00e4":10,"\u00e2":10,"\u00e0":10,"\u00e1":10,"\u00c4":26,"o":10,"e":10,"a":10,"A":26,";":13,":":13,".":60,"-":20,",":46}},"Q":{"d":"187,3v14,15,36,19,66,19r0,43v-53,1,-79,-21,-97,-60v-85,-1,-141,-50,-141,-136v0,-85,55,-136,142,-136v86,0,142,50,141,136v0,77,-42,124,-111,134xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115","w":313,"k":{".":18,"-":-13,",":18}},"R":{"d":"262,-192v0,41,-30,59,-71,64v52,10,57,70,83,107r27,0r0,21r-86,0v-20,-34,-39,-84,-63,-111v-7,-8,-20,-6,-34,-6r0,96r34,0r0,21r-135,0r0,-21r33,0r0,-220r-33,0r0,-21v98,6,245,-29,245,70xm192,-190v0,-42,-29,-55,-74,-51r0,102v45,4,74,-9,74,-51","w":299,"k":{"\u00fd":6,"\u00dd":11,"\u0178":11,"\u00ff":6,"\u00f8":-7,"\u00e6":-8,"\u00e5":-8,"\u00e3":-8,"\u00e4":-8,"\u00e2":-8,"\u00e0":-8,"\u00e1":-8,"y":6,"a":-8,"Y":11,"W":8,"V":13,"T":6}},"S":{"d":"238,-76v0,97,-138,92,-210,63r0,-62r22,0v6,39,33,56,77,59v44,3,69,-35,46,-66v-46,-31,-149,-16,-149,-103v0,-95,122,-91,198,-67r0,58r-22,0v-8,-36,-30,-48,-72,-52v-42,-4,-68,35,-43,61v24,25,116,25,137,56v9,14,16,30,16,53","w":259,"k":{"\u015e":8,"\u0160":8,"S":8,".":13,"-":-13,",":13}},"T":{"d":"65,0r0,-21r35,0r0,-217r-72,0r0,41r-24,0r0,-65r260,0r0,65r-24,0r0,-41r-72,0r0,217r35,0r0,21r-138,0","w":267,"k":{"\u010d":41,"\u0107":41,"\u015f":33,"\u00fd":40,"\u0161":33,"\u00c1":20,"\u00c2":20,"\u00ff":40,"\u0153":28,"\u00c3":20,"\u00c0":20,"\u00bb":26,"\u00ab":26,"\u00f8":28,"\u00e6":28,"\u00fc":33,"\u00fb":33,"\u00f9":33,"\u00fa":33,"\u00f5":41,"\u00f6":41,"\u00f4":41,"\u00f2":41,"\u00f3":41,"\u00eb":41,"\u00ea":41,"\u00e8":41,"\u00e9":41,"\u00e7":41,"\u00e5":34,"\u00e3":34,"\u00e4":34,"\u00e2":34,"\u00e0":34,"\u00e1":34,"\u00c4":20,"y":40,"w":40,"u":33,"s":33,"r":26,"o":41,"e":41,"c":41,"a":34,"T":13,"A":20,";":13,":":13,".":46,"-":60,",":40}},"U":{"d":"159,5v-82,0,-113,-30,-113,-112r0,-134r-34,0r0,-21r135,0r0,21r-33,0v8,87,-33,219,67,219v99,0,58,-132,67,-219r-33,0r0,-21r91,0r0,21r-34,0r0,135v-1,81,-30,111,-113,111","w":313,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"A":11,";":13,":":13,".":33,"-":6,",":33}},"V":{"d":"284,-262r0,21r-22,0r-99,241r-41,0r-99,-241r-25,0r0,-21r123,0r0,21r-26,0r71,174r72,-174r-32,0r0,-21r78,0","w":279,"k":{"\u00fd":15,"\u00d2":6,"\u00d4":6,"\u00d3":6,"\u00c1":28,"\u00c2":28,"\u00ff":15,"\u0153":33,"\u0152":6,"\u00d5":6,"\u00c3":28,"\u00c0":28,"\u00f8":33,"\u00e6":33,"\u00d8":6,"\u00fc":23,"\u00fb":23,"\u00f9":23,"\u00fa":23,"\u00f5":33,"\u00f6":33,"\u00f4":33,"\u00f2":33,"\u00f3":33,"\u00eb":33,"\u00ea":33,"\u00e8":33,"\u00e9":33,"\u00e5":33,"\u00e3":33,"\u00e4":33,"\u00e2":33,"\u00e0":33,"\u00e1":33,"\u00d6":6,"\u00c4":28,"y":15,"u":23,"o":33,"i":6,"e":33,"a":33,"O":6,"A":28,";":36,":":36,".":63,"-":26,",":63}},"W":{"d":"307,0r-46,0r-59,-191r-59,191r-46,0r-75,-241r-25,0r0,-21r124,0r0,21r-28,0r50,161r57,-182r50,0r57,185r52,-164r-32,0r0,-21r82,0r0,21r-27,0","w":404,"k":{"\u00fd":8,"\u00c1":23,"\u00c2":23,"\u00ff":8,"\u0153":29,"\u00c3":23,"\u00c0":23,"\u00f8":29,"\u00e6":24,"\u00fc":15,"\u00fb":15,"\u00f9":15,"\u00fa":15,"\u00f5":29,"\u00f6":29,"\u00f4":29,"\u00f2":29,"\u00f3":29,"\u00eb":29,"\u00ea":29,"\u00e8":29,"\u00e9":29,"\u00e5":31,"\u00e3":31,"\u00e4":31,"\u00e2":31,"\u00e0":31,"\u00e1":31,"\u00c4":23,"y":8,"u":15,"r":16,"o":29,"i":6,"e":29,"a":31,"A":23,";":24,":":24,".":56,"-":20,",":56}},"X":{"d":"122,-101r-55,80r33,0r0,21r-93,0r0,-21r32,0r69,-101r-82,-119r-24,0r0,-21r130,0r0,21r-29,0r51,74r50,-74r-30,0r0,-21r91,0r0,21r-32,0r-65,94r86,126r25,0r0,21r-131,0r0,-21r29,0","w":279,"k":{"\u010c":6,"\u0106":6,"\u00d2":6,"\u00d4":6,"\u00d3":6,"\u00c1":13,"\u00c2":13,"\u0152":6,"\u00d5":6,"\u00c3":13,"\u00c0":13,"\u00d8":6,"\u00d6":6,"\u00c7":6,"\u00c4":13,"O":6,"C":6,"A":13,"-":13}},"Y":{"d":"62,0r0,-21r35,0r0,-88r-78,-132r-22,0r0,-21r126,0r0,21r-29,0r59,100r58,-100r-26,0r0,-21r75,0r0,21r-22,0r-73,123r0,97r36,0r0,21r-139,0","w":256,"k":{"\u010c":6,"\u0106":6,"\u00c1":23,"\u00c2":23,"\u0153":31,"\u00c3":23,"\u00c0":23,"\u00f8":31,"\u00e6":28,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":31,"\u00f6":31,"\u00f4":31,"\u00f2":31,"\u00f3":31,"\u00eb":31,"\u00ea":31,"\u00e8":31,"\u00e9":31,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c7":6,"\u00c4":23,"u":31,"o":31,"i":6,"e":31,"a":28,"C":6,"A":23,";":44,":":44,".":46,"-":36,",":46}},"Z":{"d":"13,0r0,-25r157,-213r-126,0r0,39r-24,0r0,-63r228,0r0,24r-155,214r133,0r0,-37r24,0r0,61r-237,0","w":262,"k":{".":6,",":6}},"[":{"d":"45,-274r100,0r0,22r-38,0r0,278r38,0r0,21r-100,0r0,-321","w":170},"\\":{"d":"39,-262r92,295r-39,0r-92,-295r39,0","w":131},"]":{"d":"125,-274r0,321r-100,0r0,-21r38,0r0,-278r-38,0r0,-22r100,0","w":170},"^":{"d":"171,-262r94,97r-37,0r-77,-55r-77,55r-38,0r96,-97r39,0","w":301},"_":{"d":"180,52r0,33r-180,0r0,-33r180,0","w":180},"`":{"d":"74,-288r45,66r-29,0r-65,-66r49,0","w":180},"a":{"d":"29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35","w":233},"b":{"d":"152,5v-28,0,-46,-10,-55,-29r0,24r-89,0r0,-21r27,0r0,-231r-27,0r0,-22r89,0r0,111v9,-19,27,-29,55,-29v56,-1,85,41,85,98v0,57,-29,100,-85,99xm133,-165v-35,0,-37,40,-36,81v0,36,7,62,36,62v34,0,34,-28,34,-72v0,-44,0,-71,-34,-71","w":251},"c":{"d":"130,-15v27,1,41,-18,44,-43r29,0v-8,42,-35,62,-83,63v-65,0,-105,-35,-105,-99v0,-96,105,-116,182,-83r0,52r-20,0v-4,-29,-15,-47,-45,-47v-42,1,-48,29,-48,78v0,48,6,77,46,79","w":219},"d":{"d":"119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72xm100,-192v28,0,45,11,55,29r0,-89r-27,0r0,-22r89,0r0,253r26,0r0,21r-88,0r0,-24v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98","w":251},"e":{"d":"114,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm15,-94v0,-94,116,-126,171,-71v17,18,26,45,27,80v-42,2,-92,-4,-129,2v1,42,8,67,46,68v29,0,45,-16,49,-42r29,0v-10,43,-39,62,-93,62v-64,1,-100,-35,-100,-99","w":229},"f":{"d":"39,-187v-14,-86,68,-98,135,-80r0,40r-19,0v-2,-17,-9,-26,-27,-27v-31,-1,-27,35,-27,67r47,0r0,21r-47,0r0,145r36,0r0,21r-125,0r0,-21r27,0r0,-145r-28,0r0,-21r28,0","w":154,"k":{".":13,"-":13,",":8}},"g":{"d":"100,-192v28,0,45,11,55,29r0,-24r88,0r0,21r-26,0r0,164v3,85,-112,95,-185,70r0,-44r20,0v4,25,20,36,50,36v49,0,55,-32,53,-84v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98xm119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72","w":251},"h":{"d":"137,-163v-54,0,-31,89,-36,142r23,0r0,21r-112,0r0,-21r27,0r0,-231r-28,0r0,-22r90,0r0,114v28,-53,126,-40,126,41r0,98r26,0r0,21r-111,0r0,-21r23,0r0,-100v-1,-27,-4,-42,-28,-42","w":261},"i":{"d":"67,-206v-17,-1,-34,-15,-34,-34v0,-17,17,-34,34,-34v17,0,33,16,33,34v0,18,-16,35,-33,34xm101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166","w":136},"j":{"d":"65,-206v-17,-1,-34,-15,-34,-34v0,-17,16,-34,34,-34v17,0,34,17,34,34v0,17,-17,35,-34,34xm15,60v22,0,23,-14,23,-38r0,-188r-26,0r0,-21r89,0r0,209v2,59,-75,66,-128,51r0,-40r20,1v1,17,5,26,22,26","w":130},"k":{"d":"125,0r-113,0r0,-21r27,0r0,-231r-27,0r0,-22r89,0r0,176r75,-68r-22,0r0,-21r85,0r0,21r-34,0r-48,44r78,101r21,0r0,21r-108,0r0,-21r22,0r-52,-67r-17,16r0,51r24,0r0,21","w":249,"k":{"-":15}},"l":{"d":"101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-231r-27,0r0,-22r89,0r0,253","w":136},"m":{"d":"101,-160v18,-42,105,-44,117,4v16,-20,32,-35,64,-36v81,-4,62,95,64,171r27,0r0,21r-112,0r0,-21r23,0r0,-89v-2,-36,1,-53,-26,-53v-52,0,-29,89,-34,142r22,0r0,21r-107,0r0,-21r22,0r0,-89v-1,-37,2,-53,-25,-53v-54,0,-30,89,-35,142r22,0r0,21r-111,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,27","w":380},"n":{"d":"137,-163v-54,0,-31,89,-36,142r23,0r0,21r-112,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,27v28,-53,126,-40,126,41r0,98r26,0r0,21r-111,0r0,-21r23,0r0,-100v-1,-27,-4,-42,-28,-42","w":261},"o":{"d":"120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98","w":240,"k":{".":6}},"p":{"d":"133,-165v-35,0,-37,40,-36,81v0,36,7,62,36,62v34,0,34,-28,34,-72v0,-44,0,-71,-34,-71xm152,5v-28,0,-46,-10,-55,-29r0,78r29,0r0,21r-118,0r0,-21r27,0r0,-220r-27,0r0,-21r89,0r0,24v9,-19,27,-29,55,-29v56,-1,85,41,85,98v0,57,-29,100,-85,99","w":251},"q":{"d":"100,-192v28,0,45,11,55,29r0,-24r88,0r0,21r-26,0r0,220r26,0r0,21r-117,0r0,-21r29,0r0,-78v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98xm119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72","w":251},"r":{"d":"101,-154v12,-34,49,-43,92,-35r0,56r-20,0v-1,-19,-10,-30,-28,-30v-55,0,-43,83,-44,142r34,0r0,21r-123,0r0,-21r27,0r0,-145r-29,0r0,-21r91,0r0,33","w":189,"k":{".":33,",":26}},"s":{"d":"188,-57v0,76,-107,66,-171,52r0,-53r20,0v3,28,21,41,51,43v31,2,49,-21,33,-43v-35,-21,-106,-15,-106,-74v0,-73,103,-65,163,-49r0,47r-20,0v-2,-27,-20,-34,-48,-38v-40,-5,-53,40,-12,48v45,8,90,16,90,67","w":202},"t":{"d":"102,5v-98,0,-58,-96,-66,-171r-27,0r0,-21r27,0r0,-58r62,0r0,58r52,0r0,21r-52,0r0,115v1,25,-1,36,18,36v18,0,22,-11,22,-31r27,0v-3,39,-19,51,-63,51","w":166},"u":{"d":"124,-24v55,0,30,-89,36,-142r-22,0r0,-21r85,0r0,166r26,0r0,21r-89,0r0,-26v-13,20,-29,31,-61,31v-81,0,-62,-95,-64,-171r-27,0r0,-21r89,0r0,109v2,37,-1,54,27,54","w":261},"v":{"d":"80,0r-66,-166r-21,0r0,-21r108,0r0,21r-23,0r47,119r47,-119r-24,0r0,-21r70,0r0,21r-21,0r-67,166r-50,0","w":209,"k":{".":36,",":29}},"w":{"d":"194,-187r43,125r35,-104r-25,0r0,-21r70,0r0,21r-22,0r-56,166r-43,0r-40,-117r-40,117r-42,0r-57,-166r-20,0r0,-21r106,0r0,21r-22,0r34,101r42,-122r37,0","w":309,"k":{".":36,",":29}},"x":{"d":"126,-119r33,-47r-23,0r0,-21r73,0r0,21r-25,0r-47,67r55,78r25,0r0,21r-119,0r0,-21r24,0r-35,-49r-35,49r25,0r0,21r-77,0r0,-21r27,0r49,-70r-53,-75r-21,0r0,-21r114,0r0,21r-23,0","w":214,"k":{"-":6}},"y":{"d":"37,34v-3,25,27,33,43,20v6,-4,12,-19,17,-30r-82,-190r-20,0r0,-21r108,0r0,21r-22,0r47,111r44,-111r-24,0r0,-21r70,0r0,21r-23,0r-83,208v-10,40,-55,45,-94,30r0,-39","w":209,"k":{".":41,",":34}},"z":{"d":"13,0r0,-21r107,-145r-81,0r0,32r-21,0r0,-53r174,0r0,21r-107,145r86,0r0,-34r21,0r0,55r-179,0","w":204},"{":{"d":"147,-50v2,39,-12,93,34,87r18,0r0,22v-68,0,-118,5,-114,-65v3,-51,7,-101,-55,-91r0,-21v60,9,58,-38,55,-91v-4,-70,45,-65,114,-65r0,22v-35,-2,-52,2,-52,40v0,50,6,100,-40,104v30,9,39,19,40,58","w":231},"|":{"d":"84,-275r0,360r-38,0r0,-360r38,0","w":130},"}":{"d":"147,-6v4,70,-45,65,-114,65r0,-22v35,2,53,-3,52,-40v-1,-51,-7,-101,40,-105v-47,-4,-40,-53,-40,-104v0,-37,-16,-42,-52,-40r0,-22v68,0,117,-5,114,65v-2,50,-8,101,54,91r0,21v-59,-9,-57,37,-54,91","w":231},"~":{"d":"204,-121v25,-1,42,-11,59,-25r0,36v-28,29,-70,39,-114,18v-44,-21,-80,-14,-111,12r0,-36v19,-16,37,-28,67,-29v25,-1,75,25,99,24","w":301},"\u00c4":{"d":"97,-287v-14,0,-27,-11,-27,-25v0,-14,13,-26,27,-26v13,0,25,13,25,26v1,14,-11,25,-25,25xm175,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"\u00fd":15,"\u00dd":18,"\u0178":18,"\u00ff":15,"y":15,"w":15,"v":15,"t":6,"f":6,"Y":18,"W":18,"V":26,"T":20}},"\u00c5":{"d":"139,-307v-12,0,-24,11,-24,23v0,12,12,23,24,23v11,0,23,-12,23,-23v0,-11,-12,-23,-23,-23xm139,-334v48,0,67,69,28,91r91,222r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0r0,-21r22,0r91,-222v-39,-20,-19,-91,29,-91xm75,-96r81,0r-40,-101","w":279},"\u00c7":{"d":"166,-16v39,0,58,-24,67,-59r35,0v-13,52,-46,79,-109,80v-85,0,-144,-51,-144,-136v0,-85,58,-137,144,-136v39,0,70,9,102,22r0,65r-22,0v-9,-40,-29,-66,-73,-66v-60,0,-76,48,-76,115v0,68,15,115,76,115xm140,45v31,0,23,-30,7,-45r22,0v29,21,31,70,-22,70v-13,0,-25,-1,-36,-4r0,-28v8,4,19,7,29,7","w":286,"k":{".":6,",":6}},"\u00c9":{"d":"146,-334r49,0r-52,47r-29,0xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r236,0r0,61r-24,0r0,-37r-111,0r0,84r69,0r0,-34r24,0r0,91r-24,0r0,-33r-69,0r0,106r114,0r0,-38r24,0r0,62r-239,0","w":274,"k":{"-":-7}},"\u00d1":{"d":"164,-295v-13,-8,-44,-18,-43,8r-19,0v-5,-61,54,-49,90,-30v10,0,17,-6,16,-17v6,1,17,-3,19,2v4,39,-32,57,-63,37xm16,0r0,-21r33,0r0,-220r-33,0r0,-21r82,0r158,185r0,-164r-33,0r0,-21r92,0r0,21r-34,0r0,241r-46,0r-161,-190r0,169r34,0r0,21r-92,0","w":329,"k":{";":13,":":13,".":23,",":23}},"\u00d6":{"d":"118,-287v-14,0,-26,-11,-26,-25v0,-14,12,-26,26,-26v13,0,25,12,25,26v0,14,-11,25,-25,25xm196,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00dc":{"d":"127,-287v-14,0,-26,-11,-26,-25v0,-14,12,-26,26,-26v13,0,25,12,25,26v0,14,-11,25,-25,25xm205,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm159,5v-82,0,-113,-30,-113,-112r0,-134r-34,0r0,-21r135,0r0,21r-33,0v8,87,-33,219,67,219v99,0,58,-132,67,-219r-33,0r0,-21r91,0r0,21r-34,0r0,135v-1,81,-30,111,-113,111","w":313,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u00e1":{"d":"29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35xm121,-288r49,0r-65,66r-29,0","w":233},"\u00e0":{"d":"29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35xm89,-288r45,66r-29,0r-65,-66r49,0","w":233},"\u00e2":{"d":"84,-288r43,0r45,66r-29,0r-38,-39r-37,39r-29,0xm29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35","w":233},"\u00e4":{"d":"29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35xm66,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm144,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":233},"\u00e3":{"d":"105,-239v-14,-15,-45,-22,-43,9r-19,0v-8,-55,43,-67,76,-37v14,13,32,2,30,-18r19,0v6,44,-29,69,-63,46xm29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35","w":233},"\u00e5":{"d":"105,-220v-27,0,-50,-23,-50,-50v0,-26,24,-50,50,-50v27,0,51,23,51,50v0,27,-23,50,-51,50xm105,-293v-12,0,-23,12,-23,23v-1,12,11,23,23,23v13,0,23,-11,23,-23v0,-12,-12,-23,-23,-23xm29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35","w":233},"\u00e7":{"d":"130,-15v27,1,41,-18,44,-43r29,0v-8,42,-35,62,-83,63v-65,0,-105,-35,-105,-99v0,-96,105,-116,182,-83r0,52r-20,0v-4,-29,-15,-47,-45,-47v-42,1,-48,29,-48,78v0,48,6,77,46,79xm99,45v31,0,23,-30,7,-45r22,0v29,21,31,70,-22,70v-13,0,-25,-1,-36,-4r0,-28v8,4,19,7,29,7","w":219},"\u00e9":{"d":"114,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm15,-94v0,-94,116,-126,171,-71v17,18,26,45,27,80v-42,2,-92,-4,-129,2v1,42,8,67,46,68v29,0,45,-16,49,-42r29,0v-10,43,-39,62,-93,62v-64,1,-100,-35,-100,-99xm130,-288r49,0r-65,66r-29,0","w":229},"\u00e8":{"d":"114,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm15,-94v0,-94,116,-126,171,-71v17,18,26,45,27,80v-42,2,-92,-4,-129,2v1,42,8,67,46,68v29,0,45,-16,49,-42r29,0v-10,43,-39,62,-93,62v-64,1,-100,-35,-100,-99xm98,-288r45,66r-29,0r-65,-66r49,0","w":229},"\u00ea":{"d":"93,-288r43,0r45,66r-29,0r-38,-39r-37,39r-29,0xm114,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm15,-94v0,-94,116,-126,171,-71v17,18,26,45,27,80v-42,2,-92,-4,-129,2v1,42,8,67,46,68v29,0,45,-16,49,-42r29,0v-10,43,-39,62,-93,62v-64,1,-100,-35,-100,-99","w":229},"\u00eb":{"d":"114,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm15,-94v0,-94,116,-126,171,-71v17,18,26,45,27,80v-42,2,-92,-4,-129,2v1,42,8,67,46,68v29,0,45,-16,49,-42r29,0v-10,43,-39,62,-93,62v-64,1,-100,-35,-100,-99xm75,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm153,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":229},"\u00ed":{"d":"101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166xm84,-288r49,0r-65,66r-29,0","w":136},"\u00ec":{"d":"101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166xm52,-288r45,66r-29,0r-65,-66r49,0","w":136},"\u00ee":{"d":"47,-288r43,0r45,66r-29,0r-38,-39r-37,39r-29,0xm101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166","w":136},"\u00ef":{"d":"101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166xm29,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm107,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":136},"\u00f1":{"d":"127,-239v-14,-15,-44,-22,-43,9r-19,0v-7,-56,43,-66,77,-37v14,12,31,2,29,-18r20,0v5,44,-30,70,-64,46xm137,-163v-54,0,-31,89,-36,142r23,0r0,21r-112,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,27v28,-53,126,-40,126,41r0,98r26,0r0,21r-111,0r0,-21r23,0r0,-100v-1,-27,-4,-42,-28,-42","w":261},"\u00f3":{"d":"120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98xm136,-288r49,0r-65,66r-29,0","w":240,"k":{".":6}},"\u00f2":{"d":"120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98xm104,-288r45,66r-29,0r-65,-66r49,0","w":240,"k":{".":6}},"\u00f4":{"d":"99,-288r43,0r45,66r-29,0r-38,-39r-37,39r-29,0xm120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98","w":240,"k":{".":6}},"\u00f6":{"d":"120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98xm81,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm159,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":240,"k":{".":6}},"\u00f5":{"d":"120,-239v-14,-15,-45,-23,-43,9r-20,0v-7,-55,44,-67,77,-37v14,12,32,2,30,-18r19,0v6,44,-29,69,-63,46xm120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98","w":240,"k":{".":6}},"\u00fa":{"d":"124,-24v55,0,30,-89,36,-142r-22,0r0,-21r85,0r0,166r26,0r0,21r-89,0r0,-26v-13,20,-29,31,-61,31v-81,0,-62,-95,-64,-171r-27,0r0,-21r89,0r0,109v2,37,-1,54,27,54xm140,-288r49,0r-65,66r-29,0","w":261},"\u00f9":{"d":"124,-24v55,0,30,-89,36,-142r-22,0r0,-21r85,0r0,166r26,0r0,21r-89,0r0,-26v-13,20,-29,31,-61,31v-81,0,-62,-95,-64,-171r-27,0r0,-21r89,0r0,109v2,37,-1,54,27,54xm108,-288r45,66r-29,0r-65,-66r49,0","w":261},"\u00fb":{"d":"103,-288r43,0r45,66r-29,0r-38,-39r-37,39r-29,0xm124,-24v55,0,30,-89,36,-142r-22,0r0,-21r85,0r0,166r26,0r0,21r-89,0r0,-26v-13,20,-29,31,-61,31v-81,0,-62,-95,-64,-171r-27,0r0,-21r89,0r0,109v2,37,-1,54,27,54","w":261},"\u00fc":{"d":"124,-24v55,0,30,-89,36,-142r-22,0r0,-21r85,0r0,166r26,0r0,21r-89,0r0,-26v-13,20,-29,31,-61,31v-81,0,-62,-95,-64,-171r-27,0r0,-21r89,0r0,109v2,37,-1,54,27,54xm85,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm163,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":261},"\u00b0":{"d":"31,-211v0,-33,26,-61,59,-59v34,2,58,24,58,59v0,35,-23,57,-58,58v-34,1,-59,-25,-59,-58xm120,-211v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,16,13,30,30,30v15,0,30,-15,30,-30","w":180},"\u00a2":{"d":"130,-170v-47,10,-46,143,0,153r0,-153xm151,-15v22,-4,34,-20,37,-43r29,0v-7,36,-29,57,-66,62r0,49r-21,0r0,-48v-62,-2,-102,-36,-102,-99v0,-63,40,-96,102,-98r0,-46r21,0r0,47v22,1,37,8,60,14r0,52r-20,0v-5,-27,-13,-44,-40,-47r0,157"},"\u00a3":{"d":"60,-192v-5,-80,87,-82,159,-69r0,50r-21,0v-1,-21,-12,-36,-33,-36v-49,0,-38,57,-39,104r62,0r0,21r-62,0r0,98r74,0r0,-40r24,0r0,64r-198,0r0,-21r34,0r0,-101r-34,0r0,-21r34,0r0,-49"},"\u00a7":{"d":"23,-216v-1,-59,83,-57,135,-43r0,42r-21,0v-1,-21,-14,-30,-37,-30v-24,0,-38,21,-25,39v31,29,104,37,102,93v0,28,-17,44,-40,52v17,11,28,21,28,46v1,60,-86,56,-138,43r0,-42r21,0v3,21,14,30,38,30v26,0,40,-20,27,-39v-31,-29,-101,-39,-102,-93v0,-28,18,-44,41,-52v-17,-8,-29,-23,-29,-46xm118,-77v30,-20,10,-52,-19,-66r-30,-15v-28,21,-8,52,20,66","w":188},"\u00b6":{"d":"26,-188v0,-45,36,-74,84,-74r97,0r0,22r-20,0r0,275r-27,0r0,-275r-28,0r0,275r-27,0r0,-149v-46,-3,-79,-27,-79,-74","w":229},"\u00df":{"d":"153,-97v-50,-29,-42,-115,22,-118v-1,-29,-10,-39,-38,-39v-27,0,-36,16,-36,45r0,209r-89,0r0,-21r27,0r0,-181v-8,-79,117,-87,166,-53v16,12,26,32,29,59v-51,-7,-78,34,-37,61v33,22,64,36,64,80v1,65,-90,69,-146,50r0,-46r22,0v-4,43,64,48,66,8v1,-18,-31,-43,-50,-54","w":273},"\u00ae":{"d":"194,-204v51,-8,61,70,11,71v24,8,27,37,38,57r11,0r0,14r-39,0v-16,-22,-14,-64,-51,-64r0,50r15,0r0,14r-65,0r0,-14r15,0r0,-113r-15,0r0,-15r80,0xm204,-165v0,-21,-17,-25,-40,-24r0,49v23,1,40,-4,40,-25xm50,-130v0,-79,52,-131,130,-131v78,0,130,52,130,131v0,79,-52,130,-130,130v-78,0,-130,-51,-130,-130xm283,-130v0,-63,-42,-104,-103,-104v-61,0,-103,41,-103,104v0,63,42,103,103,103v61,0,103,-40,103,-103","w":360},"\u00a9":{"d":"50,-130v0,-79,52,-131,130,-131v78,0,130,52,130,131v0,79,-52,130,-130,130v-78,0,-130,-51,-130,-130xm283,-130v0,-63,-42,-104,-103,-104v-61,0,-103,41,-103,104v0,63,42,103,103,103v61,0,103,-40,103,-103xm186,-70v21,0,30,-13,34,-32r25,0v-17,82,-147,53,-138,-28v-6,-71,76,-96,132,-65r0,39r-18,0v-2,-20,-15,-35,-35,-35v-28,0,-39,28,-39,61v0,33,11,59,39,60","w":360},"\u00b4":{"d":"106,-288r49,0r-65,66r-29,0","w":180},"\u00a8":{"d":"51,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm129,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":180},"\u00c6":{"d":"70,-96r82,0r0,-145r-13,0xm119,0r0,-21r33,0r0,-54r-92,0r-25,54r29,0r0,21r-75,0r0,-21r20,0r104,-220r-35,0r0,-21r272,0r0,61r-24,0r0,-37r-106,0r0,84r65,0r0,-34r23,0r0,91r-23,0r0,-33r-65,0r0,106r110,0r0,-38r23,0r0,62r-234,0","w":372,"k":{"-":-7}},"\u00d8":{"d":"157,-246v-67,0,-73,90,-63,162r119,-119v-9,-25,-26,-43,-56,-43xm157,-16v66,0,72,-89,62,-159r-119,116v10,25,25,42,57,43xm157,-267v39,0,70,11,93,27r35,-36r16,16r-35,35v21,22,31,54,32,94v0,84,-55,137,-141,136v-39,0,-70,-11,-93,-27r-36,36r-16,-16r35,-35v-21,-22,-31,-54,-32,-94v0,-85,55,-137,142,-136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00b1":{"d":"38,-40r225,0r0,40r-225,0r0,-40xm171,-226r0,63r92,0r0,40r-92,0r0,63r-40,0r0,-63r-93,0r0,-40r93,0r0,-63r40,0","w":301},"\u00a5":{"d":"57,0r0,-21r34,0r0,-61r-71,0r0,-21r71,0v1,-16,-7,-23,-11,-34r-60,0r0,-20r50,0r-39,-84r-24,0r0,-21r122,0r0,21r-30,0r45,97r45,-97r-26,0r0,-21r76,0r0,21r-23,0r-39,84r51,0r0,20r-61,0v-4,10,-12,18,-10,34r71,0r0,21r-71,0r0,61r34,0r0,21r-134,0"},"\u00b5":{"d":"126,-24v55,0,31,-89,36,-142r-23,0r0,-21r86,0r0,166r26,0r0,21r-89,0r0,-22v-11,23,-38,35,-63,20r0,56r27,0r0,21r-116,0r0,-21r27,0r0,-220r-27,0r0,-21r89,0r0,105v2,41,-2,58,27,58","w":263},"\u00aa":{"d":"20,-112r140,0r0,23r-140,0r0,-23xm22,-259v48,-15,127,-15,127,46r0,64r20,0r0,16r-67,0r0,-16v-20,30,-91,27,-91,-22v0,-44,44,-46,91,-45v2,-25,-10,-36,-33,-36v-17,0,-28,8,-31,22r-16,0r0,-29xm78,-152v24,1,26,-22,24,-47v-24,-1,-45,2,-45,24v0,13,7,23,21,23","w":175},"\u00ba":{"d":"20,-112r140,0r0,23r-140,0r0,-23xm65,-198v0,30,2,50,25,53v23,-2,25,-23,25,-53v0,-31,-1,-54,-25,-54v-24,0,-25,24,-25,54xm169,-198v0,44,-32,68,-79,68v-47,0,-79,-24,-79,-68v0,-44,32,-69,79,-69v47,0,79,24,79,69","w":180},"\u00e6":{"d":"236,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm29,-180v43,-16,118,-20,142,15v29,-35,107,-35,137,0v16,19,25,45,26,80v-41,2,-91,-4,-128,2v1,42,8,67,46,68v29,0,44,-16,48,-42r30,0v-5,70,-125,79,-167,35v-35,38,-148,42,-148,-32v0,-60,58,-65,123,-63v13,-60,-80,-75,-89,-23r-20,0r0,-40xm106,-20v35,1,33,-39,32,-76v-36,-2,-61,3,-61,39v0,24,7,36,29,37","w":351},"\u00f8":{"d":"120,-172v-40,0,-34,52,-35,99r68,-68v-4,-20,-12,-31,-33,-31xm120,-15v41,0,34,-52,36,-99r-68,68v4,18,12,31,32,31xm15,-94v-7,-90,106,-121,172,-81r29,-29r15,15r-29,29v15,15,22,37,24,66v7,89,-104,123,-172,82r-30,30r-15,-15r29,-29v-15,-17,-21,-38,-23,-68","w":240,"k":{".":6}},"\u00bf":{"d":"117,-267v17,0,34,16,34,33v0,18,-16,33,-34,33v-19,0,-33,-15,-33,-33v-1,-17,16,-33,33,-33xm125,-15v28,1,39,-19,41,-46r22,0r0,54v-68,22,-175,20,-172,-63v2,-51,36,-76,89,-79r0,-36r25,0r0,52v-30,10,-48,29,-48,67v0,31,13,51,43,51","w":210},"\u00a1":{"d":"79,-267v17,0,33,16,33,33v0,18,-15,33,-33,33v-19,0,-33,-14,-33,-33v0,-18,16,-33,33,-33xm112,0r-66,0v7,-61,21,-113,21,-181r24,0v0,68,15,120,21,181","w":158},"\u00ac":{"d":"38,-159r225,0r0,109r-40,0r0,-69r-185,0r0,-40","w":301},"\u00ab":{"d":"191,-188r0,26r-42,57r42,56r0,26r-82,-68r0,-29xm110,-188r0,26r-42,57r42,56r0,26r-82,-68r0,-29","w":225,"k":{"T":26,"J":13}},"\u00bb":{"d":"34,-188r82,68r0,29r-82,68r0,-26r42,-56r-42,-57r0,-26xm115,-188r82,68r0,29r-82,68r0,-26r42,-56r-42,-57r0,-26","w":225,"k":{"T":26,"J":13}},"\u00a0":{},"\u00c0":{"d":"133,-334r32,47r-29,0r-52,-47r49,0xm-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"\u00fd":15,"\u00dd":18,"\u0178":18,"\u00ff":15,"y":15,"w":15,"v":15,"t":6,"f":6,"Y":18,"W":18,"V":26,"T":20}},"\u00c3":{"d":"135,-295v-12,-9,-44,-18,-43,8r-19,0v-5,-61,54,-49,90,-30v10,0,17,-6,16,-17v6,1,17,-3,20,2v3,38,-33,56,-64,37xm-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"\u00fd":15,"\u00dd":18,"\u0178":18,"\u00ff":15,"y":15,"w":15,"v":15,"t":6,"f":6,"Y":18,"W":18,"V":26,"T":20}},"\u00d5":{"d":"183,-287v-24,1,-62,-38,-70,0r-19,0v-5,-49,43,-58,76,-34v12,9,32,4,31,-13v6,1,17,-3,19,2v-1,26,-12,45,-37,45xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u0152":{"d":"89,-131v0,79,36,115,116,110r0,-220v-81,-6,-116,32,-116,110xm15,-131v0,-94,56,-131,159,-131r229,0r0,61r-24,0r0,-37r-106,0r0,84r64,0r0,-34r24,0r0,91r-24,0r0,-33r-64,0r0,106r109,0r0,-38r24,0r0,62r-232,0v-101,2,-159,-36,-159,-131","w":424,"k":{"-":-7}},"\u0153":{"d":"120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm255,-172v-29,0,-28,31,-29,67r59,0v0,-40,0,-67,-30,-67xm15,-94v0,-94,121,-126,176,-71v28,-36,107,-34,137,1v16,19,25,44,26,79v-41,2,-91,-4,-128,2v0,42,8,67,45,68v29,0,45,-16,49,-42r29,0v-4,68,-119,80,-158,35v-16,17,-41,27,-74,27v-63,0,-102,-38,-102,-99","w":370},"\u00f7":{"d":"151,-152v-14,0,-26,-11,-26,-26v0,-14,12,-26,26,-26v13,0,26,13,26,26v0,14,-12,26,-26,26xm151,-22v-14,0,-26,-11,-26,-26v0,-14,12,-26,26,-26v13,0,26,13,26,26v0,14,-12,26,-26,26xm38,-133r225,0r0,40r-225,0r0,-40","w":301},"\u00ff":{"d":"37,34v-3,25,27,33,43,20v6,-4,12,-19,17,-30r-82,-190r-20,0r0,-21r108,0r0,21r-22,0r47,111r44,-111r-24,0r0,-21r70,0r0,21r-23,0r-83,208v-10,40,-55,45,-94,30r0,-39xm66,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm144,-232v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26","w":209,"k":{".":41,",":34}},"\u0178":{"d":"89,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm168,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm62,0r0,-21r35,0r0,-88r-78,-132r-22,0r0,-21r126,0r0,21r-29,0r59,100r58,-100r-26,0r0,-21r75,0r0,21r-22,0r-73,123r0,97r36,0r0,21r-139,0","w":256,"k":{"\u010c":6,"\u0106":6,"\u00c1":23,"\u00c2":23,"\u0153":31,"\u00c3":23,"\u00c0":23,"\u00f8":31,"\u00e6":28,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":31,"\u00f6":31,"\u00f4":31,"\u00f2":31,"\u00f3":31,"\u00eb":31,"\u00ea":31,"\u00e8":31,"\u00e9":31,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c7":6,"\u00c4":23,"u":31,"o":31,"i":6,"e":31,"a":28,"C":6,"A":23,";":44,":":44,".":46,"-":36,",":46}},"\u00a4":{"d":"76,-113v0,22,17,39,39,39v21,0,38,-17,38,-39v0,-21,-17,-38,-38,-38v-21,0,-39,17,-39,38xm153,-48v-19,14,-56,13,-76,1r-37,36r-27,-27r37,-37v-14,-17,-13,-59,0,-76r-37,-36r27,-28r37,37v21,-13,55,-12,77,0r36,-37r26,27r-36,36v12,22,14,56,0,77r36,37r-27,27","w":229},"\u00b7":{"d":"63,-92v-17,0,-34,-16,-34,-33v0,-17,16,-33,34,-33v18,0,33,16,33,33v0,17,-16,33,-33,33","w":125},"\u00c2":{"d":"109,-334r54,0r39,47r-29,0r-37,-29r-38,29r-29,0xm-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"\u00fd":15,"\u00dd":18,"\u0178":18,"\u00ff":15,"y":15,"w":15,"v":15,"t":6,"f":6,"Y":18,"W":18,"V":26,"T":20}},"\u00ca":{"d":"116,-334r54,0r40,47r-29,0r-38,-29r-37,29r-29,0xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r236,0r0,61r-24,0r0,-37r-111,0r0,84r69,0r0,-34r24,0r0,91r-24,0r0,-33r-69,0r0,106r114,0r0,-38r24,0r0,62r-239,0","w":274,"k":{"-":-7}},"\u00c1":{"d":"139,-334r49,0r-53,47r-28,0xm-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"\u00fd":15,"\u00dd":18,"\u0178":18,"\u00ff":15,"y":15,"w":15,"v":15,"t":6,"f":6,"Y":18,"W":18,"V":26,"T":20}},"\u00cb":{"d":"104,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm182,-287v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r236,0r0,61r-24,0r0,-37r-111,0r0,84r69,0r0,-34r24,0r0,91r-24,0r0,-33r-69,0r0,106r114,0r0,-38r24,0r0,62r-239,0","w":274,"k":{"-":-7}},"\u00c8":{"d":"140,-334r32,47r-28,0r-53,-47r49,0xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r236,0r0,61r-24,0r0,-37r-111,0r0,84r69,0r0,-34r24,0r0,91r-24,0r0,-33r-69,0r0,106r114,0r0,-38r24,0r0,62r-239,0","w":274,"k":{"-":-7}},"\u00cd":{"d":"87,-334r49,0r-52,47r-29,0xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"\u00ce":{"d":"57,-334r54,0r39,47r-28,0r-38,-29r-37,29r-29,0xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"\u00cf":{"d":"45,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-11,25,-25,25xm123,-287v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"\u00cc":{"d":"81,-334r32,47r-28,0r-53,-47r49,0xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"\u00d3":{"d":"160,-334r49,0r-52,47r-29,0xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00d4":{"d":"130,-334r54,0r39,47r-29,0r-37,-29r-37,29r-29,0xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00d2":{"d":"154,-334r32,47r-29,0r-52,-47r49,0xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{"X":6,"V":6,".":21,"-":-13,",":21}},"\u00da":{"d":"169,-334r49,0r-52,47r-29,0xm159,5v-82,0,-113,-30,-113,-112r0,-134r-34,0r0,-21r135,0r0,21r-33,0v8,87,-33,219,67,219v99,0,58,-132,67,-219r-33,0r0,-21r91,0r0,21r-34,0r0,135v-1,81,-30,111,-113,111","w":313,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u00db":{"d":"139,-334r54,0r39,47r-29,0r-37,-29r-38,29r-28,0xm159,5v-82,0,-113,-30,-113,-112r0,-134r-34,0r0,-21r135,0r0,21r-33,0v8,87,-33,219,67,219v99,0,58,-132,67,-219r-33,0r0,-21r91,0r0,21r-34,0r0,135v-1,81,-30,111,-113,111","w":313,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u00d9":{"d":"163,-334r32,47r-29,0r-52,-47r49,0xm159,5v-82,0,-113,-30,-113,-112r0,-134r-34,0r0,-21r135,0r0,21r-33,0v8,87,-33,219,67,219v99,0,58,-132,67,-219r-33,0r0,-21r91,0r0,21r-34,0r0,135v-1,81,-30,111,-113,111","w":313,"k":{"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c0":11,"\u00c4":11,"A":11,";":13,":":13,".":33,"-":6,",":33}},"\u0131":{"d":"101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166","w":136},"\u00af":{"d":"35,-272r110,0r0,33r-110,0r0,-33","w":180},"\u00b8":{"d":"75,45v31,0,23,-30,7,-45r22,0v29,21,31,70,-22,70v-13,0,-25,-1,-36,-4r0,-28v8,4,19,7,29,7","w":180},"\u0141":{"d":"19,0r0,-21r34,0r0,-76r-38,23r-12,-21r50,-29r0,-117r-34,0r0,-21r135,0r0,21r-33,0r0,76r59,-35r13,20r-72,43r0,113r103,0r0,-42r24,0r0,66r-229,0","w":255,"k":{"\u00fd":13,"\u00dd":23,"\u00d9":20,"\u00db":20,"\u00da":20,"\u0178":23,"\u00ff":13,"\u00dc":20,"y":13,"Y":23,"W":24,"V":43,"U":20,"T":29}},"\u0142":{"d":"102,-21r26,0r0,21r-115,0r0,-21r27,0r0,-94r-28,17r-11,-18r39,-24r0,-112r-27,0r0,-22r89,0r0,98r27,-17r11,19r-38,23r0,130","w":138},"\u0160":{"d":"103,-287r-39,-47r28,0r38,29r37,-29r29,0r-39,47r-54,0xm238,-76v0,97,-138,92,-210,63r0,-62r22,0v6,39,33,56,77,59v44,3,69,-35,46,-66v-46,-31,-149,-16,-149,-103v0,-95,122,-91,198,-67r0,58r-22,0v-8,-36,-30,-48,-72,-52v-42,-4,-68,35,-43,61v24,25,116,25,137,56v9,14,16,30,16,53","w":259,"k":{"\u015e":8,"\u0160":8,"S":8,".":13,"-":-13,",":13}},"\u0161":{"d":"80,-222r-45,-66r29,0r38,40r37,-40r29,0r-45,66r-43,0xm188,-57v0,76,-107,66,-171,52r0,-53r20,0v3,28,21,41,51,43v31,2,49,-21,33,-43v-35,-21,-106,-15,-106,-74v0,-73,103,-65,163,-49r0,47r-20,0v-2,-27,-20,-34,-48,-38v-40,-5,-53,40,-12,48v45,8,90,16,90,67","w":202},"\u017d":{"d":"104,-287r-39,-47r29,0r37,29r38,-29r29,0r-39,47r-55,0xm13,0r0,-25r157,-213r-126,0r0,39r-24,0r0,-63r228,0r0,24r-155,214r133,0r0,-37r24,0r0,61r-237,0","w":262,"k":{".":6,",":6}},"\u017e":{"d":"81,-222r-45,-66r29,0r37,40r38,-40r29,0r-45,66r-43,0xm13,0r0,-21r107,-145r-81,0r0,32r-21,0r0,-53r174,0r0,21r-107,145r86,0r0,-34r21,0r0,55r-179,0","w":204},"\u00a6":{"d":"84,-252r0,134r-38,0r0,-134r38,0xm84,-72r0,134r-38,0r0,-134r38,0","w":130},"\u00d0":{"d":"224,-131v0,-78,-24,-116,-103,-110r0,92r58,0r0,24r-58,0r0,104v78,6,103,-32,103,-110xm299,-131v0,88,-55,132,-145,131r-135,0r0,-21r34,0r0,-104r-38,0r0,-24r38,0r0,-92r-34,0r0,-21r135,0v91,-1,145,43,145,131","w":314,"k":{"\u00dd":6,"\u00c1":6,"\u00c2":6,"\u0178":6,"\u00c3":6,"\u00c0":6,"\u00c4":6,"Y":6,"V":6,"A":6,".":13,"-":-13,",":13}},"\u00f0":{"d":"56,-274v31,4,60,13,82,26r58,-27r8,18r-47,22v38,30,68,76,69,137v1,65,-41,103,-106,103v-60,0,-105,-35,-105,-94v0,-63,61,-108,129,-90v-5,-16,-13,-27,-23,-39r-56,26r-9,-18r49,-23v-14,-9,-33,-17,-54,-21xm120,-15v52,0,37,-98,27,-142v-44,-19,-67,11,-63,68v3,44,2,74,36,74","w":240,"k":{".":6}},"\u00dd":{"d":"131,-334r49,0r-52,47r-29,0xm62,0r0,-21r35,0r0,-88r-78,-132r-22,0r0,-21r126,0r0,21r-29,0r59,100r58,-100r-26,0r0,-21r75,0r0,21r-22,0r-73,123r0,97r36,0r0,21r-139,0","w":256,"k":{"\u010c":6,"\u0106":6,"\u00c1":23,"\u00c2":23,"\u0153":31,"\u00c3":23,"\u00c0":23,"\u00f8":31,"\u00e6":28,"\u00fc":31,"\u00fb":31,"\u00f9":31,"\u00fa":31,"\u00f5":31,"\u00f6":31,"\u00f4":31,"\u00f2":31,"\u00f3":31,"\u00eb":31,"\u00ea":31,"\u00e8":31,"\u00e9":31,"\u00e5":28,"\u00e3":28,"\u00e4":28,"\u00e2":28,"\u00e0":28,"\u00e1":28,"\u00c7":6,"\u00c4":23,"u":31,"o":31,"i":6,"e":31,"a":28,"C":6,"A":23,";":44,":":44,".":46,"-":36,",":46}},"\u00fd":{"d":"37,34v-3,25,27,33,43,20v6,-4,12,-19,17,-30r-82,-190r-20,0r0,-21r108,0r0,21r-22,0r47,111r44,-111r-24,0r0,-21r70,0r0,21r-23,0r-83,208v-10,40,-55,45,-94,30r0,-39xm121,-288r49,0r-65,66r-29,0","w":209,"k":{".":41,",":34}},"\u00de":{"d":"262,-135v0,67,-68,84,-144,77r0,37r42,0r0,21r-143,0r0,-21r33,0r0,-220r-33,0r0,-21r143,0r0,21r-42,0r0,30v76,-6,144,9,144,76xm188,-135v0,-39,-26,-60,-70,-55r0,111v44,5,70,-16,70,-56","w":272,"k":{".":53,"-":-7,",":46}},"\u00fe":{"d":"133,-165v-35,0,-37,40,-36,81v0,36,7,62,36,62v34,0,34,-28,34,-72v0,-44,0,-71,-34,-71xm152,5v-28,0,-46,-10,-55,-29r0,78r29,0r0,21r-118,0r0,-21r27,0r0,-306r-27,0r0,-22r89,0r0,111v9,-19,27,-29,55,-29v56,-1,85,41,85,98v0,57,-29,100,-85,99","w":251,"k":{".":18,",":6}},"\u00d7":{"d":"255,-190r-77,77r77,78r-27,27r-77,-78r-78,78r-27,-27r78,-78r-78,-77r27,-27r78,77r77,-77","w":301},"\u00b9":{"d":"28,-120r0,-17r29,0r0,-108r-32,18r0,-18r39,-22r40,0r0,130r29,0r0,17r-105,0","w":157},"\u00b2":{"d":"61,-252v-15,0,-27,11,-28,26r-16,0r0,-34v43,-12,120,-13,120,35v0,44,-59,54,-90,78r73,0r0,-17r17,0r0,44r-122,0r0,-24v32,-23,72,-35,73,-77v0,-18,-9,-32,-27,-31","w":157},"\u00b3":{"d":"63,-252v-16,0,-26,8,-27,24r-16,0r0,-32v41,-10,117,-16,117,29v0,20,-16,30,-37,32v26,2,42,14,43,39v0,52,-83,48,-127,35r0,-35r17,0v1,18,11,29,30,28v20,0,32,-10,32,-30v0,-21,-17,-31,-41,-29v1,-6,-4,-18,6,-15v17,0,29,-6,29,-23v0,-15,-11,-23,-26,-23","w":157},"\u00bc":{"d":"359,-3r-91,0r0,-16r22,0r0,-22r-64,0r0,-15r67,-94r44,0r0,93r26,0r0,16r-26,0r0,22r22,0r0,16xm290,-57r0,-59r-42,59r42,0xm255,-267r30,0r-164,272r-30,0xm28,-120r0,-17r29,0r0,-108r-32,18r0,-18r39,-22r40,0r0,130r29,0r0,17r-105,0","w":375},"\u00bd":{"d":"255,-267r30,0r-164,272r-30,0xm28,-120r0,-17r29,0r0,-108r-32,18r0,-18r39,-22r40,0r0,130r29,0r0,17r-105,0xm279,-135v-15,0,-27,11,-28,26r-16,0r0,-34v43,-12,120,-13,120,35v0,44,-59,54,-90,78r73,0r0,-17r17,0r0,44r-122,0r0,-24v32,-23,72,-35,73,-77v0,-18,-9,-32,-27,-31","w":375},"\u00be":{"d":"359,-3r-91,0r0,-16r22,0r0,-22r-64,0r0,-15r67,-94r44,0r0,93r26,0r0,16r-26,0r0,22r22,0r0,16xm290,-57r0,-59r-42,59r42,0xm255,-267r30,0r-164,272r-30,0xm63,-252v-16,0,-26,8,-27,24r-16,0r0,-32v41,-10,117,-16,117,29v0,20,-16,30,-37,32v26,2,42,14,43,39v0,52,-83,48,-127,35r0,-35r17,0v1,18,11,29,30,28v20,0,32,-10,32,-30v0,-21,-17,-31,-41,-29v1,-6,-4,-18,6,-15v17,0,29,-6,29,-23v0,-15,-11,-23,-26,-23","w":375},"\u011e":{"d":"115,-334v8,27,69,27,77,0r21,0v-2,44,-65,60,-99,35v-10,-8,-17,-19,-20,-35r21,0xm160,-267v43,0,77,8,110,22r0,65r-22,0v-10,-43,-30,-66,-79,-66v-62,0,-80,44,-79,115v1,68,15,115,76,115v21,0,36,-6,50,-14r0,-72r-32,0r0,-21r95,0r0,101v-36,16,-72,26,-119,27v-87,1,-145,-51,-145,-136v0,-85,58,-137,145,-136","w":307,"k":{".":13,"-":-7,",":13}},"\u011f":{"d":"186,-279v6,53,-70,68,-104,40v-10,-9,-16,-23,-16,-40r22,0v1,35,75,35,76,0r22,0xm100,-192v28,0,45,11,55,29r0,-24r88,0r0,21r-26,0r0,164v3,85,-112,95,-185,70r0,-44r20,0v4,25,20,36,50,36v49,0,55,-32,53,-84v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98xm119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72","w":251},"\u0130":{"d":"84,-287v-14,0,-26,-12,-26,-25v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-12,25,-26,25xm17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"\u015e":{"d":"238,-76v0,97,-138,92,-210,63r0,-62r22,0v6,39,33,56,77,59v44,3,69,-35,46,-66v-46,-31,-149,-16,-149,-103v0,-95,122,-91,198,-67r0,58r-22,0v-8,-36,-30,-48,-72,-52v-42,-4,-68,35,-43,61v24,25,116,25,137,56v9,14,16,30,16,53xm115,45v31,0,23,-30,7,-45r22,0v29,21,31,70,-22,70v-13,0,-25,-1,-36,-4r0,-28v8,4,19,7,29,7","w":259,"k":{"\u015e":8,"\u0160":8,"S":8,".":13,"-":-13,",":13}},"\u015f":{"d":"188,-57v0,76,-107,66,-171,52r0,-53r20,0v3,28,21,41,51,43v31,2,49,-21,33,-43v-35,-21,-106,-15,-106,-74v0,-73,103,-65,163,-49r0,47r-20,0v-2,-27,-20,-34,-48,-38v-40,-5,-53,40,-12,48v45,8,90,16,90,67xm87,45v31,0,23,-30,7,-45r22,0v29,21,31,70,-22,70v-13,0,-25,-1,-36,-4r0,-28v8,4,19,7,29,7","w":202},"\u0106":{"d":"159,-334r49,0r-52,47r-29,0xm166,-16v39,0,58,-24,67,-59r35,0v-13,52,-46,79,-109,80v-85,0,-144,-51,-144,-136v0,-85,58,-137,144,-136v39,0,70,9,102,22r0,65r-22,0v-9,-40,-29,-66,-73,-66v-60,0,-76,48,-76,115v0,68,15,115,76,115","w":286,"k":{".":6,",":6}},"\u0107":{"d":"130,-15v27,1,41,-18,44,-43r29,0v-8,42,-35,62,-83,63v-65,0,-105,-35,-105,-99v0,-96,105,-116,182,-83r0,52r-20,0v-4,-29,-15,-47,-45,-47v-42,1,-48,29,-48,78v0,48,6,77,46,79xm133,-288r49,0r-65,66r-29,0","w":219},"\u010c":{"d":"129,-287r-39,-47r29,0r37,29r38,-29r29,0r-40,47r-54,0xm166,-16v39,0,58,-24,67,-59r35,0v-13,52,-46,79,-109,80v-85,0,-144,-51,-144,-136v0,-85,58,-137,144,-136v39,0,70,9,102,22r0,65r-22,0v-9,-40,-29,-66,-73,-66v-60,0,-76,48,-76,115v0,68,15,115,76,115","w":286,"k":{".":6,",":6}},"\u010d":{"d":"95,-222r-45,-66r29,0r38,40r37,-40r29,0r-45,66r-43,0xm130,-15v27,1,41,-18,44,-43r29,0v-8,42,-35,62,-83,63v-65,0,-105,-35,-105,-99v0,-96,105,-116,182,-83r0,52r-20,0v-4,-29,-15,-47,-45,-47v-42,1,-48,29,-48,78v0,48,6,77,46,79","w":219},"\u0111":{"d":"119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72xm100,-192v28,0,45,11,55,29r0,-52r-57,0r0,-21r57,0r0,-16r-27,0r0,-22r89,0r0,38r30,0r0,21r-30,0r0,194r26,0r0,21r-88,0r0,-24v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98","w":251},"\u00ad":{"d":"20,-120r110,0r0,47r-110,0r0,-47","w":149},"\u20ac":{"d":"155,-15v32,0,45,-27,50,-60r29,0v-8,47,-35,80,-89,80v-64,-1,-103,-41,-113,-98r-33,0r9,-21r21,0v-1,-12,-1,-20,0,-34r-30,0r9,-21r24,0v10,-57,48,-98,113,-98v34,0,56,10,84,22r0,65r-21,0v-3,-53,-54,-92,-89,-47v-10,12,-14,32,-17,58r83,0r-10,21r-74,0v0,11,-2,23,0,34r59,0r-9,21r-49,0v4,43,16,78,53,78"}}});

