
/*!
 * jQuery Cycle Lite Plugin
 * http://malsup.com/jquery/cycle/lite/
 * Copyright (c) 2008-2011 M. Alsup
 * Version: 1.3.1 (07-OCT-2011)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($) {

var ver = 'Lite-1.3';

$.fn.cycle = function(options) {
    return this.each(function() {
        options = options || {};
        
        if (this.cycleTimeout) clearTimeout(this.cycleTimeout);
        this.cycleTimeout = 0;
        this.cyclePause = 0;
        
        var $cont = $(this);
        var $slides = options.slideExpr ? $(options.slideExpr, this) : $cont.children();
        var els = $slides.get();
        if (els.length < 2) {
            window.console && console.log('terminating; too few slides: ' + els.length);
            return; // don't bother
        }

        // support metadata plugin (v1.0 and v2.0)
        var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
		var meta = $.isFunction($cont.data) ? $cont.data(opts.metaAttr) : null;
		if (meta)
			opts = $.extend(opts, meta);
            
        opts.before = opts.before ? [opts.before] : [];
        opts.after = opts.after ? [opts.after] : [];
        opts.after.unshift(function(){ opts.busy=0; });
            
        // allow shorthand overrides of width, height and timeout
        var cls = this.className;
        opts.width = parseInt((cls.match(/w:(\d+)/)||[])[1]) || opts.width;
        opts.height = parseInt((cls.match(/h:(\d+)/)||[])[1]) || opts.height;
        opts.timeout = parseInt((cls.match(/t:(\d+)/)||[])[1]) || opts.timeout;

        if ($cont.css('position') == 'static') 
            $cont.css('position', 'relative');
        if (opts.width) 
            $cont.width(opts.width);
        if (opts.height && opts.height != 'auto') 
            $cont.height(opts.height);

        var first = 0;
        $slides.css({position: 'absolute', top:0, left:0}).each(function(i) { 
            $(this).css('z-index', els.length-i) 
        });
        
        $(els[first]).css('opacity',1).show(); // opacity bit needed to handle reinit case
        if ($.browser.msie) els[first].style.removeAttribute('filter');

        if (opts.fit && opts.width) 
            $slides.width(opts.width);
        if (opts.fit && opts.height && opts.height != 'auto') 
            $slides.height(opts.height);
        if (opts.pause) 
            $cont.hover(function(){this.cyclePause=1;}, function(){this.cyclePause=0;});

        var txFn = $.fn.cycle.transitions[opts.fx];
		txFn && txFn($cont, $slides, opts);
        
        $slides.each(function() {
            var $el = $(this);
            this.cycleH = (opts.fit && opts.height) ? opts.height : $el.height();
            this.cycleW = (opts.fit && opts.width) ? opts.width : $el.width();
        });

        if (opts.cssFirst)
            $($slides[first]).css(opts.cssFirst);

        if (opts.timeout) {
            // ensure that timeout and speed settings are sane
            if (opts.speed.constructor == String)
                opts.speed = {slow: 600, fast: 200}[opts.speed] || 400;
            if (!opts.sync)
                opts.speed = opts.speed / 2;
            while((opts.timeout - opts.speed) < 250)
                opts.timeout += opts.speed;
        }
        opts.speedIn = opts.speed;
        opts.speedOut = opts.speed;

 		opts.slideCount = els.length;
        opts.currSlide = first;
        opts.nextSlide = 1;

        // fire artificial events
        var e0 = $slides[first];
        if (opts.before.length)
            opts.before[0].apply(e0, [e0, e0, opts, true]);
        if (opts.after.length > 1)
            opts.after[1].apply(e0, [e0, e0, opts, true]);
        
        if (opts.click && !opts.next)
            opts.next = opts.click;
        if (opts.next)
            $(opts.next).bind('click', function(){return advance(els,opts,opts.rev?-1:1)});
        if (opts.prev)
            $(opts.prev).bind('click', function(){return advance(els,opts,opts.rev?1:-1)});

        if (opts.timeout)
            this.cycleTimeout = setTimeout(function() {
                go(els,opts,0,!opts.rev)
            }, opts.timeout + (opts.delay||0));
    });
};

function go(els, opts, manual, fwd) {
    if (opts.busy) return;
    var p = els[0].parentNode, curr = els[opts.currSlide], next = els[opts.nextSlide];
    if (p.cycleTimeout === 0 && !manual) 
        return;

    if (manual || !p.cyclePause) {
        if (opts.before.length)
            $.each(opts.before, function(i,o) { o.apply(next, [curr, next, opts, fwd]); });
        var after = function() {
            if ($.browser.msie)
                this.style.removeAttribute('filter');
            $.each(opts.after, function(i,o) { o.apply(next, [curr, next, opts, fwd]); });
            queueNext();
        };

        if (opts.nextSlide != opts.currSlide) {
            opts.busy = 1;
            $.fn.cycle.custom(curr, next, opts, after);
        }
        var roll = (opts.nextSlide + 1) == els.length;
        opts.nextSlide = roll ? 0 : opts.nextSlide+1;
        opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
    }
    
    function queueNext() {
        if (opts.timeout)
            p.cycleTimeout = setTimeout(function() { go(els,opts,0,!opts.rev) }, opts.timeout);
    }
};

// advance slide forward or back
function advance(els, opts, val) {
    var p = els[0].parentNode, timeout = p.cycleTimeout;
    if (timeout) {
        clearTimeout(timeout);
        p.cycleTimeout = 0;
    }
    opts.nextSlide = opts.currSlide + val;
    if (opts.nextSlide < 0) {
        opts.nextSlide = els.length - 1;
    }
    else if (opts.nextSlide >= els.length) {
        opts.nextSlide = 0;
    }
    go(els, opts, 1, val>=0);
    return false;
};

$.fn.cycle.custom = function(curr, next, opts, cb) {
    var $l = $(curr), $n = $(next);
    $n.css(opts.cssBefore);
    var fn = function() {$n.animate(opts.animIn, opts.speedIn, opts.easeIn, cb)};
    $l.animate(opts.animOut, opts.speedOut, opts.easeOut, function() {
        $l.css(opts.cssAfter);
        if (!opts.sync) fn();
    });
    if (opts.sync) fn();
};

$.fn.cycle.transitions = {
    fade: function($cont, $slides, opts) {
		$slides.not(':eq(0)').hide();
		opts.cssBefore = { opacity: 0, display: 'block' };
		opts.cssAfter  = { display: 'none' };
		opts.animOut = { opacity: 0 };
		opts.animIn = { opacity: 1 };
    },
    fadeout: function($cont, $slides, opts) {
		opts.before.push(function(curr,next,opts,fwd) {
			$(curr).css('zIndex',opts.slideCount + (fwd === true ? 1 : 0));
			$(next).css('zIndex',opts.slideCount + (fwd === true ? 0 : 1));
		});
		$slides.not(':eq(0)').hide();
		opts.cssBefore = { opacity: 1, display: 'block', zIndex: 1 };
		opts.cssAfter  = { display: 'none', zIndex: 0 };
		opts.animOut = { opacity: 0 };
    }
};

$.fn.cycle.ver = function() { return ver; };

// @see: http://malsup.com/jquery/cycle/lite/
$.fn.cycle.defaults = {
	animIn:        {},
	animOut:       {},
	fx:           'fade',
    after:         null, 
    before:        null, 
	cssBefore:     {},
	cssAfter:      {},
    delay:         0,    
    fit:           0,    
    height:       'auto',
	metaAttr:     'cycle',
    next:          null, 
    pause:         0,    
    prev:          null, 
    speed:         1000, 
    slideExpr:     null,
    sync:          1,    
    timeout:       4000 
};

})(jQuery);

/**
 * @author alexander.farkas
 * @version 1.2
 */
(function($){
    $.testMedia = function(str){
        var date = new Date().getTime(), styleS, div = $('<div class="testMediaQuery' + date + '"></div>').css({
            visibility: 'hidden',
            position: 'absolute'
        }).appendTo('body'), style = document.createElement('style');
        style.setAttribute('type', 'text/css');
    	style.setAttribute('media', str);
        style = $(style).prependTo('head');
        styleS = document.styleSheets[0];
        if (styleS.cssRules || styleS.rules) {
            if (styleS.insertRule) {
                styleS.insertRule('.testMediaQuery' + date + ' {display:none !important;}', styleS.cssRules.length);
            } else if (styleS.addRule) {
                styleS.addRule('.testMediaQuery' + date, 'display:none');
            }
        }
        var ret = div.css('display') === 'none';
        div.remove();
        style.remove();
        return ret;
    };
    $.arrayInString = function(str, arr){
        var ret = -1;
        $.each(arr, function(i, item){
			if (str.indexOf(item) != -1) {
                ret = i;
                return false;
            }
        });
        return ret;
    };
    $.enableMediaQuery = (function(){
        var styles = [], styleLinks, date = new Date().getTime();
        function parseMedia(link){
            var medias = link.getAttribute('media'), 
				pMin = /\(\s*min-width\s*:\s*(\d+)px\s*\)/, 
				pMax = /\(\s*max-width\s*:\s*(\d+)px\s*\)/, 
				resMin, 
				resMax, 
				supportedMedia = ['handheld', 'all', 'screen', 'projection', 'tty', 'tv', 'print'], 
				curMedia, 
	            mediaString = [];
	            medias = (!medias) ? ['all'] : medias.split(',');
			
            for (var i = 0, len = medias.length; i < len; i++) {
				curMedia = $.arrayInString(medias[i], supportedMedia);
				
                if (curMedia != -1) {
					
                    curMedia = supportedMedia[curMedia];
                    if (!resMin) {
                        resMin = pMin.exec(medias[i]);
                        if (resMin) {
                            resMin = parseInt(resMin[1], 10);
                        }
                    }
                    if (!resMax) {
                        resMax = pMax.exec(medias[i]);
                        if (resMax) {
                            resMax = parseInt(resMax[1], 10);
                        }
                    }
                    mediaString.push(curMedia);
                }
            }
			if (resMin || resMax) {
				styles.push({
					obj: link,
					min: resMin,
					max: resMax,
					medium: mediaString.join(','),
					used: false
				});
			}
        }
        return {
            init: function(){
                if (!styleLinks) {
					var resizeTimer;
                    styleLinks = $('link[rel*=style]').each(function(){
                        parseMedia(this);
                    });
                    $.enableMediaQuery.adjust();
                    $(window).bind('resize.mediaQueries', function(){
						clearTimeout(resizeTimer);
						resizeTimer = setTimeout( $.enableMediaQuery.adjust , 29);
					});
                }
            },
            adjust: function(){
                var width 		= $(window).width(),
					addStyles	= [],
					changeQuery,
					shouldUse,
					i, len
				;
				
                for (i = 0, len = styles.length; i < len; i++) {
					shouldUse = !styles[i].obj.disabled && ((!(styles[i].min && styles[i].min > width) && !(styles[i].max && styles[i].max < width)) || (!styles[i].max && !styles[i].min));
                    if ( shouldUse ) {
                        var n = styles[i].obj.cloneNode(true);
                        n.setAttribute('media', styles[i].medium);
                        n.className = 'insertStyleforMedia' + date;
						addStyles.push(n);
						if( !styles[i].used ){
							styles[i].used = true;
							changeQuery = true;
						}
                    } else if( styles[i].used !== shouldUse ){
						styles[i].used = false;
						changeQuery = true;
					}
                }
				
				if(changeQuery){
					$('link.insertStyleforMedia' + date).remove();
					var head = document.getElementsByTagName('head');
					for(i = 0, len = addStyles.length; i < len; i++){
						head[0].appendChild(addStyles[i]);
					}
					//repaint
					$('body').css('zoom', '1').css('zoom', '');
				}
            }
        };
    })();
	//make some odd assumption before dom-ready
	$.support.mediaQueries = !( $.browser.msie && parseFloat($.browser.version, 10) < 9) || ($.browser.mozilla && parseFloat($.browser.version, 10) < 1.9 );
    setTimeout(function(){
		if (!$.isReady && document.body && !$.support.mediaQueries) {
	        try {
				$.enableMediaQuery.init();
	        } catch (e) {}
	    } 
	}, 1);
    $(function(){
		//test media query compatibility
		$.support.mediaQueries = $.testMedia('only all');
		if (!$.support.mediaQueries) {
            $.enableMediaQuery.init();
        }
    });
})(jQuery);

/*
 * 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}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Impact is a trademark of Stephenson Blake (Holdings) Ltd.
 * 
 * Description:
 * 1965. Designed for the Stephenson Blake type foundry. A very heavy, narrow,
 * sans serif face intended for use in newspapers, for headlines and in
 * advertisements. Aptly named, this face has a very large "x" height with short
 * ascenders and descenders.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Geoffrey Lee
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"17,-5v33,-1,31,-2,24,-37r-43,-217r71,0r26,175r13,-175r71,0r-31,248v-6,53,-69,47,-131,47r0,-41xm159,-329r-64,53r-40,0r35,-53r69,0","w":179},{"d":"90,-264v58,0,92,21,85,88r-70,0v-2,-20,6,-43,-12,-42v-19,0,-18,40,-2,47v30,26,90,31,90,94v0,60,-27,82,-82,82v-62,0,-95,-25,-89,-96r70,0v2,22,-5,50,13,50v22,5,15,-37,11,-45v-4,-7,-88,-46,-88,-64v-5,-11,-8,-22,-8,-37v-3,-60,29,-77,82,-77","w":188},{"d":"110,-323v84,0,106,50,98,145r-82,0v-5,-31,13,-91,-14,-91v-19,0,-16,13,-16,38r0,147v1,23,-2,37,15,37v26,0,11,-50,15,-80r82,0v6,91,-20,134,-96,134v-75,0,-98,-36,-98,-119r0,-93v-7,-82,26,-118,96,-118","w":221},{"d":"95,-259r0,259r-81,0r0,-259r81,0xm122,-329r-64,53r-40,0r35,-53r69,0","w":109},{"d":"207,-94v4,78,-16,95,-87,94r-104,0r0,-316r62,0v104,-1,129,9,129,111r0,111xm99,-54v30,-1,26,-10,26,-46r-2,-150v-3,-10,-9,-12,-24,-12r0,208","w":221},{"d":"187,-314v-13,38,-54,42,-90,24v-22,-10,-33,-8,-44,13r-31,-20v24,-54,67,-36,112,-22v11,0,17,-5,21,-17xm106,-218v-18,4,-13,13,-13,43r0,175r-79,0r0,-259r80,0r-1,24v11,-18,24,-29,50,-29v46,0,53,28,53,82r0,182r-79,0r0,-179v-2,-26,5,-35,-11,-39","w":209},{"d":"109,-47v16,-2,12,-12,12,-36r0,-233r82,0r0,211v6,79,-24,112,-91,112v-80,0,-97,-36,-97,-136r0,-187r82,0r0,237v2,21,-2,29,12,32xm93,-377r0,51r-51,0r0,-51r51,0xm178,-377r0,51r-51,0r0,-51r51,0"},{"d":"99,-264v79,-2,100,52,94,139r-102,0v4,27,-12,84,12,84v24,0,12,-42,15,-67r75,0v5,74,-22,113,-89,113v-63,0,-92,-29,-92,-99r0,-76v-2,-64,29,-93,87,-94xm103,-218v-19,-1,-9,27,-12,51r23,0v-2,-21,6,-51,-11,-51xm85,-327r0,51r-51,0r0,-51r51,0xm170,-327r0,51r-51,0r0,-51r51,0","w":204},{"d":"154,-316r0,63r-61,190r61,0r0,63r-152,0r0,-46r64,-207r-56,0r0,-63r144,0","w":158,"k":{"\u00c1":-8,"\u00c2":-8,"\u00c3":-8,"\u00c0":-8,"\u00c6":-8,"\u00c5":-8,"\u00c4":-8,"y":-10,"A":-8,".":-9,",":-9}},{"d":"58,-362v0,-22,20,-42,41,-42v22,0,41,19,41,42v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm115,-362v0,-9,-8,-15,-16,-16v-8,0,-17,6,-16,16v-1,9,7,17,16,16v9,1,16,-8,16,-16xm158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"154,-16v-3,25,29,13,50,16r0,38v-46,-5,-118,20,-109,-38v-97,1,-79,-112,-81,-212v-2,-74,27,-111,92,-111v67,0,98,32,98,110r0,102v2,64,-7,82,-50,95xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40"},{"d":"106,-302r-23,25r-55,0r51,-55r55,0r47,55r-53,0xm104,-41v19,-3,12,-14,12,-44r0,-174r79,0r0,259r-81,0r2,-21v-9,16,-26,26,-48,26v-49,0,-55,-29,-55,-89r0,-175r79,0r0,176v2,29,-5,39,12,42","w":208},{"d":"104,-41v19,-3,12,-14,12,-44r0,-174r79,0r0,259r-81,0r2,-21v-9,16,-26,26,-48,26v-49,0,-55,-29,-55,-89r0,-175r79,0r0,176v2,29,-5,39,12,42xm171,-329r-64,53r-40,0r35,-53r69,0","w":208},{"d":"125,-242r16,106r-16,112r-46,0r16,-112r-16,-106r46,0xm53,-242r17,106r-17,112r-46,0r16,-112r-16,-106r46,0","w":148},{"d":"127,-318v51,5,79,37,72,94r-79,0v-1,-23,4,-46,-14,-47v-21,0,-16,39,-7,48v32,32,109,49,109,128v0,58,-29,89,-81,96r0,30r-36,0r0,-31v-54,-6,-85,-42,-79,-113r79,0v3,31,-9,66,14,66v25,0,14,-47,12,-59v-33,-47,-110,-51,-106,-132v3,-52,30,-74,80,-80r0,-25r36,0r0,25"},{"d":"96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32xm84,-327r0,51r-51,0r0,-51r51,0xm169,-327r0,51r-51,0r0,-51r51,0","w":201},{"d":"100,-264v28,0,50,6,65,20r8,-12r15,10r-10,15v21,24,13,80,15,126v3,75,-23,110,-90,110v-27,0,-50,-6,-65,-17r-7,9r-15,-10r9,-13v-19,-27,-11,-88,-13,-136v-2,-68,24,-102,88,-102xm102,-218v-23,4,-6,61,-11,90v10,-18,27,-28,23,-60v-2,-21,3,-28,-12,-30xm102,-41v23,-5,8,-59,12,-88v-9,18,-26,27,-23,58v2,18,-2,28,11,30","w":204},{"d":"7,-150v2,-85,65,-145,146,-149v84,-3,153,69,153,149v0,80,-69,150,-149,150v-80,0,-151,-70,-150,-150xm277,-150v0,-63,-58,-120,-117,-120v-68,0,-123,55,-123,120v0,64,57,121,120,121v63,0,120,-57,120,-121xm118,-151v-8,58,62,79,75,23r31,11v-11,34,-32,51,-66,51v-46,0,-75,-36,-75,-83v0,-87,118,-115,141,-36r-31,7v-20,-51,-81,-23,-75,27","w":313},{"d":"109,-323v79,0,102,43,95,138r0,54v6,94,-16,138,-95,138v-77,0,-102,-43,-95,-138r0,-54v-6,-95,16,-138,95,-138xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40xm92,-377r0,51r-51,0r0,-51r51,0xm177,-377r0,51r-51,0r0,-51r51,0"},{"d":"104,-323v82,-8,133,75,72,123v32,11,31,54,31,106v0,72,-32,97,-103,94r0,-48v26,0,25,-1,24,-31r0,-77v-1,-17,-1,-21,-15,-24r0,-49v10,0,12,-5,12,-18v0,-17,-4,-29,-16,-30v-16,2,-15,11,-16,33r0,244r-79,0r0,-211v-4,-82,19,-105,90,-112","w":220},{"d":"183,-316r-29,140r44,176r-77,0v-9,-32,-17,-70,-25,-115v-3,37,-11,78,-16,115r-80,0r30,-176r-30,-140r79,0r17,86r18,-86r69,0","w":192,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"J":-8,"A":-10,".":-14,",":-14}},{"d":"100,-264v62,3,96,28,93,96r0,63v3,75,-23,110,-90,110v-67,0,-91,-28,-91,-101v0,-91,-3,-173,88,-168xm102,-41v14,-2,12,-10,12,-27r0,-120v-2,-21,3,-28,-12,-30v-14,2,-10,10,-11,30r0,117v0,18,-2,28,11,30xm36,-329r70,0r34,53r-40,0","w":204},{"d":"196,-322r-124,328r-30,0r124,-328r30,0xm36,-242v3,-34,-5,-28,-34,-30r0,-21v24,-4,43,-14,55,-27r29,0r0,167r-50,0r0,-89xm191,-170v48,-2,75,36,51,75v-6,12,-32,47,-48,65r52,0r0,30r-108,0r0,-25v42,-62,53,-65,66,-105v0,-8,-4,-12,-11,-12v-15,-1,-9,20,-10,34r-45,0v-2,-41,13,-60,53,-62","w":258},{"d":"133,-346r-64,53r-40,0r35,-53r69,0","w":133},{"d":"158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0xm82,-377r0,51r-51,0r0,-51r51,0xm167,-377r0,51r-51,0r0,-51r51,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"50,-344r0,51r-51,0r0,-51r51,0xm135,-344r0,51r-51,0r0,-51r51,0","w":133},{"d":"104,-41v19,-3,12,-14,12,-44r0,-174r79,0r0,259r-81,0r2,-21v-9,16,-26,26,-48,26v-49,0,-55,-29,-55,-89r0,-175r79,0r0,176v2,29,-5,39,12,42xm38,-329r70,0r34,53r-40,0","w":208},{"d":"326,-316r-37,316r-102,0v-9,-49,-18,-104,-25,-166v-3,26,-11,82,-23,166r-102,0r-37,-316r80,0r17,217v3,-55,11,-128,23,-217r85,0r18,224v5,-76,12,-151,23,-224r80,0","w":325,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"y":-6,"Y":-7,"J":11,"A":4,"\/":17,".":13,",":13}},{"w":70},{"d":"12,-190v-15,-75,67,-91,103,-53r0,-73r79,0r0,316r-79,0r0,-19v-35,42,-103,27,-103,-50r0,-121xm102,-41v14,-2,13,-12,13,-33r0,-120v-1,-16,0,-24,-12,-24v-13,0,-12,8,-12,24r0,127v0,18,-1,24,11,26","w":207},{"d":"104,-302r-23,25r-55,0r50,-55r55,0r47,55r-53,0xm99,-264v79,-2,100,52,94,139r-102,0v4,27,-12,84,12,84v24,0,12,-42,15,-67r75,0v5,74,-22,113,-89,113v-63,0,-92,-29,-92,-99r0,-76v-2,-64,29,-93,87,-94xm103,-218v-19,-1,-9,27,-12,51r23,0v-2,-21,6,-51,-11,-51","w":204},{"d":"192,-316r-60,202r0,114r-77,0r0,-114r-57,-202r75,0v12,62,19,103,20,124v5,-34,12,-75,23,-124r76,0xm161,-379r-64,53r-40,0r35,-53r69,0","w":189},{"d":"191,-363v-12,37,-55,41,-90,23v-22,-12,-34,-8,-44,14r-31,-21v24,-55,68,-35,112,-21v11,0,17,-6,21,-18xm200,-316r0,316r-72,0r-43,-144r0,144r-69,0r0,-316r69,0r46,142r0,-142r69,0","w":216},{"d":"-2,-350r225,0r0,20r-225,0r0,-20","w":220},{"d":"57,-302r-23,25r-55,0r50,-55r56,0r47,55r-53,0xm95,-259r0,259r-81,0r0,-259r81,0","w":109},{"d":"140,-173v-46,2,-47,16,-47,71r0,102r-79,0r0,-259r79,0r-3,34v11,-24,28,-38,50,-39r0,91","w":143,"k":{"y":-7,"w":-7,"v":-7,"t":-7,"f":-7,".":28,",":28}},{"d":"170,-259r-31,124r38,135r-77,0v-8,-34,-13,-63,-17,-88v-5,31,-11,60,-17,88r-66,0r34,-135r-34,-124r66,0v11,53,16,83,17,90v8,-44,13,-74,17,-90r70,0","w":173,"k":{"y":-6,".":-9,",":-9}},{"d":"196,-188v-10,76,26,194,-53,193v-20,0,-36,-9,-50,-27r0,59r-79,0r0,-353r79,0r0,80v35,-50,113,-31,103,48xm105,-41v15,-2,12,-11,12,-32r0,-111v-2,-24,4,-32,-12,-34v-15,2,-12,11,-12,34r0,108v1,24,-3,32,12,35","w":207},{"w":70},{"d":"99,-264v79,-2,100,52,94,139r-102,0v4,27,-12,84,12,84v24,0,12,-42,15,-67r75,0v5,74,-22,113,-89,113v-63,0,-92,-29,-92,-99r0,-76v-2,-64,29,-93,87,-94xm103,-218v-19,-1,-9,27,-12,51r23,0v-2,-21,6,-51,-11,-51xm36,-329r70,0r34,53r-40,0","w":204},{"d":"57,-170v3,-58,-3,-59,-55,-59r0,-37v38,-8,67,-24,87,-50r47,0r0,316r-79,0r0,-170","w":152},{"d":"95,-316r0,316r-81,0r0,-316r81,0","w":109},{"d":"99,-264v79,-2,100,52,94,139r-102,0v4,27,-12,84,12,84v24,0,12,-42,15,-67r75,0v5,74,-22,113,-89,113v-63,0,-92,-29,-92,-99r0,-76v-2,-64,29,-93,87,-94xm103,-218v-19,-1,-9,27,-12,51r23,0v-2,-21,6,-51,-11,-51xm169,-329r-64,53r-40,0r35,-53r69,0","w":204},{"d":"98,-233v0,58,-1,73,43,81r0,47v-37,4,-43,20,-43,68v0,76,-19,99,-91,96r0,-47v33,-1,39,1,40,-28v3,-68,-1,-87,37,-113v-32,-20,-34,-36,-36,-90v-2,-46,5,-48,-41,-51r0,-46v66,-2,91,15,91,83","w":147},{"d":"74,-206r0,64r-60,0r0,-64r60,0xm70,-62v5,55,-8,96,-53,102r0,-22v8,-4,13,-11,14,-18r-14,0r0,-62r53,0","w":80},{"d":"64,-321v56,-2,61,38,61,95v0,45,-15,65,-59,67v-60,3,-59,-42,-59,-100v0,-43,18,-60,57,-62xm65,-189v9,0,8,-4,8,-15r0,-70v-1,-12,2,-17,-7,-17v-9,0,-8,5,-8,17r0,69v1,10,0,15,7,16","w":131},{"d":"0,-346r70,0r34,53r-40,0","w":133},{"d":"17,-253v-8,-68,37,-63,98,-63r0,40v-29,1,-34,-4,-34,23r34,0r0,41r-19,0r0,212r-79,0r0,-212r-16,0r0,-41r16,0","w":115,"k":{"y":-10,"w":-8,"v":-9}},{"d":"96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32xm167,-329r-64,53r-40,0r35,-53r69,0","w":201},{"d":"12,-192v-11,-77,72,-90,102,-45r1,-22r78,0r0,296r-79,0r0,-58v-15,19,-19,25,-45,26v-84,1,-46,-118,-57,-197xm103,-41v13,-2,10,-11,11,-31r0,-117v-1,-17,0,-27,-12,-29v-13,1,-11,11,-11,29r0,116v1,21,-2,30,12,32","w":207},{"d":"111,-352r-23,26r-55,0r50,-55r55,0r48,55r-53,0xm109,-47v16,-2,12,-12,12,-36r0,-233r82,0r0,211v6,79,-24,112,-91,112v-80,0,-97,-36,-97,-136r0,-187r82,0r0,237v2,21,-2,29,12,32"},{"d":"99,-316r0,253r50,0r0,63r-133,0r0,-316r83,0","w":152,"k":{"\u00d3":6,"\u00c1":-10,"\u00c2":-10,"\u00d5":6,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00d6":6,"\u00c7":6,"\u00c5":-10,"\u00c4":-10,"y":10,"Z":-5,"Y":26,"X":-6,"W":14,"V":17,"T":29,"S":3,"Q":6,"O":6,"G":5,"C":6,"A":-10,".":-11,",":-11}},{"d":"103,-270v71,0,100,83,51,127r28,51r43,-28r0,53r-22,14r27,53r-72,0r-10,-18v-24,16,-47,25,-69,25v-45,1,-72,-36,-72,-78v0,-37,16,-53,44,-65v-60,-39,-27,-134,52,-134xm102,-227v-23,4,-13,39,1,51v15,-17,23,-45,-1,-51xm81,-67v-2,25,23,28,40,14r-25,-43v-10,9,-15,19,-15,29","w":230},{"d":"16,-316r138,0r0,63r-55,0r0,60r51,0r0,60r-51,0r0,70r60,0r0,63r-143,0r0,-316xm149,-379r-64,53r-40,0r35,-53r69,0","w":166,"k":{"T":5}},{"d":"104,-41v19,-3,12,-14,12,-44r0,-174r79,0r0,259r-81,0r2,-21v-9,16,-26,26,-48,26v-49,0,-55,-29,-55,-89r0,-175r79,0r0,176v2,29,-5,39,12,42","w":208},{"d":"14,-259r63,0r0,187v0,18,6,27,16,27v13,0,19,-15,19,-45r0,-169r62,0r0,259r-60,0r0,-24v-8,18,-20,28,-37,28r0,75r-63,0r0,-338","w":188},{"d":"95,-259r0,259r-81,0r0,-259r81,0xm39,-327r0,51r-51,0r0,-51r51,0xm124,-327r0,51r-51,0r0,-51r51,0","w":109},{"d":"96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32xm34,-329r70,0r34,53r-40,0","w":201},{"d":"4,-55v28,2,31,-9,31,-39r0,-222r82,0r0,211v3,80,-1,105,-72,105r-41,0r0,-55","w":132},{"d":"194,-228v7,76,-18,108,-95,101r0,127r-83,0r0,-316v93,1,193,-17,178,88xm99,-182v30,8,26,-26,26,-54v-1,-23,-3,-25,-26,-26r0,80","w":200,"k":{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c6":10,"\u00c5":10,"\u00c4":10,"J":15,"A":10,"\/":30,".":51,",":51}},{"d":"201,-63r-188,-79r0,-39r188,-79r0,52r-116,46r116,47r0,52","w":213},{"d":"209,-94v3,78,-15,95,-87,94r-103,0r0,-158r-16,0r0,-34r16,0r0,-124r61,0v105,-2,129,8,129,111r0,111xm101,-54v30,-1,26,-10,26,-46r-1,-150v-4,-10,-9,-12,-25,-12r0,70r13,0r0,34r-13,0r0,104","w":223},{"d":"16,-316r138,0r0,63r-55,0r0,60r51,0r0,60r-51,0r0,70r60,0r0,63r-143,0r0,-316xm16,-379r70,0r34,53r-40,0","w":166,"k":{"T":5}},{"d":"16,-316r138,0r0,63r-55,0r0,60r51,0r0,60r-51,0r0,70r60,0r0,63r-143,0r0,-316xm66,-377r0,51r-51,0r0,-51r51,0xm151,-377r0,51r-51,0r0,-51r51,0","w":166,"k":{"T":5}},{"d":"274,-316r0,63r-55,0r0,60r52,0r0,60r-52,0r0,70r59,0r0,63r-141,0r0,-57r-48,0r-13,57r-78,0r83,-316r193,0xm137,-257r-35,144r35,0r0,-144","w":285,"k":{"T":5}},{"d":"208,-127v6,87,-16,128,-90,133r0,4v14,-1,28,10,28,26v0,41,-72,52,-79,6r29,0v2,13,21,10,21,-4v0,-11,-9,-14,-21,-13r0,-19v-98,-1,-82,-109,-82,-211v0,-82,26,-118,96,-118v84,0,106,50,98,145r-82,0v-5,-31,13,-91,-14,-91v-19,0,-16,13,-16,38r0,147v1,23,-2,37,15,37v26,0,11,-50,15,-80r82,0","w":221},{"d":"60,-207v26,-19,72,-19,99,0r26,-26r27,28r-25,26v19,31,19,68,0,98r25,25r-27,28r-26,-26v-26,19,-73,19,-99,0r-25,26r-28,-28r26,-25v-20,-30,-20,-67,0,-98r-26,-26r27,-28xm110,-183v-28,0,-53,25,-53,51v-1,29,24,54,53,54v28,0,52,-24,52,-52v0,-28,-24,-53,-52,-53","w":219},{"d":"215,-322r-123,328r-30,0r124,-328r29,0xm64,-322v41,0,59,15,59,60r0,54v3,43,-18,55,-56,58v-67,5,-60,-51,-60,-112v0,-44,18,-60,57,-60xm65,-177v9,0,8,-5,8,-18r0,-81v-1,-13,3,-18,-8,-19v-10,2,-8,6,-8,19r0,80v1,14,-3,19,8,19xm211,-170v40,0,59,15,59,60r0,55v3,43,-18,58,-56,58v-42,0,-60,-13,-60,-56r0,-57v-3,-45,19,-60,57,-60xm212,-25v10,-1,7,-4,8,-17r0,-81v-1,-13,3,-19,-8,-19v-11,0,-7,6,-8,19r0,79v1,14,-3,19,8,19","w":277},{"d":"7,-150v1,-85,64,-146,146,-149v85,-3,153,69,153,149v0,80,-69,150,-149,150v-80,0,-152,-70,-150,-150xm277,-150v-2,-68,-51,-118,-117,-120v-69,-3,-123,55,-123,120v0,64,57,121,120,121v63,0,122,-57,120,-121xm219,-184v0,28,-16,40,-42,45v26,10,35,46,52,69r-40,0v-18,-27,-22,-68,-66,-65r0,65r-32,0r0,-159v56,1,128,-12,128,45xm185,-182v0,-26,-35,-21,-62,-21r0,43v27,-1,62,6,62,-22","w":313},{"d":"102,-302r-23,25r-54,0r50,-55r55,0r47,55r-53,0xm96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32","w":201},{"d":"198,-239v0,38,-7,45,-33,60v32,16,34,29,36,87v3,73,-27,98,-94,98v-69,0,-96,-26,-94,-102v0,-42,2,-69,32,-83v-20,-11,-29,-30,-29,-62v0,-56,32,-81,90,-81v66,0,92,23,92,83xm107,-198v20,2,13,-29,13,-49v0,-18,0,-24,-13,-27v-20,0,-14,31,-14,51v0,16,2,24,14,25xm108,-43v24,0,14,-46,14,-73v0,-19,-1,-30,-16,-30v-24,0,-14,46,-14,71v0,21,0,32,16,32","w":213},{"d":"33,-316r42,0r0,368r-42,0r0,-368","w":108},{"d":"181,-363v-12,36,-55,42,-89,23v-22,-12,-34,-8,-45,14r-30,-21v24,-55,68,-35,112,-21v11,0,17,-6,21,-18xm158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"196,-322r-124,328r-30,0r124,-328r30,0xm36,-242v3,-34,-5,-28,-34,-30r0,-21v24,-4,43,-14,55,-27r29,0r0,167r-50,0r0,-89xm231,-167r0,108r14,0r0,30r-14,0r0,29r-50,0r0,-29r-58,0r0,-29r42,-109r66,0xm181,-59r0,-66r-25,66r25,0","w":249},{"d":"100,-352r-23,26r-55,0r50,-55r55,0r47,55r-53,0xm158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"17,-5v33,-1,31,-2,24,-37r-43,-217r71,0r26,175r13,-175r71,0r-31,248v-6,53,-69,47,-131,47r0,-41xm76,-327r0,51r-51,0r0,-51r51,0xm161,-327r0,51r-51,0r0,-51r51,0","w":179},{"d":"2,-160r74,-156r43,0r72,156r-56,0r-38,-96r-39,96r-56,0","w":193},{"d":"100,-264v62,3,96,28,93,96r0,63v3,75,-23,110,-90,110v-67,0,-91,-28,-91,-101v0,-91,-3,-173,88,-168xm102,-41v14,-2,12,-10,12,-27r0,-120v-2,-21,3,-28,-12,-30v-14,2,-10,10,-11,30r0,117v0,18,-2,28,11,30xm169,-329r-64,53r-40,0r35,-53r69,0","w":204},{"d":"188,-107v5,72,-19,106,-81,111r0,6v14,0,28,11,28,26v0,41,-73,52,-80,6r29,0v3,12,21,10,21,-4v0,-11,-9,-14,-21,-13r0,-21v-82,-3,-73,-88,-72,-175v-21,-106,136,-120,169,-47v5,13,7,33,7,57r-74,0v-2,-21,8,-57,-12,-57v-13,0,-10,9,-11,27r0,122v0,14,1,28,13,28v22,0,12,-41,14,-66r70,0","w":197},{"d":"204,-139v0,102,-12,142,-96,145v-63,2,-94,-27,-94,-90r79,0v2,28,-4,41,17,41v28,0,10,-56,15,-87v-8,16,-23,26,-47,26v-55,0,-64,-46,-64,-110v0,-75,23,-106,91,-108v102,-3,99,73,99,183xm109,-274v-27,3,-16,61,-16,91v0,20,2,28,16,30v28,-3,12,-58,16,-87v-1,-22,0,-31,-16,-34","w":216},{"d":"130,-106r-47,0r0,-69r-71,0r0,-48r71,0r0,-70r47,0r0,70r71,0r0,48r-71,0r0,69xm12,-83r189,0r0,48r-189,0r0,-48","w":213},{"d":"7,0r0,-49r18,0r0,-219r-18,0r0,-48r89,0r0,316r-89,0","w":112},{"d":"107,-185v-14,2,-16,9,-15,28r-78,0r3,-159r169,0r0,50r-98,0r0,54v12,-14,29,-22,48,-22v68,-2,66,61,66,134v0,76,-25,106,-93,106v-74,0,-102,-40,-96,-125r79,0v3,34,-10,74,17,76v21,-6,11,-14,14,-49v-4,-32,12,-89,-16,-93","w":214,"k":{"7":12,"2":8,"1":12}},{"d":"13,-260r188,78r0,40r-188,79r0,-52r116,-47r-116,-46r0,-52","w":213},{"d":"14,-219r34,-34r59,59r58,-59r34,34r-59,58r58,58r-33,34r-58,-58r-58,58r-34,-34r58,-58","w":213},{"d":"7,-234v0,-59,35,-82,104,-82r117,0r0,51r-22,0r0,308r-46,0r0,-308r-29,0r0,308r-47,0r0,-199v-51,-6,-77,-31,-77,-78","w":230},{"d":"63,-291v-13,-2,-6,11,-8,25r-48,0v-2,-41,20,-55,57,-55v53,0,59,17,59,81r0,77r-50,0r0,-13v-20,33,-78,15,-66,-35v-6,-40,42,-34,64,-53v-1,-11,4,-29,-8,-27xm64,-191v14,0,4,-30,7,-45v-12,10,-16,10,-16,29v0,11,-1,15,9,16","w":129},{"d":"109,-323v79,0,102,43,95,138r0,54v6,94,-16,138,-95,138v-77,0,-102,-43,-95,-138r0,-54v-6,-95,16,-138,95,-138xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40xm175,-379r-64,53r-40,0r35,-53r69,0"},{"d":"13,-215r0,-63r74,0r0,63r-74,0xm7,38r13,-238r61,0r13,238r-87,0","w":108},{"d":"104,-41v19,-3,12,-14,12,-44r0,-174r79,0r0,259r-81,0r2,-21v-9,16,-26,26,-48,26v-49,0,-55,-29,-55,-89r0,-175r79,0r0,176v2,29,-5,39,12,42xm88,-327r0,51r-51,0r0,-51r51,0xm173,-327r0,51r-51,0r0,-51r51,0","w":208},{"d":"99,-316r0,316r-83,0r0,-316r83,0xm-9,-379r70,0r34,53r-40,0","w":115},{"d":"183,-314v-12,38,-53,42,-89,24v-22,-11,-34,-8,-45,13r-31,-20v24,-54,68,-36,112,-22v11,0,18,-5,22,-17xm96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32","w":201},{"d":"109,-47v16,-2,12,-12,12,-36r0,-233r82,0r0,211v6,79,-24,112,-91,112v-80,0,-97,-36,-97,-136r0,-187r82,0r0,237v2,21,-2,29,12,32xm43,-379r70,0r34,53r-40,0"},{"d":"38,-239v-1,-32,1,-37,-31,-36r0,-41v69,0,102,-3,102,77r0,162v8,80,-32,76,-102,77r0,-41v32,0,30,-4,31,-36r0,-162","w":125},{"d":"146,-176v25,-2,29,-11,53,-31r0,53v-45,46,-83,17,-133,1v-14,0,-33,10,-55,31r0,-54v19,-17,39,-25,57,-25v16,0,62,26,78,25","w":209},{"d":"270,-316r0,316r-72,0r0,-213r-28,213r-51,0r-31,-209r0,209r-72,0r0,-316r107,0r21,147r19,-147r107,0","w":286},{"d":"99,-316r0,316r-83,0r0,-316r83,0xm124,-379r-64,53r-40,0r35,-53r69,0","w":115},{"d":"106,-322v67,0,94,33,94,113r0,105v4,75,-23,110,-88,110v-72,0,-99,-31,-98,-105r0,-110v-3,-77,23,-113,92,-113xm107,-43v18,0,13,-12,14,-36r0,-157v-1,-27,3,-35,-14,-38v-17,3,-14,13,-14,38r0,155v2,26,-4,38,14,38","w":214},{"d":"209,-94v3,78,-15,95,-87,94r-103,0r0,-158r-16,0r0,-34r16,0r0,-124r61,0v105,-2,129,8,129,111r0,111xm101,-54v30,-1,26,-10,26,-46r-1,-150v-4,-10,-9,-12,-25,-12r0,70r13,0r0,34r-13,0r0,104","w":223},{"d":"12,-182r71,0r0,-70r47,0r0,70r71,0r0,48r-71,0r0,70r-47,0r0,-70r-71,0r0,-48","w":213},{"d":"60,-322v48,-2,74,34,52,74v-6,11,-33,46,-49,65r53,0r0,30r-109,0r0,-25v42,-62,53,-65,66,-105v0,-8,-4,-12,-11,-12v-14,0,-9,20,-10,34r-45,0v-2,-41,14,-59,53,-61","w":127},{"d":"106,-196v-14,-1,-27,-13,-27,-27v0,-16,12,-28,27,-28v14,0,27,13,27,27v0,15,-12,28,-27,28xm12,-181r189,0r0,46r-189,0r0,-46xm106,-66v-14,-1,-27,-13,-27,-27v0,-16,12,-28,27,-28v14,0,28,12,28,27v0,15,-12,29,-28,28","w":213},{"d":"109,-277v-21,2,-12,35,-14,63r-79,0v-4,-77,26,-109,93,-109v82,0,100,58,94,149v13,72,-69,109,-108,61r0,34r-73,0r0,-87r72,0v0,12,4,18,12,18v29,-1,15,-63,15,-100v0,-19,1,-27,-12,-29xm95,-63r0,63r-73,0r0,-63r73,0","w":209},{"d":"107,-323v73,0,105,40,98,123r-82,0v-3,-28,9,-71,-14,-69v-15,1,-13,12,-13,36r0,151v1,22,-1,32,14,35v25,-1,11,-47,15,-75r-16,0r0,-48r96,0r0,170r-52,0r-7,-23v-10,18,-26,30,-52,30v-60,0,-80,-42,-80,-115r0,-94v-5,-84,22,-121,93,-121","w":220},{"d":"191,-240v0,86,-33,88,-93,186r86,0r0,54r-173,0r0,-45v66,-117,87,-126,106,-203v0,-16,-5,-26,-18,-26v-24,0,-16,39,-18,65r-70,0v-5,-73,19,-112,85,-113v57,-1,95,31,95,82","w":200,"k":{"4":8}},{"d":"212,-316r-47,143r52,173r-85,0r-33,-136r0,136r-83,0r0,-316r83,0r0,123r36,-123r77,0","w":214,"k":{"\u00d3":7,"\u00c1":-8,"\u00c2":-8,"\u00d5":7,"\u00c3":-8,"\u00c0":-8,"\u00c6":-8,"\u00d6":7,"\u00c7":7,"\u00c5":-8,"\u00c4":-8,"}":-6,"]":-6,"Z":-7,"S":6,"Q":7,"O":7,"J":-5,"C":7,"A":-8,".":-9,",":-9,")":-6}},{"d":"38,-136v0,-16,13,-29,29,-29v15,0,28,13,28,29v0,15,-13,28,-28,28v-15,0,-29,-13,-29,-28","w":133},{"d":"200,-316r0,316r-72,0r-43,-144r0,144r-69,0r0,-316r69,0r46,142r0,-142r69,0","w":216},{"d":"196,-72v11,76,-69,98,-103,52r-5,20r-74,0r0,-316r79,0r0,75v12,-13,26,-22,48,-23v85,-5,44,115,55,192xm105,-41v16,-2,12,-12,12,-35r0,-110v-1,-20,1,-30,-13,-32v-15,1,-11,12,-11,32r0,112v1,21,-2,31,12,33","w":207},{"d":"109,-323v79,0,102,43,95,138r0,54v6,94,-16,138,-95,138v-77,0,-102,-43,-95,-138r0,-54v-6,-95,16,-138,95,-138xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40"},{"d":"111,-352r-23,26r-55,0r50,-55r55,0r47,55r-53,0xm109,-323v79,0,102,43,95,138r0,54v6,94,-16,138,-95,138v-77,0,-102,-43,-95,-138r0,-54v-6,-95,16,-138,95,-138xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40"},{"d":"100,-264v62,3,96,28,93,96r0,63v3,75,-23,110,-90,110v-67,0,-91,-28,-91,-101v0,-91,-3,-173,88,-168xm102,-41v14,-2,12,-10,12,-27r0,-120v-2,-21,3,-28,-12,-30v-14,2,-10,10,-11,30r0,117v0,18,-2,28,11,30","w":204},{"d":"106,-316r0,48r-18,0r0,219r18,0r0,49r-90,0r0,-316r90,0","w":112,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"A":-10}},{"d":"121,-278v-1,15,-3,27,-17,31v16,7,19,15,19,44v0,41,-20,52,-57,53v-47,1,-63,-17,-59,-67r50,0v2,14,-6,40,8,40v13,0,9,-17,9,-33v0,-20,-7,-18,-30,-19r0,-27v29,1,31,0,30,-26v0,-10,-2,-11,-9,-13v-11,0,-7,15,-8,26r-50,0v-3,-41,13,-53,54,-53v40,0,60,10,60,44xm222,-322r-123,328r-30,0r124,-328r29,0xm258,-167r0,108r14,0r0,30r-14,0r0,29r-50,0r0,-29r-58,0r0,-29r42,-109r66,0xm208,-59r0,-66r-25,66r25,0","w":276},{"d":"-2,30r225,0r0,20r-225,0r0,-20","w":220},{"d":"121,-278v-1,15,-3,27,-17,31v16,7,19,15,19,44v0,41,-20,52,-57,53v-47,1,-63,-17,-59,-67r50,0v2,14,-6,40,8,40v13,0,9,-17,9,-33v0,-20,-7,-18,-30,-19r0,-27v29,1,31,0,30,-26v0,-10,-2,-11,-9,-13v-11,0,-7,15,-8,26r-50,0v-3,-41,13,-53,54,-53v40,0,60,10,60,44","w":130},{"d":"36,-242v3,-34,-5,-28,-34,-30r0,-21v24,-4,43,-14,55,-27r29,0r0,167r-50,0r0,-89","w":97},{"d":"158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0xm30,-379r70,0r34,53r-40,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"185,-314v-13,37,-54,42,-90,24v-22,-11,-34,-9,-44,13r-31,-20v24,-54,67,-36,112,-22v11,0,17,-5,21,-17xm100,-264v62,3,96,28,93,96r0,63v3,75,-23,110,-90,110v-67,0,-91,-28,-91,-101v0,-91,-3,-173,88,-168xm102,-41v14,-2,12,-10,12,-27r0,-120v-2,-21,3,-28,-12,-30v-14,2,-10,10,-11,30r0,117v0,18,-2,28,11,30","w":204},{"d":"13,-219r188,0r0,48r-188,0r0,-48xm13,-145r188,0r0,48r-188,0r0,-48","w":213},{"d":"60,-318v0,-22,19,-42,41,-41v22,0,41,19,41,41v1,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm117,-317v0,-20,-33,-21,-33,0v0,8,7,17,16,16v9,1,17,-7,17,-16xm96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32","w":201},{"d":"104,-218v-16,0,-13,21,-13,38r0,180r-77,0r0,-259r78,0r-1,24v17,-36,80,-40,100,0v12,-16,25,-29,50,-29v44,0,54,26,54,80r0,184r-76,0r0,-169v-2,-32,5,-44,-13,-49v-19,4,-13,17,-13,49r0,169r-77,0r0,-165v-3,-35,7,-47,-12,-53","w":308},{"d":"99,-316r0,316r-83,0r0,-316r83,0xm41,-377r0,51r-51,0r0,-51r51,0xm126,-377r0,51r-51,0r0,-51r51,0","w":115},{"d":"17,-5v33,-1,31,-2,24,-37r-43,-217r71,0r26,175r13,-175r71,0r-31,248v-6,53,-69,47,-131,47r0,-41","w":179,"k":{"z":-2,"x":-8,"v":-8,"t":-8,"f":-8,".":7,",":7}},{"d":"106,-218v-18,4,-13,13,-13,43r0,175r-79,0r0,-259r80,0r-1,24v11,-18,24,-29,50,-29v46,0,53,28,53,82r0,182r-79,0r0,-179v-2,-26,5,-35,-11,-39","w":209},{"d":"109,-323v39,-2,66,13,81,37r21,-27r18,14r-29,37v5,14,2,95,4,131v5,94,-16,138,-95,138v-39,0,-65,-14,-81,-38r-21,28r-18,-14r29,-37v-5,-12,-2,-96,-4,-131v-5,-95,16,-135,95,-138xm110,-269v-16,0,-14,12,-14,34r0,76r26,-34v-4,-27,10,-76,-12,-76xm109,-47v27,0,7,-73,13,-109r-26,34v3,29,-9,75,13,75"},{"d":"16,-316r140,0r0,63r-57,0r0,60r50,0r0,60r-50,0r0,133r-83,0r0,-316","w":159,"k":{"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c0":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"Y":-9,"W":-8,"V":-9,"A":8,".":21,",":21}},{"d":"17,-214v-7,-31,-12,-63,-10,-102r60,0v2,39,-3,71,-9,102r-41,0xm91,-214v-7,-31,-12,-63,-10,-102r60,0v2,39,-3,71,-9,102r-41,0","w":147},{"d":"109,-47v16,-2,12,-12,12,-36r0,-233r82,0r0,211v6,79,-24,112,-91,112v-80,0,-97,-36,-97,-136r0,-187r82,0r0,237v2,21,-2,29,12,32"},{"d":"17,-214v-7,-31,-12,-63,-10,-102r60,0v2,39,-3,71,-9,102r-41,0","w":74},{"d":"14,-177v0,-102,11,-141,95,-145v64,-3,94,28,95,90r-79,0v-1,-28,3,-38,-17,-42v-27,4,-11,57,-15,88v8,-16,24,-26,47,-26v55,0,64,46,64,110v0,76,-25,106,-92,108v-102,4,-98,-74,-98,-183xm109,-43v26,-4,16,-61,16,-91v0,-18,-1,-29,-16,-29v-28,0,-12,58,-16,87v2,22,-1,31,16,33","w":216,"k":{"7":5,"2":4}},{"d":"74,-206r0,64r-60,0r0,-64r60,0xm70,-62v5,55,-8,96,-53,102r0,-22v8,-4,13,-11,14,-18r-14,0r0,-62r53,0","w":80},{"d":"152,-250v64,-35,152,2,137,92r0,33r-102,0v4,28,-12,83,13,84v25,1,12,-42,15,-67r74,0v6,71,-21,112,-85,113v-35,0,-63,-10,-77,-30v-12,18,-31,30,-58,30v-45,0,-58,-23,-58,-76v0,-67,44,-61,85,-83v14,-4,16,-61,-1,-64v-17,1,-7,36,-10,59r-74,0v-17,-94,71,-125,141,-91xm199,-218v-19,-1,-10,32,-12,51r24,0v-1,-20,4,-50,-12,-51xm96,-41v22,-5,8,-51,12,-81v-21,15,-25,18,-26,53v0,17,0,27,14,28","w":301},{"d":"2,-322r60,0r94,328r-60,0","w":158},{"d":"111,-157r0,55r-104,0r0,-55r104,0","w":117},{"d":"12,-195v-12,-73,71,-87,102,-45r6,-19r73,0r0,199v9,86,-26,105,-97,105v-50,0,-84,-12,-84,-63r76,0v0,11,5,17,13,17v21,2,13,-26,15,-47v-37,36,-104,19,-104,-52r0,-95xm102,-76v15,-2,11,-12,12,-34r0,-80v-2,-19,3,-26,-11,-28v-13,1,-12,10,-12,28r0,87v2,19,-2,25,11,27","w":207},{"d":"101,-316r-13,238r-61,0r-13,-238r87,0xm94,-63r0,63r-73,0r0,-63r73,0","w":108},{"d":"69,-316r0,31r29,-10r8,23r-28,12r18,26r-20,15r-20,-26r-19,26r-20,-15r18,-27r-29,-11r8,-23r30,10r0,-31r25,0","w":112},{"d":"33,-316r42,0r0,159r-42,0r0,-159xm33,-107r42,0r0,159r-42,0r0,-159","w":108},{"d":"137,-259r0,57r-58,150r58,0r0,52r-135,0r0,-54r60,-153r-54,0r0,-52r129,0","w":140,"k":{"z":-7,"y":-9,"w":-8,"v":-10,"t":-6,"f":-6,".":-9,",":-9}},{"d":"59,-352r-23,26r-55,0r51,-55r55,0r47,55r-53,0xm99,-316r0,316r-83,0r0,-316r83,0","w":115},{"d":"155,-192r34,0r0,34r-44,0r-13,44r57,0r0,33r-57,0r0,81r-77,0r0,-81r-55,0r0,-33r55,0r-12,-44r-43,0r0,-34r33,0r-35,-124r75,0v12,62,19,103,20,124v5,-34,12,-75,23,-124r76,0","w":189},{"d":"208,-104v2,79,-7,104,-96,104r-96,0r0,-316r82,0v74,-1,104,16,104,90v-1,39,-10,46,-43,55v36,9,49,23,49,67xm99,-192v36,9,27,-34,24,-61v-5,-9,-10,-8,-24,-9r0,70xm99,-54v41,8,27,-56,22,-84v-3,-3,-10,-5,-22,-5r0,89","w":220},{"d":"74,-206r0,64r-60,0r0,-64r60,0xm74,-64r0,64r-60,0r0,-64r60,0","w":80},{"d":"95,-316r0,41r-81,0r0,-41r81,0xm95,-259r0,259r-81,0r0,-259r81,0","w":109},{"d":"99,-264v79,-2,100,52,94,139r-102,0v4,27,-12,84,12,84v24,0,12,-42,15,-67r75,0v5,74,-22,113,-89,113v-63,0,-92,-29,-92,-99r0,-76v-2,-64,29,-93,87,-94xm103,-218v-19,-1,-9,27,-12,51r23,0v-2,-21,6,-51,-11,-51","w":204},{"d":"12,-171v-21,-106,136,-120,169,-47v5,13,7,33,7,57r-74,0v-2,-21,8,-57,-12,-57v-13,0,-10,9,-11,27r0,122v0,14,1,28,13,28v22,0,12,-41,14,-66r70,0v5,75,-22,109,-88,112v-95,6,-90,-83,-88,-176","w":197},{"d":"143,5v-24,0,-37,-12,-50,-27r0,59r-79,0r0,-296r80,0r-1,23v12,-15,26,-28,51,-28v77,-1,47,112,52,186v4,56,-9,83,-53,83xm105,-41v15,-2,12,-11,12,-32r0,-111v-2,-24,4,-32,-12,-34v-15,2,-12,11,-12,34r0,108v1,24,-3,32,12,35","w":207},{"d":"184,-259r-32,103r42,156r-76,0r-25,-113r0,113r-79,0r0,-316r79,0r0,133r25,-76r66,0","w":191},{"d":"62,-137v-9,-78,78,-170,129,-96r3,-22r39,0r-26,161v0,5,3,8,8,8v37,-8,59,-48,59,-96v1,-64,-44,-112,-108,-112v-78,0,-130,62,-130,143v0,79,51,138,127,137v42,-1,72,-16,99,-37r41,0v-29,39,-80,64,-140,66v-89,1,-156,-71,-156,-164v0,-95,60,-176,158,-174v90,2,133,54,138,141v4,67,-47,126,-100,128v-17,0,-27,-7,-31,-22v-40,51,-120,9,-110,-61xm152,-231v-36,0,-49,64,-49,106v0,22,8,43,28,43v41,-1,46,-69,49,-110v2,-21,-10,-39,-28,-39","w":309},{"d":"105,-218v-13,3,-12,13,-12,33r0,185r-79,0r0,-316r79,0r0,71v12,-11,26,-19,47,-19v46,0,56,26,56,85r0,179r-78,0r0,-182v-2,-22,3,-34,-13,-36","w":209},{"d":"16,-239v-8,-80,32,-76,102,-77r0,41v-32,-1,-30,3,-30,36r0,162v1,32,-1,36,30,36r0,41v-70,0,-102,2,-102,-77r0,-162","w":125,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"A":-10}},{"d":"23,-242r47,0r-17,106r17,112r-47,0r-16,-112xm95,-242r46,0r-16,106r16,112r-46,0r-16,-112","w":148},{"d":"90,-70r17,-189r70,0r-37,259r-103,0r-39,-259r70,0","w":174,"k":{"z":-4,"y":-12,"t":-11,"f":-11,".":7,",":7}},{"d":"12,-96v0,-80,-1,-153,69,-156v13,0,24,4,33,11v-2,-14,-8,-28,-15,-40r-37,10r-6,-17r33,-9v-7,-9,-13,-15,-17,-19v20,2,50,-6,58,8r32,-8r5,17r-22,6v40,42,48,110,48,201v0,65,-29,97,-92,97v-66,0,-89,-26,-89,-101xm103,-41v11,-2,10,-12,11,-30r0,-106v-2,-21,3,-27,-12,-29v-11,1,-11,10,-11,26r0,111v0,18,0,27,12,28","w":204},{"d":"153,-316r0,69r-50,247r-79,0r56,-259r-78,0r0,-57r151,0","w":156,"k":{"7":-7,"4":8,"3":-5,"1":-9}},{"d":"212,-316r-42,316r-125,0r-47,-316r86,0v10,87,18,161,22,221r19,-221r87,0","w":209,"k":{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00c6":5,"\u00c5":5,"\u00c4":5,"y":-8,"Y":-10,"J":11,"A":5,"\/":14,".":15,",":15}},{"d":"99,-323v65,0,99,25,92,102r-77,0v-2,-19,6,-48,-12,-48v-20,0,-17,36,-11,48v47,48,106,49,106,140v0,68,-33,88,-91,88v-71,0,-102,-38,-94,-120r76,0v3,24,-9,65,15,66v24,1,16,-54,9,-62v-31,-34,-102,-49,-102,-125v0,-67,30,-89,89,-89","w":206},{"d":"85,-352r-23,26r-55,0r50,-55r55,0r47,55r-53,0xm16,-316r138,0r0,63r-55,0r0,60r51,0r0,60r-51,0r0,70r60,0r0,63r-143,0r0,-316","w":166,"k":{"T":5}},{"d":"192,-316r-60,202r0,114r-77,0r0,-114r-57,-202r75,0v12,62,19,103,20,124v5,-34,12,-75,23,-124r76,0","w":189,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00e6":18,"\u00c6":20,"\u00e7":18,"\u00c5":20,"\u00c4":20,"s":13,"q":12,"o":18,"g":13,"e":18,"d":12,"c":18,"a":18,"J":18,"A":20,"\/":33,".":34,",":34}},{"d":"122,0v-72,1,-104,5,-104,-80r0,-132r-17,0r0,-41r17,0r0,-41r79,0r0,41r22,0r0,41r-22,0r0,139v2,32,-5,30,25,31r0,42","w":121,"k":{"z":-9,"y":-8,"v":-7,".":-12,",":-12}},{"d":"156,-322r-94,328r-60,0r95,-328r59,0","w":158},{"d":"205,-316r0,316r-82,0r0,-133r-24,0r0,133r-83,0r0,-316r83,0r0,113r24,0r0,-113r82,0","w":222},{"d":"7,-207r60,0r17,-75r37,0r-17,75r69,0r16,-75r37,0r-16,75r34,0r0,37r-41,0r-12,59r53,0r0,37r-60,0r-16,74r-37,0r16,-74r-70,0r-15,74r-38,0r16,-74r-33,0r0,-37r41,0r12,-59r-53,0r0,-37xm97,-170r-12,59r69,0r12,-59r-69,0","w":250},{"d":"96,-218v-19,-1,-8,35,-11,59r-74,0v-7,-74,24,-105,89,-105v84,0,88,35,88,134r0,130r-76,0r0,-23v-21,46,-101,36,-101,-35v0,-58,6,-66,54,-85v39,-16,45,-6,45,-42v0,-22,1,-32,-14,-33xm98,-41v22,-3,8,-54,12,-82v-22,17,-24,18,-25,50v0,21,-2,30,13,32","w":201},{"d":"194,-169v0,76,-17,108,-95,101r0,68r-83,0r0,-316r83,0r0,59v70,0,95,16,95,88xm99,-123v37,9,27,-50,21,-75v-3,-3,-10,-5,-21,-5r0,80","w":200},{"d":"12,-173v-4,-74,20,-102,75,-115r0,-27r36,0r0,27v50,12,78,39,73,108r-79,0v-3,-25,9,-62,-13,-61v-16,2,-12,10,-13,32r0,121v0,22,-2,33,13,33v25,0,14,-40,17,-70r75,0v3,69,-18,106,-73,118r0,32r-36,0r0,-32v-51,-12,-81,-37,-75,-108r0,-58","w":206},{"d":"104,-302r-23,25r-55,0r50,-55r55,0r47,55r-53,0xm100,-264v62,3,96,28,93,96r0,63v3,75,-23,110,-90,110v-67,0,-91,-28,-91,-101v0,-91,-3,-173,88,-168xm102,-41v14,-2,12,-10,12,-27r0,-120v-2,-21,3,-28,-12,-30v-14,2,-10,10,-11,30r0,117v0,18,-2,28,11,30","w":204},{"d":"12,-220r189,0r0,124r-48,0r0,-76r-141,0r0,-48","w":213},{"d":"50,-24v0,-57,2,-74,-43,-81r0,-47v37,-4,43,-20,43,-68v0,-76,19,-99,91,-96r0,46v-33,1,-39,1,-40,29v-3,67,2,84,-37,112v38,18,35,72,38,125v5,15,12,16,38,16r0,47v-66,2,-90,-14,-90,-83","w":147,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"A":-10}},{"d":"72,50v0,-11,-9,-14,-21,-13r0,-39r23,0r0,24v14,0,29,11,28,26v0,41,-73,52,-80,6r29,0v3,12,21,10,21,-4","w":133},{"d":"70,-196v-34,0,-63,-31,-63,-61v0,-34,29,-64,62,-64v33,0,63,30,63,63v0,33,-29,62,-62,62xm69,-288v-16,0,-30,15,-30,29v-1,17,14,31,30,31v15,1,30,-15,30,-30v0,-15,-15,-30,-30,-30","w":138},{"d":"269,-259r-31,259r-86,0v-5,-32,-10,-73,-16,-125v-4,42,-12,84,-18,125r-86,0r-33,-259r68,0v1,7,6,56,17,148v1,-9,7,-59,18,-148r65,0r16,148v2,-43,8,-92,18,-148r68,0","w":267,"k":{"z":-3,"y":-10,"f":-9}},{"d":"106,-322v63,0,101,42,89,108r-71,0v-3,-25,10,-65,-15,-67v-42,5,2,81,0,101r50,0r0,54r-45,0v0,35,-13,62,-38,80v33,-6,73,16,62,-43r67,0v2,57,-4,99,-59,95v-36,-2,-102,-27,-132,0r0,-46v22,-12,28,-51,28,-86r-28,0r0,-54r19,0v-39,-66,-5,-142,73,-142","w":214},{"d":"16,-254v-3,-60,85,-90,134,-53v15,11,21,30,21,58r-62,0v7,-23,-24,-34,-28,-13v18,47,106,64,106,120v0,24,-15,42,-43,55v17,20,32,35,34,63v3,59,-89,92,-135,51v-14,-12,-21,-31,-21,-56r63,0v-4,27,24,35,27,13v-23,-52,-104,-61,-105,-120v0,-21,14,-40,42,-56v-17,-17,-32,-34,-33,-62xm75,-170v-26,29,31,44,44,61v23,-31,-27,-41,-44,-61","w":193},{"d":"175,-316r0,206r22,0r0,54r-22,0r0,56r-79,0r0,-56r-94,0r0,-54r69,-206r104,0xm96,-110r0,-134r-35,134r35,0","w":199,"k":{"7":7,"1":9}},{"d":"182,-316r0,63r-49,0r0,253r-82,0r0,-253r-49,0r0,-63r180,0","w":184,"k":{"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c0":16,"\u00e6":17,"\u00c6":16,"\u00e7":17,"\u00c5":16,"\u00c4":16,"y":-8,"w":-8,"v":-8,"e":17,"c":17,"a":17,"Z":3,"Y":-10,"W":-9,"V":-10,"J":18,"A":16,"\/":30,".":33,"-":27,",":33}},{"d":"192,-363v-12,37,-55,41,-90,23v-22,-12,-34,-8,-44,14r-31,-21v24,-55,68,-35,112,-21v11,0,17,-6,21,-18xm109,-323v79,0,102,43,95,138r0,54v6,94,-16,138,-95,138v-77,0,-102,-43,-95,-138r0,-54v-6,-95,16,-138,95,-138xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40"},{"d":"16,-316r138,0r0,63r-55,0r0,60r51,0r0,60r-51,0r0,70r60,0r0,63r-143,0r0,-316","w":166,"k":{"T":5}},{"d":"67,-64r0,64r-60,0r0,-64r60,0","w":73},{"d":"158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0xm168,-379r-64,53r-40,0r35,-53r69,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"114,-215r0,-63r74,0r0,63r-74,0xm100,-1v22,0,11,-34,14,-63r79,0v4,77,-25,109,-92,109v-82,0,-100,-58,-94,-149v-14,-71,70,-109,107,-61r0,-33r74,0r0,86r-72,0v0,-12,-5,-18,-13,-18v-28,2,-15,63,-15,100v0,17,-1,29,12,29","w":209},{"d":"158,-316r47,316r-84,0r-4,-57r-29,0r-5,57r-85,0r41,-316r119,0xm115,-113v-4,-36,-9,-80,-13,-133v-8,60,-13,105,-15,133r28,0","w":203,"k":{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c6":-10,"\u00c5":-10,"\u00c4":-10,"}":-10,"z":-10,"x":-10,"]":-10,"Z":-10,"Y":24,"X":-10,"W":7,"V":9,"T":22,"J":-10,"A":-10,"\/":-10,".":-10,",":-10,")":-10}},{"d":"100,-264v62,3,96,28,93,96r0,63v3,75,-23,110,-90,110v-67,0,-91,-28,-91,-101v0,-91,-3,-173,88,-168xm102,-41v14,-2,12,-10,12,-27r0,-120v-2,-21,3,-28,-12,-30v-14,2,-10,10,-11,30r0,117v0,18,-2,28,11,30xm85,-327r0,51r-51,0r0,-51r51,0xm170,-327r0,51r-51,0r0,-51r51,0","w":204},{"d":"109,-323v79,0,102,43,95,138r0,54v6,94,-16,138,-95,138v-77,0,-102,-43,-95,-138r0,-54v-6,-95,16,-138,95,-138xm109,-47v18,-3,13,-15,13,-43r0,-145v-1,-23,3,-31,-12,-34v-15,3,-14,10,-14,34r0,148v3,26,-4,37,13,40xm43,-379r70,0r34,53r-40,0"},{"d":"99,-316r0,316r-83,0r0,-316r83,0","w":115},{"d":"98,-316r0,41r-82,0r0,-41r82,0xm-1,-5v28,0,17,-5,17,-42r0,-212r82,0r0,205v8,80,-23,95,-99,90r0,-41","w":111},{"d":"95,-259r0,259r-81,0r0,-259r81,0xm-11,-329r70,0r34,53r-40,0","w":109},{"d":"109,-47v16,-2,12,-12,12,-36r0,-233r82,0r0,211v6,79,-24,112,-91,112v-80,0,-97,-36,-97,-136r0,-187r82,0r0,237v2,21,-2,29,12,32xm176,-379r-64,53r-40,0r35,-53r69,0"},{"d":"111,-157r0,55r-104,0r0,-55r104,0","w":117},{"d":"60,-62v5,55,-8,95,-53,102r0,-22v8,-4,12,-11,13,-18r-13,0r0,-62r53,0","w":67},{"d":"195,-239v1,38,-9,45,-33,60v33,14,35,27,36,84v2,70,-26,100,-93,101v-82,0,-99,-41,-93,-132r79,0v5,28,-12,82,13,83v23,0,15,-35,15,-65v0,-35,-9,-42,-47,-41r0,-46v49,5,47,-10,47,-51v0,-18,0,-27,-14,-28v-21,-1,-12,34,-14,56r-79,0v-4,-73,13,-104,86,-104v69,0,95,23,97,83","w":212,"k":{"7":4}},{"d":"155,-165v42,14,45,22,45,82r0,83r-76,0v-2,-43,4,-103,-4,-137v-3,-4,-10,-6,-21,-6r0,143r-83,0r0,-316r59,0v92,-2,125,5,125,86v0,48,-5,59,-45,65xm99,-192v34,9,29,-45,19,-65v-4,-3,-9,-5,-19,-5r0,70","w":215}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+161-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("VdaENILX.+5_VW{7}I8gZdZ5,[LEaI5_,[sg.+(%a3mC6tXM,en*qda0rXLr}OG*a+(U,en*qd6j,en*qd(~,en*qd3M+{jEq2Y~L38r}OG*aIsr}OG*aI8r}OG*6IZ0,en*qdnX,en*qd6o,en*qdU!,en*qdu[,en*qd(I+8jEq2YIq{jEq2YMa8jEq2YML8jEq2Y~L8jEq2YRB8jEq2YIB3}r}OG*6OY0,en*qd3R,en*qd(0,en*qduj,en*qd8I,en*qd3{r%Rr}OG*aIn|,en*qdnoq+jr}OG*aO{5BEjEq2YM6+YI,en*qdnjr3jEq2Y060*I,en*qdq!}3jEq2YML3jEq2Y{a{jEq2Y{qU$uD8jEq2Y0q8jEq2Y~B8jEq2Y~6{jEq2Y~L{jEq2Y~LEjEq2YRLW3r}OG*6+3r}OG*aOZow8jEq2Y~qEjEq2YM6EjEq2Y~q{jEq2YIa{!r}OG*a~Lr}OG*aOr!,en*qdZj,On:,en*qduH,en*qdZ[,en*qd8R,en*qdut,en*qdUj,en*qda~,en*qdL~,en*qdnt,en*qdu!V,!L,en*qdL0q8jEq2UjqWbr}OG*6~sr}OG*a~r#(tsp,en*qdZHOIsD,en*qduXNEbr}OG*6I3w,en*qdZt,en*qdZ!,en*qdq*,en*qd6ED3jEq2Y{L+Er}OG*6[a!N{jEq2Y0BUarZ{n%L{jEq2qHa3jEq2Y{L{jrp+rRV{jEq2YRL%$r}OG*6[3r}OG*6O3WBI{{6HYTud|-,en*qd8M}{jEq2YIq2}+nEjEq2Y~63{X,W5ZZ[8r}OG*ad3r}OG*6Osr}OG*a~(r}OG*6+L7,en*qdZo,en*qdZ*}EjEq2YRqEjEq2YRLt(n,en*qduE(=!r}OG*6t8r}OG*GYW2U8deZsVpqLBDu(=On3+,6a.Nr}Qw|RM~0{I%-$hTCb_i*jgtXE[Ho!)7m5:#6IaY,en*qd6[,en*qdug=+$r}OG*a+Lr}OG*ad8r}OG*6+uCqEZMp%L*Nd{XVWZMV=j$DOGCr2EMp%GCN2E*pIj{NI}X.Wj%D+Z_aM!%Ne{*.eq5QHX7.+6-6M!i.tXi,M|#B%}H}E*_VOm-Dt$HNHsCae(g6+!t,W!0.Hj0a,arp%}irIj0}esRN%LrpI(Twe}irIj0}esRN%LrpI({}M00p[0_}d3t}WRCN[LR}d{iNM!-NHLXNI8ba=0$aI5gV2b$Dd*7Vgb$V+}N6Eb$,3X5r8b$,,X$VW0|")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":218,"face":{"font-family":"Impact","font-weight":400,"font-stretch":"condensed","units-per-em":"400","panose-1":"2 11 8 6 3 9 2 5 2 4","ascent":"320","descent":"-80","x-height":"5","bbox":"-21 -404 326 83.9333","underline-thickness":"19.9219","underline-position":"-30.0781","unicode-range":"U+0020-U+00FF"}}));

Cufon.replace('#langmenu ul li a, h1, #tip h3, .cufon, #schedules a');

Cufon.replace('#wt_statements p', {
	textShadow: '#333333 2px 2px'
});
/*
 * jQuery Plugin: clearOnFocus
 * Version 1.0
 *
 * Copyright (c) 2009 David Comeau (http://www.davecomeau.net)
 * Licensed jointly under the GPL and MIT licenses.
 *
 */

(function($) {
	$.fn.clearOnFocus = function() {
		
		function clearOnFocusFocus(event)
		{
			if($(this).val() == $(this).data('clearOnFocus'))
			{
				$(this).val('').removeClass('default');
				
			}
		}
		
		function clearOnFocusBlur(event)
		{
			if($.trim($(this).val()) == '')
			{
				$(this).val($(this).data('clearOnFocus')).addClass('default');
			}
		}
		
		return this.each(function()
			{
				$(this).data('clearOnFocus', $(this).attr('value')).addClass('default');
				
				//	unbind any previous listeners
				$(this).unbind('focus', clearOnFocusFocus);
				$(this).unbind('blur', clearOnFocusBlur);
				
				//	bind listeners to the functions
				$(this).bind('focus', clearOnFocusFocus);
				$(this).bind('blur', clearOnFocusBlur);
			}
		);
	};
})(jQuery);
(function($) {
	$.fn.wtTip = function() {
		var $this = this;
		
		if($this.length>1) {
			console.log('wtTip expects there to be only one TIP.');
			return this;
		}
		
		$this.submit(function(e){
			
			var width = parseInt(screen.availWidth,10),
				height = parseInt(screen.availHeight,10),
				left = 0,
				top = 0;
	
			window.open('','tipWindow',"directories=no,resizable=yes,toolbar=no,scrollbars=yes,menubar=no,status=no,width="+width+",height="+height+",left="+left+",top="+top+"");
		});

		return this;
	};
})(jQuery);
(function($) {
	$.fn.wtTags = function() {
		var $this = this;
		
		if($this.length>1) {
			console.log('wtTags expects there to be only one tag-div.');
			return this;
		}
		
		var toggleTag = function($tagContainer) {
			$tagContainer.removeClass('active');

			if($('.tag-container.active').length > 0) {
				toggleTag($('.tag-container.active'));
			}

			var right = 0;

			if(parseInt($tagContainer.css('right'),10)==0) {
				right = -330;
			}

			if(right==0) {
				$tagContainer.addClass('active').animate({right:right});
			} else {
				$tagContainer.animate({right:right}, function(){
					$(this).removeClass('active');
				});
			}
		};
		
		$('#tags .tag, #tags .tag-close').click(function(){
			var $tagContainer = $(this).closest('.tag-container');
			toggleTag($tagContainer);
		});

		return this;
	};
})(jQuery);
(function($) {
	$.fn.wtSchedules = function() {
		var $this = this;
		
		if($this.length>1) {
			console.log('wtSchedules expects there to be only one div.');
			return this;
		}
		
		var api = $('#overlay_box').overlay({
			target:'#overlay_box',
			api:true
		});
		
		$('li a', $this).click(function(e){
			var $this = $(this);
			e.preventDefault();
			$('#overlay_content')
				.html('<div class="ajaxspinner"><img src="fileadmin/templates/main/Images/ajax-loader.gif" alt="" width="32" height="32" /></div>')
				.load($this.attr('href'));
			
			api.load();
		});
		
		
		
		$('#scheduledropdown').live('change', function() {
			var did = $('#scheduledropdown').val();
			$('.destinationcontent').html('<h3 class="align-center">Updating, please wait...</h3>');
			$(".destinationcontent").load(did+" .destinationcontent");
		});


		$('.scheduleprint a').live('click', function(e) {
			var url = $('#scheduledropdown option:selected').attr('value');
			$(this).attr('href',url+'&print=1');
		});


		return this;
	};
})(jQuery);

(function($) {
	$.fn.wtStaff = function() {
		var $this = this;

		if($this.length>1) {
			console.log('wtStaff expects there to be only one div.');
			return this;
		}

		var api = $('#overlay_box').overlay({
			target:'#overlay_box',
			api:true
		});

		$('a', $this).click(function(e){
			var $this = $(this);
			e.preventDefault();
			$('#overlay_content')
				.html('<div class="ajaxspinner"><img src="fileadmin/templates/main/Images/ajax-loader.gif" alt="" width="32" height="32" /></div>')
				.load($this.attr('href'));
			api.load();
		});

		return this;
	};
})(jQuery);

(function($) {
	$.fn.wtStatements = function() {
		var $this = this;

		if($this.length>1) {
			console.log('wtStatements expects there to be only one div.');
			return this;
		}

		$this.cycle();

		return this;
	};
})(jQuery);

(function($) {
	$.fn.wtScrollable = function() {
		var $this = this;

		if($this.length>1) {
			console.log('wtScrollable expects there to be only one div.');
			return this;
		}

		// Enable scrollable
		$this
			.scrollable({circular: false})
			.navigator();
			
		// Slide the whole content pane up
		if(window.location.hash !== '#skip-slide') {
			setTimeout(function(){
				$this.parent()
					.show()
					.animate({height: 315});
			}, 500);
		} else {
			$this.parent().css({height:315}).show();
		}
		
		// Add #skip-slide to sibling-pages
		$('#menu ul li ul li a').each(function(){
			var href = $(this).attr('href');
			$(this).attr('href', href+'#skip-slide');
		});
		
		// Scroll down
		$('#menu a').click(function(e){
			var $a = $(this),
				href = $a.attr('href');

			e.preventDefault();

			if(href.substring(href.length-10,href.length) !== 'skip-slide' && $this.parent().length > 0) {
				$this.parent().animate({height:0}, function(){
					$this.parent().hide();
					window.location = href;
				});
			} else {
				window.location = href;
			}
			

		});

		return this;
	};
})(jQuery);

(function($) {
	$(function(){
		$.ajaxSetup({
			cache: false
		});

		$('#tipForm .tipinput').clearOnFocus();
		$('#tipForm').wtTip();
		$('#tags').wtTags();
		$('#schedules').wtSchedules();
		$('.staff-departments').wtStaff();
		$('#wt_statements').wtStatements();
		$('#scrollable').wtScrollable();
	});
})(jQuery);

var browserName=navigator.appName;var browserVer=parseInt(navigator.appVersion);var version="";var msie4=(browserName=="Microsoft Internet Explorer"&&browserVer>=4);if((browserName=="Netscape"&&browserVer>=3)||msie4||browserName=="Konqueror"||browserName=="Opera"){version="n3";}else{version="n2";}
function blurLink(theObject){if(msie4){theObject.blur();}}
function decryptCharcode(n,start,end,offset){n=n+offset;if(offset>0&&n>end){n=start+(n-end-1);}else if(offset<0&&n<start){n=end-(start-n-1);}
return String.fromCharCode(n);}
function decryptString(enc,offset){var dec="";var len=enc.length;for(var i=0;i<len;i++){var n=enc.charCodeAt(i);if(n>=0x2B&&n<=0x3A){dec+=decryptCharcode(n,0x2B,0x3A,offset);}else if(n>=0x40&&n<=0x5A){dec+=decryptCharcode(n,0x40,0x5A,offset);}else if(n>=0x61&&n<=0x7A){dec+=decryptCharcode(n,0x61,0x7A,offset);}else{dec+=enc.charAt(i);}}
return dec;}
function linkTo_UnCryptMailto(s){location.href=decryptString(s,-2);}var _gaq=_gaq||[];_gaq.push(['_setAccount','UA-6037150-1']);_gaq.push(['_trackPageview']);(function(){var ga=document.createElement('script');ga.type='text/javascript';ga.async=true;ga.src=('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga,s);})();
