$(document).ready(function(){
	Cufon.replace('h1');
	$('a#contact').nospam({ replaceText: false });
	
    var element = 'slides', items = [], images = [], stack = [], ic = 0, iImage = "_m.jpg", fImage = "_s.jpg", maxItems = 200, itemsDone = 0;
    (function getFlickr(){
    	var url = 'http://api.flickr.com/services/rest/'
		+ '?format=json&jsoncallback=?&api_key=f7e1ecb93ceae85b647735751bb988d9&method=flickr.photosets.getPhotos'
		+ '&photoset_id=72157622983077753&page=1&per_page='+ maxItems;
		// Call Json
        $.getJSON(url, 
		function(data){
            try {
                photo = data.photoset.photo;
            } 
            catch (err) {
            }
            
			// Get medium sized images
            $.each(photo, function(i, item){
				var t = 'http://farm'+item['farm']+'.static.flickr.com/'+item['server']+'/'+item['id']+'_'+item['secret']+'.jpg';
				images[i] = t;
				
                itemsDone += 1;
                if (itemsDone >= maxItems) {
                    return false;
                }
            });
            
            // Preloads the slides and adds them to the stack (except first 2 slides) 
           /*
		    for (var i = 0; i < (itemsDone); i++) {
                var img = new Image(500, 500);
                img.src = images[i];
				
                $(img).bind('load', function(){
                    stack.push(this);
                });
            }
            */
			$.cacheImage(images, {
				load : function () { stack.push(this) }
			})
			
			/*$("#" + element).one('click',function(){
				startCycle()
			});
			*/
			// Start cycle
			//function startCycle(){
					$("#" + element).cycle({
						timeout: 0,
						before: onBefore,
						next: "#" + element
					});
					//$('#intro2').show;
			//}

            // add images to slideshow 
            function onBefore(curr, next, opts){
                if (opts.addSlide) // <-- important! 
                    while (stack.length) 
                        opts.addSlide(stack.pop());
            };
		});
        
    })();
    
});
		
		
/*
 * cacheImage: a jQuery plugin
 *
 * cacheImage is a simple jQuery plugin for pre-caching images.  The
 * plugin can be used to eliminate flashes of unstyled content (FOUC) and
 * improve perceived page load time.  Callbacks for load, error and abort
 * events are provided.
 *
 * For usage and examples, visit:
 * http://github.com/alexrabarts/jquery-cacheimage
 *
 * Licensed under the MIT:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Copyright (c) 2008 Stateless Systems (http://statelesssystems.com)
 *
 * @author   Alex Rabarts (alexrabarts -at- gmail -dawt- com)
 * @requires jQuery v1.2 or later
 * @version  0.2.1
 */
 
(function ($) {
  $.extend($, {
    cacheImage: function (src, options) {
      if (typeof src === 'object') {
        $.each(src, function () {
          $.cacheImage(String(this), options);
        });
 
        return;
      }
 
      var image = new Image();
 
      options = options || {};
 
      $.each(['load', 'error', 'abort'], function () { // Callbacks
        var e = String(this);
        if (typeof options[e] === 'function') { $(image).bind(e, options[e]); }
 
        if (typeof options.complete === 'function') {
          $(image).bind(e, options.complete);
        }
      });
 
      image.src = src;
 
      return image;
    }
  });
 
  $.extend($.fn, {
    cacheImage: function (options) {
      return this.each(function () {
        $.cacheImage(this.src, options);
      });
    }
  });
})(jQuery);



/*
// Email Spam Prevention v1.3
// http://www.leftrightdesigns.com/library/jquery/nospam/
*/
jQuery.fn.nospam = function(settings) {
	settings = jQuery.extend({
		replaceText: false, 	// optional, accepts true or false
		filterLevel: 'normal' 	// optional, accepts 'low' or 'normal'
	}, settings);
	
	return this.each(function(){
		e = null;
		if(settings.filterLevel == 'low') { // Can be a switch() if more levels added
			if($(this).is('a[rel]')) {
				e = $(this).attr('rel').replace('//', '@').replace(/\//g, '.');
			} else {
				e = $(this).text().replace('//', '@').replace(/\//g, '.');
			}
		} else { // 'normal'
			if($(this).is('a[rel]')) {
				e = $(this).attr('rel').split('').reverse().join('').replace('//', '@').replace(/\//g, '.');
			} else {
				e = $(this).text().split('').reverse().join('').replace('//', '@').replace(/\//g, '.');
			}
		}
		if(e) {
			if($(this).is('a[rel]')) {
				$(this).attr('href', 'mailto:' + e);
				if(settings.replaceText) {
					$(this).text(e);
				}
			} else {
				$(this).text(e);
			}
		}
	});
};



//* 
// Cufon version 1.09
// http://cufon.shoqolate.com/
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}})());

//*
// Whitney-MediumSC: uppercase, lowercase, latin, -
Cufon.registerFont({"w":572,"face":{"font-family":"Whitney","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"10","bbox":"-16 -728 982 188","underline-thickness":"20","underline-position":"-123","stemh":"86","stemv":"90","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":220},"!":{"d":"190,-690r-25,472r-58,13r-24,-485r107,0xm186,0r-100,0r0,-119r100,0r0,119","w":272},"\"":{"d":"346,-608r-25,208r-52,-12r-25,-196r102,0xm164,-608r-24,208r-53,-12r-24,-196r101,0","w":409,"k":{"4":54}},"#":{"d":"199,-121r-25,126r-67,-17r21,-109r-93,0r0,-63r105,0r26,-138r-102,0r-11,-64r125,0r24,-121r70,0r-22,121r126,0r24,-125r68,16r-21,109r92,0r0,64r-104,0r-26,138r101,0r12,63r-126,0r-23,121r-71,0r23,-121r-126,0xm340,-183r26,-141r-131,0r-26,141r131,0","w":575},"$":{"d":"234,-67v72,-1,111,-30,111,-75v0,-38,-21,-61,-86,-80xm235,-448v-75,1,-103,32,-103,66v0,36,18,56,81,74xm54,-374v0,-85,75,-143,190,-142r13,-82r60,13r-12,74v34,5,65,14,94,27r-12,75v-28,-15,-60,-27,-94,-33r-23,149v107,30,153,70,153,143v0,95,-76,151,-199,151r-17,110r-59,-14r16,-101v-48,-8,-97,-24,-128,-40r13,-75v36,22,81,39,126,47v1,0,26,-165,26,-165v-96,-26,-147,-64,-147,-137","w":458},"%":{"d":"314,-374v0,89,-61,141,-140,141v-78,0,-138,-52,-138,-141v0,-89,60,-143,138,-143v79,0,140,54,140,143xm570,-498r-325,505r-65,-17r326,-505xm715,-132v0,89,-60,141,-139,141v-78,0,-139,-52,-139,-141v0,-89,61,-143,139,-143v79,0,139,54,139,143xm242,-375v0,-46,-21,-86,-68,-86v-49,0,-67,40,-67,87v0,46,21,85,68,85v49,0,67,-39,67,-86xm644,-133v0,-47,-21,-86,-68,-86v-49,0,-67,39,-67,87v0,46,20,85,68,85v49,0,67,-39,67,-86","w":750},"&":{"d":"511,-13r-88,20r-68,-67v-42,44,-95,71,-160,71v-111,0,-171,-53,-171,-140v0,-71,45,-118,113,-152v-89,-82,-55,-239,95,-236v51,0,97,14,132,32r-13,80v-39,-25,-78,-40,-115,-40v-88,0,-67,83,-17,134r131,134v15,-33,25,-73,30,-120r73,16v-9,59,-26,113,-51,158xm309,-107r-127,-127v-45,24,-70,56,-70,96v0,48,34,80,92,80v39,0,76,-16,105,-49","w":508,"k":{"y":18,"w":18,"v":27,"t":27,"Y":81,"W":40,"V":49,"T":81,"S":4,"Q":13,"O":13,"G":13,"C":13}},"(":{"d":"284,52r-81,17v-107,-88,-161,-174,-161,-299v0,-130,72,-231,199,-303r11,75v-76,51,-120,126,-120,230v0,104,46,183,152,280","w":301,"k":{"S":13,"Q":36,"O":36,"J":18,"G":36,"C":36,"A":27}},")":{"d":"259,-232v0,131,-72,232,-199,304r-12,-76v76,-50,121,-125,121,-229v0,-104,-46,-183,-153,-280r81,-17v107,88,162,174,162,298","w":301},"*":{"d":"359,-569r-109,52r58,107r-26,17r-82,-87r-83,87r-25,-17r57,-107r-108,-52r10,-29r118,21r14,-118r33,0r14,118r119,-21","w":400,"k":{"s":9,"q":18,"o":18,"g":18,"c":18,"a":45,"X":18,"J":54,"A":90}},"+":{"d":"518,-216r-193,0r0,199r-78,0r0,-199r-193,0r0,-75r193,0r0,-198r78,0r0,198r193,0r0,75"},",":{"d":"180,-119r-104,252r-49,-12r50,-240r103,0","w":227,"k":{"Y":108,"W":72,"V":90,"T":90,"Q":27,"O":27,"G":27,"C":27,"7":30,"1":25}},"-":{"d":"300,-241r-246,0r0,-87r246,0r0,87","w":354,"k":{"y":18,"v":18,"t":27,"Z":22,"Y":81,"X":54,"W":45,"V":54,"T":63,"S":18,"J":40,"A":22,"4":45}},".":{"d":"163,0r-99,0r0,-119r99,0r0,119","w":227,"k":{"Y":108,"W":72,"V":90,"T":90,"Q":27,"O":27,"G":27,"C":27,"7":30,"1":25}},"\/":{"d":"414,-538r-356,612r-74,-16r357,-612","w":405,"k":{"s":-9,"q":22,"o":22,"m":31,"j":45,"g":22,"c":22,"a":54,"Z":18,"X":18,"Q":45,"O":45,"M":22,"J":63,"G":45,"C":45,"A":127,"9":15,"4":95,"\/":120}},"0":{"d":"502,-253v0,160,-100,263,-231,263v-129,0,-228,-103,-228,-263v0,-161,99,-265,228,-265v131,0,231,104,231,265xm412,-253v0,-103,-51,-190,-141,-190v-90,0,-138,85,-138,190v0,102,50,189,138,189v92,0,141,-85,141,-189","w":545,"k":{"7":8,"1":5}},"1":{"d":"237,0r-89,0r0,-421r-117,42r-10,-72r139,-64r77,0r0,515","w":324},"2":{"d":"445,0r-404,0r0,-74r221,-168v52,-40,82,-73,82,-116v0,-50,-34,-81,-96,-81v-61,0,-117,23,-180,62r-14,-78v57,-35,120,-60,198,-60v113,0,183,60,183,149v0,127,-190,214,-279,288r278,0","w":489},"3":{"d":"435,-37v0,156,-194,251,-394,217r-16,-85v32,7,63,11,107,11v131,0,215,-61,215,-146v0,-93,-118,-108,-219,-92r0,-74r34,-4v125,-15,173,-69,173,-137v0,-56,-39,-92,-106,-92v-66,0,-129,29,-184,70r-13,-80v50,-37,121,-68,201,-68v130,0,190,72,190,162v0,86,-60,143,-126,170v75,13,138,52,138,148","w":481,"k":{"\/":-41}},"4":{"d":"543,0r-107,0r0,173r-83,13r0,-186r-319,0r0,-66r294,-449r108,0r0,440r107,0r0,75xm353,-75r0,-345r-226,345r226,0","w":567,"k":{"9":12,"8":10,"6":10,"3":13,"1":10,"0":10,"\/":-30}},"5":{"d":"455,-68v0,174,-192,284,-404,247r-15,-83v32,7,66,11,110,11v133,0,219,-77,219,-167v0,-122,-147,-122,-229,-81r-74,-12r14,-354r344,0r12,81r-282,0r-8,208v129,-60,313,-10,313,150","w":494,"k":{"0":5,"\/":-45}},"6":{"d":"148,-386v43,-25,101,-46,161,-46v116,0,196,75,196,208v0,132,-99,234,-227,234v-134,0,-228,-100,-228,-289v0,-238,141,-372,349,-426r13,79v-155,42,-237,125,-264,240xm136,-305v-5,143,44,241,143,241v83,0,137,-64,137,-156v0,-87,-42,-137,-122,-137v-55,0,-114,24,-158,52","w":548,"k":{"7":13,"\/":10}},"7":{"d":"445,-437r-263,623r-85,-20r251,-592r-309,0r-13,-81r419,0r0,70","w":490,"k":{"<":36,"9":8,"8":5,"4":63,"0":5,"\/":65,".":63,"-":18,",":63,"&":36}},"8":{"d":"304,-393v60,-34,97,-83,97,-134v0,-59,-39,-102,-119,-102v-83,0,-123,52,-123,104v0,61,36,89,145,132xm256,-331v-76,35,-121,90,-121,155v0,69,57,115,145,115v87,0,143,-51,143,-116v0,-71,-37,-104,-167,-154xm182,-362v-67,-34,-109,-80,-109,-162v0,-97,82,-179,209,-179v130,0,205,79,205,174v0,76,-49,128,-112,166v87,42,136,89,136,187v0,100,-88,189,-233,189v-154,0,-231,-88,-231,-189v0,-80,55,-142,135,-186","w":558,"k":{"7":5,"3":5,"\/":13}},"9":{"d":"401,-119v-50,25,-103,44,-162,44v-117,0,-196,-74,-196,-208v0,-132,98,-234,226,-234v134,0,229,100,229,289v0,238,-133,362,-350,416r-11,-79v161,-42,238,-118,264,-228xm412,-198v6,-144,-47,-245,-144,-245v-80,0,-136,64,-136,156v0,88,41,137,124,137v58,0,109,-19,156,-48","w":548,"k":{"7":13,"3":5,"1":5}},":":{"d":"168,-358r-100,0r0,-119r100,0r0,119xm168,0r-100,0r0,-119r100,0r0,119","w":236,"k":{"Y":63,"W":31,"V":36,"T":63}},";":{"d":"175,-358r-100,0r0,-119r100,0r0,119xm178,-119r-104,252r-49,-12r50,-240r103,0","w":236,"k":{"Y":63,"W":31,"V":36,"T":63}},"<":{"d":"504,-1r-447,-218r0,-67r447,-218r0,86r-352,165r352,165r0,87"},"=":{"d":"518,-318r-445,0r0,-80r445,0r0,80xm518,-109r-445,0r0,-80r445,0r0,80","w":590},">":{"d":"515,-221r-447,218r0,-86r352,-164r-352,-166r0,-87r447,218r0,67","k":{"7":54,"3":18,"2":27,"1":18}},"?":{"d":"463,-526v0,108,-72,155,-191,209r-9,99r-58,13r-13,-165r41,-17v94,-39,136,-71,136,-135v0,-61,-49,-96,-116,-96v-78,0,-140,35,-196,81r-13,-92v61,-45,132,-74,214,-74v122,0,205,68,205,177xm284,0r-100,0r0,-119r100,0r0,119","w":518},"@":{"d":"477,-205r30,-169v-21,-7,-33,-9,-59,-9v-66,0,-139,81,-139,203v0,49,19,69,50,69v31,0,65,-27,118,-94xm478,-136v-55,66,-92,92,-142,92v-54,0,-106,-40,-106,-122v0,-227,174,-335,363,-255r-35,209v-14,54,-6,119,58,119v72,0,124,-76,124,-210v0,-192,-124,-288,-284,-288v-196,0,-361,170,-361,406v0,201,124,290,288,290v86,0,156,-19,217,-49r6,36v-58,27,-133,48,-227,48v-199,0,-328,-117,-328,-324v0,-242,178,-443,409,-443v195,0,323,126,323,323v0,154,-74,260,-176,260v-67,0,-116,-31,-129,-92","w":836},"A":{"d":"659,-13r-91,20r-81,-214r-285,0r-78,207r-95,0r270,-693r94,0xm455,-290r-111,-291r-110,291r221,0","w":688,"k":{"y":18,"w":9,"v":18,"u":13,"t":18,"q":13,"o":13,"g":13,"c":13,"\\":127,"Y":95,"W":68,"V":90,"U":18,"T":90,"Q":27,"O":27,"G":27,"C":27,"?":59,"-":22,"*":90,")":27}},"B":{"d":"503,-202v0,138,-96,202,-255,202r-165,0r0,-690r167,0v152,0,223,73,223,179v0,70,-37,117,-99,143v77,23,129,75,129,166xm381,-508v0,-63,-39,-102,-133,-102r-73,0r0,210r66,0v91,0,140,-40,140,-108xm411,-200v0,-80,-56,-123,-159,-123r-77,0r0,243r80,0v99,0,156,-40,156,-120","w":545,"k":{"\\":31,"Z":9,"Y":27,"X":13,"W":13,"V":18,"T":18,")":18,"&":-13}},"C":{"d":"583,-54v-53,39,-130,67,-209,67v-194,0,-319,-144,-319,-357v0,-214,127,-359,321,-359v82,0,143,21,196,57r-14,96v-50,-38,-109,-67,-183,-67v-140,0,-223,106,-223,272v0,166,84,271,223,271v74,0,139,-29,194,-69","w":646,"k":{"y":27,"x":9,"w":18,"v":18,"t":36,"q":18,"o":18,"m":9,"g":18,"c":18,"a":9,"Z":9,"Y":18,"X":13,"W":9,"V":9,"T":9,"Q":36,"O":36,"G":36,"C":36,"A":9,"-":18}},"D":{"d":"646,-346v0,205,-130,346,-367,346r-196,0r0,-690r200,0v240,0,363,142,363,344xm549,-345v0,-173,-105,-260,-263,-260r-109,0r0,520r106,0v166,0,266,-84,266,-260","w":703,"k":{"}":36,"z":9,"y":9,"x":18,"v":9,"a":18,"]":36,"\\":45,"Z":36,"Y":54,"X":40,"W":27,"V":31,"T":54,"S":9,"J":36,"A":36,"?":13,"\/":54,".":31,",":31,")":45}},"E":{"d":"465,0r-382,0r0,-690r372,0r0,86r-278,0r0,200r216,0r14,86r-230,0r0,232r288,0r0,86","w":502,"k":{"y":27,"w":9,"v":9,"Q":9,"O":9,"G":9,"C":9}},"F":{"d":"442,-604r-265,0r0,211r208,0r14,86r-222,0r0,307r-94,0r0,-690r359,0r0,86","w":478,"k":{"z":18,"y":27,"x":27,"w":18,"v":18,"t":36,"s":9,"q":13,"p":18,"o":13,"n":18,"m":36,"l":18,"k":18,"j":63,"i":18,"h":18,"g":13,"f":18,"e":18,"d":18,"c":13,"a":27,"Z":18,"X":13,"S":9,"Q":13,"O":13,"M":13,"J":54,"G":13,"C":13,"A":68,"?":-9,";":13,":":13,"\/":90,".":72,",":72,"&":18}},"G":{"d":"624,-54v-59,38,-142,67,-233,67v-219,0,-336,-144,-336,-357v0,-214,122,-359,328,-359v92,0,156,23,210,59r-15,96v-51,-40,-115,-69,-196,-69v-151,0,-230,106,-230,272v0,166,81,271,239,271v60,0,100,-12,140,-34r0,-183r-159,0r-13,-86r265,0r0,323","w":697,"k":{"t":9,"\\":31,"Y":27,"W":13,"V":18,"T":27,"?":9}},"H":{"d":"620,0r-94,0r0,-318r-349,0r0,318r-94,0r0,-690r94,0r0,286r349,0r0,-286r94,0r0,690","w":703},"I":{"d":"183,0r-94,0r0,-690r94,0r0,690","w":272},"J":{"d":"293,-170v3,145,-117,195,-257,171r-14,-85v23,6,44,9,77,9v64,0,99,-30,99,-103r0,-512r95,0r0,520","w":370,"k":{"j":9,"J":18,"A":13,".":9,",":9}},"K":{"d":"600,-15r-98,22r-325,-357r0,350r-94,0r0,-690r94,0r0,310r292,-310r113,0r-303,320","w":609,"k":{"y":27,"w":18,"v":18,"t":40,"q":18,"o":18,"g":18,"c":18,"Y":18,"W":18,"V":22,"U":9,"S":9,"Q":45,"O":45,"G":45,"C":45,"?":9,"-":45,"&":9}},"L":{"d":"439,0r-356,0r0,-690r94,0r0,604r249,0","w":468,"k":{"y":27,"w":9,"v":22,"u":18,"t":45,"\\":127,"Y":108,"W":90,"V":99,"U":20,"T":108,"Q":45,"O":45,"G":45,"C":45,"?":54,"-":45,"*":81,")":9}},"M":{"d":"835,0r-90,0r-43,-549r-218,552r-71,0r-218,-552r-42,549r-88,0r55,-690r116,0r215,566r215,-566r115,0","w":900,"k":{"y":18,"t":9,"\\":22,"Y":27,"W":18,"V":22,"T":18}},"N":{"d":"620,0r-71,0r-379,-537r0,537r-87,0r0,-690r84,0r366,517r0,-517r87,0r0,690","w":703,"k":{"j":-9}},"O":{"d":"691,-346v0,213,-124,359,-319,359v-194,0,-317,-144,-317,-357v0,-214,125,-359,319,-359v195,0,317,144,317,357xm595,-345v0,-166,-86,-272,-222,-272v-137,0,-221,106,-221,272v0,166,85,272,221,272v137,0,222,-106,222,-272","w":746,"k":{"}":27,"x":4,"n":-18,"m":-4,"j":18,"a":13,"]":36,"\\":45,"Z":27,"Y":45,"X":31,"W":22,"V":27,"T":45,"S":4,"J":30,"A":27,"?":13,"\/":45,".":27,",":27,")":36}},"P":{"d":"500,-491v1,166,-137,224,-323,211r0,280r-94,0r0,-690r183,0v146,0,234,71,234,199xm405,-488v0,-79,-50,-119,-144,-119r-84,0r0,244v124,7,228,-10,228,-125","w":536,"k":{"q":22,"o":22,"m":9,"j":45,"g":22,"c":22,"a":54,"Z":31,"Y":18,"X":31,"M":9,"J":70,"A":68,"\/":99,".":81,"-":18,",":81,")":27,"&":22}},"Q":{"d":"691,-346v0,176,-85,294,-213,336r198,70r-19,83r-373,-139v-151,-56,-229,-172,-229,-348v0,-214,125,-359,319,-359v195,0,317,144,317,357xm595,-345v0,-166,-86,-272,-222,-272v-137,0,-221,106,-221,272v0,166,85,277,221,277v137,0,222,-111,222,-277","w":746,"k":{"j":18,"a":13,"\\":45,"Z":27,"Y":45,"X":31,"W":22,"V":27,"T":45,"S":4,"J":15,"A":27,"?":13,".":27,")":22}},"R":{"d":"406,-489v0,-75,-47,-118,-139,-118r-90,0r0,237r80,0v91,0,149,-41,149,-119xm349,-303r205,289r-95,21r-211,-298r-71,0r0,291r-94,0r0,-690r188,0v141,0,229,70,229,196v0,104,-61,166,-151,191","w":570,"k":{"\\":27,"Y":31,"W":18,"V":22,"T":18,"Q":9,"O":9,"G":9,"C":9,"-":13}},"S":{"d":"464,-182v0,115,-88,190,-218,190v-75,0,-142,-18,-193,-45r14,-96v47,31,112,59,181,59v73,0,123,-38,123,-101v0,-65,-29,-95,-123,-136v-135,-59,-188,-99,-188,-209v0,-106,85,-178,210,-178v67,0,117,16,157,39r-15,94v-38,-29,-90,-51,-145,-51v-75,0,-114,39,-114,89v0,58,29,86,124,127v137,59,187,105,187,218","w":512,"k":{"y":27,"x":9,"w":9,"v":9,"a":9,"\\":13,"Z":4,"Y":27,"X":9,"W":13,"V":18,"T":13,"S":9,"Q":4,"O":4,"G":4,"C":4,"A":4,"?":13,")":13,"&":-13}},"T":{"d":"574,-604r-226,0r0,604r-95,0r0,-604r-220,0r0,-86r527,0","w":601,"k":{"z":90,"y":90,"x":90,"w":90,"v":90,"t":81,"s":90,"r":81,"q":99,"p":81,"o":99,"n":81,"m":81,"l":81,"k":81,"j":81,"i":81,"h":81,"g":99,"f":81,"e":81,"d":81,"c":99,"b":81,"a":118,"Z":18,"X":13,"S":13,"Q":45,"O":45,"M":18,"J":63,"G":45,"C":45,"A":90,";":63,":":63,"\/":108,".":90,"-":63,",":90,"&":49}},"U":{"d":"613,-266v0,174,-103,279,-270,279v-167,0,-267,-106,-267,-274r0,-429r94,0r0,417v0,120,54,200,173,200v117,0,176,-72,176,-197r0,-420r94,0r0,424","w":689,"k":{"Z":4,"X":7,"J":15,"A":18}},"V":{"d":"648,-690r-269,693r-84,0r-266,-680r94,-20r215,574r211,-567r99,0","w":677,"k":{"z":36,"y":36,"x":36,"w":36,"v":36,"t":36,"s":36,"r":36,"q":45,"p":36,"o":45,"n":36,"m":36,"l":36,"k":36,"j":90,"i":36,"h":36,"g":45,"f":36,"e":36,"d":36,"c":45,"b":36,"a":72,"Z":13,"X":18,"S":18,"Q":27,"O":27,"M":22,"J":63,"G":27,"C":27,"A":90,";":36,":":36,"\/":127,".":90,"-":54,",":90,"&":36}},"W":{"d":"982,-690r-208,690r-79,0r-187,-559r-187,559r-78,0r-204,-677r92,-20r156,549r176,-542r94,0r176,542r153,-542r96,0","w":1017,"k":{"z":27,"y":27,"x":27,"w":27,"v":27,"t":27,"s":36,"r":40,"q":45,"p":40,"o":45,"n":31,"m":40,"l":40,"k":40,"j":81,"i":45,"h":40,"g":45,"f":40,"e":40,"d":40,"c":45,"b":40,"a":72,"Z":9,"X":13,"S":13,"Q":22,"O":22,"M":18,"J":59,"G":22,"C":22,"A":68,";":31,":":31,"\/":90,".":72,"-":45,",":72,"&":27}},"X":{"d":"316,-287r-187,287r-103,0r240,-359r-214,-318r95,-20r172,261r164,-254r104,0r-218,326r237,351r-96,20","w":636,"k":{"y":45,"w":27,"v":36,"u":4,"t":27,"q":27,"o":27,"g":27,"c":27,"\\":18,"Y":18,"X":9,"W":13,"V":18,"U":7,"T":13,"S":9,"Q":31,"O":31,"G":31,"C":31,"?":18,"-":54,"*":18,"&":9}},"Y":{"d":"614,-690r-251,416r0,274r-94,0r0,-274r-244,-403r94,-20r198,337r193,-330r104,0","w":636,"k":{"z":54,"y":54,"x":45,"w":54,"v":54,"t":54,"s":63,"r":54,"q":72,"p":54,"o":72,"n":54,"m":54,"l":54,"k":54,"j":63,"i":54,"h":54,"g":72,"f":54,"e":54,"d":54,"c":72,"b":54,"a":90,"Z":18,"X":18,"S":27,"Q":45,"O":45,"M":27,"J":77,"G":45,"C":45,"A":95,";":63,":":63,"\/":127,".":108,"-":81,",":108,"&":63}},"Z":{"d":"563,0r-515,0r0,-70r393,-538r-363,0r-13,-82r489,0r0,70r-393,538r389,0","w":605,"k":{"y":27,"x":9,"w":9,"v":9,"t":27,"s":9,"q":18,"o":18,"g":18,"c":18,"Q":27,"O":27,"G":27,"C":27,"-":36,"&":9}},"[":{"d":"278,76r-216,0r0,-583r212,0r0,64r-132,0r0,456r128,0","w":310,"k":{"Q":36,"O":36,"G":36,"C":36}},"\\":{"d":"-9,-538r73,-16r357,612r-74,16","w":405,"k":{"y":63,"w":27,"v":36,"t":54,"q":22,"o":22,"g":22,"c":22,"Y":127,"W":90,"V":127,"T":108,"Q":45,"O":45,"J":-27,"G":45,"C":45}},"]":{"d":"248,76r-213,0r0,-63r133,0r0,-456r-128,0r-8,-64r216,0r0,583","w":310},"^":{"d":"363,-554r-49,10r-88,-74r-85,71r-56,0r100,-141r84,0","w":454},"_":{"d":"456,104r-458,0r0,-70r458,0r0,70","w":454},"a":{"d":"350,-206v-1,0,-78,-223,-83,-220r-82,220r165,0xm156,-127r-47,127r-88,0r200,-513r100,0r198,502r-89,20r-50,-136r-224,0","w":540,"k":{"y":36,"w":9,"v":18,"u":7,"t":36,"q":9,"o":9,"g":9,"c":9,"\\":40,"?":77,"*":45}},"b":{"d":"428,-149v0,102,-76,149,-191,149r-165,0r0,-507r164,0v114,0,169,53,169,129v0,58,-30,91,-73,110v57,17,96,53,96,119xm321,-370v0,-40,-27,-62,-89,-62r-74,0r0,131v77,4,163,1,163,-69xm343,-149v0,-52,-35,-80,-104,-80r-81,0r0,155v86,2,185,7,185,-75","w":474,"k":{"y":13,"x":9,"w":13,"v":18,"t":18,"j":9,"?":49}},"c":{"d":"442,-35v-41,27,-95,45,-154,45v-149,0,-244,-106,-244,-262v0,-158,98,-265,244,-265v62,0,107,14,146,39r-14,83v-36,-27,-77,-46,-129,-46v-98,0,-154,73,-154,188v0,114,59,188,156,188v50,0,97,-19,137,-47","w":481,"k":{"x":-4,"w":9,"t":9,"q":9,"o":9,"g":9,"c":9,"?":59}},"d":{"d":"504,-254v0,144,-99,254,-279,254r-153,0r0,-507r153,0v182,0,279,107,279,253xm412,-253v0,-110,-72,-174,-181,-174r-69,0r0,347v149,12,250,-38,250,-173","w":548,"k":{"z":18,"y":27,"x":13,"w":9,"v":18,"t":18,"s":9,"j":9,"a":18,"\\":22,"?":31,"\/":22,"*":18}},"e":{"d":"394,0r-322,0r0,-507r315,0r0,79r-225,0r0,125r180,0r13,79r-193,0r0,145r232,0r0,79","w":439,"k":{"s":9,"q":9,"o":9,"j":9,"g":9,"c":9,"?":49}},"f":{"d":"379,-428r-217,0r0,133r171,0r13,79r-184,0r0,216r-90,0r0,-507r307,0r0,79","w":413,"k":{"z":18,"x":5,"t":9,"s":4,"q":4,"o":4,"m":12,"j":36,"g":4,"c":4,"a":45,"?":49,".":63,",":63}},"g":{"d":"479,-41v-49,31,-113,51,-182,51v-163,0,-253,-106,-253,-262v0,-158,95,-265,251,-265v68,0,117,16,158,42r-13,83v-39,-29,-85,-50,-144,-50v-105,0,-159,76,-159,189v0,113,55,189,164,189v40,0,67,-9,93,-23r0,-115r-110,0r-13,-79r208,0r0,240","w":528,"k":{"y":9,"w":9,"v":9,"t":18,"?":49}},"h":{"d":"486,0r-91,0r0,-223r-233,0r0,223r-90,0r0,-507r90,0r0,202r233,0r0,-202r91,0r0,507","w":558,"k":{"?":49}},"i":{"d":"167,0r-91,0r0,-507r91,0r0,507","w":243,"k":{"?":49}},"j":{"d":"245,-135v3,118,-97,155,-210,135r-11,-76v14,3,37,6,55,6v56,0,75,-20,75,-68r0,-369r91,0r0,372","w":315,"k":{"q":9,"o":9,"j":9,"g":9,"a":9,"?":49}},"k":{"d":"478,-13r-93,21r-223,-254r0,246r-90,0r0,-507r90,0r0,228r200,-228r103,0r-213,238","w":488,"k":{"y":18,"x":9,"w":18,"v":18,"s":9,"q":27,"o":27,"g":27,"c":27,"?":49,"-":54}},"l":{"d":"367,0r-295,0r0,-507r90,0r0,429r192,0","w":402,"k":{"y":45,"w":9,"v":45,"t":63,"q":31,"o":31,"g":31,"c":31,"\\":77,"?":59,"-":45,"*":81}},"m":{"d":"678,0r-90,0r-31,-410r-145,412r-90,0r-145,-412r-30,410r-82,0r40,-507r128,0r139,407r141,-407r125,0","w":743,"k":{"y":10,"w":4,"v":6,"t":10,"?":49}},"n":{"d":"487,0r-79,0r-254,-374r0,374r-82,0r0,-507r90,0r243,359r0,-359r82,0r0,507","w":559,"k":{"?":49}},"o":{"d":"531,-254v0,164,-113,264,-243,264v-131,0,-244,-99,-244,-263v0,-165,114,-264,244,-264v131,0,243,98,243,263xm439,-253v0,-104,-59,-187,-151,-187v-96,0,-152,80,-152,186v0,103,59,188,152,188v95,0,151,-82,151,-187","w":575,"k":{"z":18,"y":22,"x":13,"w":4,"v":9,"t":13,"j":9,"a":18,"\\":22,"?":31,"\/":22,"*":18}},"p":{"d":"418,-352v0,127,-111,169,-256,158r0,194r-90,0r0,-507r165,0v110,0,181,57,181,155xm330,-350v0,-76,-82,-87,-168,-81r0,162v85,4,168,0,168,-81","w":443,"k":{"z":13,"x":9,"w":-9,"v":-9,"j":45,"a":27,"?":49,".":54,",":54}},"q":{"d":"531,-257v0,112,-49,192,-149,240r143,48r-12,77r-282,-101v-118,-42,-187,-120,-187,-259v0,-165,114,-265,244,-265v131,0,243,96,243,260xm439,-252v0,-103,-59,-188,-151,-188v-96,0,-152,82,-152,188v0,103,59,189,152,189v95,0,151,-83,151,-189","w":577,"k":{"z":9,"y":13,"x":13,"v":13,"t":22,"j":9,"a":9,"\\":22,"?":31,"*":18}},"r":{"d":"457,-15r-93,21r-147,-202r-55,0r0,196r-90,0r0,-507r157,0v116,0,191,56,191,156v0,75,-42,122,-106,144xm330,-350v0,-74,-83,-85,-168,-79r0,163v87,6,168,-6,168,-84","w":477,"k":{"y":27,"w":9,"v":9,"t":9,"q":4,"o":4,"g":4,"c":4,"?":49}},"s":{"d":"396,-147v0,94,-75,154,-186,154v-60,0,-122,-16,-174,-38r13,-81v48,25,113,45,165,45v58,0,99,-26,99,-69v0,-42,-27,-58,-100,-83v-106,-37,-160,-70,-160,-149v0,-87,72,-146,170,-146v58,0,109,13,147,30r-13,83v-46,-24,-91,-38,-137,-38v-50,0,-84,27,-84,60v0,39,28,53,107,80v106,37,153,73,153,152","w":436,"k":{"z":9,"y":9,"x":4,"w":4,"v":4,"t":9,"?":59,"\/":-9,"*":9}},"t":{"d":"440,-427r-166,0r0,427r-91,0r0,-427r-159,0r0,-80r404,0","w":465,"k":{"z":9,"x":9,"s":4,"q":13,"o":13,"m":10,"j":27,"g":13,"c":13,"a":36,"?":49,"\/":81,".":45,"-":27,",":45,"&":18}},"u":{"d":"485,-201v0,137,-81,211,-210,211v-127,0,-206,-75,-206,-207r0,-310r90,0r0,306v0,82,38,134,117,134v77,0,118,-47,118,-132r0,-308r91,0r0,306","w":554,"k":{"a":7,"Z":4,"X":4,"J":9,"A":13}},"v":{"d":"502,-507r-201,515r-84,0r-196,-504r91,-20r151,413r148,-404r91,0","w":523,"k":{"z":9,"x":9,"v":9,"s":4,"q":13,"o":13,"m":6,"j":27,"g":13,"c":13,"a":36,"\/":31,".":36,"-":18,",":36,"&":18}},"w":{"d":"740,-507r-153,510r-85,0r-119,-400r-122,400r-85,0r-149,-498r92,-20r104,392r115,-384r97,0r115,384r103,-384r87,0","w":765,"k":{"z":4,"x":4,"s":4,"q":9,"o":9,"m":4,"j":18,"g":9,"c":9,"a":18,"\/":22,".":27,",":27,"&":9}},"x":{"d":"468,-11r-93,20r-133,-207r-126,198r-99,0r176,-262r-158,-234r93,-20r118,187r112,-178r100,0r-163,242","w":488,"k":{"y":9,"x":4,"w":4,"v":9,"t":9,"s":4,"q":13,"o":13,"g":13,"c":13}},"y":{"d":"476,-507r-188,310r0,197r-91,0r0,-196r-182,-300r92,-20r137,240r133,-231r99,0","w":490,"k":{"z":9,"y":18,"x":9,"s":9,"q":36,"o":22,"m":10,"j":45,"g":36,"c":36,"a":45,"?":27,"\/":81,".":45,"-":18,",":45,"&":18}},"z":{"d":"431,0r-396,0r0,-64r292,-368r-258,0r-12,-75r377,0r0,64r-292,369r278,0","w":478,"k":{"z":-9,"y":-9,"q":18,"o":18,"g":18,"c":18}},"{":{"d":"329,76r-97,0v-74,0,-109,-34,-109,-96v0,-34,10,-65,10,-100v0,-62,-40,-71,-98,-68r-9,-54v62,3,108,-5,107,-69v0,-34,-10,-66,-10,-99v0,-62,35,-97,109,-97r93,0r0,64v-48,4,-121,-16,-121,36v0,29,10,65,10,97v2,61,-34,80,-78,96v48,10,78,34,78,93v0,53,-42,139,38,134r68,0","w":360,"k":{"Q":36,"O":36,"G":36,"C":36}},"|":{"d":"173,173r-80,13r0,-895r80,-13r0,895","w":266},"}":{"d":"334,-188v-61,-2,-107,3,-107,68v0,35,10,66,10,100v0,62,-35,96,-108,96r-94,0r0,-63v47,-4,121,16,121,-36v0,-30,-10,-66,-10,-98v-2,-62,34,-80,78,-95v-48,-11,-78,-35,-78,-94v0,-53,43,-139,-39,-133r-67,0r-8,-64r97,0v73,0,108,35,108,97v0,32,-10,65,-10,99v0,60,40,72,98,69","w":360},"~":{"d":"132,-346v39,0,111,53,136,48v15,0,24,-12,32,-51r58,12v-9,76,-36,114,-82,114v-39,0,-111,-53,-136,-48v-15,0,-24,11,-32,51r-58,-12v9,-76,36,-114,82,-114","w":409},"'":{"d":"164,-608r-24,208r-53,-12r-24,-196r101,0","w":227,"k":{"4":54}},"`":{"d":"317,-577r-60,0r-134,-127r108,-24","w":454},"\u00a0":{"w":220}}});