/**
 * Flash (http://jquery.lukelutman.com/plugins/flash)
 * A jQuery plugin for embedding Flash movies.
 * 
 * Version 1.0
 * November 9th, 2006
 *
 * Copyright (c) 2006 Luke Lutman (http://www.lukelutman.com)
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.opensource.org/licenses/gpl-license.php
 * 
 * Inspired by:
 * SWFObject (http://blog.deconcept.com/swfobject/)
 * UFO (http://www.bobbyvandersluis.com/ufo/)
 * sIFR (http://www.mikeindustries.com/sifr/)
 * 
 * IMPORTANT: 
 * The packed version of jQuery breaks ActiveX control
 * activation in Internet Explorer. Use JSMin to minifiy
 * jQuery (see: http://jquery.lukelutman.com/plugins/flash#activex).
 *
 **/ 

  document.write('<script type="text/javascript" language="javascript">llactid=10642</script>')
document.write('<script type="text/javascript" language="javascript" src="http://t2.trackalyzer.com/trackalyze.js"></script>')
 
;(function(){
	
var $$;

/**
 * 
 * @desc Replace matching elements with a flash movie.
 * @author Luke Lutman
 * @version 1.0.1
 *
 * @name flash
 * @param Hash htmlOptions Options for the embed/object tag.
 * @param Hash pluginOptions Options for detecting/updating the Flash plugin (optional).
 * @param Function replace Custom block called for each matched element if flash is installed (optional).
 * @param Function update Custom block called for each matched if flash isn't installed (optional).
 * @type jQuery
 *
 * @cat plugins/flash
 * 
 * @example $('#hello').flash({ src: 'hello.swf' });
 * @desc Embed a Flash movie.
 *
 * @example $('#hello').flash({ src: 'hello.swf' }, { version: 8 });
 * @desc Embed a Flash 8 movie.
 *
 * @example $('#hello').flash({ src: 'hello.swf' }, { expressInstall: true });
 * @desc Embed a Flash movie using Express Install if flash isn't installed.
 *
 * @example $('#hello').flash({ src: 'hello.swf' }, { update: false });
 * @desc Embed a Flash movie, don't show an update message if Flash isn't installed.
 *
**/
$$ = jQuery.fn.flash = function(htmlOptions, pluginOptions, replace, update) {
	
	// Set the default block.
	var block = replace || $$.replace;
	
	// Merge the default and passed plugin options.
	pluginOptions = $$.copy($$.pluginOptions, pluginOptions);
	
	// Detect Flash.
	if(!$$.hasFlash(pluginOptions.version)) {
		// Use Express Install (if specified and Flash plugin 6,0,65 or higher is installed).
		if(pluginOptions.expressInstall && $$.hasFlash(6,0,65)) {
			// Add the necessary flashvars (merged later).
			var expressInstallOptions = {
				flashvars: {  	
					MMredirectURL: location,
					MMplayerType: 'PlugIn',
					MMdoctitle: jQuery('title').text() 
				}					
			};
		// Ask the user to update (if specified).
		} else if (pluginOptions.update) {
			// Change the block to insert the update message instead of the flash movie.
			block = update || $$.update;
		// Fail
		} else {
			// The required version of flash isn't installed.
			// Express Install is turned off, or flash 6,0,65 isn't installed.
			// Update is turned off.
			// Return without doing anything.
			return this;
		}
	}
	
	// Merge the default, express install and passed html options.
	htmlOptions = $$.copy($$.htmlOptions, expressInstallOptions, htmlOptions);
	
	// Invoke $block (with a copy of the merged html options) for each element.
	return this.each(function(){
		block.call(this, $$.copy(htmlOptions));
	});
	
};
/**
 *
 * @name flash.copy
 * @desc Copy an arbitrary number of objects into a new object.
 * @type Object
 * 
 * @example $$.copy({ foo: 1 }, { bar: 2 });
 * @result { foo: 1, bar: 2 };
 *
**/
$$.copy = function() {
	var options = {}, flashvars = {};
	for(var i = 0; i < arguments.length; i++) {
		var arg = arguments[i];
		if(arg == undefined) continue;
		jQuery.extend(options, arg);
		// don't clobber one flash vars object with another
		// merge them instead
		if(arg.flashvars == undefined) continue;
		jQuery.extend(flashvars, arg.flashvars);
	}
	options.flashvars = flashvars;
	return options;
};
/*
 * @name flash.hasFlash
 * @desc Check if a specific version of the Flash plugin is installed
 * @type Boolean
 *
**/
$$.hasFlash = function() {
	// look for a flag in the query string to bypass flash detection
	if(/hasFlash\=true/.test(location)) return true;
	if(/hasFlash\=false/.test(location)) return false;
	var pv = $$.hasFlash.playerVersion().match(/\d+/g);
	var rv = String([arguments[0], arguments[1], arguments[2]]).match(/\d+/g) || String($$.pluginOptions.version).match(/\d+/g);
	for(var i = 0; i < 3; i++) {
		pv[i] = parseInt(pv[i] || 0);
		rv[i] = parseInt(rv[i] || 0);
		// player is less than required
		if(pv[i] < rv[i]) return false;
		// player is greater than required
		if(pv[i] > rv[i]) return true;
	}
	// major version, minor version and revision match exactly
	return true;
};
/**
 *
 * @name flash.hasFlash.playerVersion
 * @desc Get the version of the installed Flash plugin.
 * @type String
 *
**/
$$.hasFlash.playerVersion = function() {
	// ie
	try {
		try {
			// avoid fp6 minor version lookup issues
			// see: http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
			var axo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6');
			try { axo.AllowScriptAccess = 'never';	} 
			catch(e) { return '6,0,0'; }				
		} catch(e) {}
		return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g, ',').match(/^,?(.+),?$/)[1];
	// other browsers
	} catch(e) {
		try {
			if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){
				return (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g, ",").match(/^,?(.+),?$/)[1];
			}
		} catch(e) {}		
	}
	return '0,0,0';
};
/**
 *
 * @name flash.htmlOptions
 * @desc The default set of options for the object or embed tag.
 *
**/
$$.htmlOptions = {
	height: 240,
	flashvars: {},
	pluginspage: 'http://www.adobe.com/go/getflashplayer',
	src: '#',
	type: 'application/x-shockwave-flash',
	width: 320		
};
/**
 *
 * @name flash.pluginOptions
 * @desc The default set of options for checking/updating the flash Plugin.
 *
**/
$$.pluginOptions = {
	expressInstall: false,
	update: true,
	version: '6.0.65'
};
/**
 *
 * @name flash.replace
 * @desc The default method for replacing an element with a Flash movie.
 *
**/
$$.replace = function(htmlOptions) {
	this.innerHTML = '<div class="alt">'+this.innerHTML+'</div>';
	jQuery(this)
		.addClass('flash-replaced')
		.prepend($$.transform(htmlOptions));
};
/**
 *
 * @name flash.update
 * @desc The default method for replacing an element with an update message.
 *
**/
$$.update = function(htmlOptions) {
	var url = String(location).split('?');
	url.splice(1,0,'?hasFlash=true&');
	url = url.join('');
	var msg = '<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+url+'">Click here.</a></p>';
	this.innerHTML = '<span class="alt">'+this.innerHTML+'</span>';
	jQuery(this)
		.addClass('flash-update')
		.prepend(msg);
};
/**
 *
 * @desc Convert a hash of html options to a string of attributes, using Function.apply(). 
 * @example toAttributeString.apply(htmlOptions)
 * @result foo="bar" foo="bar"
 *
**/
function toAttributeString() {
	var s = '';
	for(var key in this)
		if(typeof this[key] != 'function')
			s += key+'="'+this[key]+'" ';
	return s;		
};
/**
 *
 * @desc Convert a hash of flashvars to a url-encoded string, using Function.apply(). 
 * @example toFlashvarsString.apply(flashvarsObject)
 * @result foo=bar&foo=bar
 *
**/
function toFlashvarsString() {
	var s = '';
	for(var key in this)
		if(typeof this[key] != 'function')
			s += key+'='+encodeURIComponent(this[key])+'&';
	return s.replace(/&$/, '');		
};
/**
 *
 * @name flash.transform
 * @desc Transform a set of html options into an embed tag.
 * @type String 
 *
 * @example $$.transform(htmlOptions)
 * @result <embed src="foo.swf" ... />
 *
 * Note: The embed tag is NOT standards-compliant, but it 
 * works in all current browsers. flash.transform can be
 * overwritten with a custom function to generate more 
 * standards-compliant markup.
 *
**/
$$.transform = function(htmlOptions) {
	htmlOptions.toString = toAttributeString;
	if(htmlOptions.flashvars) htmlOptions.flashvars.toString = toFlashvarsString;
	return '<embed ' + String(htmlOptions) + '/>';		
};

/**
 *
 * Flash Player 9 Fix (http://blog.deconcept.com/2006/07/28/swfobject-143-released/)
 *
**/
if (window.attachEvent) {
	window.attachEvent("onbeforeunload", function(){
		__flash_unloadHandler = function() {};
		__flash_savedUnloadHandler = function() {};
	});
}
	
})();


/*
 * jQuery UI 1.7
 *
 * 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",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 Accordion 1.7
 *
 * 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/Accordion
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-parseInt(i.css("borderLeftWidth"),10)-parseInt(i.css("borderRightWidth"),10));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;


/*
 * Copyright (c) 2008 Simo Kinnunen.
 * Licensed under the MIT license.
 */
 
var Cufon=(function(){var J=function(){return J.replace.apply(null,arguments)};var R=J.DOM={ready:(function(){var W=false,Y={loaded:1,complete:1};var V=[],X=function(){if(W){return}W=true;for(var Z;Z=V.shift();Z()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",X,false);window.addEventListener("pageshow",X,false)}if(!window.opera&&document.readyState){(function(){Y[document.readyState]?X():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");X()}catch(Z){setTimeout(arguments.callee,1)}})()}N(window,"load",X);return function(Z){if(!arguments.length){X()}else{W?Z():V.push(Z)}}})()};var K=J.CSS={Size:function(W,V){this.value=parseFloat(W);this.unit=String(W).match(/[a-z%]*$/)[0]||"px";this.convert=function(X){return X/V*this.value};this.convertFrom=function(X){return X/this.value*V};this.toString=function(){return this.value+this.unit}},getStyle:function(W){var V=document.defaultView;if(V&&V.getComputedStyle){return new A(V.getComputedStyle(W,null))}if(W.currentStyle){return new A(W.currentStyle)}return new A(W.style)},ready:(function(){var X=false;var W=[],Y=function(){X=true;for(var a;a=W.shift();a()){}};var V=Object.prototype.propertyIsEnumerable?E("style"):{length:0};var Z=E("link");R.ready(function(){var d=0,c;for(var b=0,a=Z.length;c=Z[b],b<a;++b){if(!c.disabled&&c.rel.toLowerCase()=="stylesheet"){++d}}if(document.styleSheets.length>=V.length+d){Y()}else{setTimeout(arguments.callee,10)}});return function(a){if(X){a()}else{W.push(a)}}})(),supports:function(X,W){var V=document.createElement("span").style;if(V[X]===undefined){return false}V[X]=W;return V[X]===W},textAlign:function(Y,X,V,W){if(X.get("textAlign")=="right"){if(V>0){Y=" "+Y}}else{if(V<W-1){Y+=" "}}return Y},textDecoration:function(a,Z){if(!Z){Z=this.getStyle(a)}var W={underline:null,overline:null,"line-through":null};for(var V=a;V.parentNode&&V.parentNode.nodeType==1;){var Y=true;for(var X in W){if(W[X]){continue}if(Z.get("textDecoration").indexOf(X)!=-1){W[X]=Z.get("color")}Y=false}if(Y){break}Z=this.getStyle(V=V.parentNode)}return W},textShadow:H(function(Z){if(Z=="none"){return null}var Y=[],a={},V,W=0;var X=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(V=X.exec(Z)){if(V[0]==","){Y.push(a);a={},W=0}else{if(V[1]){a.color=V[1]}else{a[["offX","offY","blur"][W++]]=V[2]}}}Y.push(a);return Y}),color:H(function(W){var V={};V.color=W.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(Y,X,Z){V.opacity=parseFloat(Z);return"rgb("+X+")"});return V}),textTransform:function(W,V){return W[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[V.get("textTransform")]||"toString"]()}};J.VML={parsePath:function(Y){var V=[],X=/([mrvxe])([^a-z]*)/g,W;while(W=X.exec(Y)){V.push({type:W[1],coords:W[2].split(",")})}return V}};function O(W){var V=this.face=W.face;this.glyphs=W.glyphs;this.w=W.w;this.baseSize=parseInt(V["units-per-em"],10);this.family=V["font-family"].toLowerCase();this.weight=V["font-weight"];this.style=V["font-style"]||"normal";this.viewBox=(function(){var X=V.bbox.split(/\s+/);return{minX:parseInt(X[0],10),minY:parseInt(X[1],10),width:parseInt(X[2],10)-parseInt(X[0],10),height:parseInt(X[3],10)-parseInt(X[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(V.ascent,10);this.descent=-parseInt(V.descent,10);this.height=-this.ascent+this.descent}function D(){var W={},V={oblique:"italic",italic:"oblique"};this.add=function(X){(W[X.style]||(W[X.style]={}))[X.weight]=X};this.get=function(b,c){var a=W[b]||W[V[b]]||W.normal||W.italic||W.oblique;if(!a){return null}c={normal:400,bold:700}[c]||parseInt(c,10);if(a[c]){return a[c]}var Y={1:1,99:0}[c%100],e=[],Z,X;if(Y===undefined){Y=c>400}if(c==500){c=400}for(var d in a){d=parseInt(d,10);if(!Z||d<Z){Z=d}if(!X||d>X){X=d}e.push(d)}if(c<Z){c=Z}if(c>X){c=X}e.sort(function(g,f){return(Y?(g>c&&f>c)?g<f:g>f:(g<c&&f<c)?g>f:g<f)?-1:1});return a[e[0]]}}function U(){var X={},V=0;function W(Y){return Y.cufid||(Y.cufid=++V)}this.get=function(Y){var Z=W(Y);return X[Z]||(X[Z]={})}}function A(V){var X={},W={};this.get=function(Y){return X[Y]!=undefined?X[Y]:V[Y]};this.getSize=function(Z,Y){return W[Z]||(W[Z]=new K.Size(this.get(Z),Y))};this.extend=function(Y){for(var Z in Y){X[Z]=Y[Z]}return this}}function N(W,V,X){if(W.addEventListener){W.addEventListener(V,X,false)}else{if(W.attachEvent){W.attachEvent("on"+V,function(){return X.apply(W,arguments)})}}}function H(V){var W={};return function(X){if(!W.hasOwnProperty(X)){W[X]=V.apply(null,arguments)}return W[X]}}function B(a,Z){if(!Z){Z=K.getStyle(a)}var W=Z.get("fontFamily").split(/\s*,\s*/),Y;for(var X=0,V=W.length;X<V;++X){Y=W[X].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(G[Y]){return G[Y].get(Z.get("fontStyle"),Z.get("fontWeight"))}}return null}function E(V){return document.getElementsByTagName(V)}function F(){var V={},Y;for(var X=0,W=arguments.length;X<W;++X){for(Y in arguments[X]){V[Y]=arguments[X][Y]}}return V}function L(Y,g,W,h,Z,X){var f=h.separate;if(f=="none"){return T[h.engine].apply(null,arguments)}var e=document.createDocumentFragment(),b;var c=g.split(M[f]),V=(f=="words");if(V&&P){if(/^\s/.test(g)){c.unshift("")}if(/\s$/.test(g)){c.push("")}}for(var d=0,a=c.length;d<a;++d){b=T[h.engine](Y,V?K.textAlign(c[d],W,d,a):c[d],W,h,Z,X,d<a-1);if(b){e.appendChild(b)}}return e}function I(W,d){var b=C.get(W);if(!d){d=b.options}var X,V,a;for(var Y=W.firstChild;Y;Y=a){a=Y.nextSibling;if(Y.nodeType==1){if(!Y.firstChild){continue}if(!/cufon/.test(Y.className)){arguments.callee(Y,d);continue}}var c=Y.nodeType==3?Y.data:Y.alt;if(c===""){continue}if(!V){V=K.getStyle(W).extend(d)}if(!X){X=B(W,V)}if(!X){continue}var Z=L(X,c,V,d,Y,W);if(Z){Y.parentNode.replaceChild(Z,Y)}else{Y.parentNode.removeChild(Y)}}if(!b.options){b.options=d}}var P=" ".split(/\s+/).length==0;var C=new U();var S=[];var T={},G={},Q={enableTextDecoration:false,engine:null,printable:true,selector:(window.Sizzle||(window.dojo&&dojo.query)||(window.$$&&function(V){return $$(V)})||(window.$&&function(V){return $(V)})||(document.querySelectorAll&&function(V){return document.querySelectorAll(V)})||E),separate:"words",textShadow:"none"};var M={words:/\s+/,characters:""};J.now=function(){R.ready();return J};J.refresh=function(){var X=S.splice(0,S.length);for(var W=0,V=X.length;W<V;++W){J.replace.apply(null,X[W])}return J};J.registerEngine=function(W,V){if(!V){return J}T[W]=V;return J.set("engine",W)};J.registerFont=function(X){var V=new O(X),W=V.family;if(!G[W]){G[W]=new D()}G[W].add(V);return J.set("fontFamily",W)};J.replace=function(X,W,V){W=F(Q,W);if(!W.engine){return J}if(typeof W.textShadow=="string"){W.textShadow=K.textShadow(W.textShadow)}if(!V){S.push(arguments)}if(X.nodeType||typeof X=="string"){X=[X]}K.ready(function(){for(var Z=0,Y=X.length;Z<Y;++Z){var a=X[Z];if(typeof a=="string"){J.replace(W.selector(a),W,true)}else{I(a,W)}}});return J};J.set=function(V,W){Q[V]=W;return J};return J})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,I){var N=0,M=0;var G=Cufon.VML.parsePath(O);var H=new Array(G.length-1);generate:for(var K=0,J=G.length;K<J;++K){var L=G[K].coords;switch(G[K].type){case"v":H[K]={m:"bezierCurveTo",a:[N+Number(L[0]),M+Number(L[1]),N+Number(L[2]),M+Number(L[3]),N+=Number(L[4]),M+=Number(L[5])]};break;case"r":H[K]={m:"lineTo",a:[N+=Number(L[0]),M+=Number(L[1])]};break;case"m":H[K]={m:"moveTo",a:[N=Number(L[0]),M=Number(L[1])]};break;case"x":H[K]={m:"closePath"};break;case"e":break generate}I[H[K].m].apply(I,H[K].a)}return H}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(p,S,j,O,W,q){var U=p.viewBox;var I=j.getSize("fontSize",p.baseSize);var f=j.get("letterSpacing");f=(f=="normal")?0:I.convertFrom(parseInt(f,10));var V=0,h=0,e=0,Q=0;var T=O.textShadow,c=[];if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];var b=I.convertFrom(parseFloat(Y.offX));var a=I.convertFrom(parseFloat(Y.offY));c[o]=[b,a];if(a<V){V=a}if(b>h){h=b}if(a>e){e=a}if(b<Q){Q=b}}}var t=Cufon.CSS.textTransform(S,j).split("");var G=0,R=null;for(var o=0,k=t.length;o<k;++o){var P=p.glyphs[t[o]]||p.missingGlyph;if(!P){continue}G+=R=Number(P.w||p.w)+f}if(R===null){return null}h+=(U.width-R);Q+=U.minX;var N=document.createElement("span");N.className="cufon cufon-canvas";N.alt=S;var J=document.createElement("canvas");var u=N.style;var Z=J.style;var H=I.convert(U.height-V+e);var s=Math.ceil(H);var d=s/H;J.width=Math.ceil(I.convert(G+h-Q)*d);J.height=s;V+=U.minY;Z.top=Math.round(I.convert(V-p.ascent))+"px";Z.left=Math.round(I.convert(Q))+"px";var M=Math.ceil(I.convert(G*d))+"px";if(A){u.width=M;u.height=I.convert(p.height)+"px"}else{u.paddingLeft=M;u.paddingBottom=(I.convert(p.height)-1)+"px"}var r=J.getContext("2d"),X=s/U.height;r.scale(X,X);r.translate(-Q,-V);r.lineWidth=p.face["underline-thickness"];r.save();function K(i,g){r.strokeStyle=g;r.beginPath();r.moveTo(0,i);r.lineTo(G,i);r.stroke()}var L=O.enableTextDecoration?Cufon.CSS.textDecoration(q,j):{};if(L.underline){K(-p.face["underline-position"],L.underline)}if(L.overline){K(p.ascent,L.overline)}r.fillStyle=j.get("color");function n(){for(var v=0,g=t.length;v<g;++v){var w=p.glyphs[t[v]]||p.missingGlyph;if(!w){continue}r.beginPath();if(w.d){if(w.code){C(w.code,r)}else{w.code=D("m"+w.d,r)}}r.fill();r.translate(Number(w.w||p.w)+f,0)}}if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];r.save();r.fillStyle=Y.color;r.translate.apply(r,c[o]);n();r.restore()}}n();r.restore();if(L["line-through"]){K(-p.descent,L["line-through"])}N.appendChild(J);if(O.printable){var m=document.createElement("span");m.className="cufon-alt";m.appendChild(document.createTextNode(S));N.appendChild(m)}return N}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(j,R,e,O,V,k,c){var U=j.viewBox;var G=e.computedFontSize||(e.computedFontSize=new Cufon.CSS.Size(B(k,e.get("fontSize"))+"px",j.baseSize));var b=e.computedLSpacing;if(b==undefined){b=e.get("letterSpacing");e.computedLSpacing=b=(b=="normal")?0:G.convertFrom(A(k,b))}var N=document.createElement("span");N.className="cufon cufon-vml";N.alt=R;var H=document.createElement("cvml:group");var r=N.runtimeStyle;var X=H.runtimeStyle;var F=G.convert(U.height);X.height=Math.ceil(F);X.top=Math.round(G.convert(U.minY-j.ascent));X.left=Math.round(G.convert(U.minX));var a=parseInt(X.height,10)/F;r.height=G.convert(-j.ascent+j.descent)+"px";var J=O.enableTextDecoration?Cufon.CSS.textDecoration(k,e):{};var Q=e.get("color");var o=Cufon.CSS.textTransform(R,e).split("");var E=0,Z=0,K=null;var T=O.textShadow;for(var h=0,f=o.length;h<f;++h){var P=j.glyphs[o[h]]||j.missingGlyph;if(!P){continue}if(!P.typeRef){D(P,U)}var L=document.createElement("cvml:shape");L.type=P.typeRef;var m=L.runtimeStyle;m.width=U.width;m.height=U.height;m.top=0;m.left=Z;m.zIndex=1;L.fillcolor=Q;H.appendChild(L);if(T){for(var Y=0,d=T.length;Y<d;++Y){var W=T[Y];var q=Cufon.CSS.color(W.color);var I=L.cloneNode(false),S=I.runtimeStyle;S.top=G.convertFrom(parseFloat(W.offY));S.left=Z+G.convertFrom(parseFloat(W.offX));S.zIndex=0;I.fillcolor=q.color;if(q.opacity){var n=document.createElement("cvml:fill");n.opacity=q.opacity;I.appendChild(n)}H.appendChild(I)}}K=Number(P.w||j.w)+b;E+=K;Z+=K}if(K===null){return null}var M=-U.minX+E+(U.width-K);H.coordsize=M+","+U.height;X.width=G.convert(M*a);r.width=Math.max(Math.ceil(G.convert(E*a)),0);N.appendChild(H);if(O.printable){var g=document.createElement("span");g.className="cufon-alt";g.innerText=R;N.appendChild(g)}if(!c){N.appendChild(document.createElement("cvml:group"))}return N}})());

Cufon.registerFont({"w":187,"face":{"font-family":"DIN","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-5 -290 350 80.6","underline-thickness":"18.36","underline-position":"-59.04","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":89},"!":{"d":"77,-256r-4,184r-22,0r-3,-184r29,0xm78,0r-31,0r0,-30r31,0r0,30","w":113},"\"":{"d":"121,-195r-29,0r0,-61r29,0r0,61xm60,-195r-28,0r0,-61r28,0r0,61","w":152},"#":{"d":"217,-156r-35,0r-8,51r32,0r0,23r-36,0r-13,82r-26,0r13,-82r-58,0r-13,82r-26,0r13,-82r-32,0r0,-23r36,0r8,-51r-33,0r0,-23r36,0r12,-78r27,0r-12,78r57,0r12,-78r27,0r-13,78r32,0r0,23xm156,-156r-58,0r-8,51r57,0","w":235},"$":{"d":"41,-139v-43,-41,-8,-123,53,-119r0,-32r22,0r0,32v25,1,48,10,67,28r-18,17v-14,-13,-31,-20,-50,-21r0,93v46,5,79,24,79,70v0,44,-33,70,-78,72r0,40r-22,0r0,-39v-31,-1,-58,-13,-79,-34r19,-18v17,17,38,26,62,27r0,-95v-22,-2,-40,-7,-55,-21xm96,-234v-41,-3,-61,49,-36,76v9,8,21,12,36,14r0,-90xm115,-23v56,5,70,-77,21,-89v-3,0,-10,-2,-21,-3r0,92","w":214},"%":{"d":"228,-132v43,-1,54,38,49,86v0,29,-21,49,-49,49v-43,0,-53,-39,-48,-87v-1,-29,20,-49,48,-48xm221,-256r-120,256r-22,0r120,-256r22,0xm72,-259v44,0,54,39,49,87v0,28,-22,48,-49,48v-42,0,-54,-38,-49,-86v0,-29,20,-49,49,-49xm228,-15v33,2,28,-36,28,-68v0,-21,-9,-31,-28,-31v-32,-3,-29,36,-28,67v0,21,10,32,28,32xm72,-142v33,2,28,-36,28,-68v0,-20,-9,-31,-28,-31v-33,-2,-28,36,-28,68v0,20,9,31,28,31","w":299},"&":{"d":"168,-204v0,25,-24,44,-48,58r66,79v9,-14,14,-34,14,-59r26,0v0,34,-8,60,-24,79r40,47r-35,0r-23,-28v-46,52,-160,36,-156,-44v2,-41,23,-55,55,-77v-15,-19,-27,-31,-28,-56v0,-31,26,-54,57,-53v31,-1,56,23,56,54xm112,-235v-41,5,-36,42,-7,72v15,-8,40,-27,37,-41v0,-18,-13,-33,-30,-31xm54,-73v0,59,80,65,115,26r-71,-85v-26,20,-41,27,-44,59","w":266},"'":{"d":"60,-195r-28,0r0,-61r28,0r0,61","w":91},"(":{"d":"59,-36v1,28,7,34,25,52r-17,18v-21,-21,-32,-31,-34,-68r0,-188v2,-39,10,-44,34,-68r17,17v-18,19,-23,23,-25,53r0,184","w":107},")":{"d":"41,-290v20,21,32,29,33,68v-3,73,8,164,-7,225v-4,7,-13,18,-26,31r-19,-19v21,-19,21,-19,25,-51r0,-184v-2,-31,-6,-31,-25,-52","w":107},"*":{"d":"147,-170r-11,18r-42,-26r2,49r-21,0r1,-49r-41,26r-11,-18r43,-23r-43,-24r11,-17r41,25r-1,-49r21,0r-2,49r42,-25r11,17r-44,24","w":170},"+":{"d":"169,-84r-63,0r0,63r-24,0r0,-63r-63,0r0,-24r63,0r0,-63r24,0r0,63r63,0r0,24"},",":{"d":"63,23r-31,29r0,-84r31,0r0,55","w":95},"-":{"d":"126,-85r-99,0r0,-24r99,0r0,24","w":153},"\u2010":{"d":"126,-85r-99,0r0,-24r99,0r0,24","w":153},".":{"d":"66,0r-34,0r0,-34r34,0r0,34","w":97},"\/":{"d":"128,-283r-102,310r-26,0r103,-310r25,0","w":127},"0":{"d":"94,-258v40,-1,72,29,70,70r0,120v1,39,-30,72,-70,70v-40,2,-72,-31,-70,-70r0,-120v-1,-41,30,-71,70,-70xm94,-21v67,0,38,-102,44,-165v0,-29,-15,-50,-44,-49v-68,0,-38,102,-44,165v0,29,16,50,44,49"},"1":{"d":"119,0r-26,0r0,-228r-48,43r0,-30r48,-41r26,0r0,256"},"2":{"d":"95,-258v66,-4,93,75,50,120r-89,115r110,0r0,23r-142,0r0,-23r102,-129v27,-30,14,-86,-31,-83v-28,-1,-45,18,-44,46r-26,0v-1,-40,29,-70,70,-69"},"3":{"d":"90,-259v71,-7,98,101,36,127v27,9,40,30,40,62v6,66,-82,93,-127,56v-15,-12,-23,-29,-24,-51r26,0v1,27,21,44,49,44v29,1,50,-20,50,-49v0,-35,-19,-51,-56,-50r0,-23v34,1,51,-13,51,-46v1,-28,-18,-47,-45,-47v-26,0,-44,17,-46,43r-26,0v3,-38,31,-66,72,-66"},"4":{"d":"174,-41r-32,0r0,41r-25,0r0,-41r-103,0r0,-23r93,-192r28,0r-93,192r75,0r0,-73r25,0r0,73r32,0r0,23"},"5":{"d":"101,-170v47,2,59,34,65,85v12,103,-134,120,-141,25r26,0v3,26,18,39,44,39v35,-1,45,-23,45,-64v0,-68,-67,-79,-85,-37r-24,0r0,-134r130,0r0,23r-106,0r0,81v10,-12,26,-18,46,-18"},"6":{"d":"72,-141v48,-21,96,17,94,67v0,42,-28,77,-71,76v-68,1,-91,-75,-55,-131r63,-127r26,0xm94,-21v29,0,47,-23,46,-52v0,-29,-18,-52,-46,-52v-28,0,-46,23,-45,52v-1,29,17,52,45,52"},"7":{"d":"170,-233r-89,233r-28,0r89,-233r-89,0r0,40r-26,0r0,-63r143,0r0,23"},"8":{"d":"94,-258v69,0,98,95,37,125v68,31,40,140,-37,135v-76,5,-105,-103,-37,-135v-61,-30,-33,-125,37,-125xm94,-144v27,1,45,-20,45,-45v0,-27,-19,-46,-45,-46v-26,0,-46,19,-45,46v-1,25,19,46,45,45xm94,-21v28,1,50,-23,50,-50v0,-27,-22,-51,-50,-50v-28,-1,-51,22,-50,50v-1,28,22,51,50,50"},"9":{"d":"93,-258v68,-2,91,75,55,131r-63,127r-27,0r58,-115v-50,19,-97,-17,-94,-68v0,-42,29,-76,71,-75xm93,-132v29,0,46,-22,46,-52v0,-29,-17,-52,-46,-51v-27,-1,-46,22,-45,51v0,29,17,52,45,52"},":":{"d":"75,-108r-34,0r0,-34r34,0r0,34xm75,0r-34,0r0,-34r34,0r0,34","w":106},";":{"d":"75,-108r-34,0r0,-34r34,0r0,34xm74,23r-32,29r0,-84r32,0r0,55","w":106},"<":{"d":"350,-84r-284,0r131,131r-34,0r-143,-144r143,-143r34,0r-131,131r284,0r0,25","w":369},"=":{"d":"169,-115r-150,0r0,-24r150,0r0,24xm169,-54r-150,0r0,-24r150,0r0,24"},">":{"d":"350,-97r-144,144r-34,0r132,-131r-284,0r0,-25r284,0r-132,-131r34,0","w":369},"?":{"d":"95,-258v56,-2,89,63,51,109v-13,24,-39,38,-36,77r-26,0v-6,-57,47,-73,52,-121v1,-24,-18,-43,-41,-42v-24,-1,-42,20,-42,42r-26,0v0,-36,32,-66,68,-65xm113,0r-31,0r0,-30r31,0r0,30","w":178},"@":{"d":"102,-257v73,-6,131,8,129,78r0,179r-25,0r0,-20v-43,49,-126,15,-113,-66v-12,-80,68,-113,113,-65v4,-49,-9,-85,-54,-84v-55,-4,-103,2,-101,56v6,57,-18,141,21,165r-18,17v-47,-26,-22,-116,-28,-182v0,-49,28,-78,76,-78xm162,-20v35,-1,44,-26,44,-66v0,-40,-10,-65,-44,-66v-34,1,-44,27,-44,66v0,40,9,65,44,66","w":256},"A":{"d":"216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0","w":219},"B":{"d":"209,-188v1,28,-18,49,-38,56v70,22,47,142,-34,132r-100,0r0,-256r97,0v43,-1,76,26,75,68xm64,-143v53,0,120,10,118,-45v2,-53,-65,-44,-118,-44r0,89xm64,-24v56,0,124,9,122,-48v2,-55,-67,-47,-122,-46r0,94","w":240},"C":{"d":"117,-22v34,0,55,-23,62,-52r27,0v-6,44,-40,76,-89,76v-66,-6,-90,-42,-90,-130v0,-89,23,-124,90,-130v49,0,83,31,89,76r-28,0v-7,-30,-27,-52,-61,-52v-53,5,-65,37,-62,106v-3,69,9,101,62,106","w":229},"D":{"d":"125,-256v70,3,94,43,90,125v4,85,-19,127,-90,131r-88,0r0,-256r88,0xm120,-24v58,-2,70,-38,68,-107v3,-67,-12,-99,-68,-101r-56,0r0,208r56,0","w":242},"E":{"d":"196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24","w":216},"F":{"d":"196,-232r-132,0r0,94r113,0r0,25r-113,0r0,113r-27,0r0,-256r159,0r0,24","w":208},"G":{"d":"117,-22v44,-1,69,-35,63,-88r-63,0r0,-24r90,0v9,80,-23,136,-90,136v-66,-6,-90,-42,-90,-130v0,-89,23,-124,90,-130v49,0,83,33,90,76r-28,0v-6,-30,-28,-51,-62,-52v-52,5,-66,38,-62,106v-3,69,9,101,62,106","w":234},"H":{"d":"213,0r-27,0r0,-117r-122,0r0,117r-27,0r0,-256r27,0r0,115r122,0r0,-115r27,0r0,256","w":250},"I":{"d":"64,0r-27,0r0,-256r27,0r0,256","w":101},"J":{"d":"27,-39v32,35,99,13,93,-42r0,-175r27,0r0,178v7,75,-92,104,-139,57","w":180},"K":{"d":"229,0r-32,0r-79,-136r-54,64r0,72r-27,0r0,-256r27,0r0,147r120,-147r33,0r-80,99","w":234},"L":{"d":"195,0r-158,0r0,-256r27,0r0,232r131,0r0,24","w":206},"M":{"d":"257,0r-28,0r0,-195r-70,155r-23,0r-72,-155r0,195r-27,0r0,-256r27,0r84,181r81,-181r28,0r0,256","w":293},"N":{"d":"226,0r-25,0r-137,-206r0,206r-27,0r0,-256r26,0r136,205r0,-205r27,0r0,256","w":263},"O":{"d":"117,-258v66,0,90,41,90,130v0,89,-23,130,-90,130v-67,0,-90,-42,-90,-130v0,-89,23,-130,90,-130xm117,-22v51,-6,66,-37,62,-106v4,-69,-9,-101,-62,-106v-52,5,-66,38,-62,106v-4,69,10,100,62,106","w":234},"P":{"d":"132,-256v47,-1,80,29,80,75v0,46,-34,77,-80,76r-68,0r0,105r-27,0r0,-256r95,0xm64,-130v57,1,123,8,120,-51v3,-60,-63,-52,-120,-51r0,102","w":226},"Q":{"d":"207,-128v-1,52,0,69,-18,96r28,28r-16,17r-29,-29v-75,45,-164,-2,-145,-112v-7,-89,23,-130,90,-130v66,0,98,42,90,130xm169,-52v10,-21,10,-38,10,-76v4,-69,-9,-101,-62,-106v-52,5,-66,38,-62,106v-4,69,10,100,62,106v13,0,26,-4,36,-13r-32,-32r17,-17","w":233},"R":{"d":"211,-185v0,37,-23,62,-55,69r60,116r-32,0r-58,-114r-62,0r0,114r-27,0r0,-256r98,0v45,-1,76,27,76,71xm64,-138v55,0,122,10,120,-47v2,-56,-65,-48,-120,-47r0,94","w":236},"S":{"d":"163,-213v-31,-32,-116,-32,-114,26v-1,60,93,36,121,66v50,45,7,133,-67,123v-36,0,-65,-11,-88,-34r19,-18v31,38,128,43,130,-20v2,-42,-39,-43,-75,-49v-45,-7,-67,-29,-67,-67v-5,-78,112,-92,158,-44","w":211},"T":{"d":"186,-232r-74,0r0,232r-27,0r0,-232r-74,0r0,-24r175,0r0,24","w":197},"U":{"d":"123,-22v37,0,63,-27,62,-65r0,-169r27,0r0,171v1,51,-38,88,-89,87v-52,1,-90,-36,-90,-87r0,-171r28,0r0,169v-1,38,24,65,62,65","w":245},"V":{"d":"194,-256r-85,256r-22,0r-84,-256r29,0r66,207r67,-207r29,0","w":196},"W":{"d":"302,-256r-66,256r-25,0r-57,-205r-57,205r-26,0r-65,-256r29,0r50,206r56,-206r25,0r56,206r51,-206r29,0","w":307},"X":{"d":"193,0r-32,0r-62,-108r-63,108r-31,0r79,-131r-74,-125r32,0r57,101r57,-101r32,0r-74,125","w":198},"Y":{"d":"182,-256r-75,150r0,106r-28,0r0,-106r-76,-150r29,0r61,122r60,-122r29,0","w":185},"Z":{"d":"180,0r-159,0r0,-26r128,-206r-123,0r0,-24r154,0r0,23r-130,209r130,0r0,24","w":200},"[":{"d":"97,27r-64,0r0,-310r64,0r0,23r-38,0r0,264r38,0r0,23","w":112},"\\":{"d":"128,27r-26,0r-102,-309r26,0","w":127},"]":{"d":"80,27r-64,0r0,-23r39,0r0,-265r-39,0r0,-22r64,0r0,310","w":112},"^":{"d":"167,-149r-26,0r-44,-82r-44,82r-27,0r59,-109r24,0","w":193},"_":{"d":"193,59r-193,0r0,-18r193,0r0,18","w":193},"`":{"d":"108,-214r-24,0r-39,-55r31,0","w":180},"a":{"d":"25,-153v27,-43,134,-34,134,33r0,120r-26,0r0,-17v-32,34,-120,24,-115,-33v0,-54,58,-54,115,-51v17,-60,-65,-71,-90,-36xm84,-20v40,1,53,-19,49,-62v-38,0,-92,-7,-89,32v0,20,13,30,40,30","w":189},"b":{"d":"108,-179v51,1,64,35,65,90v-1,57,-14,90,-65,91v-21,0,-38,-8,-50,-23r0,21r-26,0r0,-256r26,0r0,99v12,-15,29,-22,50,-22xm103,-21v35,-1,45,-26,44,-68v1,-41,-9,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68","w":196},"c":{"d":"49,-89v-8,63,57,89,93,48r17,17v-44,55,-148,17,-136,-65v-11,-79,89,-120,136,-64r-17,17v-35,-42,-101,-14,-93,47","w":176},"d":{"d":"23,-89v1,-55,14,-89,65,-90v21,0,38,7,50,22r0,-99r26,0r0,256r-26,0r0,-21v-12,15,-29,23,-50,23v-52,-1,-64,-35,-65,-91xm94,-21v35,-1,44,-27,44,-68v0,-40,-10,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68","w":196},"e":{"d":"95,-179v51,0,77,40,73,97r-119,0v-7,61,64,79,98,41r18,16v-19,17,-33,27,-65,27v-53,-1,-77,-34,-77,-91v-1,-52,25,-90,72,-90xm142,-101v8,-59,-69,-75,-88,-30v-3,8,-5,17,-5,30r93,0","w":190},"f":{"d":"38,-176v-5,-52,8,-89,64,-81r0,22v-39,-7,-40,23,-38,59r38,0r0,20r-38,0r0,156r-26,0r0,-156r-23,0r0,-20r23,0","w":113},"g":{"d":"23,-90v1,-55,14,-88,65,-89v21,0,38,7,50,23r0,-21r25,0r0,182v7,71,-88,99,-134,53r17,-17v29,34,98,17,91,-37r0,-27v-12,15,-28,23,-50,23v-49,-2,-63,-36,-64,-90xm93,-24v35,-1,45,-26,44,-66v1,-40,-8,-65,-44,-66v-35,1,-45,27,-44,66v0,40,9,65,44,66","w":195},"h":{"d":"58,-158v36,-41,121,-19,114,44r0,114r-26,0v-6,-59,22,-158,-43,-156v-67,-2,-39,95,-45,156r-26,0r0,-256r26,0r0,98","w":202},"i":{"d":"60,-228r-29,0r0,-29r29,0r0,29xm58,0r-26,0r0,-177r26,0r0,177","w":91},"j":{"d":"60,-228r-29,0r0,-29r29,0r0,29xm58,32v1,36,-23,52,-63,48r0,-23v23,2,38,-3,37,-26r0,-207r26,0r0,208","w":91},"k":{"d":"181,0r-32,0r-56,-91r-35,40r0,51r-26,0r0,-256r26,0r0,171r80,-92r33,0r-60,68","w":192},"l":{"d":"95,0v-39,4,-64,-12,-63,-47r0,-209r26,0r0,208v0,23,14,28,37,26r0,22","w":106},"m":{"d":"163,-150v32,-51,130,-31,123,37r0,113r-26,0v-6,-60,23,-159,-44,-156v-66,-1,-39,95,-44,156r-26,0v-6,-59,23,-158,-43,-156v-67,-2,-39,95,-45,156r-26,0r0,-177r26,0r0,19v26,-31,88,-27,105,8","w":316},"n":{"d":"58,-158v37,-42,121,-18,114,45r0,113r-26,0v-6,-60,23,-159,-44,-156v-66,-1,-39,95,-44,156r-26,0r0,-177r26,0r0,19","w":202},"o":{"d":"95,-179v49,1,74,35,73,90v1,57,-23,89,-73,91v-48,-2,-73,-35,-72,-91v-1,-54,24,-89,72,-90xm95,-21v35,-2,47,-22,47,-68v0,-45,-12,-65,-47,-67v-33,2,-47,24,-46,67v0,44,12,66,46,68","w":190},"p":{"d":"108,-179v51,1,64,35,65,90v-1,57,-14,90,-65,91v-21,0,-38,-8,-50,-23r0,100r-26,0r0,-256r26,0r0,21v12,-16,29,-23,50,-23xm103,-21v35,-1,45,-26,44,-68v1,-41,-9,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68","w":196},"q":{"d":"23,-89v1,-55,14,-89,65,-90v22,0,38,7,50,23r0,-21r26,0r0,256r-26,0r0,-100v-12,15,-29,23,-50,23v-52,-1,-64,-35,-65,-91xm94,-21v35,-1,44,-27,44,-68v0,-40,-10,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68","w":196},"r":{"d":"131,-143v-26,-29,-77,-5,-73,34r0,109r-26,0r0,-177r26,0r0,21v17,-27,69,-32,92,-7","w":151},"s":{"d":"23,-127v-3,-59,94,-65,129,-33r-17,17v-20,-19,-86,-23,-86,15v0,25,33,27,59,28v35,3,52,19,52,48v2,66,-111,67,-145,29r18,-18v18,28,104,31,102,-10v2,-27,-34,-27,-59,-29v-35,-3,-53,-19,-53,-47","w":178},"t":{"d":"100,0v-39,4,-63,-12,-63,-48r0,-108r-23,0r0,-20r23,0r0,-55r26,0r0,55r37,0r0,20r-37,0r0,108v-1,22,14,28,37,26r0,22","w":119},"u":{"d":"100,-21v66,1,39,-95,44,-156r26,0r0,177r-26,0r0,-20v-34,43,-121,19,-113,-44r0,-113r26,0v6,59,-23,158,43,156","w":202},"v":{"d":"157,-177r-65,177r-23,0r-65,-177r28,0r48,142r49,-142r28,0","w":160},"w":{"d":"257,-177r-56,177r-24,0r-47,-138r-46,138r-24,0r-56,-177r28,0r41,142r46,-142r22,0r47,142r41,-142r28,0","w":260},"x":{"d":"160,0r-31,0r-43,-69r-43,69r-31,0r60,-90r-58,-87r32,0r40,65r40,-65r32,0r-58,87","w":172},"y":{"d":"157,-177r-81,220v-7,25,-26,35,-58,33r0,-23v40,5,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0","w":160},"z":{"d":"147,0r-129,0r0,-22r99,-132r-94,0r0,-23r124,0r0,22r-99,132r99,0r0,23","w":165},"{":{"d":"53,-128v58,24,-21,141,57,132r0,23v-40,2,-61,-7,-61,-47v0,-39,18,-103,-32,-97r0,-23v80,10,-26,-160,93,-143r0,23v-74,-13,-1,105,-57,132","w":127},"|":{"d":"72,27r-26,0r0,-310r26,0r0,310","w":117},"}":{"d":"17,-283v119,-18,10,142,93,143r0,23v-79,-7,26,162,-93,144r0,-23v75,13,0,-107,58,-132v-34,-12,-20,-62,-23,-104v1,-27,-9,-29,-35,-28r0,-23","w":127},"~":{"d":"64,-120v30,0,71,42,96,4r16,16v-16,15,-21,23,-46,24v-29,1,-72,-40,-97,-3r-15,-16v16,-16,22,-23,46,-25","w":194}}});
Cufon.registerFont({"w":196,"face":{"font-family":"DINRegularAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-5 -290 329 80.6","underline-thickness":"18.36","underline-position":"-59.04","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":89},"!":{"d":"78,-256r-5,184r-21,0r-4,-184r30,0xm63,-35v23,0,23,36,0,36v-10,0,-19,-9,-19,-18v0,-9,9,-18,19,-18","w":113},"\"":{"d":"121,-195r-29,0r0,-61r29,0r0,61xm60,-195r-28,0r0,-61r28,0r0,61","w":152},"#":{"d":"217,-156r-35,0r-8,51r32,0r0,23r-36,0r-13,82r-26,0r13,-82r-58,0r-13,82r-26,0r13,-82r-32,0r0,-23r36,0r8,-51r-33,0r0,-23r36,0r12,-78r27,0r-12,78r57,0r12,-78r27,0r-13,78r32,0r0,23xm156,-156r-58,0r-8,51r57,0","w":235},"$":{"d":"41,-139v-43,-41,-8,-123,53,-119r0,-32r22,0r0,32v25,1,48,10,67,28r-18,17v-14,-13,-31,-20,-50,-21r0,93v46,5,79,24,79,70v0,44,-33,70,-78,72r0,40r-22,0r0,-39v-31,-1,-58,-13,-79,-34r19,-18v17,17,38,26,62,27r0,-95v-22,-2,-40,-7,-55,-21xm96,-234v-41,-3,-61,49,-36,76v9,8,21,12,36,14r0,-90xm115,-23v56,5,70,-77,21,-89v-3,0,-10,-2,-21,-3r0,92","w":214},"%":{"d":"228,-132v43,-1,54,38,49,86v0,29,-21,49,-49,49v-43,0,-53,-39,-48,-87v-1,-29,20,-49,48,-48xm221,-256r-120,256r-22,0r120,-256r22,0xm72,-259v44,0,54,39,49,87v0,28,-22,48,-49,48v-42,0,-54,-38,-49,-86v0,-29,20,-49,49,-49xm228,-15v33,2,28,-36,28,-68v0,-21,-9,-31,-28,-31v-32,-3,-29,36,-28,67v0,21,10,32,28,32xm72,-142v33,2,28,-36,28,-68v0,-20,-9,-31,-28,-31v-33,-2,-28,36,-28,68v0,20,9,31,28,31","w":299},"&":{"d":"168,-204v0,25,-24,44,-48,58r66,79v9,-14,14,-34,14,-59r26,0v0,34,-8,60,-24,79r40,47r-35,0r-23,-28v-46,52,-160,36,-156,-44v2,-41,23,-55,55,-77v-15,-19,-27,-31,-28,-56v0,-31,26,-54,57,-53v31,-1,56,23,56,54xm112,-235v-41,5,-36,42,-7,72v15,-8,40,-27,37,-41v0,-18,-13,-33,-30,-31xm54,-73v0,59,80,65,115,26r-71,-85v-26,20,-41,27,-44,59","w":266},"'":{"d":"60,-195r-28,0r0,-61r28,0r0,61","w":91},"(":{"d":"59,-36v1,28,7,34,25,52r-17,18v-21,-21,-32,-31,-34,-68r0,-188v2,-39,10,-44,34,-68r17,17v-18,19,-23,23,-25,53r0,184","w":107},")":{"d":"41,-290v20,21,32,29,33,68v-3,73,8,164,-7,225v-4,7,-13,18,-26,31r-19,-19v21,-19,21,-19,25,-51r0,-184v-2,-31,-6,-31,-25,-52","w":107},"*":{"d":"147,-170r-11,18r-42,-26r2,49r-21,0r1,-49r-41,26r-11,-18r43,-23r-43,-24r11,-17r41,25r-1,-49r21,0r-2,49r42,-25r11,17r-44,24","w":170},"+":{"d":"169,-84r-63,0r0,63r-24,0r0,-63r-63,0r0,-24r63,0r0,-63r24,0r0,63r63,0r0,24","w":187},",":{"d":"63,23r-31,29r0,-84r31,0r0,55","w":95},"-":{"d":"126,-85r-99,0r0,-24r99,0r0,24","w":153},"\u2010":{"d":"126,-85r-99,0r0,-24r99,0r0,24","w":153},".":{"d":"49,-40v10,0,21,10,20,21v1,10,-10,21,-20,20v-11,0,-21,-10,-21,-20v0,-11,10,-21,21,-21","w":97},"\/":{"d":"128,-283r-102,310r-26,0r103,-310r25,0","w":127},"0":{"d":"94,-217v39,-1,71,31,70,70r0,79v1,39,-30,72,-70,70v-40,2,-72,-31,-70,-70r0,-79v-1,-39,31,-71,70,-70xm94,-21v55,2,43,-70,44,-124v0,-28,-16,-49,-44,-49v-56,-1,-43,70,-44,124v0,29,16,50,44,49","w":187},"1":{"d":"92,0r-26,0r0,-186r-48,42r0,-30r48,-41r26,0r0,215","w":134},"2":{"d":"86,-224v39,-2,70,29,70,65v-6,57,-75,97,-107,136r113,0r0,23r-147,0r0,-23r90,-87v38,-29,31,-89,-19,-91v-25,0,-45,18,-45,43r-26,0v-1,-38,33,-67,71,-66","w":182},"3":{"d":"89,-217v70,-9,97,101,36,126v26,10,39,31,39,63v7,65,-80,92,-127,56v-15,-12,-22,-29,-23,-51r26,0v2,27,19,44,49,44v28,0,50,-20,49,-49v0,-36,-19,-51,-55,-50r0,-23v33,1,51,-13,51,-46v0,-28,-17,-47,-45,-47v-28,0,-44,17,-46,42r-26,0v2,-38,32,-65,72,-65","w":185},"4":{"d":"180,-11r-32,0r0,55r-26,0r0,-55r-109,0r0,-24r95,-191r28,0r-96,191r82,0r0,-73r26,0r0,73r32,0r0,24","w":194},"5":{"d":"98,-128v47,1,65,33,65,85v0,80,-74,109,-123,69v-11,-11,-17,-26,-18,-45r26,0v3,27,18,40,43,40v36,-1,45,-23,46,-64v10,-69,-66,-79,-86,-37r-23,0r0,-135r130,0r0,23r-107,0r0,81v11,-11,26,-17,47,-17","w":186},"6":{"d":"68,-151v52,-23,108,16,103,72v0,46,-30,82,-76,81v-75,3,-97,-85,-58,-143r68,-121r28,0xm95,-20v31,0,51,-24,50,-58v1,-31,-19,-59,-50,-58v-33,0,-51,24,-51,58v0,34,19,58,51,58","w":189},"7":{"d":"168,-192r-105,236r-27,0r104,-236r-98,0r0,40r-26,0r0,-63r152,0r0,23","w":180},"8":{"d":"97,-258v69,0,98,95,37,125v68,32,37,140,-37,135v-76,5,-105,-103,-37,-135v-61,-29,-33,-125,37,-125xm97,-144v26,1,46,-20,45,-45v1,-27,-19,-46,-45,-46v-26,0,-46,18,-45,46v-1,26,19,46,45,45xm97,-21v28,1,50,-23,50,-50v0,-27,-22,-51,-50,-50v-28,-1,-51,22,-50,50v-1,28,22,51,50,50","w":193},"9":{"d":"95,-217v74,-3,95,85,58,144r-69,120r-27,0r65,-111v-52,24,-108,-16,-104,-72v-1,-46,31,-82,77,-81xm95,-79v31,0,51,-24,50,-58v1,-34,-19,-58,-50,-58v-32,0,-51,24,-51,58v0,32,20,59,51,58","w":189},":":{"d":"59,-145v10,0,21,10,20,21v1,10,-10,21,-20,20v-11,1,-21,-10,-21,-20v0,-12,9,-21,21,-21xm59,-40v10,0,21,10,20,21v1,10,-10,21,-20,20v-11,1,-21,-10,-21,-20v0,-12,9,-21,21,-21","w":107},";":{"d":"59,-145v10,0,21,10,20,21v1,10,-10,21,-20,20v-11,1,-21,-10,-21,-20v0,-12,9,-21,21,-21xm75,23r-32,29r0,-84r32,0r0,55","w":106},"<":{"d":"329,-76r-144,144r-144,-144r0,-33r131,131r0,-284r26,0r0,284r131,-131r0,33","w":369},"=":{"d":"169,-115r-150,0r0,-24r150,0r0,24xm169,-54r-150,0r0,-24r150,0r0,24","w":187},">":{"d":"329,-85r-131,-131r0,284r-26,0r0,-284r-131,131r0,-33r144,-144r144,144r0,33","w":369},"?":{"d":"95,-258v56,-2,89,63,51,109v-13,24,-39,38,-36,77r-26,0v-6,-57,47,-73,52,-121v1,-24,-18,-43,-41,-42v-24,-1,-42,20,-42,42r-26,0v0,-36,32,-66,68,-65xm97,-35v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":178},"@":{"d":"102,-257v73,-6,131,8,129,78r0,179r-25,0r0,-20v-43,49,-126,15,-113,-66v-12,-80,68,-113,113,-65v4,-49,-9,-85,-54,-84v-55,-4,-103,2,-101,56v6,57,-18,141,21,165r-18,17v-47,-26,-22,-116,-28,-182v0,-49,28,-78,76,-78xm162,-20v35,-1,44,-26,44,-66v0,-40,-10,-65,-44,-66v-34,1,-44,27,-44,66v0,40,9,65,44,66","w":256},"A":{"d":"216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0","w":219},"B":{"d":"209,-188v1,28,-18,49,-38,56v70,22,47,142,-34,132r-100,0r0,-256r97,0v43,-1,76,26,75,68xm64,-143v53,0,120,10,118,-45v2,-53,-65,-44,-118,-44r0,89xm64,-24v56,0,124,9,122,-48v2,-55,-67,-47,-122,-46r0,94","w":240},"C":{"d":"117,-22v26,0,38,-10,54,-26r18,19v-71,65,-183,22,-162,-99v-21,-123,90,-163,162,-99r-18,18v-16,-15,-28,-24,-54,-25v-53,5,-65,37,-62,106v-3,69,8,106,62,106","w":211},"D":{"d":"125,-256v70,3,94,43,90,125v4,85,-19,127,-90,131r-88,0r0,-256r88,0xm120,-24v58,-2,70,-38,68,-107v3,-67,-12,-99,-68,-101r-56,0r0,208r56,0","w":242},"E":{"d":"196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24","w":216},"F":{"d":"196,-232r-132,0r0,94r113,0r0,25r-113,0r0,113r-27,0r0,-256r159,0r0,24","w":208},"G":{"d":"117,-22v44,-1,68,-36,62,-88r-62,0r0,-24r90,0v9,80,-23,136,-90,136v-66,-6,-98,-42,-90,-130v-24,-126,98,-163,167,-96r-19,19v-18,-18,-29,-29,-58,-29v-53,0,-66,38,-62,106v-3,69,9,101,62,106","w":232},"H":{"d":"213,0r-27,0r0,-117r-122,0r0,117r-27,0r0,-256r27,0r0,115r122,0r0,-115r27,0r0,256","w":250},"I":{"d":"64,0r-27,0r0,-256r27,0r0,256","w":101},"J":{"d":"27,-39v32,35,99,13,93,-42r0,-175r27,0r0,178v7,75,-92,104,-139,57","w":180},"K":{"d":"229,0r-32,0r-79,-136r-54,64r0,72r-27,0r0,-256r27,0r0,147r120,-147r33,0r-80,99","w":234},"L":{"d":"195,0r-158,0r0,-256r27,0r0,232r131,0r0,24","w":206},"M":{"d":"257,0r-28,0r0,-195r-70,155r-23,0r-72,-155r0,195r-27,0r0,-256r27,0r84,181r81,-181r28,0r0,256","w":293},"N":{"d":"226,0r-25,0r-137,-206r0,206r-27,0r0,-256r26,0r136,205r0,-205r27,0r0,256","w":263},"O":{"d":"117,-258v66,0,90,41,90,130v0,89,-23,130,-90,130v-67,0,-90,-42,-90,-130v0,-89,23,-130,90,-130xm117,-22v51,-6,66,-37,62,-106v4,-69,-9,-101,-62,-106v-52,5,-66,38,-62,106v-4,69,10,100,62,106","w":234},"P":{"d":"132,-256v47,-1,80,29,80,75v0,46,-34,77,-80,76r-68,0r0,105r-27,0r0,-256r95,0xm64,-130v57,1,123,8,120,-51v3,-60,-63,-52,-120,-51r0,102","w":226},"Q":{"d":"207,-128v-1,52,0,69,-18,96r28,28r-16,17r-29,-29v-75,45,-164,-2,-145,-112v-7,-89,23,-130,90,-130v66,0,98,42,90,130xm169,-52v10,-21,10,-38,10,-76v4,-69,-9,-101,-62,-106v-52,5,-66,38,-62,106v-4,69,10,100,62,106v13,0,26,-4,36,-13r-32,-32r17,-17","w":233},"R":{"d":"211,-185v0,37,-23,62,-55,69r60,116r-32,0r-58,-114r-62,0r0,114r-27,0r0,-256r98,0v45,-1,76,27,76,71xm64,-138v55,0,122,10,120,-47v2,-56,-65,-48,-120,-47r0,94","w":236},"S":{"d":"163,-213v-31,-32,-116,-32,-114,26v-1,60,93,36,121,66v50,45,7,133,-67,123v-36,0,-65,-11,-88,-34r19,-18v31,38,128,43,130,-20v-1,-80,-147,-15,-142,-116v-5,-78,112,-92,158,-44","w":211},"T":{"d":"186,-232r-74,0r0,232r-27,0r0,-232r-74,0r0,-24r175,0r0,24","w":197},"U":{"d":"123,-22v37,0,63,-27,62,-65r0,-169r27,0r0,171v1,51,-38,88,-89,87v-52,1,-90,-36,-90,-87r0,-171r28,0r0,169v-1,38,24,65,62,65","w":245},"V":{"d":"194,-256r-85,256r-22,0r-84,-256r29,0r66,207r67,-207r29,0"},"W":{"d":"302,-256r-66,256r-25,0r-57,-205r-57,205r-26,0r-65,-256r29,0r50,206r56,-206r25,0r56,206r51,-206r29,0","w":307},"X":{"d":"193,0r-32,0r-62,-108r-63,108r-31,0r79,-131r-74,-125r32,0r57,101r57,-101r32,0r-74,125","w":198},"Y":{"d":"182,-256r-75,150r0,106r-28,0r0,-106r-76,-150r29,0r61,122r60,-122r29,0","w":185},"Z":{"d":"180,0r-159,0r0,-26r128,-206r-123,0r0,-24r154,0r0,23r-130,209r130,0r0,24","w":200},"[":{"d":"97,27r-64,0r0,-310r64,0r0,23r-38,0r0,264r38,0r0,23","w":112},"\\":{"d":"128,27r-26,0r-102,-309r26,0","w":127},"]":{"d":"80,27r-64,0r0,-23r39,0r0,-265r-39,0r0,-22r64,0r0,310","w":112},"^":{"d":"167,-149r-26,0r-44,-82r-44,82r-27,0r59,-109r24,0","w":193},"_":{"d":"193,59r-193,0r0,-18r193,0r0,18","w":193},"`":{"d":"108,-214r-24,0r-39,-55r31,0","w":180},"a":{"d":"25,-153v27,-43,134,-34,134,33r0,120r-26,0r0,-17v-32,34,-120,24,-115,-33v0,-54,58,-54,115,-51v17,-60,-65,-71,-90,-36xm84,-20v40,1,53,-19,49,-62v-38,0,-92,-7,-89,32v0,20,13,30,40,30","w":189},"b":{"d":"108,-179v51,1,64,35,65,90v-1,57,-14,90,-65,91v-21,0,-38,-8,-50,-23r0,21r-26,0r0,-256r26,0r0,99v12,-15,29,-22,50,-22xm103,-21v35,-1,45,-26,44,-68v1,-41,-9,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68"},"c":{"d":"49,-89v-8,63,57,89,93,48r17,17v-44,55,-148,17,-136,-65v-11,-79,89,-120,136,-64r-17,17v-35,-42,-101,-14,-93,47","w":176},"d":{"d":"23,-89v1,-55,14,-89,65,-90v21,0,38,7,50,22r0,-99r26,0r0,256r-26,0r0,-21v-12,15,-29,23,-50,23v-52,-1,-64,-35,-65,-91xm94,-21v35,-1,44,-27,44,-68v0,-40,-10,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68"},"e":{"d":"95,-179v51,0,77,40,73,97r-119,0v-7,61,64,79,98,41r18,16v-19,17,-33,27,-65,27v-53,-1,-77,-34,-77,-91v-1,-52,25,-90,72,-90xm142,-101v8,-59,-69,-75,-88,-30v-3,8,-5,17,-5,30r93,0","w":190},"f":{"d":"38,-176v-5,-52,8,-89,64,-81r0,22v-39,-7,-40,23,-38,59r38,0r0,20r-38,0r0,156r-26,0r0,-156r-23,0r0,-20r23,0","w":113},"g":{"d":"23,-90v1,-55,14,-88,65,-89v21,0,38,7,50,23r0,-21r25,0r0,182v7,71,-88,99,-134,53r17,-17v29,34,98,17,91,-37r0,-27v-12,15,-28,23,-50,23v-49,-2,-63,-36,-64,-90xm93,-24v35,-1,45,-26,44,-66v1,-40,-8,-65,-44,-66v-35,1,-45,27,-44,66v0,40,9,65,44,66","w":195},"h":{"d":"58,-158v36,-41,121,-19,114,44r0,114r-26,0v-6,-59,22,-158,-43,-156v-67,-2,-39,95,-45,156r-26,0r0,-256r26,0r0,98","w":202},"i":{"d":"45,-261v9,-1,19,7,18,17v1,10,-9,18,-18,18v-9,0,-18,-9,-17,-18v-1,-9,8,-18,17,-17xm58,0r-26,0r0,-177r26,0r0,177","w":91},"j":{"d":"45,-261v9,-1,19,7,18,17v1,10,-9,18,-18,18v-9,0,-18,-9,-17,-18v-1,-9,8,-18,17,-17xm58,32v1,36,-23,52,-63,48r0,-23v23,2,38,-3,37,-26r0,-208r26,0r0,209","w":91},"k":{"d":"181,0r-32,0r-56,-91r-35,40r0,51r-26,0r0,-256r26,0r0,171r80,-92r33,0r-60,68","w":192},"l":{"d":"95,0v-39,4,-64,-12,-63,-47r0,-209r26,0r0,208v0,23,14,28,37,26r0,22","w":106},"m":{"d":"163,-150v32,-51,130,-31,123,37r0,113r-26,0v-6,-60,23,-159,-44,-156v-66,-1,-39,95,-44,156r-26,0v-6,-59,23,-158,-43,-156v-67,-2,-39,95,-45,156r-26,0r0,-177r26,0r0,19v26,-31,88,-27,105,8","w":316},"n":{"d":"58,-158v37,-42,121,-18,114,45r0,113r-26,0v-6,-60,23,-159,-44,-156v-66,-1,-39,95,-44,156r-26,0r0,-177r26,0r0,19","w":202},"o":{"d":"95,-179v49,1,74,35,73,90v1,57,-23,89,-73,91v-48,-2,-73,-35,-72,-91v-1,-54,24,-89,72,-90xm95,-21v35,-2,47,-22,47,-68v0,-45,-12,-65,-47,-67v-33,2,-47,24,-46,67v0,44,12,66,46,68","w":190},"p":{"d":"108,-179v51,1,64,35,65,90v-1,57,-14,90,-65,91v-21,0,-38,-8,-50,-23r0,100r-26,0r0,-256r26,0r0,21v12,-16,29,-23,50,-23xm103,-21v35,-1,45,-26,44,-68v1,-41,-9,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68"},"q":{"d":"23,-89v1,-55,14,-89,65,-90v22,0,38,7,50,23r0,-21r26,0r0,256r-26,0r0,-100v-12,15,-29,23,-50,23v-52,-1,-64,-35,-65,-91xm94,-21v35,-1,44,-27,44,-68v0,-40,-10,-66,-44,-67v-36,1,-45,27,-45,67v0,42,9,67,45,68"},"r":{"d":"131,-143v-26,-29,-77,-5,-73,34r0,109r-26,0r0,-177r26,0r0,21v17,-27,69,-32,92,-7","w":151},"s":{"d":"23,-127v-3,-59,94,-65,129,-33r-17,17v-20,-19,-86,-23,-86,15v0,25,33,27,59,28v35,3,52,19,52,48v2,66,-111,67,-145,29r18,-18v18,28,104,31,102,-10v2,-27,-34,-27,-59,-29v-35,-3,-53,-19,-53,-47","w":178},"t":{"d":"100,0v-39,4,-63,-12,-63,-48r0,-108r-23,0r0,-20r23,0r0,-55r26,0r0,55r37,0r0,20r-37,0r0,108v-1,22,14,28,37,26r0,22","w":119},"u":{"d":"100,-21v66,1,39,-95,44,-156r26,0r0,177r-26,0r0,-20v-34,43,-121,19,-113,-44r0,-113r26,0v6,59,-23,158,43,156","w":202},"v":{"d":"157,-177r-65,177r-23,0r-65,-177r28,0r48,142r49,-142r28,0","w":160},"w":{"d":"257,-177r-56,177r-24,0r-47,-138r-46,138r-24,0r-56,-177r28,0r41,142r46,-142r22,0r47,142r41,-142r28,0","w":260},"x":{"d":"160,0r-31,0r-43,-69r-43,69r-31,0r60,-90r-58,-87r32,0r40,65r40,-65r32,0r-58,87","w":172},"y":{"d":"157,-177r-81,220v-7,25,-26,35,-58,33r0,-23v40,5,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0","w":160},"z":{"d":"147,0r-129,0r0,-22r99,-132r-94,0r0,-23r124,0r0,22r-99,132r99,0r0,23","w":165},"{":{"d":"53,-128v58,24,-21,141,57,132r0,23v-40,2,-61,-7,-61,-47v0,-39,18,-103,-32,-97r0,-23v80,10,-26,-160,93,-143r0,23v-74,-13,-1,105,-57,132","w":127},"|":{"d":"72,27r-26,0r0,-310r26,0r0,310","w":117},"}":{"d":"17,-283v119,-18,10,142,93,143r0,23v-79,-7,26,162,-93,144r0,-23v75,13,0,-107,58,-132v-34,-12,-20,-62,-23,-104v1,-27,-9,-29,-35,-28r0,-23","w":127},"~":{"d":"64,-120v30,0,71,42,96,4r16,16v-16,15,-21,23,-46,24v-29,1,-72,-40,-97,-3r-15,-16v16,-16,22,-23,46,-25","w":194}}});
Cufon.registerFont({"w":199,"face":{"font-family":"DINMediumAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-7 -290 326 75.6248","underline-thickness":"25.2","underline-position":"-61.92","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86},"!":{"d":"88,-256r-8,180r-28,0r-8,-180r44,0xm66,-46v12,0,24,11,23,24v1,12,-11,24,-23,23v-13,1,-24,-11,-24,-23v0,-13,11,-24,24,-24","w":119},"\"":{"d":"132,-188r-37,0r0,-68r37,0r0,68xm64,-188r-36,0r0,-68r36,0r0,68","w":159},"#":{"d":"224,-153r-33,0r-7,44r28,0r0,34r-33,0r-12,75r-38,0r11,-75r-49,0r-11,75r-39,0r12,-75r-29,0r0,-34r34,0r8,-44r-30,0r0,-34r35,0r11,-71r38,0r-11,71r49,0r11,-71r38,0r-11,71r28,0r0,34xm153,-153r-49,0r-8,44r50,0","w":241},"$":{"d":"38,-135v-42,-42,-7,-126,55,-123r0,-32r29,0r0,32v28,2,51,11,69,29r-25,24v-12,-11,-28,-18,-47,-19r0,77v48,5,81,25,81,74v0,45,-34,71,-78,74r0,40r-29,0r0,-39v-34,-1,-61,-13,-82,-34r26,-25v15,15,35,23,59,24r0,-80v-25,-2,-43,-8,-58,-22xm96,-224v-33,-1,-51,41,-29,63v7,6,17,10,29,12r0,-75xm119,-33v41,0,55,-42,33,-66v-5,-6,-17,-8,-33,-11r0,77","w":218},"%":{"d":"232,-132v42,-1,50,36,50,85v0,30,-22,50,-50,50v-43,0,-56,-38,-51,-86v0,-29,21,-50,51,-49xm226,-256r-120,256r-30,0r121,-256r29,0xm71,-259v44,0,56,37,51,86v0,29,-21,49,-51,49v-43,0,-50,-37,-50,-86v0,-30,22,-49,50,-49xm232,-22v28,2,23,-33,23,-60v0,-17,-8,-26,-23,-26v-28,-2,-23,33,-23,60v0,17,8,26,23,26xm71,-149v28,2,23,-32,23,-59v0,-18,-8,-26,-23,-26v-27,-3,-22,34,-22,60v0,17,7,25,22,25","w":303},"&":{"d":"111,-258v58,-4,84,73,34,102r-19,13r54,65v9,-13,13,-30,14,-52r35,0v-1,34,-10,60,-26,79r43,51r-47,0r-21,-25v-49,49,-159,31,-154,-49v2,-37,23,-53,51,-73v-47,-42,-27,-111,36,-111xm111,-226v-34,5,-30,37,-5,60v12,-7,33,-22,31,-35v0,-14,-11,-26,-26,-25xm61,-75v0,49,66,56,95,24r-61,-72v-19,14,-33,22,-34,48","w":262},"'":{"d":"64,-188r-36,0r0,-68r36,0r0,68","w":92},"(":{"d":"68,-44v1,33,6,32,25,53r-25,25v-22,-25,-37,-32,-37,-76v4,-69,-9,-159,8,-214v5,-8,14,-19,29,-34r25,25v-21,20,-22,20,-25,53r0,168","w":114},")":{"d":"46,-212v-1,-31,-7,-34,-25,-53r25,-25v20,20,39,35,38,76v-4,70,10,159,-9,214v-5,8,-14,19,-29,34r-25,-25v12,-15,26,-24,25,-53r0,-168","w":114},"*":{"d":"153,-168r-14,24r-40,-25r2,47r-27,0r1,-47r-40,25r-13,-24r41,-22r-41,-22r13,-23r40,24r-1,-46r27,0r-2,46r40,-24r14,23r-42,22","w":174},"+":{"d":"174,-81r-61,0r0,60r-34,0r0,-60r-61,0r0,-34r61,0r0,-60r34,0r0,60r61,0r0,34","w":191},",":{"d":"70,22r-42,34r0,-98r42,0r0,64","w":97},"-":{"d":"129,-83r-105,0r0,-34r105,0r0,34","w":153},"\u2010":{"d":"129,-83r-105,0r0,-34r105,0r0,34","w":153},".":{"d":"51,-51v14,-1,26,11,26,26v0,14,-13,26,-26,26v-13,0,-27,-13,-26,-26v-1,-14,12,-27,26,-26","w":102},"\/":{"d":"138,-283r-103,310r-35,0r103,-310r35,0","w":136},"0":{"d":"96,-217v43,-1,75,31,74,73r0,73v1,42,-31,74,-74,73v-42,1,-75,-31,-74,-73r0,-73v-1,-42,32,-74,74,-73xm96,-31v50,1,36,-64,38,-112v-1,-23,-13,-41,-38,-41v-49,-1,-35,64,-37,112v-1,23,14,42,37,41","w":192},"1":{"d":"106,0r-37,0r0,-175r-50,44r0,-41r50,-43r37,0r0,215","w":146},"2":{"d":"90,-224v56,-4,95,57,62,104v-21,28,-61,60,-87,87r105,0r0,33r-155,0r0,-33r87,-79v36,-25,33,-76,-12,-80v-22,0,-38,17,-38,38r-37,0v0,-41,33,-71,75,-70","w":190},"3":{"d":"91,-217v70,-8,104,97,43,126v66,28,35,135,-43,135v-46,0,-79,-27,-78,-72r36,0v2,24,17,39,42,39v26,0,42,-16,42,-42v0,-30,-17,-44,-49,-42r0,-32v30,2,45,-12,45,-40v0,-23,-15,-40,-38,-39v-22,0,-37,14,-38,36r-37,0v1,-40,33,-70,75,-69","w":189},"4":{"d":"189,-11r-30,0r0,55r-36,0r0,-55r-109,0r0,-34r91,-184r39,0r-91,184r70,0r0,-63r36,0r0,63r30,0r0,34","w":203},"5":{"d":"103,-129v50,0,68,34,69,85v11,80,-80,112,-130,68v-12,-11,-18,-28,-20,-49r37,0v3,24,15,36,37,36v30,-2,39,-19,39,-55v0,-61,-58,-69,-74,-31r-33,0r0,-140r138,0r0,33r-105,0r0,68v10,-10,24,-15,42,-15","w":192},"6":{"d":"76,-153v52,-22,105,17,101,73v1,47,-33,83,-80,82v-82,2,-100,-92,-58,-154r61,-110r39,0xm97,-30v27,0,44,-21,43,-49v1,-29,-16,-50,-43,-50v-28,-1,-45,22,-44,50v-1,28,17,50,44,49","w":193},"7":{"d":"177,-182r-99,225r-39,0r99,-225r-87,0r0,40r-35,0r0,-73r161,0r0,33","w":190},"8":{"d":"99,-258v70,-7,103,93,44,126v65,34,32,134,-44,134v-76,0,-109,-100,-44,-134v-59,-34,-27,-133,44,-126xm99,-148v21,1,38,-17,38,-38v0,-22,-16,-40,-38,-40v-23,0,-39,17,-39,40v0,22,17,39,39,38xm99,-31v23,1,43,-19,42,-42v1,-23,-20,-44,-42,-43v-24,-1,-43,20,-42,43v-1,23,19,43,42,42","w":197},"9":{"d":"97,-217v80,-3,101,91,59,154r-62,110r-40,0r63,-109v-51,22,-105,-18,-100,-73v-1,-47,33,-83,80,-82xm97,-86v27,1,44,-22,43,-50v0,-28,-16,-49,-43,-49v-27,-1,-45,21,-44,49v0,28,16,51,44,50","w":193},":":{"d":"60,-151v15,-1,26,12,26,26v1,14,-10,26,-26,26v-14,0,-26,-13,-26,-26v0,-13,13,-27,26,-26xm60,-51v15,-1,27,11,26,26v0,14,-11,26,-26,26v-13,0,-26,-13,-26,-26v0,-14,12,-27,26,-26","w":111},";":{"d":"60,-151v15,-1,26,12,26,26v1,14,-10,26,-26,26v-14,0,-26,-13,-26,-26v0,-13,13,-27,26,-26xm81,22r-41,34r0,-98r41,0r0,64","w":109},"<":{"d":"326,-75r-141,141r-141,-141r0,-47r123,124r0,-268r35,0r0,268r124,-124r0,47","w":369},"=":{"d":"174,-118r-156,0r0,-34r156,0r0,34xm174,-48r-156,0r0,-34r156,0r0,34","w":191},">":{"d":"326,-78r-124,-124r0,268r-34,0r0,-268r-124,124r0,-47r141,-141r141,141r0,47","w":369},"?":{"d":"97,-258v59,-2,92,63,55,113v-15,20,-37,33,-34,69r-37,0v-7,-55,45,-69,51,-114v0,-21,-15,-36,-35,-36v-21,0,-35,17,-35,37r-36,0v-2,-41,32,-70,71,-69xm99,-46v12,0,24,10,23,24v1,13,-11,24,-23,23v-12,1,-24,-11,-23,-23v-1,-13,11,-24,23,-24","w":183},"@":{"d":"106,-257v78,-6,140,8,136,84r0,174r-35,-1r0,-18v-42,47,-123,10,-109,-66v-11,-79,63,-110,109,-67v4,-45,-9,-75,-52,-74v-52,-3,-100,0,-96,52v6,51,-16,129,18,152r-26,25v-45,-26,-23,-112,-28,-177v0,-56,28,-84,83,-84xm134,-84v0,35,7,54,36,55v24,0,37,-18,37,-55v0,-37,-13,-56,-37,-56v-29,0,-37,22,-36,56","w":264},"A":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0","w":225},"B":{"d":"133,-256v77,-12,104,99,43,124v26,11,39,30,39,60v0,45,-33,73,-78,72r-104,0r0,-256r100,0xm72,-148v45,0,101,9,100,-37v1,-44,-56,-36,-100,-36r0,73xm72,-35v47,0,105,9,104,-39v1,-48,-57,-39,-104,-39r0,78","w":238},"C":{"d":"63,-128v0,87,49,120,99,74r26,26v-71,63,-185,20,-164,-100v-21,-121,92,-163,164,-100r-26,26v-33,-38,-97,-24,-98,32v0,6,-1,20,-1,42","w":206},"D":{"d":"123,-256v72,4,97,43,93,126v4,86,-20,126,-93,130r-90,0r0,-256r90,0xm120,-35v50,-2,59,-35,57,-95v2,-59,-8,-89,-57,-91r-48,0r0,186r48,0","w":239},"E":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35","w":217},"F":{"d":"197,-221r-125,0r0,78r107,0r0,35r-107,0r0,108r-39,0r0,-256r164,0r0,35","w":210},"G":{"d":"116,-33v37,0,59,-28,54,-72r-54,0r0,-34r93,0v8,84,-22,141,-93,141v-66,-6,-100,-42,-92,-130v-23,-124,100,-163,170,-97r-27,27v-16,-16,-25,-26,-51,-26v-46,0,-56,35,-53,96v-3,61,6,91,53,95","w":230},"H":{"d":"215,0r-39,0r0,-112r-104,0r0,112r-39,0r0,-256r39,0r0,109r104,0r0,-109r39,0r0,256","w":248},"I":{"d":"72,0r-39,0r0,-256r39,0r0,256","w":105},"J":{"d":"31,-48v29,30,88,13,82,-36r0,-172r39,0r0,175v8,76,-99,110,-147,58","w":182},"K":{"d":"233,0r-45,0r-72,-126r-44,51r0,75r-39,0r0,-256r39,0r0,129r105,-129r48,0r-84,100","w":236},"L":{"d":"196,0r-163,0r0,-256r39,0r0,221r124,0r0,35","w":206},"M":{"d":"260,0r-39,0r0,-171r-59,125r-29,0r-61,-125r0,171r-39,0r0,-256r39,0r75,159r74,-159r39,0r0,256","w":292},"N":{"d":"226,0r-35,0r-119,-180r0,180r-39,0r0,-256r36,0r119,180r0,-180r38,0r0,256","w":259},"O":{"d":"116,-258v67,0,92,41,92,130v0,90,-25,130,-92,130v-66,0,-92,-42,-92,-130v0,-88,26,-130,92,-130xm116,-33v48,0,56,-35,54,-95v1,-61,-6,-91,-54,-96v-46,5,-56,35,-53,96v-3,61,7,95,53,95","w":232},"P":{"d":"131,-256v46,-1,82,32,82,77v0,69,-64,86,-141,78r0,101r-39,0r0,-256r98,0xm72,-136v49,1,104,6,102,-43v2,-47,-53,-44,-102,-42r0,85","w":226},"Q":{"d":"208,-128v0,51,1,68,-16,93r25,25r-22,22r-25,-26v-77,42,-164,-6,-146,-114v-8,-88,26,-130,92,-130v67,0,100,41,92,130xm63,-128v0,73,26,110,80,87r-27,-27r21,-22r25,25v5,-10,8,-31,8,-63v1,-61,-6,-91,-54,-96v-46,5,-53,35,-53,96","w":232},"R":{"d":"212,-181v1,35,-22,61,-51,68r59,113r-45,0r-54,-108r-49,0r0,108r-39,0r0,-256r100,0v46,0,80,28,79,75xm72,-141v47,0,103,7,102,-40v2,-47,-55,-41,-102,-40r0,80","w":235},"S":{"d":"160,-205v-26,-29,-103,-29,-103,20v2,53,92,29,116,59v50,49,4,138,-71,128v-39,0,-69,-11,-91,-34r26,-25v25,31,117,39,118,-15v1,-57,-92,-29,-117,-62v-45,-47,-5,-124,67,-124v32,0,59,9,80,29","w":212},"T":{"d":"191,-221r-71,0r0,221r-39,0r0,-221r-70,0r0,-35r180,0r0,35","w":201},"U":{"d":"121,-33v32,0,55,-22,54,-55r0,-168r38,0r0,170v1,51,-39,89,-92,88v-51,1,-93,-37,-91,-88r0,-170r38,0r0,168v0,32,21,55,53,55","w":243},"V":{"d":"201,-256r-85,256r-30,0r-84,-256r40,0r59,186r59,-186r41,0","w":203},"W":{"d":"310,-256r-67,256r-34,0r-52,-180r-52,180r-34,0r-67,-256r41,0r45,183r51,-183r31,0r52,183r45,-183r41,0","w":313},"X":{"d":"204,0r-45,0r-55,-98r-56,98r-44,0r79,-131r-74,-125r44,0r51,91r50,-91r45,0r-74,125","w":208},"Y":{"d":"194,-256r-77,151r0,105r-39,0r0,-105r-76,-151r42,0r54,112r54,-112r42,0","w":195},"Z":{"d":"181,0r-164,0r0,-33r119,-188r-114,0r0,-35r159,0r0,31r-119,190r119,0r0,35","w":198},"[":{"d":"109,27r-78,0r0,-310r78,0r0,33r-41,0r0,244r41,0r0,33","w":124},"\\":{"d":"137,27r-35,0r-102,-307r35,0","w":136},"]":{"d":"94,27r-79,0r0,-33r43,0r0,-245r-43,0r0,-32r79,0r0,310","w":124},"^":{"d":"181,-144r-38,0r-40,-75r-41,75r-38,0r62,-115r34,0","w":205},"_":{"d":"206,62r-206,0r0,-25r206,0r0,25","w":205},"`":{"d":"109,-216r-28,0r-40,-58r41,0","w":180},"a":{"d":"23,-158v29,-45,140,-35,140,36r0,122r-36,0r0,-17v-32,36,-118,21,-112,-37v-1,-50,55,-56,112,-52v13,-52,-58,-59,-80,-30xm85,-28v33,0,45,-16,42,-53v-33,0,-79,-7,-76,27v0,17,11,26,34,26","w":190},"b":{"d":"114,-185v50,3,65,33,65,94v-1,59,-14,91,-66,93v-20,0,-36,-7,-48,-21r0,19r-36,0r0,-256r37,0r0,92v11,-14,27,-21,48,-21xm104,-31v32,-1,38,-24,38,-60v0,-38,-6,-59,-38,-61v-32,2,-38,24,-38,61v0,36,6,59,38,60"},"c":{"d":"57,-91v-7,55,48,79,79,43r25,24v-50,56,-152,16,-141,-67v-11,-84,90,-123,141,-68r-25,24v-31,-35,-87,-12,-79,44","w":174},"d":{"d":"21,-91v0,-61,14,-91,64,-94v21,0,37,7,48,21r0,-92r37,0r0,256r-36,0r0,-19v-12,14,-28,21,-48,21v-52,-1,-65,-33,-65,-93xm95,-31v32,-1,38,-23,38,-60v0,-39,-5,-59,-38,-61v-31,2,-37,24,-38,61v1,36,7,59,38,60"},"e":{"d":"97,-185v54,0,83,44,78,104r-119,0v-5,53,61,65,91,33r23,22v-18,19,-35,28,-68,28v-55,0,-82,-31,-82,-93v-1,-55,26,-93,77,-94xm138,-106v7,-49,-62,-65,-77,-25v-3,6,-5,15,-5,25r82,0","w":194},"f":{"d":"35,-179v-6,-55,15,-87,73,-79r0,31v-20,-1,-38,0,-36,21r0,27r36,0r0,28r-36,0r0,151r-37,0r0,-151r-21,0r0,-28r21,0","w":118},"g":{"d":"21,-95v0,-57,14,-88,64,-90v20,0,36,8,48,22r0,-20r35,0r0,182v6,74,-95,100,-142,53r23,-24v28,30,88,18,83,-30r0,-23v-12,14,-28,21,-47,21v-49,-3,-64,-32,-64,-91xm95,-37v30,-1,37,-23,37,-58v0,-35,-7,-56,-37,-57v-30,1,-38,23,-38,57v0,35,7,57,38,58","w":197},"h":{"d":"66,-164v36,-43,117,-16,110,46r0,118r-36,0v-7,-56,23,-149,-37,-152v-60,2,-30,96,-37,152r-37,0r0,-256r37,0r0,92","w":203},"i":{"d":"48,-266v12,0,24,12,23,24v1,13,-11,24,-23,24v-14,1,-24,-11,-24,-24v0,-12,10,-24,24,-24xm66,0r-37,0r0,-183r37,0r0,183","w":95},"j":{"d":"48,-266v12,0,24,12,23,24v1,13,-11,24,-23,24v-14,1,-24,-11,-24,-24v0,-12,10,-24,24,-24xm66,24v0,40,-29,55,-73,51r0,-32v20,1,38,0,36,-21r0,-205r37,0r0,207","w":95},"k":{"d":"189,0r-45,0r-51,-84r-27,30r0,54r-37,0r0,-256r37,0r0,158r71,-85r44,0r-63,72","w":197},"l":{"d":"101,0v-43,4,-73,-11,-73,-50r0,-206r37,0r0,203v-1,22,15,23,36,22r0,31","w":111},"m":{"d":"166,-158v34,-49,130,-27,122,41r0,117r-36,0v-7,-56,23,-150,-37,-152v-61,2,-32,96,-38,152r-37,0v-7,-56,23,-150,-36,-152v-61,1,-31,96,-38,152r-37,0r0,-183r36,0r0,19v25,-30,81,-28,101,6","w":315},"n":{"d":"65,-164v37,-42,119,-17,112,47r0,117r-37,0v-7,-56,23,-150,-36,-152v-61,1,-31,96,-38,152r-37,0r0,-183r36,0r0,19","w":204},"o":{"d":"96,-185v52,2,79,34,77,94v1,60,-26,91,-77,93v-50,-2,-76,-34,-75,-93v-1,-59,24,-92,75,-94xm96,-31v32,-2,40,-21,40,-60v-1,-40,-7,-61,-40,-61v-30,0,-39,22,-39,61v0,38,9,58,39,60","w":193},"p":{"d":"113,-185v51,3,66,33,66,94v0,59,-15,91,-65,93v-20,0,-36,-7,-48,-21r0,93r-37,0r0,-257r36,0r0,20v12,-14,28,-22,48,-22xm104,-31v32,-1,38,-24,38,-60v0,-38,-6,-59,-38,-61v-32,2,-38,24,-38,61v0,36,6,59,38,60"},"q":{"d":"21,-91v0,-62,14,-91,65,-94v20,0,36,8,48,22r0,-20r36,0r0,257r-37,0r0,-93v-12,14,-28,21,-48,21v-50,-2,-64,-34,-64,-93xm95,-31v32,-1,38,-23,38,-60v0,-39,-5,-59,-38,-61v-31,2,-37,24,-38,61v1,36,7,59,38,60"},"r":{"d":"130,-140v-24,-26,-67,-7,-64,29r0,111r-37,0r0,-183r36,0r0,20v18,-26,70,-30,92,-4","w":158},"s":{"d":"21,-129v-4,-63,101,-70,136,-35r-23,23v-16,-16,-78,-22,-78,10v0,24,32,21,54,24v36,3,54,20,54,51v3,71,-117,71,-152,32r24,-24v15,23,93,29,92,-6v2,-24,-30,-23,-53,-24v-36,-4,-54,-20,-54,-51","w":179},"t":{"d":"105,0v-44,5,-71,-14,-72,-51r0,-100r-20,0r0,-28r20,0r0,-56r37,0r0,56r35,0r0,28r-35,0r0,98v-1,21,14,23,35,22r0,31","w":123},"u":{"d":"101,-31v61,-1,31,-96,38,-152r36,0r0,183r-36,0r0,-18v-37,41,-121,15,-112,-48r0,-117r37,0v7,56,-24,150,37,152","w":204},"v":{"d":"167,-183r-67,183r-30,0r-67,-183r39,0r43,129r43,-129r39,0","w":169},"w":{"d":"265,-183r-57,183r-32,0r-42,-127r-43,127r-32,0r-56,-183r39,0r35,129r43,-129r28,0r42,129r35,-129r40,0","w":267},"x":{"d":"173,0r-44,0r-38,-62r-39,62r-44,0r63,-93r-61,-90r45,0r36,60r35,-60r45,0r-60,90","w":181},"y":{"d":"167,-183r-81,219v-8,28,-29,39,-65,36r0,-33v37,6,37,-25,46,-48r-64,-174r39,0r43,129r43,-129r39,0","w":168},"z":{"d":"152,0r-137,0r0,-29r91,-121r-85,0r0,-33r131,0r0,30r-92,120r92,0r0,33","w":168},"{":{"d":"66,-128v61,21,-21,135,64,122r0,33v-46,3,-79,-7,-77,-50v-3,-39,16,-99,-37,-89r0,-32v81,14,-10,-149,89,-139r25,0r0,33v-27,0,-43,-1,-40,28v-2,40,10,83,-24,94","w":146},"|":{"d":"79,27r-37,0r0,-310r37,0r0,310","w":121},"}":{"d":"93,-233v3,39,-16,97,37,89r0,32v-80,-14,9,148,-88,139r-26,0r0,-33v26,0,43,0,41,-28v2,-40,-10,-83,24,-94v-34,-11,-22,-54,-24,-94v1,-28,-13,-29,-41,-28r0,-33v46,-3,79,6,77,50","w":146},"~":{"d":"68,-129v32,-1,73,43,100,5r23,23v-17,17,-27,26,-53,28v-30,1,-74,-42,-99,-4r-24,-23v19,-17,27,-26,53,-29","w":206}}});


/*
	ColorBox v1.05 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
	(c) 2009 Jack Moore - www.colorpowered.com - jack@colorpowered.com
	Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
*/
(function($){

var index, related, loadingElement, modal, modalOverlay, modalLoading, modalContent, modalLoadedContent, modalClose, borderTopLeft, borderTopCenter, borderTopRight, borderMiddleLeft, borderMiddleRight, borderBottomLeft, borderBottomCenter, borderBottomRight;

$(function(){
	//Initialize the modal, preload the interface graphics, and wait until called.
	$("body").append(
		$([
			modalOverlay = $('<div id="modalBackgroundOverlay" />')[0], 			
			modal = $('<div id="colorbox" />')[0]
		]).hide()
	);

	$(modal).append(
		$([
			modalInner = $('<div id="colorboxInner" />')[0],
			modalClose = $('<a id="modalClose" href="#"></a>')[0]	
		])
	);

	$(modalInner).append(
		$([
			borderTopLeft = $('<div id="borderTopLeft" />')[0],
			borderTopCenter = $('<div id="borderTopCenter" />')[0],
			borderTopRight = $('<div id="borderTopRight" />')[0],
			borderMiddleLeft = $('<div id="borderMiddleLeft" />')[0],
			borderMiddleRight = $('<div id="borderMiddleRight" />')[0],
			borderBottomLeft = $('<div id="borderBottomLeft" />')[0],
			borderBottomCenter = $('<div id="borderBottomCenter" />')[0],
			borderBottomRight = $('<div id="borderBottomRight" />')[0],
			modalContent = $('<div id="modalContent" />')[0]					
		])
	);
	
	
	
	$(modalContent).append(
		$([
			modalLoadedContent = $('<div id="modalLoadedContent"><a id="contentPrevious" href="#"></a><a id="contentNext" href="#"></a><span id="contentCurrent"></span><br id="modalInfoBr"/><span id="contentTitle"></span><div id="preloadPrevious"></div><div id="preloadNext"></div><div id="preloadClose"></div></div>')[0], 
			modalLoadingOverlay = $('<div id="modalLoadingOverlay" />')[0]			
		])
	);

	$(modalClose).click(function(){
		closeModal();
		return false;
	});
});

function setModalOverlay(){
	$([modalOverlay]).css({"position":"absolute", width:$(window).width(), height:$(window).height(), top:$(window).scrollTop(), left:$(window).scrollLeft()});
}

function keypressEvents(e){
	if(e.keyCode == 27){
		closeModal();
		return false;
	}
	else if(e.keyCode == 37){
		$("a#contentPrevious").click();
		return false;
	}
	else if(e.keyCode == 39){
		$("a#contentNext").click();
		return false
	}
}

function closeModal(){
	$(modal).removeData("open");
	$([modalOverlay, modal]).fadeOut("fast", function(){
		$(modalLoadedContent).empty();
		$([modalOverlay, modal]).hide();//Seems unnecessary, but sometimes IE6 does not hide the modal.
	});
	if(loadingElement){$(loadingElement).remove()};
	$(document).unbind('keydown', keypressEvents);
	$(window).unbind('resize scroll', setModalOverlay);
}

$.fn.colorbox = function(settings) {

	settings = $.extend({}, $.fn.colorbox.settings, settings);

	//sets the position of the modal on screen.  A transition speed of 0 will result in no animation.
	function modalPosition(modalWidth, modalHeight, transitionSpeed, callback){
		var windowHeight;
		(typeof(window.innerHeight)=='number')?windowHeight=window.innerHeight:windowHeight=document.documentElement.clientHeight;
		var colorboxHeight = modalHeight + $(borderTopLeft).height() + $(borderBottomLeft).height();
		var colorboxWidth = modalWidth + $(borderTopLeft).width() + $(borderBottomLeft).width();
		var posTop = windowHeight/2 - colorboxHeight/2 + $(window).scrollTop();
		var posLeft = $(window).width()/2 - colorboxWidth/2 + $(window).scrollLeft();
		if(colorboxHeight > windowHeight){
			posTop -=(colorboxHeight - windowHeight);
		}
		if(posTop < 0){posTop = 0;} //keeps the box from expanding to an inaccessible area offscreen.
		if(posLeft < 0){posLeft = 0;}
		$(modal).animate({height:colorboxHeight, top:posTop, left:posLeft, width:colorboxWidth}, transitionSpeed);

		//each part is animated seperately to keep them from disappearing during the animation process, which is what would happen if they were positioned relative to a single element being animated.
		$(borderMiddleLeft).animate({top:$(borderTopLeft).height(), left:0, height:modalHeight}, transitionSpeed);
		$(borderMiddleRight).animate({top:$(borderTopRight).height(), left:colorboxWidth-$(borderMiddleRight).width(), height:modalHeight}, transitionSpeed);

		$(borderTopLeft).animate({top:0, left:0}, transitionSpeed);
		$(borderTopCenter).animate({top:0, left:$(borderTopLeft).width(), width:modalWidth}, transitionSpeed);
		$(borderTopRight).animate({top: 0, left: colorboxWidth - $(borderTopRight).width()}, transitionSpeed);

		$(borderBottomLeft).animate({top:colorboxHeight-$(borderBottomLeft).height(), left:0}, transitionSpeed);
		$(borderBottomCenter).animate({top:colorboxHeight-$(borderBottomLeft).height(), left:$(borderBottomLeft).width(), width:modalWidth}, transitionSpeed);
		$(borderBottomRight).animate({top: colorboxHeight - $(borderBottomLeft).height(),	left: colorboxWidth - $(borderBottomRight).width()}, transitionSpeed);
		$(modalContent).animate({height:modalHeight, width:modalWidth, top:$(borderTopLeft).height(), left:$(borderTopLeft).width()}, transitionSpeed, function(){
			if(callback){callback();}
			if($.browser.msie && $.browser.version < 7){
				setModalOverlay();
			}
		});	
	}
	
	var preloads = [];

	function preload(){
		if(settings.preloading == true && related.length>1){
			var previous, next;
			index > 0 ? previous = related[index-1].href : previous = related[related.length-1].href;
			index < related.length-1 ? next = related[index+1].href : next = related[0].href;
			return [$(new Image()).attr("src", next), $(new Image()).attr("src", previous)];
		}
	}
	
	function centerModal(contentHtml, contentInfo){
		$(modalLoadedContent).hide().html(contentHtml).append(contentInfo);
		if(settings.contentWidth){$(modalLoadedContent).css({"width":settings.contentWidth})}
		if(settings.contentHeight){$(modalLoadedContent).css({"height":settings.contentHeight})}
		if (settings.transition == "elastic") {
			modalPosition($(modalLoadedContent).outerWidth(true), $(modalLoadedContent).outerHeight(true), settings.transitionSpeed, function(){
				$(modalLoadedContent).show();
				$(modalLoadingOverlay).hide();
			});
			
		}
		else {
			$(modal).animate({"opacity":0}, settings.transitionSpeed, function(){
				modalPosition($(modalLoadedContent).outerWidth(true), $(modalLoadedContent).outerHeight(true), 0, function(){
					$(modalLoadedContent).show();
					$(modalLoadingOverlay).hide();
					$(modal).animate({"opacity":1}, settings.transitionSpeed);
				});
			});
		}
		var preloads = preload();
	}
	
	function contentNav(){
		$(modalLoadingOverlay).show();
		if($(this).attr("id") == "contentPrevious"){
			index > 0 ? index-- : index=related.length-1;
		} else {
			index < related.length-1 ? index++ : index = 0;
		}
		buildGallery(related[index]);
		return false;	
	}
	
	function buildGallery(that){

		var contentInfo = "<br id='modalInfoBr'/><span id='contentTitle'>"+that.title+"</span>";
		
		if(related.length>1){
			contentInfo += "<span id='contentCurrent'> " + settings.contentCurrent + "</span>"
			contentInfo = contentInfo.replace(/{current}/, index+1).replace(/{total}/, related.length)
			contentInfo += "<a id='contentPrevious' href='#'>"+settings.contentPrevious+"</a> "
			contentInfo += "<a id='contentNext' href='#'>"+settings.contentNext+"</a> "
		}

		if (settings.contentInline) {
			centerModal($(settings.contentInline).html(), contentInfo);
		} else if (settings.contentIframe) {
			centerModal("<iframe src =" + that.href + "></iframe>", contentInfo);
		} else if (that.href.match(/.(gif|png|jpg|jpeg|bmp|tif)$/i) && !settings.contentAjax){
			loadingElement = $(new Image()).load(function(){
				centerModal("<img src='"+that.href+"' alt=''/>", contentInfo);
			}).attr("src",that.href);
		}else {
			loadingElement = $('<div></div>').load(((settings.contentAjax) ? settings.contentAjax : that.href), function(data, textStatus){
				if(textStatus == "success"){centerModal($(this).html(), contentInfo); $(this).empty();
				} else {
				centerModal("<p>Ajax request unsuccessful</p>");
				}
			});
		}
	};
	
	$(this).bind("click.colorbox", function () {
		if ($(modal).data("open") != true) {
			$(modal).data("open", true);
			$(modalLoadedContent).empty().css({
				"height": "auto",
				"width": "auto"
			});
			$(modalClose).html(settings.modalClose);
			$(modalOverlay).css({
				"opacity": settings.bgOpacity
			});
			$([modalOverlay, modal, modalLoadingOverlay]).show();
			$(modalContent).css({
				width: settings.initialWidth,
				height: settings.initialHeight
			});
			modalPosition($(modalContent).width(), $(modalContent).height(), 0);
			if (this.rel) {
				related = $("a[rel='" + this.rel + "']");
				index = $(related).index(this);
			}
			else {
				related = $(this);
				index = 0;
			}
			buildGallery(related[index]);
			$("a#contentPrevious, a#contentNext").die().live("click", contentNav);
			$(document).bind('keydown', keypressEvents);
			if ($.browser.msie && $.browser.version < 7) {
				$(window).bind("resize scroll", setModalOverlay);
			}
		}
		return false;
	});

	if(settings.open==true && $(modal).data("open")!=true){
		$(this).triggerHandler('click.colorbox');
	}

	return this.each(function() { 
	});
};

/*
	ColorBox Default Settings.
	
	The colorbox() function takes one argument, an object of key/value pairs, that are used to initialize the modal.
	
	Please do not change these settings here, instead overwrite these settings when attaching the colorbox() event to your anchors.
	Example (Global)	: $.fn.colorbox.settings.transition = "fade"; //changes the transition to fade for all colorBox() events proceeding it's declaration.
	Example (Specific)	: $("a[href='http://www.google.com']").colorbox({contentWidth:"700px", contentHeight:"450px", contentIframe:true});
*/
$.fn.colorbox.settings = {
	transition : "elastic", // "elastic" or "fade". Set transitionSpeed to 0 for no transition.
	transitionSpeed : 350, // Sets the speed of the fade and elastic transition, in milliseconds. Set to 0 for no transition.
	initialWidth : 300, // Set the initial width of the modal, prior to any content being loaded.
	initialHeight : 100, // Set the initial height of the modal, prior to any content being loaded.
	contentWidth : false, // Set a fixed width for div#modalLoadedContent.  Example: "500px"
	contentHeight : false, // Set a fixed height for div#modalLoadedContent.  Example: "500px"
	contentAjax : false, // Set this to the file, or file+selector of content that will be loaded through an external file.  Example "include.html" or "company.inc.php div#ceo_bio"
	contentInline : false, // Set this to the selector, in jQuery selector format, of inline content to be displayed.  Example "#myHiddenDiv".
	contentIframe : false, // If 'true' specifies that content should be displayed in an iFrame.
	bgOpacity : 0.7, // The modalBackgroundOverlay opacity level. Range: 0 to 1.
	preloading : true, // Allows for preloading of 'Next' and 'Previous' content in a shared relation group (same values for the 'rel' attribute), after the current content has finished loading.  Set to 'false' to disable.
	contentCurrent : "{current} of {total}", // the format of the contentCurrent information
	contentPrevious : "previous", // the anchor text for the previous link in a shared relation group (same values for 'rel').
	contentNext : "next", // the anchor text for the next link in a shared relation group (same 'rel' attribute').
	modalClose : "close", // the anchor text for the close link.  Esc will also close the modal.
	open : false //Automatically opens ColorBox. (fires the click.colorbox event without waiting for user input).
}

})(jQuery);


/* Mousewheel plugin http://plugins.jquery.com/project/mousewheel
 * 
 * Copyright (c) 2006 Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 *
 * $LastChangedDate: 2007-12-14 23:57:10 -0600 (Fri, 14 Dec 2007) $
 * $Rev: 4163 $
 *
 * Version: 3.0
 * 
 * Requires: $ 1.2.2+
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(5($){$.6.j.4={L:5(){9 b=$.6.j.4.i;7($.8.f)$(2).o(\'y.4\',5(a){$.d(2,\'h\',{x:a.x,l:a.l,s:a.s,r:a.r})});7(2.q)2.q(($.8.f?\'v\':\'4\'),b,n);m 2.w=b},D:5(){9 a=$.6.j.4.i;$(2).k(\'y.4\');7(2.u)2.u(($.8.f?\'v\':\'4\'),a,n);m 2.w=5(){};$.A(2,\'h\')},i:5(a){9 c=U.T.S.P(O,1);a=$.6.N(a||M.6);$.t(a,$.d(2,\'h\')||{});9 b=0,K=J;7(a.e)b=a.e/I;7(a.p)b=-a.p/3;7($.8.H)b=-a.e;a.d=a.d||{};a.G="4";c.z(b);c.z(a);g $.6.F.E(2,c)}};$.Q.t({4:5(a){g a?2.o("4",a):2.R("4")},C:5(a){g 2.k("4",a)}})})(B);',57,57,'||this||mousewheel|function|event|if|browser|var||||data|wheelDelta|mozilla|return|mwcursorposdata|handler|special|unbind|pageY|else|false|bind|detail|addEventListener|clientY|clientX|extend|removeEventListener|DOMMouseScroll|onmousewheel|pageX|mousemove|unshift|removeData|jQuery|unmousewheel|teardown|apply|handle|type|opera|120|true|returnValue|setup|window|fix|arguments|call|fn|trigger|slice|prototype|Array'.split('|'),0,{}));


/**
 * jquery.scrollable 1.0.2. Put your HTML scroll.
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/scrollable.html
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 *
 * Launch  : March 2008
 * Version : 1.0.2 - Tue Feb 24 2009 10:52:06 GMT-0000 (GMT+00:00)
 */
/**
 * jquery.scrollable 1.0.2. Put your HTML scroll.
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/scrollable.html
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 *
 * Launch  : March 2008
 * Version : 1.0.2 - Tue Feb 24 2009 10:52:08 GMT-0000 (GMT+00:00)
 */
(function($) {
		
	function fireEvent(opts, name, self, arg) {
		var fn = opts[name];
		
		if ($.isFunction(fn)) { 
			try {  
				return fn.call(self, arg);
				
			} catch (error) {
				if (opts.alert) {
					alert("Error calling scrollable." + name + ": " + error);
				} else {
					throw error;	
				}
				return false;
			} 					
		}
		return true;			
	}
				
	var current = null;	
	
	
	// constructor
	function Scrollable(root, conf) {   
				
		// current instance
		var self = this;  
		if (!current) { current = self; }		
		
		// horizontal flag
		var horizontal = !conf.vertical;		
		
		
		// wrap (root elements for items)
		var wrap = $(conf.items, root);				
		
		// current index
		var index = 0;
		
		
		// get handle to navigational elements
		var navi = root.siblings(conf.navi).eq(0);
		var prev = root.siblings(conf.prev).eq(0);
		var next = root.siblings(conf.next).eq(0);
		var prevPage = root.siblings(conf.prevPage).eq(0);
		var nextPage = root.siblings(conf.nextPage).eq(0);
		
		
		// methods
		$.extend(self, {
				
			getVersion: function() {
				return [1, 0, 1];	
			},
			
			getIndex: function() {
				return index;	
			},
	
			getConf: function() {
				return conf;	
			},
			
			getSize: function() {
				return self.getItems().size();	
			},
	
			getPageAmount: function() {
				return Math.ceil(this.getSize() / conf.size); 	
			},
			
			getPageIndex: function() {
				return Math.ceil(index / conf.size);	
			},

			getRoot: function() {
				return root;	
			},
			
			getItemWrap: function() {
				return wrap;	
			},
			
			getItems: function() {
				return wrap.children();	
			},
			
			/* all seeking functions depend on this */		
			seekTo: function(i, time, fn) {
				
				// default speed
				time = time || conf.speed;
				
				// function given as second argument
				if ($.isFunction(time)) {
					fn = time;
					time = conf.speed;
				}
								
				if (i < 0) { i = 0; }				
				if (i > self.getSize() - conf.size) { return self; } 				

				var item = self.getItems().eq(i);					
				if (!item.length) { return self; }				
				
				// onBeforeSeek
				if (fireEvent(conf, "onBeforeSeek", self, i) === false) {
					return self;	
				}									
				
				if (horizontal) {					
					var left = -(item.outerWidth(true) * i);					
					wrap.animate({left: left}, time, conf.easing, fn ? function() { fn.call(self); } : null);
					
				} else {
					var top = wrap.offset().top - item.offset().top;	
					wrap.animate({top: top}, time, conf.easing, fn ? function() { fn.call(self); } : null);							
				}	
				
				
				// navi status update
				if (navi.length) {
					var klass = conf.activeClass;
					var page = Math.ceil(i / conf.size);
					page = Math.min(page, navi.children().length - 1);
					navi.children().removeClass(klass).eq(page).addClass(klass);
				} 
				
				// prev buttons disabled flag
				if (i === 0) {
					prev.add(prevPage).addClass(conf.disabledClass);					
				} else {
					prev.add(prevPage).removeClass(conf.disabledClass);
				}
								
				// next buttons disabled flag
				if (i >= self.getSize() - conf.size) {
					next.add(nextPage).addClass(conf.disabledClass);
				} else {
					next.add(nextPage).removeClass(conf.disabledClass);
				}				
				
				current = self;
				index = i;				
				
				// onSeek after index being updated
				fireEvent(conf, "onSeek", self, i);	
				
				return self;
				
			},			
				
			move: function(offset, time, fn) {
				var to = index + offset;
				if (conf.loop && to > (self.getSize() - conf.size)) {
					to = 0;	
				}
				return this.seekTo(to, time, fn);
			},
			
			next: function(time, fn) {
				return this.move(1, time, fn);	
			},
			
			prev: function(time, fn) {
				return this.move(-1, time, fn);	
			},
			
			movePage: function(offset, time, fn) {
				return this.move(conf.size * offset, time, fn);		
			},
			
			setPage: function(page, time, fn) {
				var size = conf.size;
				var index = size * page;
				var lastPage = index + size >= this.getSize(); 
				if (lastPage) {
					index = this.getSize() - conf.size;
				}
				return this.seekTo(index, time, fn);
			},
			
			prevPage: function(time, fn) {
				return this.setPage(this.getPageIndex() - 1, time, fn);
			},  
	
			nextPage: function(time, fn) {
				return this.setPage(this.getPageIndex() + 1, time, fn);
			}, 
			
			begin: function(time, fn) {
				return this.seekTo(0, time, fn);	
			},
			
			end: function(time, fn) {
				return this.seekTo(this.getSize() - conf.size, time, fn);	
			},
			
			reload: function() {
				return load();	
			},
			
			click: function(index, time, fn) {
				
				var item = self.getItems().eq(index);
				var klass = conf.activeClass;			
				
				if (!item.hasClass(klass) && (index >= 0 || index < this.getSize())) {				
					self.getItems().removeClass(klass);
					item.addClass(klass);
					var delta = Math.floor(conf.size / 2);
					var to = index - delta;

					// next to last item must work
					if (to > self.getSize() - conf.size) { to--;	}
					
					if (to !== index) {
						return this.seekTo(to, time, fn);		
					}				 
				}
				
				return self;
			}			
			
		});
	
		
		// mousewheel
		if ($.isFunction($.fn.mousewheel)) { 
			root.bind("mousewheel.scrollable", function(e, delta)  {
				// opera goes to opposite direction
				var step = $.browser.opera ? 1 : -1;
				
				self.move(delta > 0 ? step : -step, 50);
				return false;
			});
		}  
		
		// prev button		
		prev.addClass(conf.disabledClass).click(function() { 
			self.prev(); 
		});
		

		// next button
		next.click(function() { 
			self.next(); 
		});
		
		// prev page button
		nextPage.click(function() { 
			self.nextPage(); 
		});
		

		// next page button
		prevPage.addClass(conf.disabledClass).click(function() { 
			self.prevPage(); 
		});		

		
		// keyboard
		if (conf.keyboard) {
			
			// unfortunately window.keypress does not work on IE.
			$(window).unbind("keypress.scrollable").bind("keypress.scrollable", function(evt) {
				
				var el = current;	
				if (!el) { return; }
					
				if (horizontal && (evt.keyCode == 37 || evt.keyCode == 39)) {					
					el.move(evt.keyCode == 37 ? -1 : 1);
					return evt.preventDefault();
				}	
				
				if (!horizontal && (evt.keyCode == 38 || evt.keyCode == 40)) {
					el.move(evt.keyCode == 38 ? -1 : 1);
					return evt.preventDefault();
				}
				
				return true;
				
			});	 
		}

		// navi 			
		function load() {			
			
			navi.each(function() {
				
				var nav = $(this);
				
				// generate new entries
				if (nav.is(":empty") || nav.data("me") == self) {
					
					nav.empty();
					nav.data("me", self);
					
					for (var i = 0; i < self.getPageAmount(); i++) {		
						
						var item = $("<" + conf.naviItem + "/>").attr("href", i).click(function(e) {							
							var el = $(this);
							el.parent().children().removeClass(conf.activeClass);
							el.addClass(conf.activeClass);
							self.setPage(el.attr("href"));
							return e.preventDefault();
						});
						
						if (i === 0) { item.addClass(conf.activeClass); }
						nav.append(item);					
					}
					
				// assign onClick events to existing entries
				} else {
					
					// find a entries first -> syntaxically correct
					var els = nav.children(); 
					
					els.each(function(i)  {
						var item = $(this);
						item.attr("href", i);
						if (i === 0) { item.addClass(conf.activeClass); }
						
						item.click(function() {
							nav.find("." + conf.activeClass).removeClass(conf.activeClass);
							item.addClass(conf.activeClass);
							self.setPage(item.attr("href"));
						});
						
					});
				}
				
			});
			
			
			// item.click()
			if (conf.clickable) {
				self.getItems().each(function(index, arg) {
					var el = $(this);
					if (!el.data("set")) {
						el.bind("click.scrollable", function() {
							self.click(index);		
						});
						el.data("set", true);
					}
				});				
			}
			
			
			// hover
			if (conf.hoverClass) {
				self.getItems().hover(function()  {
					$(this).addClass(conf.hoverClass);		
				}, function() {
					$(this).removeClass(conf.hoverClass);	
				});
			}			
			
			return self;
		}
		
		load();
		
		
		// interval stuff
		var timer = null;

		function setTimer() {
			timer = setInterval(function()  {
				self.next();
				
			}, conf.interval);	
		}	
		
		if (conf.interval > 0) {			
			
			root.hover(function() {			
				clearInterval(timer);		
			}, function() {		
				setTimer();	
			});
			
			setTimer();	
		}
		
	} 

		
	// jQuery plugin implementation
	jQuery.prototype.scrollable = function(conf) { 
			
		// already constructed --> return API
		var api = this.eq(typeof conf == 'number' ? conf : 0).data("scrollable");
		if (api) { return api; }		
		
 
		var opts = {
			
			// basics
			size: 5,
			vertical:false,			
			clickable: true,
			loop: false,
			interval: 0,			
			speed: 400,
			keyboard: true,			
			
			// other
			activeClass:'active',
			disabledClass: 'disabled',
			hoverClass: null,			
			easing: 'swing',
			
			// navigational elements
			items: '.items',
			prev: '.prev',
			next: '.next',
			prevPage: '.prevPage',
			nextPage: '.nextPage',			
			navi: '.navi',
			naviItem: 'a',

			
			// callbacks
			onBeforeSeek: null,
			onSeek: null,
			alert: true
		}; 
		
		
		$.extend(opts, conf);		
		
		this.each(function() {			
			var el = new Scrollable($(this), opts);
			$(this).data("scrollable", el);	
		});
		
		return this; 
		
	};
			
	
})(jQuery);


/* 

 END OF DEPENDENCIES 
 
*/


/*
 * Webloyalty.com
 *
 */
jQuery(function($) {
 
	var Engine = {
		utils : {
			links : function(){
				$('a[rel*=external]').click(function(e){
					e.preventDefault();
					window.open($(this).attr('href'));						  
				});
			},
			mails : function(){
				$('a[href^=mailto:]').each(function(){
					var mail = $(this).attr('href').replace('mailto:','');
					var replaced = mail.replace('/at/','@');
					$(this).attr('href','mailto:'+replaced);
					if($(this).text() == mail) {
						$(this).text(replaced);
					}
				});
			},
			demo : function(){
				var demolink = $("#video-box a, a.demolink");				
				demolink.colorbox({contentAjax : demolink.attr('href') });		
			},
			careers : function(){
				$("#careers-list").accordion({ header: "h3", active: false, collapsible: true });				
			}
		},
		design : {
			fonts : function(){
				Cufon.replace('#main-col h2', { fontFamily: 'DIN' });
				Cufon.replace('.home #info-bar h2', { fontFamily: 'DINMediumAlternate' });
				Cufon.replace('h3.font-change', { fontFamily: 'DINMediumAlternate' });
				Cufon.replace('#side-col h2', { fontFamily: 'DINRegularAlternate' });				
			},
			navigation : function(){
				$('#nav > li:eq(1)').attr('id','valued-member');	
			}
		},
		enhancements : {
			news : function(){
				//first off, check if news list exists
				var list = $('#articles-list');
				if (list.length === 0) {
					return;	
				}
				
				//read data from the list to local variable and set internal pointer at the beginning
				var data = [], current = 0;
				
				//set initial year
				current = list.find('h3').index(list.find('h3.active'));
				if (current < 0) {
					current = 0;	
				}
				
				list.find('h3').each(function(){
					data[data.length] = { 
						'year' : $(this).html(),
						'news' : $(this).next().find('li')
					};
					$(this).next().andSelf().remove();
				});
				
				//create year switcher controls with first year
				var switcher = $('<div id="year-switch" />');
				switcher.append('<p class="next"><a href="#">Next</a></p><p class="cur">' + data[current].year + '</p><p class="prev"><a href="#">Previous</a></p>');
				list.before(switcher);
				
				//create previous/next buttons and wrap list to make it scrollable
				list.append('<a href="#" class="prev">Previous</a><a href="#" class="next">Next</a>');
				
				var wrapper = $('<div id="news-list-wrapper">');
				list.append(wrapper).find('div').append('<ul/>').find('ul').append(data[current].news);
				
				list.show();
				
				//make the list scrollable
				var scrollable = $('#news-list-wrapper').scrollable({ vertical : true, clickable: false, items: 'ul', next : 'a.next', prev : 'a.prev' , size: 0 });
			
				//prevent jumping to the top of the page
				$(list).find('a.next, a.prev').click(function(e){
					e.preventDefault();
				});
				
				//this is reversed as newer items have smaller index
				$(switcher).find('a').click(function(e){
					e.preventDefault();

					//check which option was clicked
					var diff = $(this).parent().hasClass('prev') ? 1 : -1;
					
					var newPointer = current + diff;
					//check if not first or last item
					if (newPointer < 0 || newPointer === data.length) {
						return; 
					}
					//move internal pointer
					current = newPointer;
					
					//change contents
					$(switcher).find('p.cur').html(data[current].year);
					$(wrapper).find('ul').empty().append(data[current].news);					
					
					//reload the sliding pane
					var api = $(wrapper).scrollable({ size : 0 });
					api.begin(1).reload();					
				});				
			},
			homeintro : function(){
				$('body.home #info-bar .wrapper').flash(
					{ src: 'assets/home-header.swf', width: 940, height: 260, wmode: 'transparent' }, 
					{ update: false }
				);				
			}
		}
	};

	Engine.utils.links();
	Engine.utils.mails();
	Engine.utils.demo();
	Engine.utils.careers();
	
	Engine.enhancements.news();
	Engine.enhancements.homeintro();
	
	Engine.design.fonts();
	Engine.design.navigation();
});


