/******
 *
 * js.js
 * Edge Media Design
 * 2/26/2009
 * 
 ******/

/******
 * Initial Variables
 ******/

d=document;

/******
 * Media Player / Live Show
 ******/

function launchPlayer(messageID){
	if(playerWin){
		playerWin.close();
	}
	var playerWin=window.open('/media_player.asp?messageID=' + messageID,playerWin,'width=550,height=450,toolbar=false,resizable=false,menubar=false,scrollbars=false,status=false');
}	

function launchPlayerLarge(messageID,winWidth,winHeight){
	if(playerWin){
		playerWin.close();
	}
	var playerWin=window.open('/media_player.asp?type=large&messageID=' + messageID,playerWin,'width=' + winWidth + ',height=' + winHeight + ',toolbar=false,resizable=false,menubar=false,scrollbars=false,status=false');
}

function launchLive(){
	if(playerWin){
		playerWin.close();
	}
	var playerWin=window.open('/live.html', playerWin,'width=900,height=650,toolbar=false,resizable=false,menubar=false,scrollbars=false,status=false');
}	

/******
 * Window Openers
 ******/

function popNewWindow(eventID, type) {
	window.open('/event_detail.asp?id=' + eventID + '&type=' + type, '_blank', 'width=450, height=450, scrollbars=yes, menubar=no');
}

function popEmailWindow(thisHREF,title) {
	window.open('/emailThisPage.asp?href=' + thisHREF + '&title=' + title, '_blank', 'width=450, height=450, scrollbars=no, menubar=no');
}

function fileDownload(filePath){
	filePath = URLencode(filePath);
	var fileDownloader=window.open('/file_download_launch.asp?filePath=' + filePath,'fileDialog','width=400,height=300,toolbar=false,resizable=false,menubar=false,scrollbars=false,status=false');
}

//FUNCTION TO LAUNCH FELLOWSHIP ONE WEBLINK WINDOWS
function launchF1(url){
	if(f1Win){
		f1Win.close();
	}
	var f1Win=window.open(url,f1Win,'width=650,height=750,toolbar=0,resizable=1,menubar=0,scrollbars=1,status=0');
}	

/******
 * SF Hover
 ******/

//sfHover couresty of http://www.htmldog.com (http://www.htmldog.com/articles/suckerfish/dropdowns/)
sfHover = function() {
	var sfEls = d.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

function showStaff(total, obj, source){  
	for(var i=1; i<=total; i++){
		if(i==obj){
			d.getElementById('staff' + obj).style.display='';
			var image="<img src='" + source + "'>";
			d.getElementById('staff_image' + obj).innerHTML=image;
		}else{
			d.getElementById('staff' + i).style.display='none';
		}
	}
}

/******
 * Utility
 ******/

function URLencode(sStr) {
	return escape(sStr).replace(/\+/g, '%2C').replace(/\"/g,'%22').replace(/\'/g, '%27');
}

//getElementsByClassName() Written by Jonathan Snook, http://www.snook.ca/jonathan; Add-ons by Robert Nyman, http://www.robertnyman.com
function getElementsByClassName(oElm, strTagName, strClassName){
	var arrElements = (strTagName == "*" && document.all)? document.all : oElm.getElementsByTagName(strTagName);
	var arrReturnElements = new Array();
	strClassName = strClassName.replace(/\-/g, "\\-");
	var oRegExp = new RegExp("(^|\\s)" + strClassName + "(\\s|$)");
	var oElement;
	for(var i=0; i<arrElements.length; i++){
		oElement = arrElements[i];      
		if(oRegExp.test(oElement.className)){
			arrReturnElements.push(oElement);
		}   
	}
	return (arrReturnElements);
}

function updateName(myName){
	if(myName){
		d.getElementById('staff_name').innerHTML=myName;
	}else{
		d.getElementById('staff_name').innerHTML="Click a photo below to view details";
	}
}

function killAnnounce(){
	d.getElementById('fullscreen').style.display='none';
	d.getElementById('screen').style.display='none';
}


function showHide(elementid){ 
	if (d.getElementById(elementid).style.display == 'none'){ 
		d.getElementById(elementid).style.display = '';
	} else { 
		d.getElementById(elementid).style.display = 'none'; 
	} 
}

function RGBtoHex(R,G,B) {return toHex(R)+toHex(G)+toHex(B)}

function toHex(N) {
	if (N==null) return "00";
	N=parseInt(N); if (N==0 || isNaN(N)) return "00";
	N=Math.max(0,N); N=Math.min(N,255); N=Math.round(N);
	return "0123456789ABCDEF".charAt((N-N%16)/16) + "0123456789ABCDEF".charAt(N%16);
}

//http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/
//getStyle(document.getElementById("container"), "font-size");
function getStyle(oElm, strCssRule){
var strValue = "";
	if(document.defaultView && document.defaultView.getComputedStyle){
		strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule);
	}
	else if(oElm.currentStyle){
		strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1){
				return p1.toUpperCase();
			});
		strValue = oElm.currentStyle[strCssRule];
	}
	return strValue;
}


/******
 * Start Up
 ******/

function startUp(){
	
	defineBrowser(navigator.userAgent);

	if(d.getElementById("nav")){
	  sfHover();
	  cufonReplacement();
	}
	if(window.attachEvent){
	  ////replaceActiveX();
	}
	if(d.getElementById("standard_login")){
	  bodyOnLoad();
	}
	if(d.getElementById("volunteer_form")){
	  fnInitializeFormElements();
	}
  	if(d.getElementById("archives")){
      hidePageName();
      podcastButton();
  	}	
  	if(d.getElementById("pageHeader")){
  		roundedCorners('#pageHeader');
  	}
  	if(d.getElementById("content_narrow")){
	  	if ($('#content_narrow div').hasClass('image')) {
	  		roundedCorners('#content_narrow .image');
		}
  	}
  	if(d.getElementById("spotlight")){
  		$('#spotlight').spotlight({
  			name: 'spotlight'
  		});
  		$('#spotlight .spotlight-list a').css('display', 'block');
  	}
  	if(d.getElementById("features")){
  		$('#features').features({
  			name: 'features',
  			autoplay: true,
  			delay: 8000,
  			fadeDelay: 750,
  			showPanel: true,
  			showControls: true,
  			showPlayBack: false,
  			thumbControl: false
  		});
  		$('#features.features ul li').css('display', 'block');
  	}
  	
}

function hidePageName(){
    d.getElementById('pageName').style.display = 'none'; 
}

function podcastButton(){
    $("a.podcast").parent('li').addClass("podcastLi");
    
    $(".podcastLi").mouseover(function() {
      $("div.podcastList").removeClass("hidden ");
    }).mouseout(function(){
      $("div.podcastList").addClass("hidden");
    });
}

window.onload=startUp;


// FUNCTION ADDS A NEW SPAN AROUND THE ELEMENT THEN SETS THE CSS PROPERTIES INLINE
function roundedCorners($element){

	src = new String();
	src = $($element + " img").attr("src");
	src = src.replace(/ /g, "%20");
	src = src.replace("(", "%28");
	src = src.replace(")", "%29");
	
	$($element + " img").wrap(function(){ 
		return '<span class="rounded" style="background: #ccc url(' + src + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px; display:block; position:relative; z-index:20;"></span>'; 
	});
	
	$( $element + " img").css("visibility","hidden");
	$( $element + " span").css("display","block");
}

// CUFON FONT REPLACEMENT 
function cufonReplacement(){
	
	$('#nav li a').addClass('parent');
	$('#nav li li a').removeClass('parent');
	
	Cufon.replace('#logo a, #nav a.parent, #pageName, #group_nav .name, #content_narrow #group_links a, #marquee, #breadcrumbs, #features h2, #quote, #welcome .welcome_text h2',{
		hover: true
	});
	$('#logo a, #nav a.parent, #pageName, #group_nav .name, #content_narrow #group_links a, #marquee, #breadcrumbs, #features h2, #quote, #welcome .welcome_text h2, #nav').css('display', 'block');
}



/* BROWSER DETECTION AND ADDS CLASSES FOR CSS TARGETING */
function defineBrowser(u){
	var ua = u.toLowerCase();
	is=function(t){return ua.indexOf(t)>-1;};
	g='gecko';
	w='webkit';
	s='safari';
	o='opera';
	h=document.getElementsByTagName('html')[0];
	b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):
		is('firefox/2')?g+' ff2':
		is('firefox/3.5')?g+' ff3 ff3_5':
		is('firefox/3')?g+' ff3':
		is('gecko/')?g:
		is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):
		is('konqueror')?'konqueror':
		is('chrome')?w+' chrome':
		is('iron')?w+' iron':
		is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):
		is('mozilla/')?g:'',
		is('j2me')?'mobile':
		is('iphone')?'iphone':
		is('ipod')?'ipod':
		is('mac')?'mac':
		is('darwin')?'mac':
		is('webtv')?'webtv':
		is('win')?'win':
		is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; 
	c = b.join(' '); 
	h.className += ' '+c; return c;
}

// JQUERY PLUGINS - DO NOT EDIT UNLESS 100% NECESSARY
// TIMING CONTROLS
jQuery.fn.extend({everyTime:function(interval,label,fn,times,belay){return this.each(function(){jQuery.timer.add(this,interval,label,fn,times,belay)})},oneTime:function(interval,label,fn){return this.each(function(){jQuery.timer.add(this,interval,label,fn,1)})},stopTime:function(label,fn){return this.each(function(){jQuery.timer.remove(this,label,fn)})}});
jQuery.event.special
jQuery.extend({timer:{global:[],guid:1,dataKey:"jQuery.timer",regex:/^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,powers:{'ms':1,'cs':10,'ds':100,'s':1000,'das':10000,'hs':100000,'ks':1000000},timeParse:function(value){if(value==undefined||value==null)return null;var result=this.regex.exec(jQuery.trim(value.toString()));if(result[2]){var num=parseFloat(result[1]);var mult=this.powers[result[2]]||1;return num*mult}else{return value}},add:function(element,interval,label,fn,times,belay){var counter=0;if(jQuery.isFunction(label)){if(!times)times=fn;fn=label;label=interval}interval=jQuery.timer.timeParse(interval);if(typeof interval!='number'||isNaN(interval)||interval<=0)return;if(times&&times.constructor!=Number){belay=!!times;times=0}times=times||0;belay=belay||false;var timers=jQuery.data(element,this.dataKey)||jQuery.data(element,this.dataKey,{});if(!timers[label])timers[label]={};fn.timerID=fn.timerID||this.guid++;var handler=function(){if(belay&&this.inProgress)return;this.inProgress=true;if((++counter>times&&times!==0)||fn.call(element,counter)===false)jQuery.timer.remove(element,label,fn);this.inProgress=false};handler.timerID=fn.timerID;if(!timers[label][fn.timerID])timers[label][fn.timerID]=window.setInterval(handler,interval);this.global.push(element)},remove:function(element,label,fn){var timers=jQuery.data(element,this.dataKey),ret;if(timers){if(!label){for(label in timers)this.remove(element,label,fn)}else if(timers[label]){if(fn){if(fn.timerID){window.clearInterval(timers[label][fn.timerID]);delete timers[label][fn.timerID]}}else{for(var fn in timers[label]){window.clearInterval(timers[label][fn]);delete timers[label][fn]}}for(ret in timers[label])break;if(!ret){ret=null;delete timers[label]}}for(ret in timers)break;if(!ret)jQuery.removeData(element,this.dataKey)}}}});
jQuery(window).bind("unload", function() {jQuery.each(jQuery.timer.global, function(index, item) {jQuery.timer.remove(item);});});

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());

Cufon.registerFont({"w":1135,"face":{"font-family":"centurygothic","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 2 2 2 2 2 2 4","ascent":"1638","descent":"-410","x-height":"28","bbox":"-64 -1598 1870 452.73","underline-thickness":"119","underline-position":"-138","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":567},"!":{"d":"373,-1508r0,1140r-145,0r0,-1140r145,0xm179,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":604},"\"":{"d":"562,-1045r-103,0r-22,-463r148,0xm174,-1045r-104,0r-22,-463r148,0","w":633},"#":{"d":"1233,-602r0,108r-248,0r-72,494r-112,0r72,-494r-333,0r-76,494r-110,0r76,-494r-246,0r0,-108r263,0r51,-334r-253,0r0,-109r269,0r70,-468r107,0r-68,468r332,0r68,-468r112,0r-69,468r224,0r0,109r-240,0r-48,334r231,0xm940,-936r-334,0r-49,334r332,0","w":1475},"$":{"d":"531,-1574r131,0r0,109v147,29,221,90,301,200r-108,87v-51,-79,-116,-127,-193,-144r0,499v175,92,283,167,326,224v97,127,114,310,22,445v-76,110,-172,170,-348,190r0,313r-131,0r0,-313v-166,-14,-242,-46,-341,-126v-47,-39,-87,-85,-118,-136r107,-81v93,123,210,191,352,205r0,-619v-105,-51,-171,-86,-199,-105v-99,-69,-167,-146,-167,-293v0,-214,152,-332,366,-352r0,-103xm531,-1332v-134,10,-220,79,-220,210v0,48,14,89,42,122v37,45,97,86,178,123r0,-455xm662,-106v139,-15,266,-112,266,-247v0,-57,-19,-110,-56,-159v-37,-49,-107,-101,-210,-156r0,562"},"%":{"d":"793,-1462v197,-6,286,-23,470,-74r118,0r-1072,1638r-132,0r975,-1492v-126,31,-298,46,-476,41v164,221,-21,535,-287,535v-188,0,-346,-158,-343,-345v4,-204,148,-349,343,-349v110,0,267,50,404,46xm612,-1161v0,-118,-102,-220,-220,-220v-118,0,-219,102,-219,220v0,118,101,219,219,219v118,0,220,-101,220,-219xm849,-303v0,-185,161,-346,346,-346v185,0,346,161,346,346v0,185,-161,346,-346,346v-185,0,-346,-161,-346,-346xm1415,-303v0,-118,-102,-219,-220,-219v-118,0,-219,101,-219,219v0,118,101,219,219,219v118,0,220,-101,220,-219","w":1587},"&":{"d":"671,-1418v178,3,324,99,324,269v0,49,-17,101,-52,157v-35,56,-103,127,-205,214r223,234r153,153r178,-153r100,106v-64,57,-122,106,-173,147r147,151v51,51,94,97,131,140r-205,0r-189,-197v-127,96,-228,159,-305,189v-77,30,-158,45,-243,45v-213,0,-377,-140,-376,-341v0,-73,23,-146,69,-220v46,-74,141,-167,284,-280v-81,-97,-133,-170,-156,-216v-23,-46,-34,-90,-34,-132v-1,-164,162,-270,329,-266xm665,-1277v-121,0,-220,95,-156,203v33,57,79,119,138,186v71,-55,125,-110,161,-163v25,-38,38,-72,38,-101v-2,-78,-88,-125,-181,-125xm326,-314v-1,116,120,213,245,213v52,0,103,-11,153,-32v79,-34,172,-89,279,-166r-240,-246r-134,-148v-125,94,-206,169,-245,225v-39,56,-58,107,-58,154","w":1550},"'":{"d":"254,-1045r-103,0r-22,-463r148,0","w":405},"(":{"d":"267,-495v1,-394,78,-757,203,-1041r162,0v-127,259,-216,640,-216,1022v0,348,64,696,167,940r-154,0v-99,-237,-163,-581,-162,-921","w":756},")":{"d":"489,-614v0,393,-78,757,-203,1040r-162,0v128,-258,216,-639,216,-1022v0,-348,-64,-696,-167,-940r154,0v100,236,163,582,162,922","w":756},"*":{"d":"369,-1508r130,0r-29,297r246,-176r66,112r-277,125r277,123r-66,113r-246,-174r29,297r-130,0r31,-297r-246,174r-66,-113r281,-123r-281,-125r66,-112r246,176","w":870},"+":{"d":"552,-804r0,-434r137,0r0,434r438,0r0,137r-438,0r0,434r-137,0r0,-434r-437,0r0,-137r437,0","w":1241},",":{"d":"295,-270r135,64r-203,378r-99,-42","w":567},"-":{"d":"65,-614r550,0r0,122r-550,0r0,-122","w":680},"\u00ad":{"d":"65,-614r550,0r0,122r-550,0r0,-122","w":680},".":{"d":"187,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":567},"\/":{"d":"836,-1508r-611,1708r-153,0r610,-1708r154,0","w":895},"0":{"d":"128,-286v-79,-192,-78,-707,0,-899v74,-181,209,-323,431,-323v227,0,364,144,443,330v85,201,84,683,0,884v-78,186,-216,331,-443,331v-222,0,-356,-141,-431,-323xm249,-1110v-57,149,-55,604,-1,754v51,141,157,260,316,260v291,0,365,-311,367,-636v1,-262,-52,-465,-185,-570v-112,-89,-253,-87,-366,0v-57,44,-99,108,-131,192"},"1":{"d":"379,-1471r289,0r0,1471r-146,0r0,-1327r-231,0"},"2":{"d":"578,-1368v-203,4,-330,152,-341,358r-141,0v1,-277,214,-498,490,-498v256,0,456,199,454,440v0,83,-18,162,-60,234v-120,206,-422,492,-599,692r679,0r0,142r-999,0r562,-607v114,-122,189,-212,223,-271v34,-59,51,-122,51,-187v0,-165,-149,-307,-319,-303"},"3":{"d":"552,-1365v-161,7,-227,93,-281,235r-150,0v45,-216,194,-378,431,-378v235,0,423,152,423,380v0,127,-63,227,-189,301v147,55,275,209,270,388v-8,280,-208,476,-501,476v-278,0,-440,-174,-483,-431r144,0v45,184,143,279,341,288v257,12,450,-262,305,-482v-78,-118,-176,-148,-382,-160r0,-135v178,-4,338,-76,342,-246v3,-133,-127,-242,-270,-236"},"4":{"d":"872,-1508r30,0r0,1025r178,0r0,141r-178,0r0,342r-147,0r0,-342r-703,0xm755,-483r0,-613r-433,613r433,0"},"5":{"d":"894,-485v0,-199,-142,-335,-345,-335v-87,0,-192,26,-315,79r136,-730r637,0r0,140r-524,0r-73,401v345,-113,644,120,635,451v-8,306,-199,513,-513,516v-243,3,-423,-173,-449,-393r151,0v28,157,137,250,307,256v196,7,353,-179,353,-385"},"6":{"d":"584,37v-325,6,-531,-313,-410,-639v24,-66,68,-147,131,-240r446,-666r121,79r-397,602v302,-110,574,125,569,411v-5,272,-193,448,-460,453xm899,-415v0,-167,-143,-310,-309,-310v-167,0,-309,143,-309,310v0,166,143,309,309,309v166,0,309,-143,309,-309"},"7":{"d":"147,-1471r933,0r-787,1508r-121,-62r680,-1307r-705,0r0,-139"},"8":{"d":"997,-1120v0,160,-91,248,-210,313v166,84,278,178,278,385v0,268,-215,459,-500,459v-163,0,-286,-46,-370,-139v-84,-93,-126,-196,-126,-308v0,-210,116,-311,286,-397v-122,-62,-216,-161,-216,-317v0,-228,196,-384,436,-384v237,0,422,158,422,388xm849,-1126v0,-134,-121,-239,-281,-239v-148,0,-280,104,-280,242v0,132,145,262,285,257v154,-5,276,-111,276,-260xm918,-419v2,-166,-167,-314,-343,-314v-189,0,-364,150,-358,328v6,189,148,303,350,303v197,0,349,-138,351,-317"},"9":{"d":"559,-1508v326,0,532,314,411,640v-24,66,-68,147,-131,240r-446,665r-121,-78r397,-602v-386,141,-707,-282,-510,-641v68,-123,220,-223,400,-224xm244,-1055v0,166,143,309,309,309v167,0,310,-143,310,-309v0,-167,-143,-309,-310,-309v-166,0,-309,143,-309,309"},":":{"d":"187,-992v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm187,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":567},";":{"d":"187,-992v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm295,-270r135,64r-203,378r-99,-42","w":567},"\u037e":{"d":"187,-992v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm295,-270r135,64r-203,378r-99,-42","w":567},"<":{"d":"1137,-347r0,146r-1033,-469r0,-130r1033,-471r0,147r-839,390","w":1241},"=":{"d":"1127,-1024r0,137r-1012,0r0,-137r1012,0xm1127,-584r0,137r-1012,0r0,-137r1012,0","w":1241},">":{"d":"104,-347r839,-387r-839,-390r0,-147r1033,471r0,130r-1033,469r0,-146","w":1241},"?":{"d":"610,-1368v-178,4,-293,106,-295,297r-145,0v-1,-264,174,-437,438,-437v237,0,420,132,420,345v0,111,-55,178,-123,237v-62,54,-412,181,-453,224v-104,108,17,252,161,244v143,-8,202,-74,217,-212r146,0v-7,216,-143,352,-363,352v-235,0,-431,-186,-327,-404v52,-108,112,-119,257,-181v143,-61,236,-103,277,-132v40,-29,60,-71,60,-126v-2,-128,-125,-210,-270,-207xm484,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":1210},"@":{"d":"928,-61v252,0,361,-89,516,-240r106,0v-165,209,-309,328,-617,328v-317,0,-570,-171,-693,-386v-137,-238,-133,-552,2,-791v124,-220,361,-382,678,-390v373,-10,718,293,718,644v0,264,-138,441,-321,533v-75,39,-140,58,-193,58v-72,0,-120,-30,-119,-111v-40,53,-128,101,-217,101v-197,0,-332,-157,-332,-363v0,-236,174,-479,428,-469v140,6,196,52,260,148r26,-138r108,0r-116,654v-13,54,-2,90,45,90v113,0,255,-139,301,-245v32,-73,52,-151,52,-238v0,-330,-301,-582,-645,-576v-285,5,-496,147,-607,342v-121,213,-122,492,0,704v112,195,333,345,620,345xm600,-696v0,154,93,270,238,268v183,-2,256,-205,260,-385v3,-127,-80,-227,-203,-227v-166,0,-295,165,-295,344","w":1776},"A":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0","w":1515},"B":{"d":"1030,-584v133,305,-119,584,-443,584r-404,0r0,-1471v188,3,438,-14,559,41v113,51,203,167,203,319v0,149,-80,252,-189,309v139,47,223,101,274,218xm792,-1111v0,-156,-115,-218,-295,-216r-170,0r0,471v111,2,252,-4,309,-28v85,-35,156,-117,156,-227xm327,-708r0,564v138,0,338,3,418,-32v88,-38,166,-128,166,-243v0,-146,-109,-239,-240,-271v-53,-13,-226,-19,-344,-18","w":1176},"C":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781","w":1665},"D":{"d":"179,0r0,-1471v257,-1,640,0,784,53v269,99,455,348,455,701v0,297,-150,531,-344,637v-193,105,-586,74,-895,80xm320,-139v199,2,504,-7,593,-38v211,-73,356,-262,356,-538v0,-293,-158,-499,-390,-571v-97,-30,-349,-45,-559,-42r0,1189","w":1524},"E":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471","w":1098},"F":{"d":"179,-1471r737,0r0,145r-591,0r0,460r591,0r0,145r-591,0r0,721r-146,0r0,-1471","w":993},"G":{"d":"1685,-705v3,446,-293,742,-739,742v-272,0,-485,-95,-646,-278v-207,-237,-243,-598,-78,-884v128,-221,372,-383,702,-383v304,0,494,114,674,284r-114,108v-135,-135,-324,-246,-555,-246v-368,0,-658,256,-658,623v0,376,291,629,679,636v300,5,537,-195,570,-460r-469,0r0,-142r634,0","w":1786},"H":{"d":"177,-1471r148,0r0,617r748,0r0,-617r148,0r0,1471r-148,0r0,-710r-748,0r0,710r-148,0r0,-1471","w":1399},"I":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471","w":463},"J":{"d":"164,-236v115,73,160,136,289,136v91,0,164,-64,187,-139v13,-42,20,-123,20,-244r0,-988r148,0r0,993v-3,269,-16,365,-154,462v-97,68,-254,69,-376,18v-58,-23,-122,-63,-192,-121","w":987},"K":{"d":"179,-1471r150,0r0,552r587,-552r199,0r-707,660r762,811r-195,0r-646,-686r0,686r-150,0r0,-1471","w":1210},"L":{"d":"179,-1471r148,0r0,1329r565,0r0,142r-713,0r0,-1471","w":946},"M":{"d":"112,0r209,-1471r24,0r598,1207r592,-1207r24,0r211,1471r-145,0r-144,-1052r-520,1052r-37,0r-527,-1060r-143,1060r-142,0","w":1882},"N":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0","w":1515},"O":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321","w":1780},"P":{"d":"178,-1471r293,0v168,0,281,7,340,22v161,39,286,172,286,370v0,205,-122,327,-293,371v-67,17,-311,26,-479,24r0,684r-147,0r0,-1471xm325,-1328r0,500v149,0,371,11,470,-24v125,-44,200,-233,110,-362v-67,-96,-140,-114,-320,-114r-260,0","w":1212},"Q":{"d":"1666,-735v-6,265,-101,430,-253,575r218,276r-181,0r-150,-190v-120,74,-255,111,-406,111v-421,0,-784,-350,-777,-766v5,-309,171,-558,383,-677v119,-67,249,-102,390,-102v425,0,785,349,776,773xm270,-729v0,338,283,623,618,623v117,0,223,-28,320,-85r-328,-416r179,0r263,332v204,-185,253,-520,110,-777v-93,-168,-299,-312,-541,-312v-243,0,-445,143,-539,314v-53,97,-82,203,-82,321","w":1784},"R":{"d":"187,-1471r293,0v163,0,274,7,332,20v165,36,301,174,295,371v-9,283,-194,400,-508,396r529,684r-182,0r-528,-684r-84,0r0,684r-147,0r0,-1471xm334,-1327r0,500v150,-1,369,9,470,-26v125,-44,200,-233,110,-361v-67,-96,-140,-113,-321,-113r-259,0","w":1243},"S":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221","w":1020},"T":{"d":"33,-1328r0,-143r807,0r0,143r-328,0r0,1328r-150,0r0,-1328r-329,0","w":872},"U":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888","w":1341},"V":{"d":"67,-1471r160,0r487,1137r496,-1137r160,0r-640,1471r-32,0","w":1438},"W":{"d":"96,-1471r151,0r299,1060r422,-1060r30,0r417,1060r305,-1060r150,0r-422,1471r-28,0r-436,-1113r-445,1113r-28,0","w":1966},"X":{"d":"101,-1471r172,0r352,574r355,-574r170,0r-438,713r467,758r-172,0r-382,-617r-384,617r-172,0r469,-758","w":1247},"Y":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703","w":1212},"Z":{"d":"122,-1329r0,-142r776,0r-615,1328r584,0r0,143r-811,0r619,-1329r-553,0","w":983},"[":{"d":"290,-1508r336,0r0,142r-196,0r0,1627r196,0r0,137r-336,0r0,-1906","w":719},"\\":{"d":"220,-1508r952,1708r-153,0r-953,-1708r154,0","w":1239},"]":{"d":"429,398r-336,0r0,-142r195,0r0,-1627r-195,0r0,-137r336,0r0,1906","w":719},"^":{"d":"629,-1471r118,0r510,1106r-133,0r-439,-952r-436,952r-129,0","w":1376},"_":{"d":"-12,154r1048,0r0,102r-1048,0r0,-102","w":1024},"`":{"d":"326,-1598r218,308r-138,0r-295,-308r215,0","w":774},"a":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1399},"b":{"d":"736,28v-206,-5,-335,-95,-432,-228r0,200r-139,0r0,-1508r139,0r0,607v103,-126,232,-210,436,-215v303,-7,558,267,558,574v0,304,-260,577,-562,570xm294,-550v-4,243,191,448,431,443v254,-6,432,-188,432,-439v0,-249,-179,-443,-430,-443v-252,0,-428,178,-433,439","w":1397},"c":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246","w":1325},"d":{"d":"671,-1116v206,5,337,94,433,228r0,-620r138,0r0,1508r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1113,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1403},"e":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0","w":1331},"f":{"d":"604,-1508r0,137v-76,-31,-138,-53,-200,-17v-52,30,-41,49,-41,153r0,147r227,0r0,120r-228,0r0,968r-140,0r0,-968r-143,0r0,-120r143,0v1,-107,-6,-273,22,-337v50,-114,212,-136,360,-83","w":643},"g":{"d":"662,-1116v204,0,321,87,431,217r0,-189r141,0r0,867v0,153,-14,264,-40,335v-70,194,-259,316,-518,312v-301,-5,-467,-115,-562,-340r152,0v79,137,197,210,403,212v180,2,321,-77,382,-188v32,-58,45,-191,42,-317v-92,119,-242,207,-435,207v-322,0,-558,-225,-558,-552v0,-224,125,-401,282,-488v89,-50,182,-76,280,-76xm1100,-553v-3,-256,-172,-428,-420,-428v-256,0,-433,181,-439,436v-5,239,186,413,431,413v252,0,431,-171,428,-421","w":1378},"h":{"d":"296,-893v97,-127,215,-220,408,-223v173,-3,302,100,356,228v29,70,45,179,45,328r0,560r-140,0r0,-519v0,-125,-5,-209,-15,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-31,141,-17,493,-20,695r-140,0r0,-1508r140,0r0,615","w":1249},"i":{"d":"90,-1420v0,-62,54,-116,115,-116v62,0,116,54,116,116v0,61,-54,115,-116,115v-61,0,-115,-54,-115,-115xm135,-1088r141,0r0,1088r-141,0r0,-1088","w":410},"j":{"d":"93,-1420v0,-62,53,-116,115,-116v62,0,115,54,115,116v0,61,-53,115,-115,115v-62,0,-115,-54,-115,-115xm37,295v85,0,102,-55,102,-172r0,-1211r142,0r0,1252v1,159,-50,262,-185,262v-47,0,-101,-11,-160,-34r0,-126v37,19,71,29,101,29","w":416},"k":{"d":"155,-1508r141,0r0,858r503,-438r206,0r-597,519r632,569r-198,0r-546,-489r0,489r-141,0r0,-1508","w":1028},"l":{"d":"135,-1508r140,0r0,1508r-140,0r0,-1508","w":410},"m":{"d":"1011,-855v78,-146,207,-261,401,-261v163,0,278,92,328,216v27,68,42,170,42,306r0,594r-143,0r0,-594v-3,-203,-7,-274,-111,-346v-94,-66,-240,-50,-330,20v-137,106,-163,219,-163,494r0,426r-139,0r0,-557v-4,-224,-2,-300,-110,-381v-92,-69,-233,-53,-326,16v-130,96,-166,213,-166,461r0,461r-139,0r0,-1088r139,0r0,188v86,-128,199,-216,373,-216v190,0,294,100,344,261","w":1921},"n":{"d":"296,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195","w":1249},"o":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433","w":1341},"p":{"d":"733,28v-202,-4,-334,-91,-436,-215r0,585r-139,0r0,-1486r139,0r0,200v98,-134,226,-223,432,-228v302,-7,562,266,562,569v0,308,-255,582,-558,575xm1150,-542v0,-250,-178,-433,-432,-439v-240,-5,-435,200,-431,443v5,261,181,438,433,438v250,0,430,-193,430,-442","w":1397},"q":{"d":"668,-1116v206,5,337,94,433,228r0,-200r138,0r0,1486r-138,0r0,-585v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1110,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1397},"r":{"d":"246,-929v83,-130,233,-246,407,-150r-73,118v-85,-38,-142,-17,-209,39v-44,37,-76,97,-99,178v-36,123,-24,531,-26,744r-143,0r0,-1088r143,0r0,159","w":616},"s":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169","w":795},"t":{"d":"278,-1492r141,0r0,404r222,0r0,120r-222,0r0,968r-141,0r0,-968r-191,0r0,-120r191,0r0,-404","w":694},"u":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524","w":1245},"v":{"d":"53,-1088r149,0r364,792r361,-792r150,0r-498,1088r-25,0"},"w":{"d":"9,-1088r144,0r333,790r349,-790r25,0r348,790r339,-790r146,0r-472,1088r-27,0r-346,-779r-349,779r-26,0","w":1702},"x":{"d":"32,-1088r168,0r288,403r288,-403r168,0r-372,517r419,571r-170,0r-333,-457r-328,457r-167,0r412,-571","w":983},"y":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480","w":1098},"z":{"d":"67,-1088r799,0r-616,964r596,0r0,124r-837,0r616,-965r-558,0r0,-123","w":870},"{":{"d":"242,-510v166,78,206,187,209,451v2,197,-11,220,29,310v37,41,71,41,174,43r0,157v-229,14,-334,-56,-362,-246v-11,-74,-7,-433,-30,-495v-30,-81,-86,-135,-187,-138r0,-163v148,-10,195,-95,204,-248v4,-68,6,-391,25,-447v49,-143,146,-197,350,-185r0,157v-166,-2,-203,28,-203,206v0,155,-2,254,-7,297v-20,171,-73,236,-202,301","w":719},"|":{"d":"616,-1508r143,0r0,1906r-143,0r0,-1906","w":1376},"}":{"d":"477,-510v-170,-88,-209,-180,-209,-450v0,-147,-4,-233,-9,-259v-17,-88,-78,-96,-194,-95r0,-157v228,-14,334,57,362,246v11,74,8,433,31,495v30,81,84,136,186,139r0,163v-92,1,-147,41,-174,103v-45,102,-30,164,-34,355v-4,186,-8,267,-83,350v-58,65,-151,75,-288,71r0,-157v166,2,203,-27,203,-205v0,-159,3,-261,8,-304v18,-160,80,-241,201,-295","w":719},"~":{"d":"874,-726v119,0,124,-39,254,-111r0,162v-116,61,-139,96,-252,96v-63,0,-151,-28,-265,-77v-130,-56,-135,-83,-237,-83v-115,0,-147,41,-262,105r0,-160v115,-60,138,-96,254,-96v65,0,153,29,268,81v118,54,137,83,240,83","w":1241},"\u00a0":{"w":567}}});

