/**
* phpBB3 forum functions
*/

/**
* Window popup
*/
function popup(url, width, height, name)
{
	if (!name)
	{
		name = '_popup';
	}

	window.open(url.replace(/&amp;/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes, width=' + width);
	return false;
}

/**
* Jump to page
*/
function jumpto()
{
	var page = prompt(jump_page, on_page);

	if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
	{
		if (base_url.indexOf('?') == -1)
		{
			document.location.href = base_url + '?start=' + ((page - 1) * per_page);
		}
		else
		{
			document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * per_page);
		}
	}
}

/**
* Mark/unmark checklist
* id = ID of parent container, name = name prefix, state = state [true/false]
*/
function marklist(id, name, state)
{
	var parent = document.getElementById(id);
	if (!parent)
	{
		eval('parent = document.' + id);
	}

	if (!parent)
	{
		return;
	}

	var rb = parent.getElementsByTagName('input');
	
	for (var r = 0; r < rb.length; r++)
	{	
		if (rb[r].name.substr(0, name.length) == name)
		{
			rb[r].checked = state;
		}
	}
}

/**
* Resize viewable area for attached image or topic review panel (possibly others to come)
* e = element
*/
function viewableArea(e, itself)
{
	if (!e) return;
	if (!itself)
	{
		e = e.parentNode;
	}
	
	if (!e.vaHeight)
	{
		// Store viewable area height before changing style to auto
		e.vaHeight = e.offsetHeight;
		e.vaMaxHeight = e.style.maxHeight;
		e.style.height = 'auto';
		e.style.maxHeight = 'none';
		e.style.overflow = 'visible';
	}
	else
	{
		// Restore viewable area height to the default
		e.style.height = e.vaHeight + 'px';
		e.style.overflow = 'auto';
		e.style.maxHeight = e.vaMaxHeight;
		e.vaHeight = false;
	}
}

/**
* Set display of page element
* s[-1,0,1] = hide,toggle display,show
*/
function dE(n, s)
{
	var e = document.getElementById(n);

	if (!s)
	{
		s = (e.style.display == '' || e.style.display == 'block') ? -1 : 1;
	}
	e.style.display = (s == 1) ? 'block' : 'none';
}

/**
* Alternate display of subPanels
*/
function subPanels(p)
{
	var i, e, t;

	if (typeof(p) == 'string')
	{
		show_panel = p;
	}

	for (i = 0; i < panels.length; i++)
	{
		e = document.getElementById(panels[i]);
		t = document.getElementById(panels[i] + '-tab');

		if (e)
		{
			if (panels[i] == show_panel)
			{
				e.style.display = 'block';
				if (t)
				{
					t.className = 'activetab';
				}
			}
			else
			{
				e.style.display = 'none';
				if (t)
				{
					t.className = '';
				}
			}
		}
	}
}

/**
* Call print preview
*/
function printPage()
{
	if (is_ie)
	{
		printPreview();
	}
	else
	{
		window.print();
	}
}

/**
* Show/hide groups of blocks
* c = CSS style name
* e = checkbox element
* t = toggle dispay state (used to show 'grip-show' image in the profile block when hiding the profiles) 
*/
function displayBlocks(c, e, t)
{
	var s = (e.checked == true) ?  1 : -1;

	if (t)
	{
		s *= -1;
	}

	var divs = document.getElementsByTagName("DIV");

	for (var d = 0; d < divs.length; d++)
	{
		if (divs[d].className.indexOf(c) == 0)
		{
			divs[d].style.display = (s == 1) ? 'none' : 'block';
		}
	}
}

function selectCode(a)
{
	// Get ID of code block
	var e = a.parentNode.parentNode.getElementsByTagName('CODE')[0];

	// Not IE
	if (window.getSelection)
	{
		var s = window.getSelection();
		// Safari
		if (s.setBaseAndExtent)
		{
			s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
		}
		// Firefox and Opera
		else
		{
			// workaround for bug # 42885
			if (window.opera && e.innerHTML.substring(e.innerHTML.length - 4) == '<BR>')
			{
				e.innerHTML = e.innerHTML + '&nbsp;';
			}

			var r = document.createRange();
			r.selectNodeContents(e);
			s.removeAllRanges();
			s.addRange(r);
		}
	}
	// Some older browsers
	else if (document.getSelection)
	{
		var s = document.getSelection();
		var r = document.createRange();
		r.selectNodeContents(e);
		s.removeAllRanges();
		s.addRange(r);
	}
	// IE
	else if (document.selection)
	{
		var r = document.body.createTextRange();
		r.moveToElementText(e);
		r.select();
	}
}

/**
* Play quicktime file by determining it's width/height
* from the displayed rectangle area
*/
function play_qt_file(obj)
{
	var rectangle = obj.GetRectangle();

	if (rectangle)
	{
		rectangle = rectangle.split(',');
		var x1 = parseInt(rectangle[0]);
		var x2 = parseInt(rectangle[2]);
		var y1 = parseInt(rectangle[1]);
		var y2 = parseInt(rectangle[3]);

		var width = (x1 < 0) ? (x1 * -1) + x2 : x2 - x1;
		var height = (y1 < 0) ? (y1 * -1) + y2 : y2 - y1;
	}
	else
	{
		var width = 200;
		var height = 0;
	}

	obj.width = width;
	obj.height = height + 16;

	obj.SetControllerVisible(true);
	obj.Play();
}

/**
* Check if the nodeName of elem is name
* @author jQuery
*/
function is_node_name(elem, name)
{
	return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
}

/**
* Check if elem is in array, return position
* @author jQuery
*/
function is_in_array(elem, array)
{
	for (var i = 0, length = array.length; i < length; i++)
		// === is correct (IE)
		if (array[i] === elem)
			return i;

	return -1;
}

/**
* Find Element, type and class in tree
* Not used, but may come in handy for those not using JQuery
* @author jQuery.find, Meik Sievertsen
*/
function find_in_tree(node, tag, type, class_name)
{
	var result, element, i = 0, length = node.childNodes.length;

	for (element = node.childNodes[0]; i < length; element = node.childNodes[++i])
	{
		if (!element || element.nodeType != 1) continue;

		if ((!tag || is_node_name(element, tag)) && (!type || element.type == type) && (!class_name || is_in_array(class_name, (element.className || element).toString().split(/\s+/)) > -1))
		{
			return element;
		}

		if (element.childNodes.length)
			result = find_in_tree(element, tag, type, class_name);

		if (result) return result;
	}
}

var in_autocomplete = false;
var last_key_entered = '';

/**
* Check event key
*/
function phpbb_check_key(event)
{
	// Keycode is array down or up?
	if (event.keyCode && (event.keyCode == 40 || event.keyCode == 38))
		in_autocomplete = true;

	// Make sure we are not within an "autocompletion" field
	if (in_autocomplete)
	{
		// If return pressed and key changed we reset the autocompletion
		if (!last_key_entered || last_key_entered == event.which)
		{
			in_autocompletion = false;
			return true;
		}
	}

	// Keycode is not return, then return. ;)
	if (event.which != 13)
	{
		last_key_entered = event.which;
		return true;
	}

	return false;
}

/**
* Usually used for onkeypress event, to submit a form on enter
*/
function submit_default_button(event, selector, class_name)
{
	// Add which for key events
	if (!event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode))
		event.which = event.charCode || event.keyCode;

	if (phpbb_check_key(event))
		return true;

	var current = selector['parentNode'];

	// Search parent form element
	while (current && (!current.nodeName || current.nodeType != 1 || !is_node_name(current, 'form')) && current != document)
		current = current['parentNode'];

	// Find the input submit button with the class name
	//current = find_in_tree(current, 'input', 'submit', class_name);
	var input_tags = current.getElementsByTagName('input');
	current = false;

	for (var i = 0, element = input_tags[0]; i < input_tags.length; element = input_tags[++i])
	{
		if (element.type == 'submit' && is_in_array(class_name, (element.className || element).toString().split(/\s+/)) > -1)
			current = element;
	}

	if (!current)
		return true;

	// Submit form
	current.focus();
	current.click();
	return false;
}

/**
* Apply onkeypress event for forcing default submit button on ENTER key press
* The jQuery snippet used is based on http://greatwebguy.com/programming/dom/default-html-button-submit-on-enter-with-jquery/
* The non-jQuery code is a mimick of the jQuery code ;)
*/
function apply_onkeypress_event()
{
	// jQuery code in case jQuery is used
	if (jquery_present)
	{
		jQuery('form input[type=text], form input[type=password]').live('keypress', function (e)
		{
			var default_button = jQuery(this).parents('form').find('input[type=submit].default-submit-action');
			
			if (!default_button || default_button.length <= 0)
				return true;

			if (phpbb_check_key(e))
				return true;

			if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13))
			{
				default_button.click();
				return false;
			}

			return true;
		});
	
		return;
	}

	var input_tags = document.getElementsByTagName('input');

	for (var i = 0, element = input_tags[0]; i < input_tags.length ; element = input_tags[++i])
	{
		if (element.type == 'text' || element.type == 'password')
		{
			// onkeydown is possible too
			element.onkeypress = function (evt) { submit_default_button((evt || window.event), this, 'default-submit-action'); };
		}
	}
}

/**
* Detect JQuery existance. We currently do not deliver it, but some styles do, so why not benefit from it. ;)
*/
var jquery_present = typeof jQuery == 'function';
	
/*
 * 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}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1985, 1987, 1991, 1993 Adobe Systems Incorporated. All Rights
 * Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries.
 */
Cufon.registerFont({"w":500,"face":{"font-family":"Helvetica LT","font-weight":700,"font-stretch":"condensed","units-per-em":"1000","panose-1":"2 0 8 6 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"15","bbox":"-36 -803 810 250","underline-thickness":"50","underline-position":"-100","stemh":"100","stemv":"130","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":250},"!":{"d":"101,-540r0,-210r130,0r0,210v3,57,-1,115,-6,173v-5,58,-11,115,-15,173r-85,0v-3,-58,-10,-115,-15,-173v-6,-58,-10,-116,-9,-173xm232,0r-130,0r0,-132r130,0r0,132","w":333},"\"":{"d":"318,-468r-119,0r0,-271r119,0r0,271xm135,-468r-119,0r0,-271r119,0r0,271","w":333},"#":{"d":"445,-331r0,98r-86,0r-29,233r-85,0r28,-233r-72,0r-29,233r-84,0r28,-233r-85,0r0,-98r98,0r11,-92r-84,0r0,-98r95,0r27,-217r83,0r-26,217r73,0r26,-217r86,0r-27,217r76,0r0,98r-88,0r-11,92r75,0xm296,-423r-72,0r-11,92r71,0"},"$":{"d":"218,-85r0,-223v-98,-65,-173,-108,-173,-246v0,-88,48,-171,170,-186r0,-63r68,0r0,63v109,13,160,70,163,138v1,21,5,42,4,63r-116,0v0,-54,-8,-88,-55,-101r0,199v104,53,186,128,187,231v2,138,-51,206,-183,225r0,109r-68,0r0,-106v-140,-12,-187,-110,-180,-240r120,0v1,65,-3,120,63,137xm279,-287r0,202v34,-10,60,-39,60,-94v0,-50,-35,-92,-60,-108xm218,-461r0,-179v-35,5,-53,38,-53,75v0,50,26,75,53,104"},"%":{"d":"184,-736v146,0,155,88,155,183v0,95,-9,183,-155,183v-144,0,-153,-88,-153,-183v0,-95,9,-183,153,-183xm649,-366v146,0,154,88,154,183v0,95,-8,183,-154,183v-144,0,-153,-88,-153,-183v0,-95,9,-183,153,-183xm280,15r-71,0r336,-765r70,0xm186,-663v-58,0,-59,43,-59,110v0,67,1,110,59,110v57,0,57,-43,57,-110v0,-67,0,-110,-57,-110xm650,-293v-58,0,-58,43,-58,110v0,67,0,110,58,110v57,0,57,-43,57,-110v0,-67,0,-110,-57,-110","w":833},"&":{"d":"363,-425r94,163v14,-44,21,-91,23,-137r111,0v0,89,-21,175,-66,252r90,150r-150,0r-27,-50v-52,50,-105,65,-175,65v-115,0,-200,-98,-200,-226v0,-111,56,-175,142,-236v-29,-50,-59,-103,-59,-162v0,-118,90,-162,173,-162v79,0,158,58,158,156v0,82,-46,145,-114,187xm385,-136r-121,-207v-26,10,-80,66,-70,133v8,55,42,115,100,115v36,0,65,-18,91,-41xm306,-518v28,-22,58,-52,58,-91v0,-35,-25,-58,-50,-59v-25,-1,-48,14,-48,49v0,35,26,71,40,101","w":667},"(":{"d":"198,-768r81,0v-60,118,-95,234,-95,505v0,183,21,295,97,461r-83,0v-107,-182,-146,-288,-146,-502v0,-174,43,-323,146,-464","w":333},")":{"d":"135,198r-81,0v60,-118,95,-234,95,-505v0,-183,-21,-295,-97,-461r83,0v107,182,146,288,146,502v0,174,-43,323,-146,464","w":333},"*":{"d":"382,-461r-66,48r-54,-77v-3,-5,-6,-9,-9,-15v-3,7,-8,13,-12,19r-54,74r-66,-47r55,-76v3,-5,6,-9,11,-14r-20,-6r-88,-28r24,-76r89,28v6,2,12,3,18,6v-1,-6,-1,-13,-1,-20r0,-93r80,0r0,93v0,6,0,12,-1,18v6,-2,13,-4,21,-7r86,-29r27,78r-90,27v-6,2,-12,4,-18,4v5,5,10,11,14,18"},"+":{"d":"195,-304r0,-188r110,0r0,188r170,0r0,110r-170,0r0,194r-110,0r0,-194r-169,0r0,-110r169,0"},",":{"d":"101,145r0,-44v47,-5,73,-47,70,-101r-70,0r0,-132r132,0r0,129v0,85,-44,137,-132,148","w":333},"-":{"d":"286,-255r-238,0r0,-115r238,0r0,115","w":333},".":{"d":"233,0r-132,0r0,-132r132,0r0,132","w":333},"\/":{"d":"-11,94r236,-844r87,0r-236,844r-87,0","w":278},"3":{"d":"171,-346r0,-110v29,-2,61,1,88,-11v38,-18,43,-55,43,-92v0,-57,-21,-84,-67,-84v-29,0,-65,11,-67,59r0,53r-131,0v-8,-139,54,-222,197,-222v141,0,204,74,204,193v0,65,-25,144,-98,155r0,2v66,8,115,67,113,182v0,147,-64,236,-218,236v-194,0,-209,-142,-207,-220r0,-44r131,0v3,62,-10,154,79,154v77,0,75,-72,75,-142v0,-23,-1,-61,-16,-79v-26,-31,-87,-30,-126,-30"},":":{"d":"205,-424r-132,0r0,-132r132,0r0,132xm205,0r-132,0r0,-132r132,0r0,132","w":278},";":{"d":"73,145r0,-44v47,-5,73,-47,70,-101r-70,0r0,-132r132,0r0,129v0,85,-44,137,-132,148xm205,-424r-132,0r0,-132r132,0r0,132","w":278},"<":{"d":"162,-249r297,162r0,111r-417,-225r0,-99r417,-227r0,111"},"=":{"d":"475,-401r0,110r-449,0r0,-110r449,0xm475,-206r0,110r-449,0r0,-110r449,0"},">":{"d":"42,-87r297,-162r-297,-167r0,-111r417,227r0,99r-417,225r0,-111"},"?":{"d":"176,-553r-124,0v-8,-147,66,-215,195,-215v118,0,193,71,193,186v0,76,-23,115,-69,173v-24,25,-45,51,-69,76v-31,38,-36,85,-36,132r-117,0v-1,-23,1,-46,3,-69v7,-95,59,-131,111,-201v30,-41,39,-61,39,-112v0,-58,-17,-81,-57,-81v-30,0,-46,6,-56,23v-15,27,-10,59,-13,88xm147,-130r127,0r0,130r-127,0r0,-130"},"@":{"d":"654,-148r96,0v-74,102,-181,166,-309,166v-223,0,-403,-169,-403,-396v0,-223,176,-390,397,-390v91,0,175,25,244,84v70,59,116,137,116,232v0,82,-23,154,-80,213v-40,41,-121,88,-180,88v-25,0,-50,-24,-42,-63r-2,-2v-43,41,-82,61,-123,61v-106,0,-169,-82,-169,-184v0,-122,83,-238,212,-238v53,0,97,18,127,61r11,-53r98,0r-53,308v-4,19,8,25,20,21v17,-5,47,-34,68,-64v14,-20,34,-72,35,-119v5,-169,-116,-271,-285,-271v-185,0,-316,133,-316,316v0,194,146,322,333,322v79,0,148,-40,205,-92xm504,-370v5,-60,-19,-119,-82,-114v-62,5,-109,63,-113,127v-4,66,29,103,71,109v75,11,119,-66,124,-122","w":833},"A":{"d":"159,0r-150,0r179,-750r189,0r170,750r-150,0r-37,-190r-164,0xm260,-513r-42,213r120,0r-38,-213v-7,-35,-10,-69,-14,-104v-1,-17,-3,-34,-5,-50r-2,0v-2,16,-4,33,-5,50v-4,35,-7,69,-14,104","w":556},"B":{"d":"312,0r-247,0r0,-750r226,0v60,0,119,4,159,55v32,41,37,84,37,135v0,65,-14,129,-90,157r0,2v79,11,109,77,109,174v0,31,-2,62,-10,92v-30,95,-84,135,-184,135xm205,-110r30,0v29,0,59,3,84,-8v38,-17,43,-66,43,-104v0,-81,-16,-115,-103,-115r-54,0r0,227xm205,-447r26,0v34,0,78,2,100,-26v13,-19,15,-45,15,-81v0,-56,-12,-84,-76,-86r-65,0r0,193","w":556},"C":{"d":"371,-267r141,0r-3,43v-7,137,-53,242,-209,242v-230,0,-245,-146,-245,-346r0,-107v6,-191,21,-333,245,-333v125,2,195,66,205,194v2,19,4,38,3,57r-138,0v-6,-48,-1,-138,-70,-138v-110,0,-101,131,-101,189r0,208v0,62,5,163,101,163v77,0,68,-124,71,-172","w":556},"D":{"d":"331,0r-259,0r0,-750r292,0v34,0,102,15,145,85v32,52,41,135,41,259v0,148,0,319,-115,386v-31,18,-69,20,-104,20xm212,-110r61,0v125,0,133,-66,133,-283v0,-177,-18,-247,-102,-247r-92,0r0,530","w":611},"E":{"d":"458,0r-394,0r0,-750r394,0r0,110r-254,0r0,189r234,0r0,110r-234,0r0,231r254,0r0,110"},"F":{"d":"213,0r-140,0r0,-750r397,0r0,110r-257,0r0,190r241,0r0,110r-241,0r0,340"},"G":{"d":"55,-328r0,-107v6,-191,21,-333,245,-333v120,1,203,32,235,162v7,30,6,61,7,91r-140,0v-2,-76,-7,-136,-102,-140v-110,0,-101,131,-101,189r0,208v0,62,5,163,101,163v80,0,106,-85,103,-198r-97,0r0,-110r233,0r0,403r-105,0r0,-86r-2,0v-28,78,-81,100,-132,104v-230,0,-245,-146,-245,-346","w":611},"H":{"d":"208,0r-140,0r0,-750r140,0r0,297r196,0r0,-297r140,0r0,750r-140,0r0,-343r-196,0r0,343","w":611},"I":{"d":"209,0r-140,0r0,-750r140,0r0,750","w":278},"J":{"d":"8,-238r140,0r0,93v1,27,11,50,45,50v50,0,51,-38,51,-79r0,-576r140,0r0,547v0,51,4,124,-41,172v-41,44,-103,49,-171,49v-50,0,-106,-19,-144,-77v-17,-27,-24,-110,-20,-179","w":444},"K":{"d":"208,0r-140,0r0,-750r140,0r0,333r2,0v22,-59,58,-125,88,-180r82,-153r158,0r-185,322r194,428r-158,0r-132,-296r-49,81r0,215","w":556},"L":{"d":"468,0r-400,0r0,-750r140,0r0,640r260,0r0,110"},"M":{"d":"207,-236r0,236r-140,0r0,-750r223,0r75,348v12,57,20,115,26,173r2,0v7,-74,12,-124,22,-173r75,-348r222,0r0,750r-140,0r0,-236v0,-149,3,-298,12,-447r-2,0r-150,683r-85,0r-147,-683r-5,0v9,149,12,298,12,447","w":778},"N":{"d":"403,-603r0,-147r140,0r0,750r-146,0r-109,-267v-37,-89,-67,-180,-100,-298r-2,0v5,62,11,138,15,214v4,75,7,150,7,210r0,141r-140,0r0,-750r145,0r109,273v36,87,66,176,100,298r2,0v-5,-68,-10,-141,-14,-213v-4,-72,-7,-144,-7,-211","w":611},"O":{"d":"61,-328r0,-107v6,-191,21,-333,245,-333v224,0,239,142,245,333r0,107v0,200,-15,346,-245,346v-230,0,-245,-146,-245,-346xm205,-466r0,208v0,62,5,163,101,163v100,0,101,-103,101,-175r0,-192v0,-60,3,-193,-101,-193v-110,0,-101,131,-101,189","w":611},"P":{"d":"208,0r-140,0r0,-750r286,0v134,0,175,108,175,213v0,64,-17,136,-70,178v-44,35,-103,46,-157,45r-94,0r0,314xm208,-640r0,216r75,0v61,0,102,-26,102,-117v0,-86,-34,-99,-113,-99r-64,0","w":556},"Q":{"d":"587,5r-71,66r-78,-76v-34,17,-74,23,-132,23v-230,0,-245,-146,-245,-346r0,-107v6,-191,21,-333,245,-333v224,0,239,142,245,333r0,107v0,96,-5,198,-41,256xm315,-126r76,-64r7,7v5,-23,8,-51,8,-75r1,-208v0,-58,9,-189,-101,-189v-110,0,-101,131,-101,189r0,208v0,62,5,163,101,163v14,0,26,-2,36,-5","w":611},"R":{"d":"231,-323r-25,0r0,323r-140,0r0,-750r265,0v121,0,213,42,213,180v0,82,-21,168,-115,181r0,2v83,11,108,64,108,136v0,31,-4,215,30,237r0,14r-154,0v-17,-48,-14,-140,-15,-190v-1,-46,0,-109,-48,-123v-38,-11,-79,-10,-119,-10xm206,-640r0,207r110,0v46,-3,82,-33,82,-108v0,-84,-35,-98,-88,-99r-104,0","w":611},"S":{"d":"489,-522r-135,0v1,-67,-5,-133,-82,-133v-47,0,-77,19,-77,70v0,57,36,79,80,107v46,29,131,85,170,123v48,47,63,92,63,157v0,142,-94,216,-231,216v-168,0,-228,-94,-228,-228r0,-55r140,0r0,44v-3,73,19,126,88,126v59,0,87,-31,87,-88v0,-44,-20,-74,-56,-99v-73,-57,-164,-98,-221,-173v-23,-34,-36,-75,-36,-115v0,-128,72,-198,220,-198v223,0,217,172,218,246","w":556},"T":{"d":"17,-640r0,-110r467,0r0,110r-163,0r0,640r-140,0r0,-640r-164,0"},"U":{"d":"404,-239r0,-511r140,0r0,523v0,166,-54,245,-237,245v-185,0,-239,-79,-239,-245r0,-523r140,0r0,511v0,72,5,144,100,144v91,0,96,-72,96,-144","w":611},"V":{"d":"307,-269r79,-481r150,0r-162,750r-187,0r-166,-750r150,0r88,481v8,42,13,85,17,128v2,20,6,41,6,62r2,0v0,-21,4,-42,6,-62v4,-43,9,-86,17,-128","w":556},"W":{"d":"475,-750r75,388v14,75,21,171,31,267r2,0v2,-18,3,-36,5,-54v5,-64,11,-128,21,-192r56,-409r145,0r-139,750r-168,0r-56,-296v-15,-79,-20,-159,-30,-239r-2,0v-10,80,-15,160,-30,239r-50,296r-168,0r-143,-750r145,0r63,409v10,64,16,128,21,192v2,18,3,36,4,54r2,0v11,-96,18,-192,32,-267r68,-388r116,0","w":833},"X":{"d":"359,-380r186,380r-160,0r-80,-183v-13,-30,-23,-62,-29,-95r-2,0v-6,50,-28,95,-48,140r-62,138r-153,0r184,-380r-177,-370r157,0r76,170v13,31,26,60,27,94r3,0v4,-49,27,-93,46,-137r54,-127r158,0","w":556},"Y":{"d":"165,-750r79,197v15,37,27,75,33,115r2,0v10,-58,29,-100,46,-142r67,-170r153,0r-198,431r0,319r-140,0r0,-319r-195,-431r153,0","w":556},"Z":{"d":"33,0r0,-112r241,-465v12,-22,22,-45,39,-66v-18,3,-36,3,-54,3r-210,0r0,-110r410,0r0,112r-241,465v-12,22,-22,45,-39,66v18,-3,36,-3,54,-3r235,0r0,110r-435,0"},"[":{"d":"280,94r-199,0r0,-844r199,0r0,76r-89,0r0,692r89,0r0,76","w":333},"\\":{"d":"51,-750r236,844r-87,0r-236,-844r87,0","w":250},"]":{"d":"53,-750r199,0r0,844r-199,0r0,-76r89,0r0,-692r-89,0r0,-76","w":333},"^":{"d":"114,-326r-104,-47r180,-377r120,0r180,377r-104,47r-136,-279"},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50"},"a":{"d":"440,0r-123,0v-9,-18,-10,-38,-8,-58r-2,0v-15,23,-32,42,-52,54v-19,12,-40,19,-62,19v-105,0,-151,-53,-151,-169v0,-129,91,-160,193,-202v55,-23,75,-48,64,-94v-6,-25,-26,-29,-61,-29v-59,0,-69,31,-68,82r-124,0v-1,-107,34,-182,197,-182v177,0,188,93,186,167r0,333v0,27,4,53,11,79xm299,-236r0,-61v-32,22,-71,44,-105,72v-19,16,-22,44,-22,68v0,43,13,72,61,72v77,0,63,-97,66,-151"},"b":{"d":"64,0r0,-750r130,0r0,180v0,18,-2,36,-3,63r2,0v26,-54,61,-73,116,-72v84,2,132,45,135,200r0,204v-3,90,-25,190,-135,190v-54,-3,-90,-19,-119,-75r-2,0r0,60r-124,0xm194,-354r0,169v0,65,21,100,63,100v40,0,54,-43,57,-97r0,-188v-4,-56,2,-109,-59,-109v-61,0,-63,80,-61,125"},"c":{"d":"403,-368r-130,0r0,-63v-2,-31,-17,-48,-45,-48v-50,0,-50,57,-49,126r0,133v-3,110,10,130,49,135v40,-1,41,-38,45,-83r0,-52r130,0r0,52v0,118,-49,183,-178,183v-115,0,-181,-61,-176,-211r0,-183v-1,-158,77,-200,176,-200v131,0,179,82,178,166r0,45","w":444},"d":{"d":"303,0r0,-60r-2,0v-25,57,-61,72,-112,75v-110,0,-133,-100,-136,-190r0,-204v3,-155,52,-198,136,-200v55,-1,90,18,116,72r2,0v-3,-17,-4,-33,-4,-50r0,-193r130,0r0,750r-130,0xm303,-185r0,-169v2,-45,0,-125,-61,-125v-61,0,-55,53,-59,109r0,188v3,54,17,97,57,97v42,0,63,-35,63,-100"},"e":{"d":"53,-222r0,-148v-6,-133,62,-209,190,-209v181,0,200,94,200,248r0,76r-260,0r0,82v1,74,29,88,68,88v48,0,62,-35,60,-106r130,0v5,126,-47,206,-180,206v-150,0,-211,-71,-208,-237xm183,-355r130,0r0,-49v-1,-57,-16,-75,-68,-75v-65,0,-62,50,-62,101r0,23"},"f":{"d":"71,-469r-50,0r0,-95r50,0r0,-56v0,-102,42,-130,137,-130r49,0r0,104v-10,-3,-21,-6,-29,-6v-19,0,-27,9,-27,22r0,66r56,0r0,95r-56,0r0,469r-130,0r0,-469","w":278},"g":{"d":"59,63r130,0v0,12,6,20,15,25v10,6,24,8,40,8v55,0,65,-44,65,-88r0,-65r-2,-2v-26,54,-63,71,-119,74v-110,0,-132,-99,-135,-189r0,-204v3,-155,51,-199,135,-201v59,-1,95,22,113,73r2,0r0,-58r130,0r0,547v0,115,-32,207,-210,207v-86,0,-157,-32,-164,-127xm303,-354v2,-45,0,-125,-61,-125v-61,0,-55,53,-59,109r0,188v3,54,17,97,57,97v42,0,63,-35,63,-100r0,-169"},"h":{"d":"191,0r-130,0r0,-750r130,0r0,244r2,0v37,-66,89,-73,117,-73v74,0,134,43,130,144r0,435r-130,0r0,-386v0,-55,-6,-91,-55,-93v-49,-2,-66,44,-64,104r0,375"},"i":{"d":"204,0r-130,0r0,-564r130,0r0,564xm204,-632r-130,0r0,-118r130,0r0,118","w":278},"j":{"d":"31,190r0,-100v30,2,48,-2,48,-30r0,-624r130,0r0,567v0,59,11,148,-53,178v-19,9,-66,14,-125,9xm209,-632r-130,0r0,-118r130,0r0,118","w":278},"k":{"d":"178,0r-130,0r0,-750r130,0r0,339v0,24,-1,47,-2,71r2,0r123,-224r142,0r-142,227r138,337r-145,0r-81,-230r-35,58r0,172","w":444},"l":{"d":"204,0r-130,0r0,-750r130,0r0,750","w":278},"m":{"d":"196,-564r0,58r2,0v29,-62,82,-71,124,-73v48,-1,112,20,120,73r2,0v25,-49,66,-73,130,-73v96,0,138,60,138,120r0,459r-130,0r0,-381v0,-51,-5,-101,-62,-98v-56,3,-66,42,-66,108r0,371r-130,0r0,-388v0,-50,-4,-92,-64,-91v-61,1,-64,46,-64,108r0,371r-130,0r0,-564r130,0","w":778},"n":{"d":"191,-564r0,58r2,0v29,-65,87,-73,117,-73v74,0,134,43,130,144r0,435r-130,0r0,-376v0,-55,-6,-91,-55,-93v-49,-2,-66,44,-64,104r0,365r-130,0r0,-564r130,0"},"o":{"d":"252,15v-171,3,-200,-81,-199,-277v1,-193,3,-317,199,-317v193,0,194,124,195,317v1,196,-27,280,-195,277xm183,-372r0,188v0,69,6,99,69,99v60,0,65,-30,65,-99r0,-188v0,-53,0,-107,-65,-107v-69,0,-69,54,-69,107"},"p":{"d":"188,-564r0,59r2,0v24,-55,59,-75,113,-74v84,2,132,47,135,202r0,204v-3,90,-25,188,-135,188v-51,-3,-87,-16,-119,-73r-2,0r0,247r-124,0r0,-753r130,0xm188,-354r0,169v0,65,21,100,63,100v40,0,54,-43,57,-97r0,-188v-4,-56,2,-109,-59,-109v-61,0,-63,80,-61,125"},"q":{"d":"430,-564r0,752r-130,0r0,-248r-2,0v-25,56,-61,72,-113,75v-110,0,-132,-100,-135,-190r0,-204v3,-155,51,-198,135,-200v54,-1,89,17,113,72r2,0r0,-57r130,0xm300,-185r0,-169v2,-45,0,-125,-61,-125v-61,0,-55,53,-59,109r0,188v3,54,17,97,57,97v42,0,63,-35,63,-100"},"r":{"d":"185,-564r0,100r2,0v16,-41,32,-64,51,-80v37,-31,62,-29,81,-30r0,154v-72,-7,-127,11,-129,94r0,326r-130,0r0,-564r125,0","w":333},"s":{"d":"29,-186r130,0v-10,104,30,101,60,101v37,0,63,-27,54,-63v-2,-32,-39,-50,-64,-67r-71,-49v-65,-45,-107,-97,-107,-178v0,-87,69,-137,194,-137v126,0,184,66,181,187r-130,0v3,-63,-15,-87,-60,-87v-31,0,-55,14,-55,46v0,33,24,48,49,65r106,72v33,19,85,73,89,111v11,98,-13,200,-193,200v-69,0,-198,-29,-183,-201","w":444},"t":{"d":"252,-100r0,102v-77,9,-185,16,-185,-89r0,-382r-53,0r0,-95r52,0r0,-155r131,0r0,155r55,0r0,95r-55,0r0,350v3,24,39,21,55,19","w":278},"u":{"d":"307,0r0,-84r-2,0v-20,67,-58,98,-121,99v-103,0,-126,-53,-126,-147r0,-432r130,0r0,386v0,25,-1,53,13,75v11,12,23,18,40,18v61,0,60,-69,60,-113r0,-366r130,0r0,564r-124,0"},"v":{"d":"142,0r-132,-564r140,0r55,316v11,51,16,140,18,167r2,0v2,-27,7,-116,18,-167r56,-316r135,0r-130,564r-162,0","w":444},"w":{"d":"381,-564r63,346v7,40,11,80,13,121r3,0v0,-25,8,-108,11,-125r43,-342r131,0r-114,564r-142,0r-43,-228v-9,-47,-13,-94,-17,-142r-4,0v-2,45,-6,90,-13,134r-40,236r-145,0r-116,-564r137,0r46,344v3,17,11,100,11,125r2,0v2,-41,6,-81,13,-121r54,-348r107,0","w":667},"x":{"d":"157,-288r-142,-276r153,0r43,102v5,17,11,34,14,51r2,0v4,-18,10,-35,16,-53r46,-100r144,0r-141,273r144,291r-146,0r-39,-91v-12,-27,-22,-54,-26,-83r-2,0v-5,32,-16,61,-29,90r-37,84r-149,0","w":444},"y":{"d":"5,-564r137,0r57,299v9,50,14,100,19,150r2,0v4,-49,11,-98,20,-146r57,-303r132,0r-137,572v-33,128,-36,208,-216,182r0,-101v21,0,77,11,77,-25v0,-20,-7,-52,-12,-72","w":444},"z":{"d":"367,-471r-206,371r206,0r0,100r-344,0r0,-102r198,-362r-194,0r0,-100r340,0r0,93","w":389},"{":{"d":"43,-436r0,-184v0,-87,32,-130,123,-130r74,0r0,2v-62,14,-75,54,-75,110r0,184v0,70,-14,111,-82,126r0,2v71,10,82,71,82,135r0,172v0,50,13,93,75,109r0,2r-65,0v-107,0,-132,-49,-132,-148r0,-162v0,-58,-17,-92,-75,-107r0,-2v58,-8,75,-58,75,-109","w":274},"|":{"d":"75,-750r100,0r0,1000r-100,0r0,-1000","w":250},"}":{"d":"231,-618r0,183v0,52,17,101,75,109r0,2v-66,8,-75,50,-75,108r0,162v0,100,-23,148,-129,148r-68,0r0,-2v60,-14,75,-53,75,-110r0,-171v0,-67,9,-114,82,-135r0,-2v-68,-15,-82,-57,-82,-126r0,-185v0,-59,-19,-99,-75,-110r0,-3r68,0v94,1,129,38,129,132","w":274},"~":{"d":"418,-359r57,73v-31,54,-63,117,-129,117v-60,0,-154,-66,-186,-66v-41,0,-59,48,-77,82r-57,-74v28,-57,68,-124,133,-124v65,0,145,66,187,66v37,0,54,-44,72,-74"},"'":{"d":"185,-468r-119,0r0,-271r119,0r0,271","w":250},"`":{"d":"1,-775r155,0r94,146r-101,0","w":333},"\u00a0":{"w":250}}});


