
/*** File "libs.js" starts here. ***/

/*@cc_on _d=document;eval('var document=_d')

var e = "abbr,article,aside,audio,bb,canvas,datagrid,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),
i = e.length;
while (i--) {
	document.createElement(e[i])
}

@*/

$.fn.markCurrentLocation = function() {
	var path = window.location.href
	return this.each(function(){
		var self = $(this);
		var href = self.attr('href');
		if(path == href){
			var linkLabel = self.text();
			self
				.before('<em><span class="emcontent">'+linkLabel+'</span></em>')
				.remove()
		}else if(RegExp(href).test(path)){
			self
				.wrap('<em></em>')
		}
	})
};

$.fn.orderedFigure = function() {
	return this.each(function(){
		var self = $(this);
		var cont = self.html();
		var cont2 = cont.replace(/(\d)(st|nd|rd|th)/g,'$1<sup>$2</sup>')
		self.html(cont2);
	})
};

$.fn.notify = function(type) {
	var to = {backgroundColor: "white"};
	var duration = 1000;
	switch(type){
		case 'alert':
			var from = {backgroundColor:'#ff9797'};
			break;
		default:
			var from = {backgroundColor:'#fef794'};
			break;
	}
	return this.each(function(){
		$(this).css(from).stop().animate(to,duration,function(){$(this).removeAttr('style')});
	});
};

/**
 * @param query {RegExp}
 * @wrapElement wrapElement {jQuery}
 **/
$.fn.highlightText = function(query,wrapElement){
	var REtag = '<\\/?[^>]+?\\/?>';
	var REtagDivider = new RegExp(REtag+'|[^<>]*','gi');
	return this.each(function(){
		var elem = $(this);

		var srcs = elem.html().match(REtagDivider);
		for(var i=0,l=srcs.length;i<l;i++){
			var obj = srcs[i];
			if(!RegExp(REtag).test(obj)){
				srcs[i] = obj.replace(query,function(matched){
					return $('<div />').append(wrapElement.html(matched)).html();
				})
			}
		}
		elem.html(srcs.join(''));
	})
}

/**
 * @example $('em.highlight').removeOuterTag()
 * @description will turn 'text1 <em class="highlight">text2</em> text3' into 'text1 text2 text3'
 **/
$.fn.removeOuterTag = function(){
	return this.each(function(){
		$(this).replaceWith($(this).html())
	})
}

var iaMobileNavInit = function(){
	$('<div id="shield" />')
		.appendTo('body')
		.css('height',$(document).height()+6)
		.click(function(){
			$(this).toggle();
			$('header nav').hide();
			$('.forRMB').removeClass('focus')
		})
		.hide();

	$('#iMenu')
		.click(function(){
			$('#shield').toggle();
			$(this).toggleClass('focus')
			$('#iLang').removeClass('focus')
			$('.langSelector').hide()
			$('.mainNav').toggle()
			return false;
		})

	$('#iLang')
		.click(function(){
			$('#shield').toggle();
			$(this).toggleClass('focus')
			$('#iMenu').removeClass('focus')
			$('.mainNav').hide()
			$('.langSelector').toggle()
			return false;
		})
};



/*** File "jquery.browser.addEnvClass.js" starts here. ***/

(function(){
	var ua = navigator.userAgent;
	var b = jQuery.browser;
	b.engine = '';
	b.mobile = false;

	if(/Windows/.test(ua)){
		b.os = 'win';
		b.win = true;
	}else if(/Mac/.test(ua)){
		b.os = 'mac';
		b.mac = true;
	}else if(/iPhone/.test(ua)){
		b.os = 'iphone';
		b.iphone = true;
	}

	if(/Chrome/.test(ua)){
		b.safari = false;
		b.chrome = true;
	}

	if(/Gecko/.test(ua)){
		b.gecko = true;
		b.engine = 'gecko'
	}if(/WebKit/.test(ua)){
		b.gecko = false;
		b.webkit = true;
		b.engine = 'webkit'
	}

	if(/Mobile/i.test(ua)){
		b.mobile = true;
	}
	
	if(b.msie){
		b.name = 'msie';
	}else if(b.opera){
		b.name = 'opera';
	}else if(b.safari){
		b.name = 'safari';
	}else if(b.chrome){
		b.name = 'chrome';
	}else if(b.mozilla){
		b.name = 'mozilla';
	}

	if(b.msie){
		b.ver = /MSIE (\d(.\d+)?)/.exec(ua)[1];
	}else if(b.mozilla){
		b.ver = /Firefox\/(\d(.\d+)?)/.exec(ua)[1];
	}else if(b.opera){
		b.ver = /Opera\/? ?(\d(\.\d+)?)/.exec(ua)[1];
	}else if(b.safari){
		b.ver = /Version\/(\d(\.\d+)+)/.exec(ua)[1];
	}else if(b.chrome){
		b.ver = /Chrome\/(\d(\.\d+)+)/.exec(ua)[1];
	}
})()

jQuery.fn.addEnvClass = function() {
	return this.each(function(){
		var self = jQuery(this);
		var b = jQuery.browser;
		self
			.addClass('js')
			.addClass(b.os)
			.addClass(b.name)
			.addClass(b.engine)
			.addClass('ver'+b.ver);
	
		if(b.msie){
			self.addClass('ie' + parseInt(b.ver));
		}
	})
};

jQuery('html').addEnvClass();



/*** File "jquery.color.js" starts here. ***/

/*
 * jQuery Color Animations
 * Copyright 2007 John Resig
 * Released under the MIT and GPL licenses.
 */

(function(jQuery){

	// We override the animation for all of these color styles
	jQuery.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){
		jQuery.fx.step[attr] = function(fx){
			if ( fx.state == 0 ) {
				fx.start = getColor( fx.elem, attr );
				fx.end = getRGB( fx.end );
			}

			fx.elem.style[attr] = "rgb(" + [
				Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0]), 255), 0),
				Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1]), 255), 0),
				Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2]), 255), 0)
			].join(",") + ")";
		}
	});

	// Color Conversion functions from highlightFade
	// By Blair Mitchelmore
	// http://jquery.offput.ca/highlightFade/

	// Parse strings looking for color tuples [255,255,255]
	function getRGB(color) {
		var result;

		// Check if we're already dealing with an array of colors
		if ( color && color.constructor == Array && color.length == 3 )
			return color;

		// Look for rgb(num,num,num)
		if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
			return [parseInt(result[1]), parseInt(result[2]), parseInt(result[3])];

		// Look for rgb(num%,num%,num%)
		if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
			return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];

		// Look for #a0b1c2
		if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
			return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];

		// Look for #fff
		if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
			return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];

		// Otherwise, we're most likely dealing with a named color
		return colors[jQuery.trim(color).toLowerCase()];
	}
	
	function getColor(elem, attr) {
		var color;

		do {
			color = jQuery.curCSS(elem, attr);

			// Keep going until we find an element that has color, or we hit the body
			if ( color != '' && color != 'transparent' || jQuery.nodeName(elem, "body") )
				break; 

			attr = "backgroundColor";
		} while ( elem = elem.parentNode );

		return getRGB(color);
	};
	
	// Some named colors to work with
	// From Interface by Stefan Petre
	// http://interface.eyecon.ro/

	var colors = {
		aqua:[0,255,255],
		azure:[240,255,255],
		beige:[245,245,220],
		black:[0,0,0],
		blue:[0,0,255],
		brown:[165,42,42],
		cyan:[0,255,255],
		darkblue:[0,0,139],
		darkcyan:[0,139,139],
		darkgrey:[169,169,169],
		darkgreen:[0,100,0],
		darkkhaki:[189,183,107],
		darkmagenta:[139,0,139],
		darkolivegreen:[85,107,47],
		darkorange:[255,140,0],
		darkorchid:[153,50,204],
		darkred:[139,0,0],
		darksalmon:[233,150,122],
		darkviolet:[148,0,211],
		fuchsia:[255,0,255],
		gold:[255,215,0],
		green:[0,128,0],
		indigo:[75,0,130],
		khaki:[240,230,140],
		lightblue:[173,216,230],
		lightcyan:[224,255,255],
		lightgreen:[144,238,144],
		lightgrey:[211,211,211],
		lightpink:[255,182,193],
		lightyellow:[255,255,224],
		lime:[0,255,0],
		magenta:[255,0,255],
		maroon:[128,0,0],
		navy:[0,0,128],
		olive:[128,128,0],
		orange:[255,165,0],
		pink:[255,192,203],
		purple:[128,0,128],
		violet:[128,0,128],
		red:[255,0,0],
		silver:[192,192,192],
		white:[255,255,255],
		yellow:[255,255,0]
	};
	
})(jQuery);


/*** File "jquery.initInput.js" starts here. ***/

(function($) {
	jQuery.initInput = {
		defaultValue: '',
		errorMessage: '',
		wdmClassName: 'with-default-message'
	}

	jQuery.fn.initInput = function(arg1,arg2) {

		return this.each(function(){
			var elem = $(this);
			var form = elem.parents('form');
			var wdm = $.initInput.wdmClassName;
			
			if(elem.attr('placeholder')){
				var msg = elem.attr('placeholder');
				var emsg = arg1 || $.initInput.errorMessage;
			}else{
				var msg = arg1 || $.initInput.defaultValue;
				var emsg = arg2 || $.initInput.errorMessage;
			}

			//init
			var init = function(){
				if(elem.val() == '' || elem.val() == msg){
					elem.val(msg).addClass(wdm);
				}
			}

			//set event
			var setEvent = function(){
				elem.focus(function(){
					elem.removeClass(wdm);
					if(elem.val() == msg){
						elem.val('');
					}
				}).blur(init);

				form.submit(function(){
					if(emsg == ''){
						//Allaw empty
						if(elem.val() == msg){
							elem.val('');
						}
					}else{
						//Disallow empty
						if(elem.val() == '' || elem.val() == msg){
							alert(emsg);
							elem.notify('alert');
							return false;
						}
					}
					return true;
				});
			}

			//fire function
			init();
			setEvent();

		});
	};
})(jQuery);

/*** File "jquery.addFileInfo.js" starts here. ***/

(function($) {
	if(typeof ActiveXObject == "function" && typeof XMLHttpRequest == "undefined"){
		XMLHttpRequest = function(){
			try {
				return new ActiveXObject('Msxml2.XMLHTTP');
			} catch (e) {
				return new ActiveXObject('Microsoft.XMLHTTP');
			}
		}
	}
		
	//Setting valiables
	var fileLinkClass = "file";
	var fileTypeClass = "fileType";
	var fileSizeClass = "fileSize";
	var imageLinkClass = "imageLink";
	var originalTextClass = "originalText";
	var notFoundClass = 'notFound';
	var notFoundText = 'Not Found';
	var fileClasses = '(pdf|od[tspdgf]|xlsx?|docx?|pptx?|zip|tar(\.gz)?)';
	var fileExtention = '\\.'+fileClasses+'$';

	//Get path to phpfile
	var helperPHP = $('script[src]:last').attr('src').replace(/\.js/,'.php');

	/**
	 * @sample $('article a').addFileInfo()
	 * @descriptoin If the elements have class or file extention defined as fileClasses and fileExtention, or have fileLinkClass class, it will automatically have fancy file type label before the original text, and the size after. This order is considederd from accessibility perspective.
	 * 
	 * @sample $('a.pdf').addFileInfo()
	 * @desctription 'A' elements which have fileTypeClass will be affected. This class decide displayed file type.
	 * 
	 * @sample $('a.file').addFileInfo()
	 * @desctription 'A' elements which have fileLinkClass will be affected. File type is detected automatically.
	 * 
	 * @returns {jQuery}
	 */
	$.fn.addFileInfo = function(){
		return this.each(function(){

			var elem = $(this);
			var href = elem.get(0).href;
			var fileType = '';
			var fileSize = 0;
			var fileMatch = RegExp(fileExtention).exec(href.replace(/#.+$/,''));
			var classMatch = RegExp(fileClasses).exec(elem.attr('class'));
			if(fileMatch){
				fileType = fileMatch[1];
			}else if(classMatch){
				fileType = classMatch[1];
			}else if(!elem.is('.'+fileLinkClass)){
				return;
			}
			
			var setFileInfo = function(json){
				var contentLength = json['Content-Length'];

				if(!fileType){
					fileType = (/(\/|-)([^-]+)$/.exec(json['Content-Type'])[2]);
				}

				if(String(contentLength-0) != 'NaN'){
					fileSize = Math.round(contentLength / 1024);
					if(fileSize >= 1000){
						fileSize = (Math.round(fileSize / 102.4) / 10) + 'MB';
					}else{
						fileSize = fileSize + 'KB';
					}
				}
					
				elem
					.addClass(fileLinkClass)
					.addClass(fileType)

				if(elem.find('.'+originalTextClass).size() == 0){
					elem.wrapInner('<span class="'+originalTextClass+'" />')
				}

				if(/404/.test(json[0])){
					fileSize = notFoundText;
					elem.find('.'+originalTextClass).addClass(notFoundClass);
				}else{
					elem.prepend('<span class="'+ fileTypeClass +'">'+ fileType.toUpperCase() +'</span> ')
				}


				if(elem.is('*:has(img)')){
					elem.addClass(imageLinkClass)
					$('.'+fileTypeClass,elem).append(' ('+fileSize+')');
				}else{
					elem.append(' <span class="'+fileSizeClass+'">('+fileSize+')</span>');
				}
				
			}
			
			var outset = function(){
				var fte = $('.'+fileTypeClass,elem);
				if(fte.parents('ul').size()){
					var ml = fte.width()
					+ parseInt(fte.css('padding-left').replace(/px/,''))
					+ parseInt(fte.css('padding-right').replace(/px/,''))
					fte.parents('li').css({
						position: 'relative'
					})
					fte.css({
						position: 'absolute',
						marginTop: '.2em',
						marginLeft: -ml -4 + 'px'
					});
				}
			}
			
			var main = function(){
				if(/https?:\/\/(.+?)\//.exec(href)[1] == location.host){
					var req = new XMLHttpRequest();
					req.open('HEAD',href,true);
					req.onreadystatechange = function(){
						if(req.readyState == 4){
							if(req.getResponseHeader("Content-Length")){
								setFileInfo({
									"0": req.getResponseHeader("0"),
									"Content-Type": req.getResponseHeader("Content-Type"),
									"Content-Length": req.getResponseHeader("Content-Length")
								});
							}else{
								$.post(helperPHP,{url:href},setFileInfo,'json')
							}
							req.abort();
						}
					}
					req.send(null);
				}else{
					$.post(helperPHP,{url:href},setFileInfo,'json')
				}
			}

			main();
			outset();

		});
	};
})(jQuery);


/*** File "jquery.incrementalFilter.js" starts here. ***/

(function($) {
	var IncrementalFilter = function(params){
		var setting = this.setting = {
			input: undefined,
			items: undefined,
			searchScope: '*',
			minChars: 2,
			useHighlight: true,
			foundCounter: undefined,
			totalCounter: undefined,
			highlightElem: $('<em class="highlight" />'),
			foundClass: 'found',
			zeroClass: 'zero'
		}
		$.extend(setting,params)
	
		this.input = $(setting.input);
		this.items = $(setting.items);
		this.minChars = setting.minChars;
		if(setting.foundCounter){
			this.totalCounter = setting.totalCounter;
			this.foundCounter = new IncrementalFilter.Counter(setting);
		}
		this.formerQuery = '';
		this.itemData = [];
		this.init();
	}
	
	IncrementalFilter.prototype = {
	
		makeData: function(){
			var that = this;
			this.items.each(function(){
				var obj = [$(this)]
				if($(this).is('dt')){
					obj.push($(this).next())
				}
				that.itemData.push(new IncrementalFilter.SearchedItem(obj,that.setting));
			})
			if(this.foundCounter){
				this.foundCounter.refresh(this.itemData.length);
				if(this.totalCounter){
					$(this.totalCounter).html(this.foundCounter.all)
				}
			}
		},
		
		processQuery: function(query){
			var tempq = this.escapeQuery(query)
			tempq = $.trim(tempq).split(/\s+/);
			var queries = []
		
			for(var i=0,l=tempq.length;i<l;i++){
				for(var j=0,m=tempq.length;j<m;j++){
					if(i!=j && tempq[i] && (tempq[i] == tempq[j]
					   || RegExp(tempq[i]).test(tempq[j])
					   || tempq[i].length < this.minChars)){
						tempq.splice(i,1)
						l = m = tempq.length;
					}
				}
				if(tempq[i]){
					queries.push(tempq[i])
				}
			}
	
			if(queries.join(' ') != this.formerQuery){
				this.search(queries);
				this.formerQuery = queries.join(' ');
			}
		},
		
		escapeQuery: function(query){
			var escapeChars = '.+*^$?()[]{}';
			var res = query;
			for(var i=0,l=escapeChars.length;i<l;i++){
				var ec = escapeChars.charAt(i);
				res = res.replace(RegExp('\\'+ec,'g'),'\\'+ec);
			}
			return res;
		},
	
		search: function(queries){
			var that = this;
			var count = 0;
			$(that.itemData).each(function(){
				var self = this;
				var matchCount = 0;
				$.each(queries,function(){
					if(RegExp(this,'i').test(self.text))
						matchCount++;
				})
				if(matchCount == queries.length){
					this.showItem()
					this.clearHighlight(function(){
						$.each(queries,function(){
							self.highlightWord(this)
						})
					});
					count++;
				}else{
					this.hideItem();
				}
			})
			if(this.foundCounter){
				this.foundCounter.refresh(count)
			}
		},
		
		reset: function(){
			var that = this;
			$(this.itemData).each(function(){
				this.showItem();
				this.clearHighlight();
				if(that.foundCounter){
					that.foundCounter.reset();
				}
			})
		},
	
		setEvent: function(){
			var that = this;
			this.input.bind('keyup',function(){
				var val = $(this).val();
				if(val.length >= that.minChars){
					that.processQuery(val)
				}else{
					that.reset();
				}
			})
		},
	
		init: function(){
			this.makeData();
			this.setEvent();
			if(this.input.val().length >= this.minChars){
				this.processQuery(this.input.val())
			}
		}
	}
	
	/**
	 *@param obj {array}
	 **/
	IncrementalFilter.SearchedItem = function(obj,setting){
		this.useHighlight = (setting.useHighlight && $.fn.highlightText && $.fn.removeOuterTag)
		if(this.useHighlight){
			this.highlightElem = setting.highlightElem || $('<em class="highlight" />');
			this.highlightExpr = /^<(\w+)/.exec($('<div />').append(this.highlightElem).html())[1]
							   + '.'+this.highlightElem.attr('class').split(/\s/).join('.');
		}
		this.text = '';
		this.obj = [];
		for(var i=0,l=obj.length;i<l;i++){
			var temp = obj[i];
			this.obj[i] = {'elem':temp,'orgsrc':temp.html()}
			this.text += obj[i].text();
		}
	}
	
	IncrementalFilter.SearchedItem.prototype = {
		hideItem: function(){
			$(this.obj).each(function(){
				this.elem.hide();
			})
			return this;
		},
	
		showItem: function(){
			$(this.obj).each(function(){
				this.elem.show();
			})
			return this;
		},
	
		clearHighlight: function(callback){
			if(!this.useHighlight) return this;
			var that = this;
			$(this.obj).each(function(){
				$(that.highlightExpr,this.elem).removeOuterTag()
			})
			if(callback) callback();
			return this;
		},
	
		highlightWord: function(word){
			if(!this.useHighlight) return this;
			var that = this;
			var query = new RegExp(word,'gi')
			$(this.obj).each(function(){
				this.elem.highlightText(query,that.highlightElem)
			})
			return this;
		}
	}
	
	IncrementalFilter.Counter = function(setting){
		if(!setting || !setting.foundCounter) return undefined;
		this.obj = $(setting.foundCounter);
		this.foundClass = setting.foundClass || 'found';
		this.zeroClass = setting.zeroClass || 'zero';
		this.all = undefined;
		
		this.refresh = function(count){
			this.obj.html(count);
			if(!this.all){
				this.all = count;
			}
			
			if(count == 0){
				this.zero()
			}else if(count < this.all){
				this.highlight();
			}
		}
	
		this.reset = function(){
			this.refresh(this.all);
			this.obj
				.removeClass(this.foundClass)
				.removeClass(this.zeroClass)
		}
	
		this.highlight = function(){
			this.obj
				.removeClass(this.zeroClass)
				.addClass(this.foundClass)
		}
	
		this.zero = function(){
			this.obj
				.removeClass(this.foundClass)
				.addClass(this.zeroClass)
		}
		
		return this;
	}

	$.fn.incrementalFilter = function(params){
		return this.each(function(){
			if(typeof params == 'string' || params.size){
				new IncrementalFilter({input:$(this),items:params})
			}else if(typeof params == 'object'){
				params.input = $(this);
				new IncrementalFilter(params)
			}
		});
	};
})(jQuery);

/*** File "init.js" starts here. ***/

$(function(){
	$('header nav a').markCurrentLocation();
	$('form.sitesearch :text').initInput('Enter some keyword');
	$('#darth_vader').initInput('It\'s empty!')
	$('.contentBody .date, .contentBody cite').orderedFigure();
	$('article a').addFileInfo();


	if($.browser.mobile){
		iaMobileNavInit();
	}

	if($.browser.msie){
		$('.lu:first-child').addClass('first-child')
	}

})

/*** File "cufon-yui.js" starts here. ***/

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

/*** File "Trade_Gothic_LT_Std_400.font.js" starts here. ***/

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype Library GmbH, and may be registered in certain
 * jurisdictions.
 * 
 * Full name:
 * TradeGothicLTStd-Extended
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"68,0r0,-27r52,0r0,-205r-57,4r0,-22v32,-2,53,-20,86,-18r0,241r53,0r0,27r-134,0"},{"d":"204,-59r0,-73v-34,-48,-165,-61,-163,40v0,39,30,73,81,73v31,0,64,-21,82,-40xm204,-262r29,0r2,262r-26,0r-4,-30v-28,23,-48,36,-91,36v-73,0,-102,-56,-102,-99v0,-44,27,-101,108,-101v39,0,58,13,84,32r0,-100"},{"d":"34,0r0,-262r129,0v81,0,140,43,140,129v0,155,-132,132,-269,133xm66,-234r0,206r92,0v26,0,113,-3,113,-106v0,-116,-100,-100,-205,-100","w":320,"k":{"Y":27,",":33,".":33}},{"d":"120,6v-64,0,-108,-37,-108,-104v0,-54,42,-96,108,-96v66,0,109,42,109,96v0,67,-45,104,-109,104xm120,-19v49,0,79,-30,79,-75v0,-34,-22,-75,-79,-75v-57,0,-79,41,-79,75v0,45,30,75,79,75","w":240,"k":{",":27,".":27}},{"d":"43,57r20,-57r-17,0r0,-42r38,0r0,42r-23,57r-18,0xm46,-108r0,-42r38,0r0,42r-38,0","w":129,"k":{" ":20}},{"d":"28,22r0,-284r87,0r0,16r-58,0r0,252r58,0r0,16r-87,0","w":119},{"d":"34,0r0,-262r32,0r0,140r178,-140r49,0r-128,99r147,163r-43,0r-129,-144r-74,58r0,86r-32,0","w":320,"k":{"y":27,"e":6,"o":6,"u":6,"O":13}},{"d":"27,0r0,-262r29,0r0,101v20,-17,46,-33,79,-33v23,0,78,6,78,70r0,124r-29,0r0,-118v-6,-87,-101,-46,-128,-13r0,131r-29,0","w":240},{"d":"70,-114v24,0,56,23,77,24v14,0,23,-13,31,-26r13,17v-11,15,-23,31,-45,31v-27,0,-48,-25,-75,-25v-17,0,-26,13,-33,26r-13,-16v8,-15,21,-31,45,-31","w":216},{"d":"17,-81r0,-20r182,-84r0,24r-153,70r153,70r0,24","w":216},{"d":"29,90r0,-360r22,0r0,360r-22,0","w":79},{"d":"130,-20v48,0,89,-39,89,-112v0,-57,-27,-110,-89,-110v-62,0,-89,53,-89,110v0,73,41,112,89,112xm130,6v-59,0,-118,-39,-118,-136v0,-115,78,-138,118,-138v40,0,118,23,118,138v0,97,-59,136,-118,136"},{"d":"79,6r-80,-274r25,0r80,274r-25,0","w":100},{"d":"305,-262r0,154v0,95,-74,114,-135,114v-61,0,-135,-19,-135,-114r0,-154r32,0r0,154v0,60,39,88,103,88v64,0,103,-28,103,-88r0,-154r32,0","w":339,"k":{",":33,".":33,"A":20}},{"d":"34,0r0,-262r233,0r0,28r-201,0r0,84r168,0r0,28r-168,0r0,94r206,0r0,28r-238,0","w":280},{"d":"27,-204r8,-27v15,5,33,20,47,18r-6,-49r28,0v0,16,-8,38,-4,51r45,-20r8,27v-16,4,-38,4,-51,11r34,37r-22,17v-9,-14,-13,-34,-25,-46r-23,46r-22,-17v10,-13,28,-25,33,-39","w":180},{"d":"218,-143r-25,15v-8,-13,-26,-41,-73,-41v-39,0,-79,22,-79,77v-1,76,122,104,158,30r25,14v-17,29,-44,54,-103,54v-68,0,-109,-44,-109,-101v0,-65,50,-99,108,-99v57,0,84,27,98,51","w":240,"k":{",":27,".":27}},{"d":"322,4r0,30v-42,0,-62,-8,-88,-39v-100,33,-217,-8,-217,-124v0,-87,64,-139,153,-139v89,0,153,52,153,139v0,54,-25,90,-62,112v9,10,21,21,61,21xm174,-62r0,-30v33,6,51,18,69,52v29,-17,48,-48,48,-95v0,-58,-45,-107,-121,-107v-76,0,-121,49,-121,107v1,97,83,127,168,107v-11,-18,-21,-29,-43,-34","w":339,"k":{",":27,".":27}},{"d":"6,0r0,-19r212,-215r-201,0r0,-28r252,0r0,20r-210,214r215,0r0,28r-268,0","w":280},{"d":"18,60r0,-26v43,13,64,8,87,-41r-96,-181r31,0r81,152r77,-152r32,0r-110,212v-14,33,-58,53,-102,36","w":240,"k":{",":72,".":72}},{"d":"212,-133v0,44,-3,94,3,133r-29,0v-1,-6,-4,-15,-4,-23v-27,18,-58,29,-94,29v-31,0,-76,-8,-76,-57v0,-65,98,-68,171,-77v4,-33,-28,-41,-61,-42v-50,0,-68,20,-77,31r-22,-15v11,-13,31,-40,97,-40v43,0,92,13,92,61xm183,-48r0,-56v-86,8,-144,17,-144,53v0,30,34,33,48,33v41,0,77,-20,96,-30","w":240},{"d":"97,0r0,-80r-80,0r0,-22r80,0r0,-80r22,0r0,80r80,0r0,22r-80,0r0,80r-22,0","w":216},{"d":"134,0r0,-234r-126,0r0,-28r284,0r0,28r-126,0r0,234r-32,0","w":299,"k":{"w":54,"y":54,",":72,".":72,"A":45,"a":54,"e":45,"o":45,"r":54,"u":54,"O":13,":":54,"-":63,";":54}},{"d":"2,0r128,-136r-117,-126r42,0r95,104r97,-104r42,0r-117,126r125,136r-41,0r-105,-114r-106,114r-43,0","w":299},{"d":"110,-159r-7,56r47,0r7,-56r-47,0xm39,-81r0,-22r42,0r7,-56r-38,0r0,-21r41,0r11,-82r22,0r-11,82r48,0r10,-82r22,0r-11,82r39,0r0,21r-42,0r-7,56r38,0r0,22r-42,0r-10,81r-22,0r11,-81r-48,0r-10,81r-22,0r11,-81r-39,0"},{"d":"27,0r0,-262r29,0r0,167r120,-93r45,0r-88,68r100,120r-37,0r-85,-103r-55,41r0,62r-29,0","w":240},{"d":"-1,-262r35,0r116,227r116,-227r35,0r-136,262r-31,0","w":299,"k":{",":72,".":72,"A":27,"a":25,"e":20,"o":20,"u":13,":":54,"-":40,";":54}},{"d":"35,0r0,-262r32,0r0,111r206,0r0,-111r32,0r0,262r-32,0r0,-123r-206,0r0,123r-32,0","w":339},{"d":"0,0r91,-99r-84,-89r38,0r66,70r63,-70r38,0r-84,89r92,99r-38,0r-71,-80r-73,80r-38,0","w":219},{"d":"39,28r-33,0v42,-50,64,-80,64,-148v0,-68,-22,-98,-64,-148r33,0v47,51,60,95,60,148v0,53,-13,97,-60,148","w":119},{"d":"86,0r-82,-262r33,0r63,213r65,-213r30,0r65,212r63,-212r33,0r-81,262r-31,0r-64,-213r-64,213r-30,0","w":360,"k":{",":40,".":40,"A":9,"a":13,"e":13,"o":13,"u":9,":":40,"-":20,";":40}},{"d":"17,-262v36,-2,64,0,64,37v0,32,-10,104,22,97r0,16v-52,-4,16,142,-59,134r-27,0r0,-16v19,0,35,2,35,-19v0,-37,-10,-103,21,-107v-30,-4,-21,-70,-21,-107v0,-21,-16,-19,-35,-19r0,-16","w":119},{"d":"204,-56r0,-73v-18,-19,-51,-40,-82,-40v-51,0,-81,34,-81,73v-2,101,129,88,163,40xm233,-188r0,254r-29,0r0,-92v-26,19,-45,32,-84,32v-81,0,-108,-58,-108,-102v0,-43,29,-98,102,-98v43,0,62,12,90,35r7,-29r22,0"},{"w":129,"k":{"T":20,"V":20,"W":20,"Y":20,"A":20}},{"d":"26,0r0,-262r29,0r0,262r-29,0","w":80},{"d":"56,-129r0,73v34,48,165,61,163,-40v0,-39,-30,-73,-81,-73v-31,0,-64,21,-82,40xm27,66r0,-254r29,0r0,28v27,-22,46,-34,89,-34v73,0,103,55,103,98v0,44,-27,102,-108,102v-39,0,-58,-13,-84,-32r0,92r-29,0","k":{",":27,".":27}},{"d":"103,22v-35,1,-64,1,-64,-36v0,-32,10,-104,-22,-98r0,-16v52,4,-16,-141,59,-134r27,0r0,16v-19,0,-35,-2,-35,19v0,38,9,103,-22,107v31,3,22,70,22,107v0,21,16,19,35,19r0,16","w":119},{"d":"105,0r-96,-188r32,0r79,156r80,-156r31,0r-96,188r-30,0","w":240,"k":{",":63,".":63}},{"d":"46,0r0,-42r38,0r0,42r-38,0","w":129},{"d":"51,-170r0,-92r24,0r0,92r-24,0xm105,-170r0,-92r24,0r0,92r-24,0","w":180},{"d":"228,-195r0,26v-22,0,-29,5,-35,8v23,43,8,98,-77,101v-28,0,-38,-3,-55,-9v-9,3,-13,8,-13,15v0,13,7,15,73,16v71,1,108,6,108,46v0,50,-71,58,-121,58v-39,0,-101,-7,-101,-53v0,-14,7,-25,32,-34v-10,-6,-20,-12,-20,-27v0,-17,16,-26,26,-32v-15,-14,-26,-26,-26,-48v-2,-74,112,-80,161,-48v15,-13,23,-19,48,-19xm35,14v0,44,166,35,166,-3v0,-17,-13,-20,-66,-22v-23,-1,-46,-1,-69,-2v-20,7,-31,14,-31,27xm111,-170v-27,0,-64,8,-64,43v0,37,44,43,65,43v28,0,63,-9,63,-43v0,-36,-37,-43,-64,-43","w":240,"k":{",":19,".":19}},{"d":"10,-39r21,-20v18,23,46,40,86,40v31,0,59,-10,59,-32v0,-53,-157,-8,-157,-86v0,-43,44,-57,84,-57v63,0,86,27,96,41r-20,18v-15,-20,-40,-34,-77,-34v-35,0,-54,10,-54,30v0,49,157,5,157,86v0,43,-43,59,-91,59v-42,0,-76,-12,-104,-45","w":219,"k":{",":27,".":27}},{"d":"144,0r0,-106r-135,-156r41,0r110,128r109,-128r42,0r-135,156r0,106r-32,0","w":319,"k":{",":90,".":90,"A":54,"a":54,"e":54,"i":6,"o":54,"u":46,"O":13,":":72,"-":63,";":72,"S":20}},{"d":"203,-188r-1,18r-142,145r146,0r0,25r-192,0r0,-18r143,-145r-136,0r0,-25r182,0","w":219},{"d":"46,0r0,-42r38,0r0,42r-38,0xm46,-108r0,-42r38,0r0,42r-38,0","w":129,"k":{" ":20}},{"d":"66,-234r0,90v70,-7,192,25,192,-45v0,-70,-123,-38,-192,-45xm34,0r0,-262r151,0v42,0,103,9,103,73v0,55,-50,71,-82,72r86,117r-39,0r-84,-116r-103,0r0,116r-32,0","w":320,"k":{"T":13,"Y":20}},{"d":"34,0r0,-262v103,9,255,-36,255,75v0,102,-128,69,-223,75r0,112r-32,0xm66,-234r0,94v68,-5,192,22,192,-46v0,-69,-123,-43,-192,-48","w":299,"k":{",":90,".":90,"A":40}},{"d":"213,-188r0,188r-29,0r0,-27v-20,17,-46,33,-79,33v-23,0,-78,-6,-78,-70r0,-124r29,0r0,118v6,87,101,46,128,13r0,-131r29,0","w":240},{"d":"27,0r0,-188r29,0r0,39v19,-22,49,-52,96,-44r0,30v-43,-19,-99,41,-96,50r0,113r-29,0","w":159,"k":{",":63,".":63,":":33,"-":33,";":33}},{"d":"85,0r-80,-188r30,0r63,153r58,-153r28,0r58,153r62,-153r30,0r-79,188r-28,0r-57,-153r-58,153r-27,0","w":339,"k":{",":54,".":54}},{"d":"20,-235r0,-27r221,0r0,18r-152,250r-35,0r149,-241r-183,0"},{"d":"148,-188r0,25r-75,0r0,113v-5,37,49,34,80,25r0,25v-21,3,-35,6,-47,6v-62,0,-62,-38,-62,-53r0,-116r-40,0r0,-25r40,0r0,-63r29,0r0,63r75,0","w":159},{"d":"11,-109r98,0r0,26r-98,0r0,-26","w":119},{"d":"234,-237r-18,23v-68,-60,-178,-22,-176,87v28,-23,56,-40,101,-40v71,0,108,38,108,84v0,64,-55,89,-114,89v-72,0,-124,-48,-124,-132v0,-139,143,-175,223,-111xm219,-80v0,-37,-34,-61,-79,-61v-45,0,-76,23,-96,46v6,51,51,75,93,75v46,0,82,-20,82,-60"},{"d":"241,-27r0,27r-226,0r0,-24v8,-16,29,-51,94,-83v61,-31,102,-37,102,-83v0,-29,-27,-52,-75,-52v-62,0,-82,34,-92,56r-26,-12v9,-27,41,-70,114,-70v74,0,109,31,109,76v0,55,-42,74,-84,92v-48,21,-81,35,-109,73r193,0"},{"w":129,"k":{"T":20,"V":20,"W":20,"Y":20,"A":20}},{"d":"27,-266r39,51r-26,0r-54,-51r41,0","w":79},{"d":"92,-262r0,284r-87,0r0,-16r58,0r0,-252r-58,0r0,-16r87,0","w":119},{"d":"17,-129v0,-87,64,-139,153,-139v89,0,153,52,153,139v-1,182,-305,181,-306,0xm49,-135v0,80,57,113,121,113v64,0,121,-33,121,-113v0,-58,-45,-107,-121,-107v-76,0,-121,49,-121,107","w":339,"k":{"T":13,"Y":13,",":27,".":27,"X":6}},{"d":"90,-96r140,0r-70,-141xm6,0r135,-262r39,0r134,262r-36,0r-34,-68r-168,0r-35,68r-35,0","w":320},{"d":"38,-170r0,-92r24,0r0,92r-24,0","w":100},{"d":"34,0r0,-262r49,0r97,221r97,-221r49,0r0,262r-29,0r-1,-234r-102,234r-27,0r-104,-234r0,234r-29,0","w":360},{"d":"154,-262r32,0r0,170v0,79,-57,98,-98,98v-57,0,-76,-33,-85,-56r28,-14v6,15,18,42,60,42v39,0,63,-26,63,-69r0,-171","w":219,"k":{",":40,".":40,"A":9,"a":6,"e":6,"o":6,"u":6}},{"d":"-4,6r80,-274r25,0r-80,274r-25,0","w":100},{"d":"117,52r0,-52v-26,-3,-66,-6,-105,-49r22,-20v22,26,51,39,83,42r0,-93v-67,-12,-96,-32,-96,-68v0,-52,50,-70,97,-70r0,-37r23,0r0,37v56,2,83,28,99,43r-21,21v-30,-31,-52,-34,-78,-37r0,88v38,6,104,15,104,70v0,58,-57,70,-104,73r0,52r-24,0xm117,-148r0,-83v-32,0,-68,10,-68,39v0,23,18,35,68,44xm141,-115r0,88v34,-2,76,-11,76,-43v0,-30,-25,-36,-76,-45"},{"d":"6,-43r23,-19v26,28,57,42,98,42v32,0,83,-11,83,-55v0,-49,-73,-53,-135,-50r0,-27v55,1,129,1,126,-44v-4,-67,-141,-52,-162,-10r-22,-20v28,-49,213,-72,213,27v0,40,-27,52,-43,59v24,8,52,23,52,64v0,63,-56,82,-115,82v-68,0,-98,-29,-118,-49"},{"d":"226,-58v0,22,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-40,-40,-40v-22,0,-40,18,-40,40xm94,6r153,-274r21,0r-152,274r-22,0xm54,-203v0,22,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-40,-40,-40v-22,0,-40,18,-40,40xm202,-58v0,-36,28,-65,64,-65v36,0,65,29,65,65v0,36,-29,64,-65,64v-36,0,-64,-28,-64,-64xm29,-203v0,-36,29,-65,65,-65v36,0,64,29,64,65v0,36,-28,64,-64,64v-36,0,-65,-28,-65,-64","w":360},{"d":"248,-71v0,61,-63,77,-118,77v-55,0,-118,-17,-118,-79v0,-43,43,-57,57,-64v-39,-15,-47,-37,-47,-66v0,-27,27,-65,108,-65v55,0,107,19,107,70v0,38,-29,51,-48,59v33,13,59,29,59,68xm41,-71v0,42,59,51,89,51v36,0,89,-10,89,-49v0,-44,-71,-55,-89,-55v-21,0,-89,8,-89,53xm208,-196v0,-38,-47,-46,-78,-46v-39,0,-79,9,-79,46v0,35,49,41,79,45v27,-3,78,-14,78,-45"},{"d":"14,-42r23,-20v16,20,34,42,91,42v58,0,87,-27,87,-66v0,-78,-129,-83,-165,-27r-24,-7r10,-142r189,0r0,27r-165,0r-6,83v15,-11,40,-24,82,-24v59,0,110,32,110,90v0,48,-35,92,-114,92v-72,0,-96,-25,-118,-48"},{"d":"43,57r20,-57r-17,0r0,-42r38,0r0,42r-23,57r-18,0","w":129,"k":{" ":20}},{"d":"26,0r0,-188r29,0r0,188r-29,0xm23,-262r34,0r0,34r-34,0r0,-34","w":80},{"d":"26,-25r18,-23v68,60,178,22,176,-87v-28,23,-57,41,-102,41v-71,0,-107,-39,-107,-85v0,-64,55,-89,114,-89v72,0,124,48,124,132v0,139,-143,175,-223,111xm41,-181v0,37,34,60,79,60v45,0,76,-22,96,-45v-6,-51,-51,-76,-93,-76v-46,0,-82,21,-82,61"},{"d":"278,-83r28,14v-28,54,-76,75,-140,75v-102,0,-149,-60,-149,-136v0,-157,229,-184,285,-63r-27,12v-18,-43,-59,-61,-109,-61v-75,0,-117,41,-117,116v0,60,41,104,120,104v52,0,87,-21,109,-61","w":320,"k":{",":27,".":27}},{"d":"56,0r0,-159r-48,0r0,-25r48,0v-1,-45,3,-84,67,-84v30,0,41,3,49,5r0,26v-13,-3,-26,-6,-41,-6v-46,0,-47,23,-46,59r77,0r0,25r-77,0r0,159r-29,0","w":180,"k":{",":63,".":63}},{"d":"34,0r0,-262r32,0r0,234r207,0r0,28r-239,0","w":280,"k":{"T":72,"V":63,"W":33,"y":33,"Y":81}},{"d":"289,-142r26,12v-14,33,-36,60,-58,81v26,16,42,24,72,26r0,29v-38,-1,-67,-11,-97,-34v-28,16,-58,34,-120,34v-64,0,-99,-28,-99,-79v0,-49,43,-72,85,-84v-38,-47,-30,-111,42,-111v40,0,70,18,70,57v0,46,-39,64,-60,69v25,28,49,50,84,78v32,-27,41,-48,55,-78xm43,-72v0,45,48,52,74,52v35,0,68,-13,90,-26v-35,-28,-73,-69,-90,-88v-30,9,-74,23,-74,62xm181,-213v0,-45,-78,-38,-76,2v0,16,10,31,25,46v23,-7,51,-16,51,-48","w":339},{"d":"27,0r0,-188r29,0r0,27v20,-17,46,-33,79,-33v23,0,78,6,78,70r0,124r-29,0r0,-118v-6,-87,-101,-46,-128,-13r0,131r-29,0","w":240},{"d":"41,0r0,-42r37,0r0,42r-37,0xm48,-78r-8,-184r40,0r-7,184r-25,0","w":119},{"d":"34,0r0,-262r152,0v30,0,101,1,101,69v0,36,-23,47,-40,55v16,7,49,21,49,65v0,71,-74,73,-128,73r-134,0xm66,-123r0,95r123,0v38,0,75,-7,75,-47v0,-74,-126,-41,-198,-48xm66,-235r0,85r111,0v37,0,79,-6,79,-43v0,-68,-122,-34,-190,-42","w":320,"k":{",":33,".":33,"A":6}},{"d":"34,0r0,-262r239,0r0,28r-207,0r0,83r175,0r0,28r-175,0r0,123r-32,0","w":280,"k":{",":72,".":72,"A":40,"a":18,"e":-18,"i":6,"o":18,"r":16}},{"d":"34,0r0,-262r32,0r0,262r-32,0","w":100},{"d":"164,-127r135,0r0,129r-28,0r0,-38v-18,21,-46,42,-105,42v-102,0,-149,-60,-149,-136v0,-90,61,-138,149,-138v62,0,110,28,129,72r-26,14v-53,-104,-220,-70,-220,56v0,60,40,104,118,104v48,0,99,-23,103,-77r-106,0r0,-28","w":320,"k":{",":20,".":20}},{"d":"176,-99r-68,-135r-68,135r-24,0r83,-163r18,0r83,163r-24,0","w":216},{"d":"198,-56r22,17v-19,21,-38,45,-102,45v-63,0,-106,-43,-106,-101v0,-60,44,-99,102,-99v60,0,113,31,112,106r-185,0v3,35,31,69,80,69v49,0,65,-22,77,-37xm42,-113r152,0v-6,-31,-32,-56,-77,-56v-43,0,-67,21,-75,56","w":240,"k":{",":27,".":27}},{"d":"207,-203v0,72,-100,64,-93,124r-27,0v-1,-42,16,-56,54,-78v22,-12,35,-21,35,-44v0,-24,-24,-41,-62,-41v-34,0,-62,13,-79,43r-25,-15v23,-34,47,-54,104,-54v42,0,93,18,93,65xm82,0r0,-42r38,0r0,42r-38,0","w":219},{"d":"81,-268r33,0v-42,50,-64,80,-64,148v0,68,22,98,64,148r-33,0v-47,-51,-60,-95,-60,-148v0,-53,13,-97,60,-148","w":119},{"d":"-1,63r0,-25v22,7,41,2,41,-28r0,-198r28,0r0,205v5,39,-31,56,-69,46xm37,-262r34,0r0,34r-34,0r0,-34","w":100},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"39,-85r138,0r0,-154xm207,-58r0,64r-30,0r0,-64r-171,0r0,-26r159,-178r42,0r0,177r42,0r0,27r-42,0"},{"d":"199,-101r0,20r-182,84r0,-24r153,-70r-153,-70r0,-24","w":216},{"d":"12,-54r25,-21v15,20,41,53,119,53v40,0,95,-11,95,-52v0,-80,-228,-10,-228,-116v0,-56,51,-78,122,-78v69,0,112,28,130,53r-23,19v-11,-12,-36,-46,-107,-46v-53,0,-90,14,-90,47v0,79,228,4,228,121v0,44,-42,80,-131,80v-86,0,-118,-35,-140,-60","w":299,"k":{",":33,".":33}},{"d":"34,0r0,-262r45,0r195,216r0,-216r32,0r0,262r-32,0r-210,-234r0,234r-30,0","w":339,"k":{",":27,".":27}},{"d":"56,-132r0,73v18,19,51,40,82,40v51,0,81,-34,81,-73v2,-101,-129,-88,-163,-40xm27,-262r29,0r0,100v25,-19,45,-32,84,-32v81,0,108,57,108,101v0,43,-30,99,-104,99v-42,0,-61,-13,-89,-36r-7,30r-23,0","k":{",":27,".":27}},{"d":"17,-115r0,-22r182,0r0,22r-182,0xm17,-45r0,-22r182,0r0,22r-182,0","w":216},{"d":"87,-105v0,23,10,35,30,35v36,0,66,-54,66,-88v0,-24,-11,-32,-29,-32v-41,0,-67,53,-67,85xm198,-181v5,-6,6,-17,10,-25r22,0v-14,43,-33,82,-43,128v0,6,4,10,11,10v19,0,62,-34,62,-91v0,-55,-54,-90,-109,-90v-69,0,-123,54,-123,118v0,67,56,118,123,118v41,0,82,-20,100,-48r24,0v-24,42,-74,67,-124,67v-82,0,-145,-62,-145,-137v0,-76,65,-137,145,-137v72,0,131,47,131,114v0,57,-49,105,-89,105v-14,0,-26,-7,-26,-25v-10,11,-29,25,-53,25v-33,0,-50,-24,-50,-54v0,-51,38,-109,92,-109v18,0,34,9,42,31","w":288},{"d":"26,0r0,-188r28,0r0,26v22,-18,44,-32,75,-32v41,0,51,19,59,33v30,-25,49,-33,77,-33v17,0,69,4,69,58r0,136r-29,0r0,-125v0,-12,0,-44,-41,-44v-33,0,-58,21,-70,33r0,136r-29,0r0,-125v0,-12,1,-44,-40,-44v-33,0,-58,21,-70,33r0,136r-29,0","w":359}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+370-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("QY)Jyc*R&9bOQ-Vlxc5mwYwb~q*J)cbO~qgm&9F@)8k>sPRIh9FryP:y{q?XT(__~5d8F{vSL8vMs{:L9-*z8D?2Q8xbA{`>A(:q[V_I)N*)uSv{L(8mxPxR[Usm~(L_hYr_s5JT4{x*{V_.gihV6iL>&UVi)D_cyI5-FDV(~cL]QYvj*iMUUcwb4YRI[@*_yYVRQ-wIQ{dvTU!>AiJI[@!>yiJ_[cdVycxR&-d@T9wO)IM@y(V_&(hbuNRl&9sCsIM.&PR.~I1]6@xNxJ_OQUkCTPv>yqbzAq8V~!`-ir5Y(wgQ[h*6T4F{UL89~s)&yAxuj1?ISDVc@Cv7z>:O._dmPRJqN2MolkbX]-MOy-DD[qDOxY8Px-?>yq*?xYV.yIMCyN*Ryc5:){Dv)cbmQi:vTY_lQm:vQ9xysJ:v~8RbA5:v~~RvQ-D1")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":259,"face":{"font-family":"Trade Gothic LT Std","font-weight":400,"font-stretch":"expanded","units-per-em":"360","panose-1":"0 0 5 5 0 0 0 0 0 0","ascent":"262","descent":"-98","x-height":"6","bbox":"-14 -295 356 90","underline-thickness":"18","underline-position":"-18","stemh":"25","stemv":"29","unicode-range":"U+0020-U+007E"}}));


/*** File ".js" does not exist. ***/


