

/*!
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		}

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 100;
			return {
				'ultra-condensed': 0.5,
				'extra-condensed': 0.625,
				condensed: 0.75,
				'semi-condensed': 0.875,
				'semi-expanded': 1.125,
				expanded: 1.25,
				'extra-expanded': 1.5,
				'ultra-expanded': 2
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/\b./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement) {
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		function isContainerReady(el) {
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = data.glyphs;
		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph, kerning, k,
				jumps = [], width = 0,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				width += jumps[++j] = ~~(glyph.w || this.w) + letterSpacing + (wordSeparators[chr] ? wordSpacing : 0);
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			if (node.contains) return node.contains(anotherNode);
			return node.compareDocumentPosition(anotherNode) & 16;
		}

		function onOverOut(e) {
			var related = e.relatedTarget;
			if (!related || contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		function onEnterLeave(e) {
			trigger(this, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				api.replace(el, hoverState ? merge(options, options.hover) : options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}

	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		var replace = !options.textless[name];
		var style = CSS.getStyle(attach(el, options)).extend(options);
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				el.replaceChild(process(font,
					CSS.whiteSpace(anchor.data, style, anchor, lastElement),
					style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		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,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (document.documentMode || 0) < 8;

	document.write(('<style type="text/css">' +
		'cufoncanvas{text-indent:0;}' +
		'@media screen{' +
			'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}' +
			'cufoncanvas{position:absolute;text-align:left;}' +
			'cufon{display:inline-block;position:relative;vertical-align:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (value === '0') return 0;
		if (/px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'sigma';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());


/*!
 * Copyright (C) 2004-2008 dot colon. All rights reserved.
 */
Cufon.registerFont({"w":209,"face":{"font-family":"Vegur","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-11 -274 322 94","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+00F3"},"glyphs":{" ":{"w":83},"B":{"d":"50,-18v11,1,23,2,39,2v40,0,69,-20,69,-51v0,-28,-26,-45,-65,-45v-14,0,-32,1,-43,1r0,93xm83,-220v-12,0,-23,1,-33,2r0,87r41,0v36,0,58,-23,58,-45v0,-26,-14,-44,-66,-44xm136,-125v28,11,45,30,45,55v0,47,-41,74,-96,74v-20,0,-36,-2,-53,-4r-3,0r0,-235r3,0v20,-3,36,-4,59,-4v53,0,81,25,81,58v0,26,-15,44,-36,56","w":196},"b":{"d":"50,-69v0,27,26,53,58,53v38,0,63,-27,63,-71v0,-45,-23,-71,-63,-71v-32,0,-58,26,-58,53r0,36xm112,-178v52,0,82,36,82,89v0,51,-33,93,-82,93v-27,0,-49,-13,-62,-31r-1,27r-20,0r0,-252r21,0r0,104v13,-18,35,-30,62,-30"},"a":{"d":"78,-16v27,0,52,-26,52,-59r0,-16v-12,-2,-25,-3,-43,-3v-32,0,-49,19,-49,41v0,24,16,37,40,37xm92,-178v39,0,60,25,60,63r0,115r-20,0r-1,-27v-13,19,-30,31,-58,31v-31,0,-58,-24,-58,-55v0,-37,31,-63,74,-63v15,0,29,2,41,4r0,-2v0,-34,-16,-46,-44,-46v-16,0,-30,3,-44,11r-5,3r-2,-20r2,-1v15,-9,33,-13,55,-13","w":177},"c":{"d":"110,4v-60,0,-94,-39,-94,-90v0,-51,35,-92,94,-92v18,0,32,4,45,8r3,1r-3,19r-4,-1v-12,-5,-25,-7,-39,-7v-50,0,-73,33,-73,71v0,40,23,71,73,71v13,0,24,-1,38,-6r4,-1r2,19r-3,1v-14,4,-27,7,-43,7","w":173},"d":{"d":"101,-16v32,0,58,-26,58,-53r0,-36v0,-27,-26,-53,-58,-53v-38,0,-62,27,-62,71v0,45,22,71,62,71xm159,-148r0,-104r22,0r0,252r-20,0r-1,-27v-13,18,-35,31,-62,31v-52,0,-82,-36,-82,-89v0,-51,33,-93,82,-93v27,0,48,12,61,30"},"e":{"d":"168,-104v0,6,0,11,-1,16r-1,2r-127,0v1,44,26,70,67,70v16,0,27,-2,39,-8r5,-3r2,20r-3,1v-13,6,-28,10,-46,10v-50,0,-87,-33,-87,-91v0,-48,30,-91,85,-91v43,0,67,31,67,74xm101,-158v-38,0,-57,24,-61,53r106,0v-1,-32,-15,-53,-45,-53","w":183},"f":{"d":"38,-190v0,-39,16,-66,51,-66v7,0,13,2,19,3r3,1r-3,19r-4,-1v-6,-1,-11,-2,-17,-2v-19,0,-28,15,-28,43r0,19r42,0r0,19r-42,0r0,155r-21,0r0,-155r-30,0r0,-19r30,0r0,-16","w":107},"g":{"d":"100,-16v31,0,59,-26,59,-53r0,-36v0,-27,-28,-53,-59,-53v-37,0,-61,27,-61,71v0,45,22,71,61,71xm160,-147r1,-27r20,0r0,162v0,61,-32,93,-87,93v-19,0,-40,-4,-56,-13r-2,-1r2,-19r5,2v17,8,38,12,53,12v39,0,63,-24,63,-75r0,-14v-14,18,-35,31,-62,31v-51,0,-81,-36,-81,-89v0,-51,33,-93,81,-93v27,0,49,13,63,31"},"h":{"d":"50,-252r0,104v14,-18,38,-30,64,-30v41,0,62,28,62,67r0,111r-22,0r0,-107v0,-37,-17,-51,-43,-51v-31,0,-61,25,-61,53r0,105r-21,0r0,-252r21,0","w":201},"i":{"d":"29,0r0,-174r21,0r0,174r-21,0xm40,-210v-8,0,-15,-6,-15,-14v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14","w":79},"j":{"d":"40,-210v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,15,6,15,14v0,8,-7,14,-15,14xm30,11r0,-185r21,0r0,182v0,46,-22,73,-57,73r-3,0r-2,-19r4,0v29,0,37,-26,37,-51","w":79},"k":{"d":"165,-174r-78,79r88,95r-29,0r-75,-83r-21,21r0,62r-21,0r0,-252r21,0r0,169r87,-91r28,0","w":176},"l":{"d":"50,0r-21,0r0,-252r21,0r0,252","w":79},"m":{"d":"217,-178v40,0,61,30,61,67r0,111r-21,0r0,-108v0,-24,-9,-50,-42,-50v-28,0,-51,24,-51,63r0,95r-22,0r0,-104v0,-32,-14,-54,-42,-54v-27,0,-50,25,-50,63r0,95r-21,0r0,-174r20,0r1,25v12,-18,31,-29,53,-29v25,0,45,15,54,38v10,-21,31,-38,60,-38","w":303},"n":{"d":"49,-174r1,27v14,-18,38,-31,64,-31v41,0,62,28,62,67r0,111r-22,0r0,-107v0,-37,-17,-51,-43,-51v-31,0,-61,25,-61,53r0,105r-21,0r0,-174r20,0","w":201},"o":{"d":"186,-87v0,51,-33,91,-85,91v-52,0,-85,-40,-85,-91v0,-51,33,-91,85,-91v52,0,85,40,85,91xm101,-16v44,0,62,-36,62,-71v0,-35,-18,-71,-62,-71v-44,0,-62,36,-62,71v0,35,18,71,62,71","w":202},"u":{"d":"152,0r-1,-27v-14,18,-38,31,-64,31v-41,0,-62,-28,-62,-67r0,-111r22,0r0,107v0,37,17,51,43,51v31,0,61,-26,61,-54r0,-104r21,0r0,174r-20,0","w":201},"t":{"d":"98,-174r0,19r-40,0r0,119v0,16,6,20,16,20v6,0,12,-1,19,-3r4,-1r2,20r-3,1v-9,2,-17,3,-25,3v-21,0,-35,-11,-35,-35r0,-124r-28,0r0,-19r28,0r0,-43r22,0r0,43r40,0","w":111},"s":{"d":"65,-79v-25,-12,-46,-27,-46,-51v0,-26,22,-48,55,-48v11,0,23,2,35,9r2,1r-2,20r-5,-2v-12,-6,-19,-8,-34,-8v-16,0,-29,10,-29,25v0,18,11,26,33,36v30,14,45,29,45,52v0,28,-27,49,-55,49v-18,0,-31,-4,-45,-11r-3,-1r3,-20r4,2v15,7,25,10,41,10v19,0,33,-11,33,-27v0,-18,-8,-25,-32,-36","w":137},"r":{"d":"93,-178r4,0r0,22r-4,0v-27,1,-43,28,-43,62r0,94r-21,0r0,-174r20,0r1,25v9,-16,23,-29,43,-29","w":104},"q":{"d":"159,-105v0,-27,-28,-53,-59,-53v-37,0,-61,27,-61,71v0,45,22,71,61,71v31,0,59,-26,59,-53r0,-36xm97,4v-51,0,-81,-36,-81,-89v0,-51,33,-93,81,-93v27,0,49,13,63,31r1,-27r20,0r0,252r-22,0r0,-105v-14,18,-35,31,-62,31"},"p":{"d":"109,-158v-31,0,-58,26,-58,53r0,36v0,27,27,53,58,53v37,0,62,-27,62,-71v0,-45,-23,-71,-62,-71xm51,-26r0,104r-22,0r0,-252r20,0r1,27v14,-18,36,-31,63,-31v51,0,81,36,81,89v0,51,-33,93,-81,93v-26,0,-48,-12,-62,-30"},"C":{"d":"133,4v-69,0,-117,-50,-117,-121v0,-71,48,-122,117,-122v22,0,40,2,58,8r3,1r-2,20r-4,-1v-17,-5,-34,-9,-51,-9v-56,0,-98,40,-98,102v0,62,42,102,98,102v17,0,34,-3,51,-8r4,-1r2,19r-3,1v-18,6,-36,9,-58,9","w":202},"D":{"d":"32,-235v16,-2,29,-4,47,-4v89,0,138,47,138,116v0,76,-58,127,-138,127v-17,0,-32,-1,-47,-4r-3,-1r0,-234r3,0xm80,-220v-11,0,-21,1,-30,2r0,201v9,1,20,1,29,1v68,0,115,-43,115,-105v0,-61,-41,-99,-114,-99","w":233},"E":{"d":"50,-112r0,93r107,0r0,19r-128,0r0,-235r124,0r0,19r-103,0r0,85r91,0r0,19r-91,0","w":167},"F":{"d":"50,0r-21,0r0,-235r127,0r0,19r-106,0r0,87r91,0r0,20r-91,0r0,109","w":159},"U":{"d":"195,-85v0,56,-33,89,-85,89v-52,0,-85,-34,-85,-82r0,-157r21,0r0,153v0,42,24,66,64,66v42,0,65,-26,65,-66r0,-153r20,0r0,150","w":219},"T":{"d":"189,-235r0,19r-79,0r2,216r-21,0r-5,-216r-79,0r0,-19r182,0","w":195},"S":{"d":"18,-182v0,-36,30,-57,73,-57v18,0,30,3,42,9r2,1r-2,20r-4,-2v-14,-7,-25,-9,-41,-9v-35,0,-48,19,-48,35v0,24,11,35,51,56v39,22,57,40,57,69v0,37,-30,64,-82,64v-17,0,-31,-3,-45,-9r-3,-1r2,-20r4,2v15,6,27,8,43,8v39,0,58,-17,58,-41v0,-25,-11,-36,-47,-55v-44,-24,-60,-44,-60,-70","w":164},"R":{"d":"50,0r-21,0r0,-235r3,0v24,-2,35,-4,56,-4v56,0,86,25,86,61v0,29,-19,50,-42,61v15,8,22,17,30,46v7,25,13,44,21,66r2,5r-25,0r-1,-3v-7,-20,-15,-45,-21,-66v-8,-28,-14,-35,-48,-35r-40,0r0,104xm86,-220v-13,0,-25,1,-36,2r0,94v10,0,24,1,34,1v39,0,65,-22,65,-51v0,-27,-16,-46,-63,-46","w":190},"Q":{"d":"243,-117v0,43,-18,82,-51,104r23,51r-23,0r-20,-42v-13,5,-27,8,-42,8v-72,0,-114,-58,-114,-122v0,-64,42,-121,114,-121v72,0,113,58,113,122xm130,-16v58,0,90,-49,90,-102v0,-53,-32,-102,-90,-102v-58,0,-91,49,-91,102v0,53,33,102,91,102","w":259},"P":{"d":"50,0r-21,0r0,-235r3,0v25,-3,34,-4,56,-4v52,0,84,28,84,66v0,43,-35,74,-86,74v-13,0,-26,-1,-36,-3r0,102xm88,-220v-12,0,-28,1,-38,2r0,96v12,2,23,3,36,3v36,0,63,-20,63,-53v0,-31,-20,-48,-61,-48","w":176},"O":{"d":"130,-239v72,0,113,57,113,121v0,64,-41,122,-113,122v-72,0,-114,-58,-114,-122v0,-64,42,-121,114,-121xm130,-16v58,0,90,-49,90,-102v0,-53,-32,-102,-90,-102v-58,0,-91,49,-91,102v0,53,33,102,91,102","w":259},"L":{"d":"50,-235r0,216r122,0r0,19r-143,0r0,-235r21,0","w":180},"J":{"d":"118,-79v0,52,-30,83,-72,83v-13,0,-21,-2,-32,-4r-4,-1r3,-19r4,1v10,3,16,3,27,3v31,0,52,-17,52,-62r0,-157r22,0r0,156","w":140},"I":{"d":"50,0r-21,0r0,-235r21,0r0,235","w":79},"H":{"d":"188,-235r22,0r0,235r-22,0r0,-113r-138,0r0,113r-21,0r0,-235r21,0r0,103r138,0r0,-103","w":238},"G":{"d":"185,-23r0,-78r-51,0r0,-19r73,0r0,111r-3,1v-24,8,-43,12,-70,12v-66,0,-118,-46,-118,-121v0,-71,45,-122,123,-122v22,0,41,2,57,8r3,1r-3,20r-4,-1v-18,-6,-34,-9,-55,-9v-63,0,-98,46,-98,102v0,63,42,102,97,102v21,0,36,-3,49,-7","w":229},"0":{"d":"102,-230v52,0,83,50,83,117v0,67,-31,117,-83,117v-52,0,-84,-50,-84,-117v0,-67,32,-117,84,-117xm102,-16v39,0,60,-40,60,-97v0,-57,-21,-97,-60,-97v-39,0,-61,40,-61,97v0,57,22,97,61,97","w":203},"1":{"d":"99,-226r12,0r0,226r-22,0r0,-198r-36,16r-2,-19","w":159},"2":{"d":"42,-19r114,0r0,19r-143,0r0,-15r51,-60v59,-65,65,-77,65,-97v0,-25,-16,-38,-46,-38v-18,0,-34,4,-48,12r-4,3r-3,-21r2,-1v17,-9,37,-13,59,-13v39,0,63,26,63,56v0,30,-19,53,-79,120","w":174},"3":{"d":"61,4v-16,0,-32,-4,-45,-11r-2,-1r2,-20r5,2v15,7,28,10,44,10v34,0,59,-18,59,-45v0,-20,-8,-42,-64,-49r-4,0r0,-18r4,-1v34,-2,57,-20,57,-44v0,-23,-14,-37,-48,-37v-15,0,-28,4,-41,11r-5,3r-2,-20r2,-1v13,-7,30,-13,52,-13v40,0,65,25,65,53v0,24,-16,45,-40,56v24,9,48,26,48,59v0,41,-37,66,-87,66","w":166},"4":{"d":"147,-226r0,147r28,0r0,20r-28,0r0,59r-21,0r0,-59r-115,0r0,-16r115,-151r21,0xm125,-151r0,-45r-34,47r-53,70r88,0","w":189},"6":{"d":"145,-66v0,-30,-19,-51,-51,-51v-34,0,-53,14,-53,32v0,42,21,69,55,69v29,0,49,-22,49,-50xm93,4v-45,0,-75,-37,-75,-101v0,-76,47,-129,119,-133r3,0r2,19r-4,0v-64,4,-91,46,-96,93v14,-13,33,-19,56,-19v43,0,70,33,70,69v0,42,-32,72,-75,72","w":183},"5":{"d":"78,-142v51,0,76,33,76,69v0,48,-36,77,-90,77v-18,0,-33,-4,-47,-11r-3,-1r3,-20r4,2v18,7,29,10,47,10v35,0,63,-19,63,-54v0,-31,-17,-52,-57,-52v-13,0,-26,1,-36,4r-1,1r-14,-1r6,-108r108,0r0,19r-89,0r-3,68v9,-2,21,-3,33,-3","w":172},"7":{"d":"11,-226r141,0r0,17r-97,209r-23,0r98,-207r-119,0r0,-19","w":164},"8":{"d":"41,-62v0,27,18,46,51,46v30,0,52,-18,52,-44v0,-27,-17,-43,-53,-55v-37,13,-50,32,-50,53xm93,-210v-30,0,-43,16,-43,36v0,21,16,37,44,47v28,-10,43,-23,43,-45v0,-21,-14,-38,-44,-38xm119,-122v32,16,48,34,48,61v0,41,-35,65,-75,65v-41,0,-74,-20,-74,-60v0,-29,18,-50,48,-64v-24,-12,-39,-30,-39,-55v0,-29,24,-55,66,-55v37,0,67,24,67,53v0,25,-16,41,-41,55","w":184},"9":{"d":"38,-160v0,30,20,51,52,51v34,0,52,-14,52,-32v0,-42,-21,-69,-55,-69v-29,0,-49,22,-49,50xm90,-230v45,0,75,37,75,101v0,76,-46,129,-118,133r-4,0r-2,-19r4,0v64,-4,91,-46,96,-93v-14,13,-33,19,-56,19v-43,0,-70,-33,-70,-69v0,-42,32,-72,75,-72","w":183},"\/":{"d":"105,-248r21,0r-113,265r-20,0","w":118},".":{"d":"48,-8v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15","w":61},"-":{"d":"90,-101r0,17r-77,0r0,-17r77,0","w":103},",":{"d":"38,-19r16,0r-2,4v-8,25,-17,49,-26,71r-1,2r-23,7r2,-7v8,-22,19,-53,24,-69v1,-3,0,-2,0,-2v2,-4,5,-6,10,-6","w":64},"+":{"d":"116,-101r80,0r0,17r-80,0r0,88r-20,0r0,-88r-79,0r0,-17r79,0r0,-87r20,0r0,87","w":212},"*":{"d":"58,-239r22,0r-3,50r46,-18r7,20r-49,12r32,39r-17,13r-27,-43r-27,43r-17,-13r32,-39r-49,-12r7,-20r46,18","w":138},"(":{"d":"83,32r3,5r-19,0r-1,-1v-24,-41,-42,-83,-42,-143v0,-60,18,-102,42,-142r1,-2r19,0r-3,5v-22,40,-39,86,-39,139v0,53,17,99,39,139","w":90},"'":{"d":"39,-170r-19,0r-2,-69r0,-1v0,-8,5,-10,11,-10r14,0","w":59},"%":{"d":"208,-122v34,0,54,28,54,63v0,35,-20,63,-54,63v-35,0,-56,-28,-56,-63v0,-35,21,-63,56,-63xm208,-14v20,0,34,-16,34,-45v0,-29,-14,-46,-34,-46v-20,0,-35,17,-35,46v0,29,15,45,35,45xm69,-230v35,0,56,29,56,65v0,36,-21,65,-56,65v-34,0,-54,-29,-54,-65v0,-36,20,-65,54,-65xm69,-117v20,0,35,-18,35,-48v0,-30,-15,-47,-35,-47v-20,0,-33,17,-33,47v0,30,13,48,33,48xm212,-233r23,0r-170,240r-23,0","w":277},"!":{"d":"33,7v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-8,15,-16,15xm44,-46r-21,0r-2,-193r25,0","w":66},"\"":{"d":"39,-170r-19,0r-2,-69r0,-1v0,-8,5,-10,11,-10r14,0xm76,-170r-19,0r-1,-69r0,-1v0,-8,5,-10,11,-10r13,0","w":97},"#":{"d":"124,-131r-7,36r34,0r0,17r-38,0r-15,74r-19,0r15,-74r-29,0r-15,74r-19,0r15,-74r-31,0r0,-17r34,0r8,-36r-34,0r0,-18r37,0r16,-73r18,0r-15,73r30,0r15,-73r19,0r-15,73r31,0r0,18r-35,0xm98,-95r7,-36r-29,0r-8,36r30,0","w":173},"$":{"d":"141,-64v0,33,-23,53,-54,57r0,34r-17,0r0,-33v-15,0,-28,-3,-41,-9r-2,-2r2,-19r5,2v17,7,26,9,41,9v28,0,43,-14,43,-36v0,-17,-7,-27,-41,-48v-36,-22,-49,-37,-49,-62v0,-25,19,-43,45,-48r0,-34r17,0r0,33v14,1,27,5,36,10r2,1r-2,19r-5,-2v-11,-6,-23,-9,-35,-9v-23,0,-35,11,-35,28v0,17,7,27,38,46v41,25,52,41,52,63","w":168},"&":{"d":"92,-223v-16,0,-28,8,-28,26v0,16,7,28,23,48v24,-20,34,-30,34,-48v0,-14,-10,-26,-29,-26xm213,4r-29,0r-19,-25v-21,20,-45,28,-74,28v-41,0,-77,-22,-77,-64v0,-32,25,-55,56,-79v-18,-21,-29,-40,-29,-59v0,-29,20,-48,51,-48v31,0,51,20,51,45v0,25,-16,43,-44,64r66,80v10,-17,12,-38,12,-65r0,-3r22,0r0,3v0,17,-3,56,-21,82xm83,-121v-35,29,-46,43,-46,63v0,30,24,46,57,46v26,0,41,-5,58,-23","w":211},")":{"d":"7,-246r-3,-5r19,0r1,2v24,40,42,82,42,142v0,60,-18,102,-42,143r-1,1r-19,0r3,-5v22,-40,39,-86,39,-139v0,-53,-17,-99,-39,-139","w":90},"?":{"d":"80,-129v-18,24,-22,43,-22,66r0,17r-22,0r0,-14v0,-35,12,-59,32,-87v14,-19,20,-31,20,-46v0,-24,-17,-30,-35,-30v-14,0,-26,5,-38,14r-5,3r-3,-20r2,-1v19,-14,36,-16,47,-16v35,0,55,21,55,49v0,20,-9,36,-31,65xm55,-8v0,-5,-3,-8,-8,-8v-5,0,-8,3,-8,8v0,5,3,8,8,8v5,0,8,-3,8,-8","w":124},":":{"d":"18,-166v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15xm48,-8v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15","w":61},";":{"d":"22,-166v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15xm38,-19r16,0r-2,4v-8,25,-17,49,-26,71r-1,2r-23,7r2,-7v8,-22,19,-53,24,-69v1,-3,0,-2,0,-2v2,-4,5,-6,10,-6","w":64},"<":{"d":"38,-91r118,63r0,22r-141,-76r0,-18r141,-77r0,21","w":170},"=":{"d":"189,-120r-170,0r0,-18r170,0r0,18xm189,-47r-170,0r0,-17r170,0r0,17","w":207},"[":{"d":"48,-231r0,249r32,0r0,17r-51,0r0,-283r51,0r0,17r-32,0","w":88},"\\":{"d":"14,-248r112,265r-21,0r-112,-265r21,0","w":118},"]":{"d":"9,-231r0,-17r51,0r0,283r-51,0r0,-17r31,0r0,-249r-31,0","w":88},"^":{"d":"101,-231r69,147r-21,0r-57,-123r-57,123r-21,0r69,-147r18,0","w":184},"_":{"d":"166,32r-170,0r0,-17r170,0r0,17","w":162},">":{"d":"133,-91r-119,-64r0,-22r141,77r0,18r-141,76r0,-21","w":170},"{":{"d":"57,-79v0,2,-1,4,-1,6r-6,50v-1,4,-1,8,-1,12v0,19,7,32,36,32r4,0r0,17r-4,0v-33,0,-55,-16,-55,-49v0,-4,0,-8,1,-13r7,-50r0,-5v0,-8,-2,-17,-24,-19r-4,-1r0,-16r4,-1v17,-2,24,-8,24,-20v0,-2,-1,-4,-1,-6r-6,-48v-1,-4,-1,-9,-1,-13v0,-33,22,-49,55,-49r4,0r0,17r-4,0v-29,0,-36,12,-36,31v0,4,0,9,1,13r7,50r0,5v0,11,-5,21,-17,28v11,7,17,16,17,29","w":97},"|":{"d":"48,94r-19,0r0,-368r19,0r0,368","w":77},"}":{"d":"40,-135v0,-2,1,-4,1,-6r7,-50v1,-4,1,-8,1,-12v0,-19,-8,-32,-37,-32r-3,0r0,-17r3,0v33,0,56,16,56,49v0,4,0,9,-1,13r-7,50v0,2,-1,4,-1,5v0,8,3,17,25,19r3,1r0,16r-3,1v-18,2,-25,8,-25,21v0,2,1,3,1,5r7,48v1,5,1,9,1,13v0,33,-23,49,-56,49r-3,0r0,-17r3,0v29,0,36,-12,36,-31v0,-4,1,-9,0,-13r-8,-50r0,-4v0,-11,6,-22,18,-29v-12,-7,-18,-16,-18,-29","w":97},"~":{"d":"98,-83v-31,-11,-43,-13,-50,-13v-14,0,-20,4,-20,19r0,4r-17,0r0,-4v0,-19,8,-37,40,-37v13,0,25,3,53,13v31,11,43,12,50,12v14,0,20,-3,20,-18r0,-4r17,0r0,4v0,18,-9,37,-41,37v-13,0,-24,-3,-52,-13","w":201},"`":{"d":"25,-250v6,0,9,4,11,7v7,12,15,28,23,41r3,5r-22,2r-2,-1v-8,-12,-20,-33,-28,-49r-3,-5r18,0","w":67},"@":{"d":"181,-97r10,-42v-5,-1,-12,-2,-21,-2v-40,0,-67,36,-67,78v0,25,14,34,25,34v32,0,47,-38,53,-68xm280,-112v0,56,-28,98,-68,98v-18,0,-32,-9,-36,-27v-13,20,-32,29,-52,29v-22,0,-42,-22,-42,-48v0,-57,39,-99,93,-99v14,0,23,2,35,7r3,2r-18,78v-2,7,-2,13,-2,18v0,15,6,22,20,22v24,0,47,-27,47,-75v0,-51,-30,-89,-90,-89v-74,0,-133,56,-133,127v0,60,39,97,94,97v26,0,46,-5,70,-19r4,-2r3,18r-2,1v-27,15,-51,19,-78,19v-63,0,-111,-46,-111,-111v0,-92,75,-147,159,-147v58,0,104,42,104,101","w":293},"K":{"d":"189,-235r-99,107r109,128r-28,0r-97,-116r-24,27r0,89r-21,0r0,-235r21,0r0,124r111,-124r28,0","w":200},"M":{"d":"144,-31r89,-204r28,0r1,235r-21,0r-1,-207r-86,198r-21,0r-84,-198r-1,207r-21,0r1,-235r28,0","w":290},"v":{"d":"92,-22r62,-152r22,0r-74,174r-21,0r-75,-174r24,0","w":178},"w":{"d":"203,-25r53,-149r22,0r-65,174r-20,0r-51,-150r-57,150r-20,0r-58,-174r23,0r46,149r57,-149r20,0","w":281},"x":{"d":"167,-174r-65,84r70,90r-27,0r-57,-78r-57,78r-26,0r69,-89r-66,-85r27,0r53,72r54,-72r25,0","w":171},"y":{"d":"15,62v29,-5,44,-15,65,-65r-74,-171r24,0r62,152r62,-152r22,0r-73,172v-27,64,-51,78,-86,83r-3,1r-3,-19","w":178},"z":{"d":"13,-17r98,-138r-91,0r0,-19r116,0r0,17r-98,138r104,0r0,19r-129,0r0,-17","w":154},"Z":{"d":"14,-18r127,-198r-115,0r0,-19r139,0r0,17r-127,199r136,0r0,19r-160,0r0,-18","w":183},"Y":{"d":"98,-122r65,-113r24,0r-78,129r0,106r-23,0r0,-105r-80,-130r26,0","w":187},"X":{"d":"107,-121r77,121r-26,0r-64,-103r-64,103r-25,0r76,-120r-73,-115r26,0r60,97r61,-97r24,0","w":184},"W":{"d":"234,-30r67,-205r21,0r-78,235r-20,0r-59,-205r-66,205r-21,0r-71,-235r23,0r59,205r66,-205r20,0","w":326},"V":{"d":"107,-24r78,-211r22,0r-90,235r-21,0r-90,-235r24,0"},"A":{"d":"105,-208r-41,113r82,0xm182,0r-29,-76r-96,0r-30,76r-22,0r90,-235r21,0r90,235r-24,0"},"N":{"d":"195,-61r0,-174r21,0r0,235r-25,0r-143,-209v0,12,1,24,1,35r0,174r-21,0r0,-235r24,0r143,209r0,-35","w":243},"\u00f3":{"d":"117,-250v-6,0,-9,4,-11,7v-7,12,-15,28,-23,41r-3,5r22,2r1,-1v8,-12,21,-33,29,-49r3,-5r-18,0xm186,-87v0,51,-33,91,-85,91v-52,0,-85,-40,-85,-91v0,-51,33,-91,85,-91v52,0,85,40,85,91xm101,-16v44,0,62,-36,62,-71v0,-35,-18,-71,-62,-71v-44,0,-62,36,-62,71v0,35,18,71,62,71","w":202},"\u00a0":{"w":83}}});
/*!
 * Copyright (C) 2004-2008 dot colon. All rights reserved.
 */
Cufon.registerFont({"w":189,"face":{"font-family":"Vegur","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-13 -270 325 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":79},"~":{"d":"116,-109v30,15,36,16,44,16v9,0,14,-7,14,-19r31,0v0,30,-14,57,-45,57v-19,0,-32,-6,-61,-20v-30,-15,-36,-17,-44,-17v-9,0,-14,8,-14,20r-31,0v0,-30,14,-57,45,-57v19,0,32,6,61,20","w":215},"_":{"d":"189,50r-189,0r0,-31r189,0r0,31"},"^":{"d":"79,-228r41,0r65,141r-42,0r-44,-99r0,0r-45,99r-40,0","w":198},"]":{"d":"8,-214r0,-31r80,0r0,276r-80,0r0,-31r41,0r0,-214r-41,0","w":115},"\\":{"d":"40,-245r109,258r-41,0r-110,-258r42,0","w":147},"[":{"d":"107,-214r-41,0r0,214r41,0r0,31r-80,0r0,-276r80,0r0,31","w":115},"Z":{"d":"184,-40r0,40r-175,0r0,-39r111,-156r0,-1r-97,0r0,-39r152,0r0,38r-111,157r0,0r120,0"},"Y":{"d":"146,-235r51,0r-72,132r0,103r-48,0r0,-100r-74,-135r55,0r44,94r0,0","w":198},"X":{"d":"188,-235r-65,112r70,123r-55,0r-42,-87r-1,0r-42,87r-51,0r68,-119r-67,-116r56,0r38,80r1,0r38,-80r52,0","w":196},"9":{"d":"96,-229v45,0,83,35,83,96v0,83,-64,133,-141,137r-5,-39v47,-5,84,-29,92,-61r-1,0v-10,9,-26,14,-40,14v-42,0,-74,-28,-74,-68v0,-48,40,-79,86,-79xm97,-119v16,0,28,-11,28,-28v0,-26,-12,-43,-31,-43v-17,0,-31,10,-31,33v0,26,12,38,34,38","w":192},":":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28xm45,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":84},";":{"d":"31,-32v2,-8,9,-13,22,-13r28,0v-10,29,-23,67,-37,100r-41,4v12,-34,23,-72,28,-91xm56,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":95},"<":{"d":"54,-92r99,50r0,42r-139,-70r0,-42r139,-71r0,42r-99,48r0,1","w":168},"=":{"d":"206,-116r-189,0r0,-31r189,0r0,31xm206,-37r-189,0r0,-31r189,0r0,31","w":222},">":{"d":"114,-90r-99,-50r0,-43r139,71r0,42r-139,70r0,-41r99,-49r0,0","w":168},"?":{"d":"90,-25v0,-16,-12,-28,-28,-28v-16,0,-29,12,-29,28v0,16,13,29,29,29v16,0,28,-13,28,-29xm139,-188v0,21,-9,39,-39,75v-14,17,-17,24,-17,36r0,6r-44,0r0,-6v0,-22,6,-35,25,-59v21,-27,23,-36,23,-45v0,-11,-10,-18,-28,-18v-16,0,-32,5,-46,14r-4,-39v21,-10,38,-15,65,-15v37,0,65,20,65,51","w":154},"`":{"d":"9,-246r35,0v4,0,7,3,10,7v8,13,26,40,38,57r-38,2v-13,-17,-34,-47,-45,-66","w":100},"@":{"d":"176,-212v62,0,107,46,107,99v0,60,-32,95,-74,95v-19,0,-34,-7,-39,-24r-1,0v-10,18,-24,27,-45,27v-26,0,-47,-22,-47,-50v0,-53,37,-90,94,-90v16,0,39,5,49,11r-17,71v-4,18,1,28,12,28v20,0,36,-26,36,-61v0,-49,-28,-80,-81,-80v-69,0,-123,50,-123,115v0,58,33,89,84,89v24,0,47,-7,70,-19r3,25v-22,12,-47,19,-76,19v-68,0,-113,-42,-113,-110v0,-87,72,-145,161,-145xm169,-89r8,-33v-3,-1,-9,-2,-15,-2v-24,0,-43,21,-43,57v0,12,6,21,16,21v17,0,26,-10,34,-43","w":294},"A":{"d":"165,0r-22,-66r-72,0v-10,32,-22,66,-22,66r-47,0r83,-235r49,0r82,235r-51,0xm84,-105r46,0r-4,-13v-8,-24,-13,-45,-18,-69r-1,0v-4,24,-10,45,-18,69","w":218},"a":{"d":"95,-178v41,0,67,23,67,62r0,116r-48,0r-1,-22r0,0v-13,17,-26,26,-48,26v-22,0,-53,-19,-53,-58v0,-38,32,-59,72,-59v10,0,21,1,29,2r0,0r0,-4v0,-14,-10,-23,-31,-23v-17,0,-30,5,-45,12r-6,-40v20,-8,39,-12,64,-12xm113,-73r0,-8v-9,-1,-15,-2,-25,-2v-14,0,-24,8,-24,24v0,15,8,23,20,23v18,0,29,-18,29,-37","w":182},"b":{"d":"74,-22r-1,0r0,22r-48,0r0,-252r48,0r0,99r1,0v13,-15,33,-25,55,-25v48,0,79,38,79,89v0,55,-34,93,-79,93v-22,0,-42,-11,-55,-26xm73,-95r0,16v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51v-25,0,-42,18,-42,43","w":221},"d":{"d":"148,-252r48,0r0,252r-48,0r0,-22r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25r1,0r0,-99xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":221},"e":{"d":"177,-100v0,8,-1,17,-2,24r-113,0v0,27,18,40,47,40v13,0,33,-3,47,-9r5,40v-15,5,-36,9,-53,9v-59,0,-95,-36,-95,-91v0,-49,35,-91,90,-91v46,0,74,34,74,78xm99,-138v-18,0,-31,10,-35,30r65,0v0,-18,-9,-30,-30,-30","w":190},"c":{"d":"109,4v-57,0,-96,-35,-96,-90v0,-56,38,-92,96,-92v20,0,37,2,52,7r-5,40v-15,-5,-25,-7,-42,-7v-36,0,-49,27,-49,51v0,24,13,51,49,51v14,0,26,-2,40,-6r6,39v-17,4,-32,7,-51,7","w":173},"f":{"d":"38,-186v0,-44,28,-70,71,-70v13,0,23,2,29,3r-6,40v-5,-1,-10,-3,-17,-3v-19,0,-29,11,-29,28r0,14r42,0r0,39r-42,0r0,135r-48,0r0,-135r-30,0r0,-39r30,0r0,-12","w":137},"F":{"d":"72,0r-49,0r0,-235r145,0r0,39r-96,0r0,57r81,0r0,40r-81,0r0,99","w":171},"G":{"d":"169,-40r0,-53r-44,0r0,-39r92,0r0,124v-25,7,-54,12,-85,12v-66,0,-120,-41,-120,-122v0,-76,56,-121,134,-121v25,0,46,3,64,8r-6,40v-19,-5,-39,-8,-62,-8v-51,0,-78,30,-78,81v0,54,29,82,70,82v15,0,22,-1,35,-4","w":237},"H":{"d":"176,-235r48,0r0,235r-48,0r0,-103r-104,0r0,103r-49,0r0,-235r49,0r0,92r104,0r0,-92","w":247},"I":{"d":"72,0r-49,0r0,-235r49,0r0,235","w":95},"J":{"d":"138,-87v0,63,-40,91,-94,91v-13,0,-24,-1,-36,-4r5,-40v10,3,18,4,28,4v35,0,49,-18,49,-51r0,-148r48,0r0,148","w":156},"K":{"d":"204,-235r-90,103r97,132r-59,0r-70,-100r-1,0r-9,11r0,89r-49,0r0,-235r49,0r0,61v0,13,0,21,-1,34r0,0v5,-10,15,-23,24,-34r50,-61r59,0","w":210},"l":{"d":"73,0r-48,0r0,-252r48,0r0,252","w":98},"m":{"d":"230,-178v36,0,54,30,54,66r0,112r-48,0r0,-109v0,-18,-8,-29,-26,-29v-18,0,-32,16,-32,47r0,91r-48,0r0,-109v0,-19,-8,-29,-26,-29v-20,0,-31,19,-31,47r0,91r-48,0r0,-174r48,0r0,24r1,0v11,-18,26,-28,49,-28v25,0,40,11,49,32r1,0v13,-22,29,-32,57,-32","w":304},"N":{"d":"176,-235r46,0r0,235r-68,0r-58,-124v-8,-18,-15,-32,-28,-69r-1,0v1,19,1,51,1,69r0,124r-46,0r0,-235r68,0r57,120v9,18,16,36,30,73r0,0v-1,-37,-1,-55,-1,-73r0,-120","w":244},"o":{"d":"106,-178v55,0,93,40,93,91v0,51,-38,91,-93,91v-55,0,-93,-40,-93,-91v0,-51,38,-91,93,-91xm106,-36v24,0,41,-19,41,-51v0,-32,-17,-51,-41,-51v-24,0,-41,19,-41,51v0,32,17,51,41,51","w":212},"P":{"d":"72,-198r0,68v8,1,18,1,28,1v20,0,32,-15,32,-36v0,-22,-13,-34,-33,-34v-10,0,-17,0,-27,1xm23,0r0,-235v27,-2,48,-4,76,-4v53,0,85,28,85,70v0,48,-41,80,-85,80v-9,0,-19,-1,-27,-2r0,0r0,91r-49,0","w":187},"p":{"d":"73,78r-48,0r0,-252r48,0r0,21r1,0v13,-15,33,-25,55,-25v48,0,79,38,79,89v0,55,-34,93,-79,93v-22,0,-42,-11,-55,-26r-1,0r0,100xm73,-95r0,16v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51v-25,0,-42,18,-42,43","w":221},"Q":{"d":"203,-17r25,55r-52,0r-16,-37v-8,2,-18,3,-27,3v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121v73,0,122,54,122,121v0,41,-20,79,-52,101xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"q":{"d":"147,-153r1,0r0,-21r48,0r0,252r-48,0r0,-100r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":221},"r":{"d":"126,-178r0,43v-36,2,-53,17,-53,57r0,78r-48,0r0,-174r48,0r0,28r1,0v10,-18,28,-32,52,-32","w":132},"R":{"d":"72,-198r0,64v10,1,15,2,25,2v23,0,37,-14,37,-35v0,-21,-12,-32,-35,-32v-9,0,-16,0,-27,1xm23,0r0,-235v24,-2,49,-4,80,-4v51,0,83,29,83,62v0,28,-19,47,-43,57r0,0v17,9,24,18,33,51v6,26,14,47,22,69r-52,0v-6,-21,-14,-46,-19,-69v-4,-17,-14,-26,-29,-26v-9,0,-13,0,-26,1r0,94r-49,0","w":200},"S":{"d":"14,-175v0,-38,30,-64,82,-64v18,0,38,3,52,9r-5,39v-15,-6,-34,-8,-50,-8v-17,0,-27,9,-27,20v0,15,5,21,35,36v44,22,63,45,63,76v0,44,-40,71,-89,71v-19,0,-43,-4,-61,-9r5,-39v19,6,35,8,58,8v22,0,35,-11,35,-27v0,-13,-6,-23,-32,-36v-44,-22,-66,-42,-66,-76","w":174},"s":{"d":"72,-65v-40,-14,-57,-29,-57,-60v0,-28,22,-53,69,-53v16,0,33,3,46,8r-5,40v-12,-5,-26,-8,-40,-8v-11,0,-18,4,-18,11v0,8,4,11,11,14v48,18,61,33,61,61v0,33,-30,56,-67,56v-20,0,-42,-4,-58,-10r5,-40v14,6,30,10,46,10v15,0,23,-5,23,-12v0,-8,-4,-12,-16,-17","w":149},"M":{"d":"273,-235r1,235r-48,0r-1,-141v0,-14,1,-34,2,-49r-1,0v-3,15,-7,35,-12,49r-44,132r-50,0r-44,-132v-5,-14,-9,-34,-11,-48r-1,0v1,14,2,34,2,48r-1,141r-44,0r1,-235r70,0r38,117v5,16,12,37,17,64r0,0v5,-27,11,-48,17,-64r39,-117r70,0","w":295},"O":{"d":"133,-239v73,0,122,54,122,121v0,67,-49,122,-122,122v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"T":{"d":"203,-235r0,39r-76,0r0,196r-48,0r0,-196r-75,0r0,-39r199,0","w":206},"U":{"d":"204,-84v0,57,-40,88,-92,88v-52,0,-93,-32,-93,-81r0,-158r48,0r0,154v0,31,20,45,44,45v25,0,47,-12,47,-45r0,-154r46,0r0,151","w":222},"V":{"d":"169,-235r47,0r-82,235r-49,0r-82,-235r51,0r39,117v8,23,13,46,18,69r1,0v4,-23,10,-46,18,-69","w":218},"W":{"d":"279,-235r46,0r-66,235r-48,0r-33,-118v-5,-16,-8,-33,-13,-75r-1,0v-5,42,-10,59,-14,75r-32,118r-49,0r-65,-235r50,0r30,117v5,18,9,37,12,73r0,0v4,-36,8,-55,13,-73r33,-117r48,0r33,117v5,18,10,37,13,73r1,0v3,-36,6,-55,11,-73","w":327},"z":{"d":"15,-174r133,0r0,36r-79,98r0,0r86,0r0,40r-146,0r0,-36r80,-98r0,-1r-74,0r0,-39","w":165},"y":{"d":"72,2r-68,-176r51,0r28,80v6,17,10,33,13,49r1,0v3,-16,8,-32,14,-49r28,-80r47,0r-66,174v-23,58,-46,77,-98,81r-5,-39v28,-2,43,-10,55,-40"},"x":{"d":"177,-174r-57,83r63,91r-59,0r-33,-60r-1,0r-33,60r-54,0r60,-88r-59,-86r58,0r30,54r1,0r30,-54r54,0","w":186},"w":{"d":"158,-70v-5,-17,-10,-34,-14,-62r0,0v-4,29,-9,45,-14,62r-22,70r-49,0r-55,-174r51,0r20,71v4,16,8,32,11,58r1,0v4,-26,7,-42,12,-58r22,-71r50,0r22,71v5,16,8,32,12,58r1,0v3,-26,6,-42,11,-58r20,-71r47,0r-55,174r-49,0","w":287},"v":{"d":"139,-174r47,0r-66,174r-50,0r-66,-174r51,0r28,80v6,17,10,33,13,49r1,0v3,-16,8,-32,14,-49"},"u":{"d":"138,-79r0,-95r48,0r0,174r-48,0r0,-22r-1,0v-13,16,-32,26,-56,26v-36,0,-60,-25,-60,-67r0,-111r48,0r0,104v0,23,10,34,29,34v26,0,40,-15,40,-43","w":209},"t":{"d":"128,-174r0,39r-43,0r0,70v0,20,7,29,20,29v6,0,13,-1,20,-3r5,40v-13,2,-29,3,-43,3v-32,0,-51,-23,-51,-61r0,-78r-28,0r0,-39r28,0r0,-43r49,0r0,43r43,0","w":140},"{":{"d":"44,-108v24,8,37,23,33,49r-5,36v-3,21,9,27,31,27r0,31v-45,0,-74,-18,-68,-58r4,-34v3,-24,-7,-31,-29,-34r0,-31v22,-3,32,-11,29,-35r-4,-34v-6,-40,23,-57,68,-57r0,31v-22,0,-33,5,-30,26r5,36v4,26,-10,41,-34,47r0,0","w":112},"|":{"d":"66,90r-39,0r0,-360r39,0r0,360","w":92},"}":{"d":"69,-106v-24,-8,-37,-23,-33,-49r5,-36v3,-21,-9,-26,-31,-26r0,-31v45,0,74,17,68,57r-5,34v-3,24,8,32,30,35r0,31v-22,3,-33,10,-30,34r5,34v6,40,-23,58,-68,58r0,-31v22,0,33,-6,30,-27r-5,-36v-4,-26,10,-40,34,-46r0,-1","w":112},"g":{"d":"148,-174r48,0r0,163v0,57,-39,92,-97,92v-24,0,-50,-4,-68,-12r6,-40v20,9,39,13,60,13v32,0,51,-19,51,-51r0,-13r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25r1,0r0,-21xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":220},"h":{"d":"73,-153r1,0v13,-16,32,-25,56,-25v36,0,60,25,60,67r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-26,0,-40,15,-40,43r0,95r-48,0r0,-252r48,0r0,99","w":215},"i":{"d":"25,0r0,-174r48,0r0,174r-48,0xm49,-185v-15,0,-27,-13,-27,-28v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":98},"k":{"d":"179,-174r-69,78r79,96r-62,0r-49,-66r0,0r-5,6r0,60r-48,0r0,-252r48,0r0,113v0,9,0,18,-1,30r1,0v5,-10,13,-23,18,-30r28,-35r60,0","w":188},"j":{"d":"52,-186v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28xm28,4r0,-178r48,0r0,174v0,50,-33,81,-83,81r-6,-39v24,0,41,-13,41,-38","w":101},"n":{"d":"73,-95r0,95r-48,0r0,-174r48,0r0,21r1,0v13,-16,32,-25,56,-25v36,0,60,25,60,67r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-26,0,-40,15,-40,43","w":215},"E":{"d":"72,-40r97,0r0,40r-146,0r0,-235r143,0r0,39r-94,0r0,55r81,0r0,39r-81,0r0,62","w":177},"D":{"d":"23,-235v26,-2,56,-4,81,-4v84,0,127,48,127,115v0,76,-54,128,-127,128v-29,0,-57,-2,-81,-4r0,-235xm72,-198r0,161v10,1,21,1,32,1v48,0,76,-31,76,-85v0,-47,-21,-78,-76,-78v-9,0,-20,0,-32,1","w":243},"C":{"d":"12,-117v0,-78,57,-122,125,-122v20,0,44,2,62,8r-5,40v-17,-5,-37,-8,-54,-8v-54,0,-76,35,-76,81v0,46,22,82,76,82v17,0,37,-3,54,-8r5,39v-18,6,-42,9,-62,9v-68,0,-125,-43,-125,-121","w":205},"B":{"d":"143,-126v32,10,48,29,48,56v0,45,-39,74,-92,74v-21,0,-56,-2,-76,-4r0,-235v23,-2,56,-4,77,-4v50,0,83,22,83,58v0,25,-16,43,-40,55r0,0xm72,-198r0,58v9,1,18,1,30,1v19,0,29,-14,29,-31v0,-18,-8,-29,-34,-29v-14,0,-15,0,-25,1xm102,-36v24,0,37,-12,37,-32v0,-21,-12,-34,-37,-34v-12,0,-20,1,-30,2r0,63v11,1,18,1,30,1","w":203},"8":{"d":"133,-122v35,18,46,36,46,57v0,43,-41,69,-84,69v-43,0,-83,-21,-83,-63v0,-29,17,-45,47,-59r0,0v-26,-14,-38,-27,-38,-53v0,-28,27,-59,75,-59v48,0,76,27,76,55v0,23,-14,40,-39,52r0,1xm71,-170v0,14,9,22,28,32v16,-8,23,-18,23,-30v0,-13,-9,-22,-26,-22v-17,0,-25,11,-25,20xm95,-36v21,0,34,-13,34,-28v0,-18,-12,-30,-36,-40v-21,8,-31,19,-31,37v0,15,12,31,33,31","w":190},"7":{"d":"163,-226r0,38r-91,188r-49,0r90,-186r0,0r-107,0r0,-40r157,0","w":169},"6":{"d":"97,4v-45,0,-83,-35,-83,-96v0,-83,64,-133,141,-137r5,40v-47,5,-84,28,-92,60r1,0v10,-9,26,-13,40,-13v42,0,74,27,74,67v0,48,-40,79,-86,79xm96,-106v-16,0,-28,12,-28,29v0,26,12,42,31,42v17,0,31,-10,31,-33v0,-26,-12,-38,-34,-38","w":192},"5":{"d":"94,-150v45,0,76,28,76,69v0,49,-37,85,-102,85v-21,0,-43,-5,-57,-11r5,-39v18,8,37,10,59,10v26,0,43,-15,43,-38v0,-23,-12,-38,-36,-38v-6,0,-13,1,-19,4r-44,-3r5,-115r126,0r0,40r-83,0r-2,41r1,0v8,-3,18,-5,28,-5","w":185},"4":{"d":"162,-226r0,138r28,0r0,39r-28,0r0,49r-48,0r0,-49r-107,0r0,-40r89,-137r66,0xm114,-140v0,-13,0,-28,1,-42r-1,0v-6,16,-13,29,-21,42r-34,51r0,1r55,0r0,-52","w":200},"3":{"d":"65,4v-19,0,-40,-4,-55,-10r5,-40v19,7,35,10,55,10v24,0,41,-12,41,-29v0,-23,-15,-32,-59,-35r0,-39v31,-2,48,-10,48,-29v0,-13,-7,-22,-32,-22v-16,0,-31,5,-46,12r-6,-40v19,-9,43,-12,65,-12v46,0,73,22,73,49v0,27,-17,44,-49,55r0,1v35,10,56,27,56,57v0,47,-42,72,-96,72","w":175},"2":{"d":"166,-40r0,40r-158,0r0,-32r36,-40v60,-65,68,-79,68,-93v0,-15,-10,-25,-34,-25v-17,0,-34,5,-50,13r-5,-40v23,-8,47,-13,71,-13v43,0,70,21,70,55v0,31,-16,58,-56,100v-5,6,-21,21,-36,35r0,0r94,0","w":180},"0":{"d":"107,-230v54,0,93,48,93,117v0,69,-39,117,-93,117v-54,0,-93,-48,-93,-117v0,-69,39,-117,93,-117xm107,-36v26,0,43,-24,43,-77v0,-53,-17,-77,-43,-77v-26,0,-43,24,-43,77v0,53,17,77,43,77","w":213},"1":{"d":"115,-226r24,0r0,226r-48,0r0,-167r-40,15r-5,-40","w":190},"\/":{"d":"108,-245r40,0r-110,258r-40,0","w":145},".":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28","w":84},"-":{"d":"111,-108r0,31r-100,0r0,-31r100,0","w":121},",":{"d":"31,-32v2,-8,9,-13,22,-13r28,0v-10,29,-23,67,-37,100r-41,4v12,-34,23,-72,28,-91","w":92},"+":{"d":"127,-108r73,0r0,31r-73,0r0,77r-39,0r0,-77r-73,0r0,-31r73,0r0,-76r39,0r0,76","w":214},"*":{"d":"69,-235r39,0r-8,56r2,0r50,-24r13,37r-56,10r0,1r39,41r-32,23r-27,-49r-1,0r-27,49r-31,-23r38,-41r0,-1r-55,-10r12,-37r50,24r2,0","w":177},")":{"d":"32,-107v0,-54,-9,-99,-24,-141r31,0v17,33,34,83,34,141v0,58,-17,108,-34,141r-31,0v15,-42,24,-87,24,-141","w":93},"(":{"d":"62,-107v0,54,9,99,24,141r-31,0v-17,-33,-35,-83,-35,-141v0,-58,18,-108,35,-141r31,0v-15,42,-24,87,-24,141","w":93},"'":{"d":"53,-145r-33,0r-3,-94v0,-6,6,-7,15,-7r30,0","w":77},"&":{"d":"248,0r-64,0r-15,-17r-1,0v-19,17,-42,21,-73,21v-43,0,-83,-31,-83,-73v0,-36,13,-50,48,-70r0,0v-13,-13,-21,-26,-21,-44v0,-34,30,-56,65,-56v40,0,66,28,66,53v0,26,-12,40,-39,58r0,1r46,49r1,0v8,-14,10,-20,11,-43r45,0v-1,31,-9,55,-27,76xm104,-199v-8,0,-14,5,-14,14v0,10,7,20,13,27r1,0v10,-6,14,-14,14,-27v0,-9,-5,-14,-14,-14xm102,-36v16,0,27,-2,39,-10r0,-1r-52,-63r-1,0v-16,10,-25,19,-25,39v0,19,20,35,39,35","w":249},"%":{"d":"215,-233r33,0r-159,240r-32,0xm230,-119v34,0,61,25,61,61v0,36,-27,62,-61,62v-34,0,-61,-26,-61,-62v0,-36,27,-61,61,-61xm230,-27v11,0,19,-12,19,-31v0,-19,-8,-30,-19,-30v-11,0,-20,11,-20,30v0,19,9,31,20,31xm75,-230v34,0,61,26,61,62v0,36,-27,61,-61,61v-34,0,-61,-25,-61,-61v0,-36,27,-62,61,-62xm75,-138v11,0,19,-11,19,-30v0,-19,-8,-31,-19,-31v-11,0,-20,12,-20,31v0,19,9,30,20,30","w":304},"$":{"d":"159,-70v0,33,-25,55,-58,61r0,36r-31,0r0,-35v-16,-1,-35,-3,-48,-8r5,-40v20,6,35,9,54,9v18,0,27,-7,27,-18v0,-13,-3,-19,-26,-30v-44,-22,-59,-37,-59,-67v0,-28,19,-49,50,-55r0,-36r31,0r0,34v15,1,33,4,43,9r-6,40v-15,-6,-30,-9,-48,-9v-11,0,-18,4,-18,13v0,12,5,16,28,28v48,24,56,40,56,68","w":182},"#":{"d":"187,-129r-37,0r-6,32r33,0r0,22r-38,0r-14,68r-28,0r14,-68r-38,0r-13,68r-28,0r13,-68r-32,0r0,-22r37,0r7,-32r-34,0r0,-23r38,0r14,-67r28,0r-14,67r38,0r13,-67r28,0r-13,67r32,0r0,23xm116,-97r6,-32r-37,0r-7,32r38,0","w":200},"\"":{"d":"53,-145r-33,0r-3,-94v0,-6,6,-7,15,-7r30,0xm122,-145r-32,0r-4,-94v0,-6,7,-7,16,-7r30,0","w":147},"!":{"d":"73,-25v0,16,-12,29,-28,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28v16,0,28,12,28,28xm65,-71r-40,0r-3,-164r46,0","w":90},"L":{"d":"72,-40r113,0r0,40r-162,0r0,-235r49,0r0,195"},"\u00a0":{"w":79}}});


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

/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);

/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "pngFix"
 * Version: 1.2, 09.03.2009
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Changelog:
 *    09.03.2009 Version 1.2
 *    - Update for jQuery 1.3.x, removed @ from selectors
 *    11.09.2007 Version 1.1
 *    - removed noConflict
 *    - added png-support for input type=image
 *    - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
 *    31.05.2007 initial Version 1.0
 * --------------------------------------------------------------------
 * @example $(function(){$(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready
 *
 * jQuery(function(){jQuery(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready when using noConflict
 *
 * @example $(function(){$('div.examples').pngFix();});
 * @desc Fixes all PNG's within div with class examples
 *
 * @example $(function(){$('div.examples').pngFix( { blankgif:'ext.gif' } );});
 * @desc Fixes all PNG's within div with class examples, provides blank gif for input with png
 * --------------------------------------------------------------------
 */

(function($) {

jQuery.fn.pngFix = function(settings) {

	// Settings
	settings = jQuery.extend({
		blankgif: 'blank.gif'
	}, settings);

	var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

	if (jQuery.browser.msie && (ie55 || ie6)) {

		//fix images with png-source
		jQuery(this).find("img[src$=.png]").each(function() {

			jQuery(this).attr('width',jQuery(this).width());
			jQuery(this).attr('height',jQuery(this).height());

			var prevStyle = '';
			var strNewHTML = '';
			var imgId = (jQuery(this).attr('id')) ? 'id="' + jQuery(this).attr('id') + '" ' : '';
			var imgClass = (jQuery(this).attr('class')) ? 'class="' + jQuery(this).attr('class') + '" ' : '';
			var imgTitle = (jQuery(this).attr('title')) ? 'title="' + jQuery(this).attr('title') + '" ' : '';
			var imgAlt = (jQuery(this).attr('alt')) ? 'alt="' + jQuery(this).attr('alt') + '" ' : '';
			var imgAlign = (jQuery(this).attr('align')) ? 'float:' + jQuery(this).attr('align') + ';' : '';
			var imgHand = (jQuery(this).parent().attr('href')) ? 'cursor:hand;' : '';
			if (this.style.border) {
				prevStyle += 'border:'+this.style.border+';';
				this.style.border = '';
			}
			if (this.style.padding) {
				prevStyle += 'padding:'+this.style.padding+';';
				this.style.padding = '';
			}
			if (this.style.margin) {
				prevStyle += 'margin:'+this.style.margin+';';
				this.style.margin = '';
			}
			var imgStyle = (this.style.cssText);

			strNewHTML += '<span '+imgId+imgClass+imgTitle+imgAlt;
			strNewHTML += 'style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;
			strNewHTML += 'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;';
			strNewHTML += 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + jQuery(this).attr('src') + '\', sizingMethod=\'scale\');';
			strNewHTML += imgStyle+'"></span>';
			if (prevStyle != ''){
				strNewHTML = '<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;'+'">' + strNewHTML + '</span>';
			}

			jQuery(this).hide();
			jQuery(this).after(strNewHTML);

		});

		// fix css background pngs
		jQuery(this).find("*").each(function(){
			var bgIMG = jQuery(this).css('background-image');
			if(bgIMG.indexOf(".png")!=-1){
				var iebg = bgIMG.split('url("')[1].split('")')[0];
				jQuery(this).css('background-image', 'none');
				jQuery(this).get(0).runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + iebg + "',sizingMethod='scale')";
			}
		});
		
		//fix input with png-source
		jQuery(this).find("input[src$=.png]").each(function() {
			var bgIMG = jQuery(this).attr('src');
			jQuery(this).get(0).runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + bgIMG + '\', sizingMethod=\'scale\');';
   		jQuery(this).attr('src', settings.blankgif)
		});
	
	}
	
	return jQuery;

};

})(jQuery);


/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);

(function($) {
 
  $.fn.tweet = function(o){
    var s = {
      username: ["seaofclouds"],              // [string]   required, unless you want to display our tweets. :) it can be an array, just do ["username1","username2","etc"]
      avatar_size: null,                      // [integer]  height and width of avatar if displayed (48px max)
      count: 3,                               // [integer]  how many tweets to display?
      intro_text: null,                       // [string]   do you want text BEFORE your your tweets?
      outro_text: null,                       // [string]   do you want text AFTER your tweets?
      join_text:  null,                       // [string]   optional text in between date and tweet, try setting to "auto"
      auto_join_text_default: "i said,",      // [string]   auto text for non verb: "i said" bullocks
      auto_join_text_ed: "i",                 // [string]   auto text for past tense: "i" surfed
      auto_join_text_ing: "i am",             // [string]   auto tense for present tense: "i was" surfing
      auto_join_text_reply: "i replied to",   // [string]   auto tense for replies: "i replied to" @someone "with"
      auto_join_text_url: "i was looking at", // [string]   auto tense for urls: "i was looking at" http:...
      loading_text: null,                     // [string]   optional loading text, displayed while tweets load
      query: null                             // [string]   optional search query
    };

    $.fn.extend({
      linkUrl: function() {
        var returning = [];
        var regexp = /((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"$1\">$1</a>"))
        });
        return $(returning);
      },
      linkUser: function() {
        var returning = [];
        var regexp = /[\@]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"http://twitter.com/$1\">@$1</a>"))
        });
        return $(returning);
      },
      linkHash: function() {
        var returning = [];
        var regexp = / [\#]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp, ' <a href="http://search.twitter.com/search?q=&tag=$1&lang=all&from='+s.username.join("%2BOR%2B")+'">#$1</a>'))
        });
        return $(returning);
      },
      capAwesome: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/(a|A)wesome/gi, 'AWESOME'))
        });
        return $(returning);
      },
      capEpic: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/(e|E)pic/gi, 'EPIC'))
        });
        return $(returning);
      },
      makeHeart: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/[&lt;]+[3]/gi, "<tt class='heart'>&#x2665;</tt>"))
        });
        return $(returning);
      }
    });

    function relative_time(time_value) {
      var parsed_date = Date.parse(time_value);
      var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
      var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
      if(delta < 60) {
      return 'less than a minute ago';
      } else if(delta < 120) {
      return 'about a minute ago';
      } else if(delta < (45*60)) {
      return (parseInt(delta / 60)).toString() + ' minutes ago';
      } else if(delta < (90*60)) {
      return 'about an hour ago';
      } else if(delta < (24*60*60)) {
      return 'about ' + (parseInt(delta / 3600)).toString() + ' hours ago';
      } else if(delta < (48*60*60)) {
      return '1 day ago';
      } else {
      return (parseInt(delta / 86400)).toString() + ' days ago';
      }
    }

    if(o) $.extend(s, o);
    return this.each(function(){
      var list = $('<ul class="tweet_list">').appendTo(this);
      var intro = '<p class="tweet_intro">'+s.intro_text+'</p>'
      var outro = '<p class="tweet_outro">'+s.outro_text+'</p>'
      var loading = $('<p class="loading">'+s.loading_text+'</p>');
      if(typeof(s.username) == "string"){
        s.username = [s.username];
      }
      var query = '';
      if(s.query) {
        query += 'q='+s.query;
      }
      query += '&q=from:'+s.username.join('%20OR%20from:');
      var url = 'http://search.twitter.com/search.json?&'+query+'&rpp='+s.count+'&callback=?';
      if (s.loading_text) $(this).append(loading);
      $.getJSON(url, function(data){
        if (s.loading_text) loading.remove();
        if (s.intro_text) list.before(intro);
        $.each(data.results, function(i,item){
          // auto join text based on verb tense and content
          if (s.join_text == "auto") {
            if (item.text.match(/^(@([A-Za-z0-9-_]+)) .*/i)) {
              var join_text = s.auto_join_text_reply;
            } else if (item.text.match(/(^\w+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+) .*/i)) {
              var join_text = s.auto_join_text_url;
            } else if (item.text.match(/^((\w+ed)|just) .*/im)) {
              var join_text = s.auto_join_text_ed;
            } else if (item.text.match(/^(\w*ing) .*/i)) {
              var join_text = s.auto_join_text_ing;
            } else {
              var join_text = s.auto_join_text_default;
            }
          } else {
            var join_text = s.join_text;
          };

          var join_template = '<span class="tweet_join"> '+join_text+' </span>';
          var join = ((s.join_text) ? join_template : ' ')
          var avatar_template = '<a class="tweet_avatar" href="http://twitter.com/'+ item.from_user+'"><img src="'+item.profile_image_url+'" height="'+s.avatar_size+'" width="'+s.avatar_size+'" alt="'+item.from_user+'\'s avatar" border="0"/></a>';
          var avatar = (s.avatar_size ? avatar_template : '')
          var date = '<a href="http://twitter.com/'+item.from_user+'/statuses/'+item.id+'" title="view tweet on twitter">'+relative_time(item.created_at)+'</a>';
          var text = '<span class="tweet_text">' +$([item.text]).linkUrl().linkUser().linkHash().makeHeart().capAwesome().capEpic()[0]+ '</span>';
          
          // until we create a template option, arrange the items below to alter a tweet's display.
          list.append('<li>' + avatar + date + join + text + '</li>');

          list.children('li:first').addClass('tweet_first');
          list.children('li:odd').addClass('tweet_even');
          list.children('li:even').addClass('tweet_odd');
        });
        if (s.outro_text) list.after(outro);
      });

    });
  };
})(jQuery);

$(document).ready(function()
{
	$('a').click(function(){
		this.blur();
	});

	$('A[rel="external"]').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	$('A[rel="popup"]').click(function(){
		var href = $(this).attr('href');
		window.open(href, 'popup', 'width=400,height=500,toolbar=no');
		return false;
	});
	
	$('A[rel="player"]').click(function(){
		var href = $(this).attr('href');
		window.open(href, 'popup', 'width=300,height=400,toolbar=no');
		return false;
	});
	
	// http://blog.mirthlab.com/2008/04/18/simple-image-submit-button-rollovers-with-jquery/
	$('.sidebar-item-signup .submit-button').hover(function(){
		$(this).attr({src:'contents/images/btn.submit.over.gif'});
	}, function(){
		$(this).attr({src:'contents/images/btn.submit.gif'});
	});

	$('.sidebar-item-guestbook-form .submit-button').hover(function(){
		$(this).attr({src:'contents/images/btn.add.over.gif'});
	}, function(){
		$(this).attr({src:'contents/images/btn.add.gif'});
	});

	$('.add-comment-form .submit-button').hover(function(){
		$(this).attr({src:'contents/images/btn.submit.over.gif'});
	}, function(){
		$(this).attr({src:'contents/images/btn.submit.gif'});
	});

	$("form").submit(function() {
		$(":submit", this).attr("disabled", "disabled");
	});

	//scroll initially if there's a hash (#something) in the url 
	$.localScroll.hash({
		queue:true,
		duration:1000
	});

	$.localScroll({
		queue:true,
		duration:1000
	});

/*        $(".twitter").tweet({
          join_text: "auto",
          username: "schradinova",
          avatar_size: 16,
          count: 3,
          auto_join_text_default: "I said,", 
          auto_join_text_ed: "I",
          auto_join_text_ing: "I were",
          auto_join_text_reply: "I replied",
          auto_join_text_url: "I was checking out",
          loading_text: "loading tweets..."
        }); */
});