/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};

/*
 * jquery.tools 1.1.0 - The missing UI library for the Web
 * 
 * [tools.scrollable-1.1.0, tools.scrollable.circular-0.5.0, tools.scrollable.navigator-1.0.0, tools.scrollable.mousewheel-1.0.0]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * jquery.event.wheel.js - rev 1 
 * Copyright (c) 2008, Three Dub Media (http://threedubmedia.com)
 * Liscensed under the MIT License (MIT-LICENSE.txt)
 * http://www.opensource.org/licenses/mit-license.php
 * Created: 2008-07-01 | Updated: 2008-07-14
 * 
 * -----
 * 
 * File generated: Thu Sep 03 16:26:01 GMT+00:00 2009
 */
(function(c){c.tools=c.tools||{};c.tools.scrollable={version:"1.1.0",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var d,a=0;function b(r,o,m){var t=this,e=!o.vertical,f=r.children(),l=0,j;if(!d){d=t}function p(u,v){c(t).bind(u,function(x,w){if(v&&v.call(this,w.index)===false&&w){w.proceed=false}});return t}c.each(o,function(u,v){if(c.isFunction(v)){p(u,v)}});if(f.length>1){f=c(o.items,r)}function n(v){var u=c(v);return m==1||u.length==1||o.globalNav?u:r.parent().find(v)}r.data("finder",n);var g=n(o.prev),i=n(o.next),h=n(o.prevPage),q=n(o.nextPage);c.extend(t,{getIndex:function(){return l},getConf:function(){return o},getSize:function(){return t.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/o.size)},getPageIndex:function(){return Math.ceil(l/o.size)},getNaviButtons:function(){return g.add(i).add(h).add(q)},getRoot:function(){return r},getItemWrap:function(){return f},getItems:function(){return f.children(o.item)},getVisibleItems:function(){return t.getItems().slice(l,l+o.size)},seekTo:function(u,y,v){if(y===undefined){y=o.speed}if(c.isFunction(y)){v=y;y=o.speed}if(u<0){u=0}if(u>t.getSize()-o.size){return this.end()}var w=t.getItems().eq(u);if(!w.length){return t}var x={index:u,proceed:true};c(t).trigger("onBeforeSeek",x);if(!x.proceed){return t}function z(){if(v){v.call(t)}c(t).trigger("onSeek",x)}if(e){f.animate({left:-w.position().left},y,o.easing,z)}else{f.animate({top:-w.position().top},y,o.easing,z)}d=t;l=u;return t},move:function(w,v,u){j=w>0;return this.seekTo(l+w,v,u)},next:function(v,u){return this.move(1,v,u)},prev:function(v,u){return this.move(-1,v,u)},movePage:function(y,x,w){j=y>0;var u=o.size*y;var v=l%o.size;if(v>0){u+=(y>0?-v:o.size-v)}return this.move(u,x,w)},prevPage:function(v,u){return this.movePage(-1,v,u)},nextPage:function(v,u){return this.movePage(1,v,u)},setPage:function(v,w,u){return this.seekTo(v*o.size,w,u)},begin:function(v,u){return this.seekTo(0,v,u)},end:function(v,u){var w=this.getSize()-o.size;return w>0?this.seekTo(w,v,u):t},reload:function(){c(t).trigger("onReload",{});return t},onBeforeSeek:function(u){return p("onBeforeSeek",u)},onSeek:function(u){return p("onSeek",u)},onReload:function(u){return p("onReload",u)},focus:function(){d=t;return t},click:function(w){var x=t.getItems().eq(w),u=o.activeClass,v=o.size;if(w<0||w>=t.getSize()){return t}if(v==1){if(w===0||w==t.getSize()-1){j=(j===undefined)?true:!j}return j===false?t.prev():t.next()}if(v==2){if(w==l){w--}t.getItems().removeClass(u);x.addClass(u);return t.seekTo(w,time,fn)}if(!x.hasClass(u)){t.getItems().removeClass(u);x.addClass(u);var z=Math.floor(v/2);var y=w-z;if(y>t.getSize()-v){y=t.getSize()-v}if(y!==w){return t.seekTo(y)}}return t}});g.addClass(o.disabledClass).click(function(){t.prev()});i.click(function(){t.next()});q.click(function(){t.nextPage()});h.addClass(o.disabledClass).click(function(){t.prevPage()});t.onSeek(function(u){if(u===0){g.add(h).addClass(o.disabledClass)}else{g.add(h).removeClass(o.disabledClass)}if(u>=t.getSize()-o.size){i.add(q).addClass(o.disabledClass)}else{i.add(q).removeClass(o.disabledClass)}});var k=o.hoverClass,s="keydown."+Math.random().toString().substring(10);t.onReload(function(){if(k){t.getItems().hover(function(){c(this).addClass(k)},function(){c(this).removeClass(k)})}if(o.clickable){t.getItems().each(function(u){c(this).unbind("click.scrollable").bind("click.scrollable",function(v){if(c(v.target).is("a")){return}return t.click(u)})})}if(o.keyboard){c(document).bind(s,function(u){if(u.altKey||u.ctrlKey){return}if(o.keyboard!="static"&&d!=t){return}var v=o.keyboardSteps;if(e&&(u.keyCode==37||u.keyCode==39)){t.move(u.keyCode==37?-v:v);return u.preventDefault()}if(!e&&(u.keyCode==38||u.keyCode==40)){t.move(u.keyCode==38?-v:v);return u.preventDefault()}return true})}else{c(document).unbind(s)}});t.reload()}c.fn.scrollable=function(e){var f=this.eq(typeof e=="number"?e:0).data("scrollable");if(f){return f}var g=c.extend({},c.tools.scrollable.conf);c.extend(g,e);g.keyboardSteps=g.keyboardSteps||g.size;a+=this.length;this.each(function(){f=new b(c(this),g);c(this).data("scrollable",f)});return g.api?f:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.circular={version:"0.5.0",conf:{api:false,clonedClass:"cloned"}};b.fn.circular=function(e){var d=b.extend({},a.plugins.circular.conf),c;b.extend(d,e);this.each(function(){var i=b(this).scrollable(),n=i.getItems(),k=i.getConf(),f=i.getItemWrap(),j=0;if(i){c=i}if(n.length<k.size){return false}n.slice(0,k.size).each(function(o){b(this).clone().appendTo(f).click(function(){i.click(n.length+o)}).addClass(d.clonedClass)});var l=b.makeArray(n.slice(-k.size)).reverse();b(l).each(function(o){b(this).clone().prependTo(f).click(function(){i.click(-o-1)}).addClass(d.clonedClass)});var m=f.children(k.item);var h=k.hoverClass;if(h){m.hover(function(){b(this).addClass(h)},function(){b(this).removeClass(h)})}function g(o){var p=m.eq(o);if(k.vertical){f.css({top:-p.position().top})}else{f.css({left:-p.position().left})}}g(k.size);b.extend(i,{move:function(s,r,p,q){var u=j+s+k.size;var t=u>i.getSize()-k.size;if(u<0||t){var o=j+k.size+(t?-n.length:n.length);g(o);u=o+s}if(q){m.removeClass(k.activeClass).eq(u+Math.floor(k.size/2)).addClass(k.activeClass)}return i.seekTo(u,r,p)},begin:function(p,o){return this.seekTo(k.size,p,o)},end:function(p,o){return this.seekTo(n.length,p,o)},click:function(p,r,q){if(!k.clickable){return self}if(k.size==1){return this.next()}var s=p-j,o=k.activeClass;s-=Math.floor(k.size/2);return this.move(s,r,q,true)},getIndex:function(){return j},setPage:function(p,q,o){return this.seekTo(p*k.size+k.size,q,o)},getPageAmount:function(){return Math.ceil(n.length/k.size)},getPageIndex:function(){if(j<0){return this.getPageAmount()-1}if(j>=n.length){return 0}return(j+k.size)/k.size-1},getVisibleItems:function(){var o=j+k.size;return m.slice(o,o+k.size)}});i.onSeek(function(o){j=o-k.size;i.getNaviButtons().removeClass(k.disabledClass)});i.getNaviButtons().removeClass(k.disabledClass)});return d.api?c:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.navigator={version:"1.0.0",conf:{navi:".navi",naviItem:null,activeClass:"active",indexed:false,api:false}};b.fn.navigator=function(e){var d=b.extend({},a.plugins.navigator.conf),c;if(typeof e=="string"){e={navi:e}}b.extend(d,e);this.each(function(){var i=b(this).scrollable(),f=i.getRoot(),l=f.data("finder").call(null,d.navi),g=null,k=i.getNaviButtons();if(i){c=i}i.getNaviButtons=function(){return k.add(l)};function j(){if(!l.children().length||l.data("navi")==i){l.empty();l.data("navi",i);for(var m=0;m<i.getPageAmount();m++){l.append(b("<"+(d.naviItem||"a")+"/>"))}g=l.children().each(function(n){b(this).click(function(o){i.setPage(n);return o.preventDefault()});if(d.indexed){b(this).text(n)}})}else{g=d.naviItem?l.find(d.naviItem):l.children();g.each(function(n){var o=b(this);o.click(function(p){i.setPage(n);return p.preventDefault()})})}g.eq(0).addClass(d.activeClass)}i.onSeek(function(n){var m=d.activeClass;g.removeClass(m).eq(i.getPageIndex()).addClass(m)});i.onReload(function(){j()});j();var h=g.filter("[href="+location.hash+"]");if(h.length){i.move(g.index(h))}});return d.api?c:this}})(jQuery);
(function(b){b.fn.wheel=function(e){return this[e?"bind":"trigger"]("wheel",e)};b.event.special.wheel={setup:function(){b.event.add(this,d,c,{})},teardown:function(){b.event.remove(this,d,c)}};var d=!b.browser.mozilla?"mousewheel":"DOMMouseScroll"+(b.browser.version<"1.9"?" mousemove":"");function c(e){switch(e.type){case"mousemove":return b.extend(e.data,{clientX:e.clientX,clientY:e.clientY,pageX:e.pageX,pageY:e.pageY});case"DOMMouseScroll":b.extend(e,e.data);e.delta=-e.detail/3;break;case"mousewheel":e.delta=e.wheelDelta/120;break}e.type="wheel";return b.event.handle.call(this,e,e.delta)}var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.mousewheel={version:"1.0.0",conf:{api:false,speed:50}};b.fn.mousewheel=function(g){var f=b.extend({},a.plugins.mousewheel.conf),e;if(typeof g=="number"){g={speed:g}}b.extend(f,g);this.each(function(){var h=b(this).scrollable();if(h){e=h}h.getRoot().wheel(function(i,j){h.move(j<0?1:-1,f.speed||50);return false})});return f.api?e:this}})(jQuery);

// t: current time, b: begInnIng value, c: change In value, d: duration
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('h.i[\'1a\']=h.i[\'z\'];h.O(h.i,{y:\'D\',z:9(x,t,b,c,d){6 h.i[h.i.y](x,t,b,c,d)},17:9(x,t,b,c,d){6 c*(t/=d)*t+b},D:9(x,t,b,c,d){6-c*(t/=d)*(t-2)+b},13:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t+b;6-c/2*((--t)*(t-2)-1)+b},X:9(x,t,b,c,d){6 c*(t/=d)*t*t+b},U:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t+1)+b},R:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t+b;6 c/2*((t-=2)*t*t+2)+b},N:9(x,t,b,c,d){6 c*(t/=d)*t*t*t+b},M:9(x,t,b,c,d){6-c*((t=t/d-1)*t*t*t-1)+b},L:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t+b;6-c/2*((t-=2)*t*t*t-2)+b},K:9(x,t,b,c,d){6 c*(t/=d)*t*t*t*t+b},J:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t*t*t+1)+b},I:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t*t+b;6 c/2*((t-=2)*t*t*t*t+2)+b},G:9(x,t,b,c,d){6-c*8.C(t/d*(8.g/2))+c+b},15:9(x,t,b,c,d){6 c*8.n(t/d*(8.g/2))+b},12:9(x,t,b,c,d){6-c/2*(8.C(8.g*t/d)-1)+b},Z:9(x,t,b,c,d){6(t==0)?b:c*8.j(2,10*(t/d-1))+b},Y:9(x,t,b,c,d){6(t==d)?b+c:c*(-8.j(2,-10*t/d)+1)+b},W:9(x,t,b,c,d){e(t==0)6 b;e(t==d)6 b+c;e((t/=d/2)<1)6 c/2*8.j(2,10*(t-1))+b;6 c/2*(-8.j(2,-10*--t)+2)+b},V:9(x,t,b,c,d){6-c*(8.o(1-(t/=d)*t)-1)+b},S:9(x,t,b,c,d){6 c*8.o(1-(t=t/d-1)*t)+b},Q:9(x,t,b,c,d){e((t/=d/2)<1)6-c/2*(8.o(1-t*t)-1)+b;6 c/2*(8.o(1-(t-=2)*t)+1)+b},P:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6-(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b},H:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6 a*8.j(2,-10*t)*8.n((t*d-s)*(2*8.g)/p)+c+b},T:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d/2)==2)6 b+c;e(!p)p=d*(.3*1.5);e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);e(t<1)6-.5*(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b;6 a*8.j(2,-10*(t-=1))*8.n((t*d-s)*(2*8.g)/p)*.5+c+b},F:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*(t/=d)*t*((s+1)*t-s)+b},E:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},16:9(x,t,b,c,d,s){e(s==u)s=1.l;e((t/=d/2)<1)6 c/2*(t*t*(((s*=(1.B))+1)*t-s))+b;6 c/2*((t-=2)*t*(((s*=(1.B))+1)*t+s)+2)+b},A:9(x,t,b,c,d){6 c-h.i.v(x,d-t,0,c,d)+b},v:9(x,t,b,c,d){e((t/=d)<(1/2.k)){6 c*(7.q*t*t)+b}m e(t<(2/2.k)){6 c*(7.q*(t-=(1.5/2.k))*t+.k)+b}m e(t<(2.5/2.k)){6 c*(7.q*(t-=(2.14/2.k))*t+.11)+b}m{6 c*(7.q*(t-=(2.18/2.k))*t+.19)+b}},1b:9(x,t,b,c,d){e(t<d/2)6 h.i.A(x,t*2,0,c,d)*.5+b;6 h.i.v(x,t*2-d,0,c,d)*.5+c*.5+b}});',62,74,'||||||return||Math|function|||||if|var|PI|jQuery|easing|pow|75|70158|else|sin|sqrt||5625|asin|||undefined|easeOutBounce|abs||def|swing|easeInBounce|525|cos|easeOutQuad|easeOutBack|easeInBack|easeInSine|easeOutElastic|easeInOutQuint|easeOutQuint|easeInQuint|easeInOutQuart|easeOutQuart|easeInQuart|extend|easeInElastic|easeInOutCirc|easeInOutCubic|easeOutCirc|easeInOutElastic|easeOutCubic|easeInCirc|easeInOutExpo|easeInCubic|easeOutExpo|easeInExpo||9375|easeInOutSine|easeInOutQuad|25|easeOutSine|easeInOutBack|easeInQuad|625|984375|jswing|easeInOutBounce'.split('|'),0,{}))

/*
 * jQuery validation plug-in 1.5.2
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2008 JĂ¶rn Zaefferer
 *
 * $Id: jquery.validate.js 6243 2009-02-19 11:40:49Z joern.zaefferer $
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(7($){$.H($.2M,{1E:7(c){l(!6.F){c&&c.2j&&2X.1y&&1y.4Z("3p 2C, 4B\'t 1E, 6d 3p");8}p b=$.15(6[0],\'v\');l(b){8 b}b=29 $.v(c,6[0]);$.15(6[0],\'v\',b);l(b.q.3v){6.4J("21, 4E").1q(".4x").4t(7(){b.37=w});6.32(7(a){l(b.q.2j)a.5Y();7 28(){l(b.q.3Y){b.q.3Y.Z(b,b.Y);8 I}8 w}l(b.37){b.37=I;8 28()}l(b.J()){l(b.18){b.1u=w;8 I}8 28()}19{b.2k();8 I}})}8 b},N:7(){l($(6[0]).2L(\'J\')){8 6.1E().J()}19{p b=I;p a=$(6[0].J).1E();6.P(7(){b|=a.M(6)});8 b}},4L:7(c){p d={},$M=6;$.P(c.1I(/\\s/),7(a,b){d[b]=$M.1H(b);$M.4H(b)});8 d},1c:7(h,k){p f=6[0];l(h){p i=$.15(f.J,\'v\').q;p d=i.1c;p c=$.v.2u(f);2r(h){1e"1h":$.H(c,$.v.1S(k));d[f.u]=c;l(k.L)i.L[f.u]=$.H(i.L[f.u],k.L);33;1e"63":l(!k){R d[f.u];8 c}p e={};$.P(k.1I(/\\s/),7(a,b){e[b]=c[b];R c[b]});8 e}}p g=$.v.4a($.H({},$.v.47(f),$.v.43(f),$.v.3Z(f),$.v.2u(f)),f);l(g.13){p j=g.13;R g.13;g=$.H({13:j},g)}8 g}});$.H($.5C[":"],{5z:7(a){8!$.1k(a.U)},5q:7(a){8!!$.1k(a.U)},5o:7(a){8!a.3O}});$.1d=7(c,b){l(S.F==1)8 7(){p a=$.3J(S);a.5c(c);8 $.1d.1G(6,a)};l(S.F>2&&b.2l!=3C){b=$.3J(S).4V(1)}l(b.2l!=3C){b=[b]}$.P(b,7(i,n){c=c.2K(29 3A("\\\\{"+i+"\\\\}","g"),n)});8 c};$.v=7(b,a){6.q=$.H({},$.v.2J,b);6.Y=a;6.3x()};$.H($.v,{2J:{L:{},22:{},1c:{},1a:"3s",2H:"4K",2k:w,3n:$([]),2E:$([]),3v:w,3m:[],3l:I,4I:7(a){6.3k=a;l(6.q.4G&&!6.4F){6.q.1O&&6.q.1O.Z(6,a,6.q.1a);6.1P(a).2y()}},4D:7(a){l(!6.1w(a)&&(a.u 11 6.1l||!6.G(a))){6.M(a)}},4w:7(a){l(a.u 11 6.1l||a==6.3b){6.M(a)}},4u:7(a){l(a.u 11 6.1l)6.M(a)},2s:7(a,b){$(a).2q(b)},1O:7(a,b){$(a).39(b)}},6k:7(a){$.H($.v.2J,a)},L:{13:"6h 4p 2L 13.",1T:"K 35 6 4p.",1U:"K O a N 1U 6b.",1x:"K O a N 65.",1n:"K O a N 1n.",1X:"K O a N 1n (62).",1Y:"4e 4c 4b 30 5WĽ5U 5S 30.",1A:"K O a N 1A.",27:"4e 4c 4b 5Q 5O 30.",1N:"K O 5L 1N",2g:"K O a N 5I 5G 1A.",3W:"K O 3V 5A U 5y.",3T:"K O a U 5u a N 5t.",16:$.1d("K O 3Q 5p 2R {0} 2Q."),1v:$.1d("K O 5n 5m {0} 2Q."),2d:$.1d("K O a U 3L {0} 40 {1} 2Q 5i."),2a:$.1d("K O a U 3L {0} 40 {1}."),1t:$.1d("K O a U 5d 2R 3I 3H 48 {0}."),1B:$.1d("K O a U 56 2R 3I 3H 48 {0}.")},3G:I,53:{3x:7(){6.2h=$(6.q.2E);6.4i=6.2h.F&&6.2h||$(6.Y);6.2p=$(6.q.3n).1h(6.q.2E);6.1l={};6.4X={};6.18=0;6.1g={};6.1b={};6.1V();p f=(6.22={});$.P(6.q.22,7(d,c){$.P(c.1I(/\\s/),7(a,b){f[b]=d})});p e=6.q.1c;$.P(e,7(b,a){e[b]=$.v.1S(a)});7 1D(a){p b=$.15(6[0].J,"v");b.q["3B"+a.1p]&&b.q["3B"+a.1p].Z(b,6[0])}$(6.Y).1D("3z 3y 4P",":2I, :4O, :4N, 23, 4M",1D).1D("4t",":3u, :3t",1D);l(6.q.3r)$(6.Y).3q("1b-J.1E",6.q.3r)},J:7(){6.3o();$.H(6.1l,6.1r);6.1b=$.H({},6.1r);l(!6.N())$(6.Y).2G("1b-J",[6]);6.1j();8 6.N()},3o:7(){6.2F();Q(p i=0,14=(6.24=6.14());14[i];i++){6.26(14[i])}8 6.N()},M:7(a){a=6.2D(a);6.3b=a;6.3a(a);6.24=$(a);p b=6.26(a);l(b){R 6.1b[a.u]}19{6.1b[a.u]=w}l(!6.3F()){6.12=6.12.1h(6.2p)}6.1j();8 b},1j:7(b){l(b){$.H(6.1r,b);6.T=[];Q(p c 11 b){6.T.20({1f:b[c],M:6.1Z(c)[0]})}6.1m=$.3j(6.1m,7(a){8!(a.u 11 b)})}6.q.1j?6.q.1j.Z(6,6.1r,6.T):6.3i()},2B:7(){l($.2M.2B)$(6.Y).2B();6.1l={};6.2F();6.2A();6.14().39(6.q.1a)},3F:7(){8 6.2e(6.1b)},2e:7(a){p b=0;Q(p i 11 a)b++;8 b},2A:7(){6.2z(6.12).2y()},N:7(){8 6.3h()==0},3h:7(){8 6.T.F},2k:7(){l(6.q.2k){3g{$(6.3f()||6.T.F&&6.T[0].M||[]).1q(":4C").3e()}3d(e){}}},3f:7(){p a=6.3k;8 a&&$.3j(6.T,7(n){8 n.M.u==a.u}).F==1&&a},14:7(){p a=6,2x={};8 $([]).1h(6.Y.14).1q(":21").1F(":32, :1V, :4A, [4z]").1F(6.q.3m).1q(7(){!6.u&&a.q.2j&&2X.1y&&1y.3s("%o 4y 3Q u 4v",6);l(6.u 11 2x||!a.2e($(6).1c()))8 I;2x[6.u]=w;8 w})},2D:7(a){8 $(a)[0]},2v:7(){8 $(6.q.2H+"."+6.q.1a,6.4i)},1V:7(){6.1m=[];6.T=[];6.1r={};6.1i=$([]);6.12=$([]);6.1u=I;6.24=$([])},2F:7(){6.1V();6.12=6.2v().1h(6.2p)},3a:7(a){6.1V();6.12=6.1P(a)},26:7(d){d=6.2D(d);l(6.1w(d)){d=6.1Z(d.u)[0]}p a=$(d).1c();p c=I;Q(V 11 a){p b={V:V,2t:a[V]};3g{p f=$.v.1Q[V].Z(6,d.U.2K(/\\r/g,""),d,b.2t);l(f=="1R-1W"){c=w;6m}c=I;l(f=="1g"){6.12=6.12.1F(6.1P(d));8}l(!f){6.4s(d,b);8 I}}3d(e){6.q.2j&&2X.1y&&1y.6l("6j 6i 6g 6f M "+d.4q+", 26 3V \'"+b.V+"\' V");6e e;}}l(c)8;l(6.2e(a))6.1m.20(d);8 w},4o:7(a,b){l(!$.1C)8;p c=6.q.36?$(a).1C()[6.q.36]:$(a).1C();8 c&&c.L&&c.L[b]},4n:7(a,b){p m=6.q.L[a];8 m&&(m.2l==4m?m:m[b])},4l:7(){Q(p i=0;i<S.F;i++){l(S[i]!==2o)8 S[i]}8 2o},2n:7(a,b){8 6.4l(6.4n(a.u,b),6.4o(a,b),!6.q.3l&&a.6c||2o,$.v.L[b],"<4k>69: 68 1f 67 Q "+a.u+"</4k>")},4s:7(b,a){p c=6.2n(b,a.V);l(17 c=="7")c=c.Z(6,a.2t,b);6.T.20({1f:c,M:b});6.1r[b.u]=c;6.1l[b.u]=c},2z:7(a){l(6.q.2m)a=a.1h(a.64(6.q.2m));8 a},3i:7(){Q(p i=0;6.T[i];i++){p a=6.T[i];6.q.2s&&6.q.2s.Z(6,a.M,6.q.1a);6.2w(a.M,a.1f)}l(6.T.F){6.1i=6.1i.1h(6.2p)}l(6.q.1o){Q(p i=0;6.1m[i];i++){6.2w(6.1m[i])}}l(6.q.1O){Q(p i=0,14=6.4j();14[i];i++){6.q.1O.Z(6,14[i],6.q.1a)}}6.12=6.12.1F(6.1i);6.2A();6.2z(6.1i).4h()},4j:7(){8 6.24.1F(6.3c())},3c:7(){8 $(6.T).4g(7(){8 6.M})},2w:7(a,c){p b=6.1P(a);l(b.F){b.39().2q(6.q.1a);b.1H("4f")&&b.4d(c)}19{b=$("<"+6.q.2H+"/>").1H({"Q":6.31(a),4f:w}).2q(6.q.1a).4d(c||"");l(6.q.2m){b=b.2y().4h().61("<"+6.q.2m+"/>").60()}l(!6.2h.5Z(b).F)6.q.3w?6.q.3w(b,$(a)):b.5X(a)}l(!c&&6.q.1o){b.2I("");17 6.q.1o=="1s"?b.2q(6.q.1o):6.q.1o(b)}6.1i=6.1i.1h(b)},1P:7(a){8 6.2v().1q("[Q=\'"+6.31(a)+"\']")},31:7(a){8 6.22[a.u]||(6.1w(a)?a.u:a.4q||a.u)},1w:7(a){8/3u|3t/i.X(a.1p)},1Z:7(d){p c=6.Y;8 $(5V.5T(d)).4g(7(a,b){8 b.J==c&&b.u==d&&b||49})},1J:7(a,b){2r(b.3D.46()){1e\'23\':8 $("45:2C",b).F;1e\'21\':l(6.1w(b))8 6.1Z(b.u).1q(\':3O\').F}8 a.F},44:7(b,a){8 6.2O[17 b]?6.2O[17 b](b,a):w},2O:{"5P":7(b,a){8 b},"1s":7(b,a){8!!$(b,a.J).F},"7":7(b,a){8 b(a)}},G:7(a){8!$.v.1Q.13.Z(6,$.1k(a.U),a)&&"1R-1W"},42:7(a){l(!6.1g[a.u]){6.18++;6.1g[a.u]=w}},41:7(a,b){6.18--;l(6.18<0)6.18=0;R 6.1g[a.u];l(b&&6.18==0&&6.1u&&6.J()){$(6.Y).32()}19 l(!b&&6.18==0&&6.1u){$(6.Y).2G("1b-J",[6])}},2c:7(a){8 $.15(a,"2c")||$.15(a,"2c",5M={2Z:49,N:w,1f:6.2n(a,"1T")})}},1K:{13:{13:w},1U:{1U:w},1x:{1x:w},1n:{1n:w},1X:{1X:w},1Y:{1Y:w},1A:{1A:w},27:{27:w},1N:{1N:w},2g:{2g:w}},3E:7(a,b){a.2l==4m?6.1K[a]=b:$.H(6.1K,a)},43:7(b){p a={};p c=$(b).1H(\'5K\');c&&$.P(c.1I(\' \'),7(){l(6 11 $.v.1K){$.H(a,$.v.1K[6])}});8 a},3Z:7(c){p a={};p d=$(c);Q(V 11 $.v.1Q){p b=d.1H(V);l(b){a[V]=b}}l(a.16&&/-1|5J|5H/.X(a.16)){R a.16}8 a},47:7(a){l(!$.1C)8{};p b=$.15(a.J,\'v\').q.36;8 b?$(a).1C()[b]:$(a).1C()},2u:7(b){p a={};p c=$.15(b.J,\'v\');l(c.q.1c){a=$.v.1S(c.q.1c[b.u])||{}}8 a},4a:7(d,e){$.P(d,7(c,b){l(b===I){R d[c];8}l(b.2Y||b.2f){p a=w;2r(17 b.2f){1e"1s":a=!!$(b.2f,e.J).F;33;1e"7":a=b.2f.Z(e,e);33}l(a){d[c]=b.2Y!==2o?b.2Y:w}19{R d[c]}}});$.P(d,7(a,b){d[a]=$.5E(b)?b(e):b});$.P([\'1v\',\'16\',\'1B\',\'1t\'],7(){l(d[6]){d[6]=2W(d[6])}});$.P([\'2d\',\'2a\'],7(){l(d[6]){d[6]=[2W(d[6][0]),2W(d[6][1])]}});l($.v.3G){l(d.1B&&d.1t){d.2a=[d.1B,d.1t];R d.1B;R d.1t}l(d.1v&&d.16){d.2d=[d.1v,d.16];R d.1v;R d.16}}l(d.L){R d.L}8 d},1S:7(a){l(17 a=="1s"){p b={};$.P(a.1I(/\\s/),7(){b[6]=w});a=b}8 a},5D:7(c,a,b){$.v.1Q[c]=a;$.v.L[c]=b;l(a.F<3){$.v.3E(c,$.v.1S(c))}},1Q:{13:7(b,c,a){l(!6.44(a,c))8"1R-1W";2r(c.3D.46()){1e\'23\':p d=$("45:2C",c);8 d.F>0&&(c.1p=="23-5B"||($.2V.2P&&!(d[0].5x[\'U\'].5w)?d[0].2I:d[0].U).F>0);1e\'21\':l(6.1w(c))8 6.1J(b,c)>0;5v:8 $.1k(b).F>0}},1T:7(e,h,d){l(6.G(h))8"1R-1W";p g=6.2c(h);l(!6.q.L[h.u])6.q.L[h.u]={};6.q.L[h.u].1T=17 g.1f=="7"?g.1f(e):g.1f;d=17 d=="1s"&&{1x:d}||d;l(g.2Z!==e){g.2Z=e;p i=6;6.42(h);p f={};f[h.u]=e;$.2T($.H(w,{1x:d,3S:"2S",3R:"1E"+h.u,5s:"5r",15:f,1o:7(a){l(a){p b=i.1u;i.3a(h);i.1u=b;i.1m.20(h);i.1j()}19{p c={};c[h.u]=a||i.2n(h,"1T");i.1j(c)}g.N=a;i.41(h,a)}},d));8"1g"}19 l(6.1g[h.u]){8"1g"}8 g.N},1v:7(b,c,a){8 6.G(c)||6.1J($.1k(b),c)>=a},16:7(b,c,a){8 6.G(c)||6.1J($.1k(b),c)<=a},2d:7(b,d,a){p c=6.1J($.1k(b),d);8 6.G(d)||(c>=a[0]&&c<=a[1])},1B:7(b,c,a){8 6.G(c)||b>=a},1t:7(b,c,a){8 6.G(c)||b<=a},2a:7(b,c,a){8 6.G(c)||(b>=a[0]&&b<=a[1])},1U:7(a,b){8 6.G(b)||/^((([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^W`{\\|}~]|[\\C-\\A\\B-\\E\\x-\\y])+(\\.([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^W`{\\|}~]|[\\C-\\A\\B-\\E\\x-\\y])+)*)|((\\3P)((((\\2b|\\1M)*(\\2U\\3U))?(\\2b|\\1M)+)?(([\\3X-\\5F\\3N\\3M\\5l-\\5k\\3K]|\\5j|[\\5h-\\5N]|[\\5g-\\5f]|[\\C-\\A\\B-\\E\\x-\\y])|(\\\\([\\3X-\\1M\\3N\\3M\\2U-\\3K]|[\\C-\\A\\B-\\E\\x-\\y]))))*(((\\2b|\\1M)*(\\2U\\3U))?(\\2b|\\1M)+)?(\\3P)))@((([a-z]|\\d|[\\C-\\A\\B-\\E\\x-\\y])|(([a-z]|\\d|[\\C-\\A\\B-\\E\\x-\\y])([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])*([a-z]|\\d|[\\C-\\A\\B-\\E\\x-\\y])))\\.)+(([a-z]|[\\C-\\A\\B-\\E\\x-\\y])|(([a-z]|[\\C-\\A\\B-\\E\\x-\\y])([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])*([a-z]|[\\C-\\A\\B-\\E\\x-\\y])))\\.?$/i.X(a)},1x:7(a,b){8 6.G(b)||/^(5e?|5R):\\/\\/(((([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])|(%[\\1L-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:)*@)?(((\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5]))|((([a-z]|\\d|[\\C-\\A\\B-\\E\\x-\\y])|(([a-z]|\\d|[\\C-\\A\\B-\\E\\x-\\y])([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])*([a-z]|\\d|[\\C-\\A\\B-\\E\\x-\\y])))\\.)+(([a-z]|[\\C-\\A\\B-\\E\\x-\\y])|(([a-z]|[\\C-\\A\\B-\\E\\x-\\y])([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])*([a-z]|[\\C-\\A\\B-\\E\\x-\\y])))\\.?)(:\\d*)?)(\\/((([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])|(%[\\1L-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)+(\\/(([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])|(%[\\1L-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)*)*)?)?(\\?((([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])|(%[\\1L-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)|[\\5b-\\5a]|\\/|\\?)*)?(\\#((([a-z]|\\d|-|\\.|W|~|[\\C-\\A\\B-\\E\\x-\\y])|(%[\\1L-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)|\\/|\\?)*)?$/i.X(a)},1n:7(a,b){8 6.G(b)||!/59|58/.X(29 57(a))},1X:7(a,b){8 6.G(b)||/^\\d{4}[\\/-]\\d{1,2}[\\/-]\\d{1,2}$/.X(a)},1Y:7(a,b){8 6.G(b)||/^\\d\\d?\\.\\d\\d?\\.\\d\\d\\d?\\d?$/.X(a)},1A:7(a,b){8 6.G(b)||/^-?(?:\\d+|\\d{1,3}(?:,\\d{3})+)(?:\\.\\d+)?$/.X(a)},27:7(a,b){8 6.G(b)||/^-?(?:\\d+|\\d{1,3}(?:\\.\\d{3})+)(?:,\\d+)?$/.X(a)},1N:7(a,b){8 6.G(b)||/^\\d+$/.X(a)},2g:7(b,e){l(6.G(e))8"1R-1W";l(/[^0-9-]+/.X(b))8 I;p a=0,d=0,2i=I;b=b.2K(/\\D/g,"");Q(n=b.F-1;n>=0;n--){p c=b.55(n);p d=54(c,10);l(2i){l((d*=2)>9)d-=9}a+=d;2i=!2i}8(a%10)==0},3T:7(b,c,a){a=17 a=="1s"?a:"66|52?g|51";8 6.G(c)||b.50(29 3A(".("+a+")$","i"))},3W:7(b,c,a){8 b==$(a).6a()}}})})(2N);(7($){p c=$.2T;p d={};$.2T=7(a){a=$.H(a,$.H({},$.4Y,a));p b=a.3R;l(a.3S=="2S"){l(d[b]){d[b].2S()}8(d[b]=c.1G(6,S))}8 c.1G(6,S)}})(2N);(7($){$.P({3e:\'3z\',4W:\'3y\'},7(b,a){$.1z.34[a]={4U:7(){l($.2V.2P)8 I;6.4T(b,$.1z.34[a].38,w)},4S:7(){l($.2V.2P)8 I;6.4R(b,$.1z.34[a].38,w)},38:7(e){S[0]=$.1z.35(e);S[0].1p=a;8 $.1z.28.1G(6,S)}}});$.H($.2M,{1D:7(d,e,c){8 6.3q(d,7(a){p b=$(a.4r);l(b.2L(e)){8 c.1G(b,S)}})},4Q:7(a,b){8 6.2G(a,[$.1z.35({1p:a,4r:b})])}})})(2N);',62,395,'||||||this|function|return|||||||||||||if||||var|settings||||name|validator|true|uFDF0|uFFEF||uD7FF|uF900|u00A0||uFDCF|length|optional|extend|false|form|Please|messages|element|valid|enter|each|for|delete|arguments|errorList|value|method|_|test|currentForm|call||in|toHide|required|elements|data|maxlength|typeof|pendingRequest|else|errorClass|invalid|rules|format|case|message|pending|add|toShow|showErrors|trim|submitted|successList|date|success|type|filter|errorMap|string|max|formSubmitted|minlength|checkable|url|console|event|number|min|metadata|delegate|validate|not|apply|attr|split|getLength|classRuleSettings|da|x09|digits|unhighlight|errorsFor|methods|dependency|normalizeRule|remote|email|reset|mismatch|dateISO|dateDE|findByName|push|input|groups|select|currentElements||check|numberDE|handle|new|range|x20|previousValue|rangelength|objectLength|depends|creditcard|labelContainer|bEven|debug|focusInvalid|constructor|wrapper|defaultMessage|undefined|containers|addClass|switch|highlight|parameters|staticRules|errors|showLabel|rulesCache|hide|addWrapper|hideErrors|resetForm|selected|clean|errorLabelContainer|prepareForm|triggerHandler|errorElement|text|defaults|replace|is|fn|jQuery|dependTypes|msie|characters|than|abort|ajax|x0d|browser|Number|window|param|old|ein|idOrName|submit|break|special|fix|meta|cancelSubmit|handler|removeClass|prepareElement|lastElement|invalidElements|catch|focus|findLastActive|try|size|defaultShowErrors|grep|lastActive|ignoreTitle|ignore|errorContainer|checkForm|nothing|bind|invalidHandler|error|checkbox|radio|onsubmit|errorPlacement|init|focusout|focusin|RegExp|on|Array|nodeName|addClassRules|numberOfInvalids|autoCreateRanges|equal|or|makeArray|x7f|between|x0c|x0b|checked|x22|no|port|mode|accept|x0a|the|equalTo|x01|submitHandler|attributeRules|and|stopRequest|startRequest|classRules|depend|option|toLowerCase|metadataRules|to|null|normalizeRules|Sie|geben|html|Bitte|generated|map|show|errorContext|validElements|strong|findDefined|String|customMessage|customMetaMessage|field|id|target|formatAndAdd|click|onclick|assigned|onkeyup|cancel|has|disabled|image|can|visible|onfocusout|button|blockFocusCleanup|focusCleanup|removeAttr|onfocusin|find|label|removeAttrs|textarea|file|password|keyup|triggerEvent|removeEventListener|teardown|addEventListener|setup|slice|blur|valueCache|ajaxSettings|warn|match|gif|jpe|prototype|parseInt|charAt|greater|Date|NaN|Invalid|uF8FF|uE000|unshift|less|https|x7e|x5d|x23|long|x21|x1f|x0e|least|at|unchecked|more|filled|json|dataType|extension|with|default|specified|attributes|again|blank|same|multiple|expr|addMethod|isFunction|x08|card|524288|credit|2147483647|class|only|previous|x5b|Nummer|boolean|eine|ftp|Datum|getElementsByName|ltiges|document|gĂ|insertAfter|preventDefault|append|parent|wrap|ISO|remove|parents|URL|png|defined|No|Warning|val|address|title|returning|throw|checking|when|This|occured|exception|setDefaults|log|continue'.split('|'),0,{}))


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
Cufon.registerFont({"w":184,"face":{"font-family":"Myriad Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-17 -298 302 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+017C"},"glyphs":{" ":{"w":76},"!":{"d":"54,-69r-25,0r-5,-174r35,0xm41,4v-12,0,-21,-10,-21,-22v0,-13,9,-23,22,-23v12,0,21,10,21,23v0,12,-9,22,-22,22","w":82},"\"":{"d":"18,-249r32,0r-6,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121},"#":{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-21,0r9,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r21,0r-10,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},"$":{"d":"101,31r-23,0r0,-36v-20,-1,-42,-7,-54,-16r8,-24v25,21,96,23,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-31,-59,-63v0,-30,21,-52,54,-58r0,-36r22,0r0,35v22,1,36,7,47,13r-9,24v-7,-5,-22,-13,-45,-13v-28,0,-38,17,-38,31v0,19,12,31,44,41v72,23,76,112,-1,127r0,38"},"%":{"d":"68,-238v32,0,53,25,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70v0,-47,25,-73,57,-73xm66,-219v-20,0,-30,24,-30,53v0,30,10,52,30,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v33,0,54,25,54,70v0,97,-111,99,-111,3v0,-47,26,-73,57,-73xm219,-122v-20,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},"&":{"d":"217,0r-38,0r-22,-23v-44,49,-146,26,-146,-41v0,-34,22,-55,48,-72v-36,-40,-23,-109,41,-111v30,0,54,20,54,52v0,27,-20,44,-54,66r59,67v12,-17,19,-40,24,-71r29,0v-7,38,-17,69,-35,90v13,14,25,28,40,43xm41,-69v0,53,75,63,100,27r-68,-76v-14,8,-32,23,-32,49xm98,-225v-42,2,-35,59,-12,79v24,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},"(":{"d":"70,-250r25,0v-58,62,-58,232,0,294r-25,0v-22,-30,-47,-76,-47,-147v0,-70,25,-117,47,-147","w":102,"k":{"V":-31217,"W":-31217}},")":{"d":"32,44r-25,0v57,-63,59,-232,0,-294r25,0v22,30,47,76,47,147v-1,70,-25,116,-47,147","w":102},"*":{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-23,-50r-23,50r-20,-13v11,-16,25,-28,34,-45r-53,8r0,-25v17,1,38,7,53,6r-34,-44r22,-13v8,16,13,36,23,51","w":149},"+":{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},",":{"d":"28,42r-22,3v8,-22,17,-60,21,-87r36,-3v-9,30,-25,70,-35,87","w":74},"-":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110,"k":{"C":30,"G":30,"O":30,"Q":30,"\u00d3":30,"\u0106":30,"Y":41,":":-10,";":-10,",":3,".":3,"-":12}},".":{"d":"40,4v-13,0,-21,-10,-21,-23v0,-13,9,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74},"\/":{"d":"24,14r-24,0r100,-261r25,0","w":123},"0":{"d":"95,-238v49,0,77,44,77,118v0,80,-30,124,-81,124v-46,0,-78,-43,-78,-120v0,-79,34,-122,82,-122xm93,-213v-28,0,-48,33,-48,97v0,61,19,95,48,95v32,0,47,-37,47,-97v0,-58,-14,-95,-47,-95"},"1":{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0"},"2":{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-14,40,-24,66,-24v51,0,72,35,72,68v0,47,-55,99,-99,144r105,0r0,26"},"3":{"d":"15,-12r9,-24v9,5,29,14,52,14v40,0,53,-25,53,-45v0,-39,-37,-50,-79,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-8,-23v12,-9,36,-18,61,-18v81,-1,88,90,24,111v27,8,52,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16"},"4":{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,42,-51,77,-77,114r77,0"},"5":{"d":"58,-147v56,-6,99,17,103,71v5,69,-92,99,-146,66r8,-25v32,22,110,16,106,-37v7,-42,-52,-59,-100,-50r15,-112r112,0r0,27r-89,0"},"6":{"d":"150,-238r0,26v-62,-1,-101,39,-105,85v35,-49,128,-27,128,48v0,43,-29,83,-78,83v-50,0,-83,-39,-83,-100v0,-89,51,-139,138,-142xm141,-77v0,-66,-97,-70,-97,-11v0,39,18,67,51,67v27,0,46,-22,46,-56"},"7":{"d":"21,-234r147,0r0,21r-102,213r-33,0r102,-208r-114,0r0,-26"},"8":{"d":"60,-122v-65,-28,-40,-119,35,-116v78,3,91,83,29,113v76,24,51,129,-32,129v-91,0,-104,-102,-32,-126xm93,-19v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51v-56,11,-57,91,5,93xm93,-215v-26,0,-41,17,-41,37v0,24,18,36,45,43v42,-8,52,-78,-4,-80"},"9":{"d":"35,4r0,-26v60,3,100,-34,104,-86v-37,49,-124,20,-124,-47v0,-44,32,-83,80,-83v95,0,90,167,37,208v-27,21,-57,34,-97,34xm46,-157v0,61,94,66,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57"},":":{"d":"40,-123v-12,0,-21,-10,-21,-22v0,-14,9,-23,21,-23v13,0,22,9,22,23v0,12,-9,22,-22,22xm40,4v-12,0,-21,-10,-21,-22v0,-14,9,-23,21,-23v13,0,22,9,22,23v0,12,-9,22,-22,22","w":74,"k":{")":1,"]":1,"}":1,":":3,";":3,",":4,".":4}},";":{"d":"28,42r-22,2v8,-21,18,-59,22,-86r35,-4v-9,31,-25,71,-35,88xm42,-123v-12,0,-20,-10,-20,-22v0,-14,9,-23,21,-23v13,0,21,9,21,23v0,12,-8,22,-22,22","w":74,"k":{")":1,"]":1,"}":1,":":3,";":3,",":4,".":4}},"<":{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},"=":{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},">":{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},"?":{"d":"79,-69r-28,0v-17,-44,45,-86,47,-121v2,-34,-50,-39,-71,-20r-9,-23v13,-8,33,-14,52,-14v77,3,68,77,29,116v-20,20,-24,37,-20,62xm64,4v-12,0,-21,-10,-21,-22v0,-14,9,-23,21,-23v13,0,22,9,22,23v0,12,-9,22,-22,22","w":146},"@":{"d":"117,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-75,62v0,16,8,27,23,27xm183,8r6,15v-78,41,-174,-3,-174,-98v0,-74,52,-138,132,-138v63,0,104,44,104,104v0,54,-30,86,-63,86v-18,0,-25,-15,-29,-32v-20,43,-87,46,-89,-14v-2,-57,63,-104,124,-78r-13,66v-5,27,-1,40,11,40v19,1,39,-24,39,-66v0,-52,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,80,120,147,85","w":265},"A":{"d":"153,-76r-86,0r-26,76r-32,0r83,-243r37,0r83,243r-33,0xm73,-101r74,0r-38,-114v-9,39,-24,77,-36,114","w":220,"k":{"Y":1,"g":31,"b":6,"h":6,"k":6,"l":6,"\u0142":6,"u":28,":":16,";":16,"-":6,"\"":9,"'":9," ":13}},"B":{"d":"180,-69v0,70,-84,77,-153,68r0,-238v57,-10,144,-10,144,55v0,25,-17,43,-41,54v23,6,50,25,50,61xm59,-218r0,78v42,4,80,-7,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"Z":3,"\u0179":3,"\u017b":3,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0144":-4,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f3":-3,"\u0107":-3,"\u0119":-3,"s":-4,"\u015b":-4,"v":-6,"w":-6,"y":-6,"x":-3,":":-4,";":-4," ":2}},"C":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,98,-152,184,-117r-8,26v-66,-29,-143,7,-143,90v0,81,75,116,144,87","w":208,"k":{"T":-7,"C":-6,"G":-6,"O":-6,"Q":-6,"\u00d3":-6,"\u0106":-6,"V":2,"W":2,"X":-4,"A":-4,"\u0104":-4,"a":2,"\u0105":2,"f":6,"j":-8,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f3":2,"\u0107":2,"\u0119":2,"s":6,"\u015b":6,"t":-8,"v":1,"w":1,"y":1,"z":-3,"\u017a":-3,"\u017c":-3,"x":-6,"\"":32,"'":32,",":14,".":14," ":13}},"D":{"d":"227,-127v0,107,-90,142,-200,126r0,-238v103,-18,200,7,200,112xm59,-216r0,192v81,9,135,-25,135,-102v0,-70,-59,-107,-135,-90","w":239,"k":{"\u0142":-1,"T":3,"U":2,"S":4,"\u015a":4,"f":3,"g":7,"s":6,"\u015b":6,"t":8,"z":2,"\u017a":2,"\u017c":2,",":4,".":4," ":13}},"E":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"T":1,"J":5,"M":10,"Y":14,"A":15,"\u0104":15,"S":35,"\u015a":35,"B":42,"D":42,"E":42,"F":42,"H":42,"I":42,"K":42,"L":42,"N":42,"P":42,"R":42,"\u0141":42,"\u0118":42,"\u0143":42,"a":37,"\u0105":37,"s":4,"\u015b":4}},"F":{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175,"k":{"T":1,"J":2,"A":9,"\u0104":9,"g":10,"b":10,"h":10,"k":10,"l":10,"\u0142":10,"j":5,"u":-6,"v":-2,"w":-2,"y":-2,"x":-2,"-":-6,")":-1,"]":-1,"}":-1,"\"":-5,"'":-5}},"G":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-31,-151,5,-151,87v0,77,68,115,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,6,-42,14,-74,14","w":232},"H":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"C":5,"G":5,"O":5,"Q":5,"\u00d3":5,"\u0106":5,"U":3,"V":30,"W":30,"X":11,"Z":9,"\u0179":9,"\u017b":9,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,"\u0141":9,"\u0118":9,"\u0143":9,"a":2,"\u0105":2,"g":6,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f3":5,"\u0107":5,"\u0119":5,"s":-1,"\u015b":-1,"v":4,"w":4,"y":4,"x":8,":":6,";":6,"-":-2,")":-8,"]":-8,"}":-8,"\"":50,"'":50}},"I":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"C":5,"G":5,"O":5,"Q":5,"\u00d3":5,"\u0106":5,"U":3,"V":30,"W":30,"X":11,"Z":9,"\u0179":9,"\u017b":9,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,"\u0141":9,"\u0118":9,"\u0143":9,"a":2,"\u0105":2,"g":6,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f3":5,"\u0107":5,"\u0119":5,"s":-1,"\u015b":-1,"v":4,"w":4,"y":4,"x":8,":":6,";":6,"-":-2,")":-8,"]":-8,"}":-8,"\"":50,"'":50}},"J":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v40,10,71,5,71,-56","w":133},"K":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"J":-3,"C":-4,"G":-4,"O":-4,"Q":-4,"\u00d3":-4,"\u0106":-4,"U":-1,"X":-7,"A":-5,"\u0104":-5,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f3":-3,"\u0107":-3,"\u0119":-3,":":-14,";":-14,"-":10,"\"":-14,"'":-14,",":27,".":27}},"L":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169,"k":{"T":9,"J":13,"M":18,"C":18,"G":18,"O":18,"Q":18,"\u00d3":18,"\u0106":18,"U":-22,"V":-6,"W":-6,"Y":-12,"A":22,"\u0104":22,"v":12,"w":12,"y":12,",":2,".":2," ":-1}},"M":{"d":"238,0r-11,-211v-19,67,-49,144,-73,210r-24,0r-40,-116r-28,-94r-11,211r-30,0r17,-243r40,0r66,199v18,-64,47,-136,69,-199r40,0r16,243r-31,0","w":289,"k":{"C":-12,"G":-12,"O":-12,"Q":-12,"\u00d3":-12,"\u0106":-12,"U":8,"A":-6,"\u0104":-6,"B":21,"D":21,"E":21,"F":21,"H":21,"I":21,"K":21,"L":21,"N":21,"P":21,"R":21,"\u0141":21,"\u0118":21,"\u0143":21,"b":12,"h":12,"k":12,"l":12,"\u0142":12,"i":3,"m":3,"n":3,"p":3,"r":3,"\u0144":3,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f3":2,"\u0107":2,"\u0119":2,"t":6,"u":12,"v":9,"w":9,"y":9,"z":-3,"\u017a":-3,"\u017c":-3,"x":6,":":1,";":1,"-":6,")":4,"]":4,"}":4,"\"":9,"'":9,",":-7,".":-7," ":-3}},"N":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,29,31,56,45,79v-6,-62,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236,"k":{"C":5,"G":5,"O":5,"Q":5,"\u00d3":5,"\u0106":5,"U":3,"V":30,"W":30,"X":11,"Z":9,"\u0179":9,"\u017b":9,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,"\u0141":9,"\u0118":9,"\u0143":9,"a":2,"\u0105":2,"g":6,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f3":5,"\u0107":5,"\u0119":5,"s":-1,"\u015b":-1,"v":4,"w":4,"y":4,"x":8,":":6,";":6,"-":-2,")":-8,"]":-8,"}":-8,"\"":50,"'":50}},"O":{"d":"125,-247v67,0,110,51,110,123v0,83,-51,128,-113,128v-64,0,-109,-50,-109,-124v0,-77,47,-127,112,-127xm124,-221v-52,0,-78,48,-78,101v0,52,28,98,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-78,-99","w":248,"k":{"\u0142":-1,"T":3,"U":2,"S":4,"\u015a":4,"f":3,"g":7,"s":6,"\u015b":6,"t":8,"z":2,"\u017a":2,"\u017c":2,",":4,".":4," ":13}},"P":{"d":"177,-174v0,62,-56,86,-118,77r0,97r-32,0r0,-240v64,-10,150,-6,150,66xm59,-217r0,94v42,11,86,-7,86,-49v0,-43,-48,-55,-86,-45","w":191,"k":{"T":19,"J":7,"M":19,"C":10,"G":10,"O":10,"Q":10,"\u00d3":10,"\u0106":10,"U":9,"V":9,"W":9,"X":12,"Y":7,"A":18,"\u0104":18,"Z":18,"\u0179":18,"\u017b":18,"S":-20,"\u015a":-20,"B":-3,"D":-3,"E":-3,"F":-3,"H":-3,"I":-3,"K":-3,"L":-3,"N":-3,"P":-3,"R":-3,"\u0141":-3,"\u0118":-3,"\u0143":-3,"a":2,"\u0105":2,"f":-5,"g":34,"u":-3,"z":8,"\u017a":8,"\u017c":8}},"Q":{"d":"228,36r-108,-32v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v0,64,-32,99,-69,118v24,6,50,12,71,15xm124,-22v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,49,-79,101v0,52,28,98,78,98","w":248,"k":{"\u0142":-1,"T":3,"U":2,"S":4,"\u015a":4,"f":3,"g":7,"s":6,"\u015b":6,"t":8,"z":2,"\u017a":2,"\u017c":2,",":4,".":4," ":13}},"R":{"d":"27,-239v64,-11,150,-10,150,61v0,32,-22,52,-46,62v38,4,42,97,54,116r-32,0v-4,-7,-10,-28,-16,-58v-9,-44,-31,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-42,-50,-51,-86,-42","w":193,"k":{"J":2,"u":-3}},"S":{"d":"15,-12r8,-26v30,24,107,23,107,-26v0,-22,-13,-35,-46,-48v-39,-14,-64,-35,-64,-69v0,-58,86,-82,132,-54r-9,26v-7,-5,-23,-12,-45,-12v-34,0,-46,20,-46,37v0,22,14,36,48,46v88,25,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"t":-3,"u":4,"-":21,")":2,"]":2,"}":2,"\"":1,"'":1," ":-1}},"T":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"i":4,"t":-4,"\"":-3,"'":-3}},"U":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143","w":232,"k":{"C":1,"G":1,"O":1,"Q":1,"\u00d3":1,"\u0106":1,"V":-2,"W":-2,"Y":1,"Z":3,"\u0179":3,"\u017b":3,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f3":3,"\u0107":3,"\u0119":3,"s":4,"\u015b":4}},"V":{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200,"k":{"J":-12,"M":-5,"V":-37,"W":-37,"X":-20,"Y":-18,"A":-24,"\u0104":-24,"Z":12,"\u0179":12,"\u017b":12,")":2,"]":2,"}":2,",":2,".":2}},"W":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123r17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-57,-17,-80v-12,65,-37,141,-53,206","w":304,"k":{"J":-12,"M":-5,"V":-37,"W":-37,"X":-20,"Y":-18,"A":-24,"\u0104":-24,"Z":12,"\u0179":12,"\u017b":12,")":2,"]":2,"}":2,",":2,".":2}},"X":{"d":"197,0r-37,0r-60,-102v-13,29,-39,71,-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"U":12,"V":1,"W":1,"Z":4,"\u0179":4,"\u017b":4,"B":13,"D":13,"E":13,"F":13,"H":13,"I":13,"K":13,"L":13,"N":13,"P":13,"R":13,"\u0141":13,"\u0118":13,"\u0143":13}},"Y":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117r60,-117r35,0r-81,140r0,103","w":194,"k":{"T":18,"C":1,"G":1,"O":1,"Q":1,"\u00d3":1,"\u0106":1,"Y":-4,",":7,".":7}},"Z":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"T":-6,"U":2,"u":-17,"v":-6,"w":-6,"y":-6,"x":4,"-":-15,")":4,"]":4,"}":4}},"[":{"d":"95,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19","w":102,"k":{"V":-31217,"W":-31217}},"\\":{"d":"123,14r-24,0r-98,-261r24,0","w":122},"]":{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},"^":{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r23,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"82,-178v96,4,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-19,-3,-42,-39,-43v-17,0,-34,4,-46,13r-7,-22v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-34,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"b":{"d":"25,0r1,-256r32,0r0,110v36,-61,134,-29,134,57v0,93,-95,122,-138,61r-2,28r-27,0xm107,-153v-35,-1,-53,36,-49,83v3,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-18,-65,-52,-65","w":204,"k":{"J":9,",":6,".":6," ":4}},"c":{"d":"145,-30r5,24v-8,4,-26,10,-50,10v-52,0,-86,-36,-86,-89v0,-70,74,-113,137,-83r-7,24v-41,-24,-106,5,-98,57v-3,58,55,78,99,57","w":161,"k":{"M":-1,"Y":2,"Z":-5,"\u0179":-5,"\u017b":-5,"B":-6,"D":-6,"E":-6,"F":-6,"H":-6,"I":-6,"K":-6,"L":-6,"N":-6,"P":-6,"R":-6,"\u0141":-6,"\u0118":-6,"\u0143":-6,"b":-5,"h":-5,"k":-5,"l":-5,"\u0142":-5,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"t":-6,"u":-6,"v":4,"w":4,"y":4,"-":12}},"d":{"d":"145,-256r31,0r2,256r-28,0v-2,-9,0,-22,-3,-30v-32,62,-133,31,-133,-55v0,-86,90,-119,131,-67r0,-104xm97,-22v35,1,48,-34,48,-81v0,-30,-19,-50,-47,-50v-33,0,-52,29,-52,67v0,35,17,64,51,64","w":203},"e":{"d":"166,-81r-122,0v-2,63,65,69,108,51r6,23v-11,5,-31,11,-59,11v-53,0,-85,-36,-85,-88v0,-53,31,-94,81,-94v64,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-51,-44,-51v-33,0,-46,29,-49,51","w":180,"k":{"M":1,"X":-10,"S":9,"\u015a":9,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u0118":4,"\u0143":4,"i":12,"m":12,"n":12,"p":12,"r":12,"\u0144":12,"\"":-1,"'":-1," ":2}},"f":{"d":"30,-174v-7,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-25,0r0,-24r25,0","w":105,"k":{"S":41,"\u015a":41,"j":-14,"i":30,"m":30,"n":30,"p":30,"r":30,"\u0144":30,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f3":1,"\u0107":1,"\u0119":1,"s":6,"\u015b":6,"u":-10,"v":-1,"w":-1,"y":-1,"z":-7,"\u017a":-7,"\u017c":-7,"x":24,"-":13,"\"":22,"'":22,",":8,".":8," ":23}},"g":{"d":"175,-26v0,96,-78,119,-146,87r8,-25v43,31,125,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v0,-90,99,-117,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v37,1,51,-35,47,-80v-3,-29,-18,-48,-46,-48v-31,0,-52,25,-52,66v0,34,17,62,51,62","w":201,"k":{"T":5,"X":18,"-":5}},"h":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v30,-46,116,-49,116,43r0,104r-32,0v-5,-59,21,-152,-40,-152","w":199,"k":{"Y":-6,"S":-6,"\u015a":-6,"a":-6,"\u0105":-6,"j":-1,"i":-5,"m":-5,"n":-5,"p":-5,"r":-5,"\u0144":-5,"t":-4,"z":4,"\u017a":4,"\u017c":4,"-":-5," ":11}},"i":{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-11,0,-19,-8,-19,-19v0,-11,8,-20,20,-20","w":84},"j":{"d":"-17,51v42,-8,47,-15,47,-79r0,-146r32,0v-9,98,36,247,-75,250xm46,-243v12,0,20,9,20,20v0,10,-8,19,-21,19v-11,0,-19,-9,-19,-19v0,-11,8,-20,20,-20","w":87},"k":{"d":"58,-256r0,162v21,-28,45,-53,67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168,"k":{"j":8,"i":3,"m":3,"n":3,"p":3,"r":3,"\u0144":3,"z":14,"\u017a":14,"\u017c":14}},"l":{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84},"m":{"d":"99,-152v-59,0,-39,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v14,-39,93,-43,105,3v28,-49,115,-58,115,41r0,102r-31,0v-4,-55,18,-152,-37,-152v-60,0,-37,93,-41,152r-31,0v-5,-56,20,-152,-36,-152","w":300,"k":{"Y":-6,"S":-6,"\u015a":-6,"a":-6,"\u0105":-6,"j":-1,"i":-5,"m":-5,"n":-5,"p":-5,"r":-5,"\u0144":-5,"t":-4,"z":4,"\u017a":4,"\u017c":4,"-":-5," ":11}},"n":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-54,120,41r0,104r-32,0v-5,-58,21,-152,-40,-152","w":199,"k":{"Y":-6,"S":-6,"\u015a":-6,"a":-6,"\u0105":-6,"j":-1,"i":-5,"m":-5,"n":-5,"p":-5,"r":-5,"\u0144":-5,"t":-4,"z":4,"\u017a":4,"\u017c":4,"-":-5," ":11}},"o":{"d":"100,-178v50,0,84,37,84,89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-15,-67,-53,-67","w":197,"k":{"J":9,",":6,".":6," ":4}},"p":{"d":"26,71r-1,-245r28,0r2,30v37,-64,137,-32,137,54v0,91,-90,121,-134,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,50,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"J":9,",":6,".":6," ":4}},"q":{"d":"145,71r-1,-98v-33,58,-130,28,-130,-57v0,-95,95,-120,133,-64r1,-26r30,0r-2,245r-31,0xm97,-21v37,1,48,-36,48,-83v0,-30,-19,-49,-47,-49v-32,0,-52,28,-52,67v0,35,16,65,51,65","w":202,"k":{"J":-5,"M":1,"C":4,"G":4,"O":4,"Q":4,"\u00d3":4,"\u0106":4,"V":12,"W":12,"X":9,"a":5,"\u0105":5,"x":2,":":-11,";":-11,")":-1,"]":-1,"}":-1,"\"":4,"'":4," ":-9}},"r":{"d":"112,-147v-69,-11,-53,81,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v9,-25,30,-42,57,-37r0,30","w":117,"k":{"\u0142":-9,"M":1,"U":4,"A":4,"\u0104":4,"Z":2,"\u0179":2,"\u017b":2,"a":-4,"\u0105":-4,"b":-9,"h":-9,"k":-9,"l":-9,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f3":1,"\u0107":1,"\u0119":1,"u":-10,"v":-11,"w":-11,"y":-11,"z":14,"\u017a":14,"\u017c":14,")":8,"]":8,"}":8}},"s":{"d":"14,-8r8,-24v18,15,76,19,76,-14v0,-15,-9,-24,-32,-31v-69,-20,-59,-99,13,-101v18,0,33,5,43,11r-8,23v-12,-12,-64,-17,-64,13v0,15,9,24,32,30v67,19,58,108,-19,105v-19,0,-36,-5,-49,-12","w":142,"k":{"J":-5,"Y":2,"B":-9,"D":-9,"E":-9,"F":-9,"H":-9,"I":-9,"K":-9,"L":-9,"N":-9,"P":-9,"R":-9,"\u0141":-9,"\u0118":-9,"\u0143":-9,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f3":7,"\u0107":7,"\u0119":7}},"t":{"d":"108,0v-40,13,-75,-6,-75,-55r0,-95r-27,0r0,-24r27,0r0,-33r31,-9r0,42r46,0r0,24r-46,0r0,94v-3,30,19,39,43,32","w":119},"u":{"d":"96,-22v64,0,39,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-16,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"J":-5,"M":1,"C":4,"G":4,"O":4,"Q":4,"\u00d3":4,"\u0106":4,"V":12,"W":12,"X":9,"a":5,"\u0105":5,"x":2,":":-11,";":-11,")":-1,"]":-1,"}":-1,"\"":4,"'":4," ":-9}},"v":{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173,"k":{"T":-10,"Y":28,"A":-7,"\u0104":-7,"Z":1,"\u0179":1,"\u017b":1,"S":5,"\u015a":5,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"N":10,"P":10,"R":10,"\u0141":10,"\u0118":10,"\u0143":10,"a":19,"\u0105":19,"f":5,"g":28,"s":-1,"\u015b":-1,"t":3,"u":4,"v":1,"w":1,"y":1,"z":1,"\u017a":1,"\u017c":1,"x":1,":":4,";":4,"-":4,")":8,"]":8,"}":8,"\"":-5,"'":-5}},"w":{"d":"6,-174r33,0r37,144v12,-50,29,-97,44,-144r27,0r43,144v9,-48,25,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-12,50,-29,94,-44,140r-29,0","w":264,"k":{"T":-10,"Y":28,"A":-7,"\u0104":-7,"Z":1,"\u0179":1,"\u017b":1,"S":5,"\u015a":5,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"N":10,"P":10,"R":10,"\u0141":10,"\u0118":10,"\u0143":10,"a":19,"\u0105":19,"f":5,"g":28,"s":-1,"\u015b":-1,"t":3,"u":4,"v":1,"w":1,"y":1,"z":1,"\u017a":1,"\u017c":1,"x":1,":":4,";":4,"-":4,")":8,"]":8,"}":8,"\"":-5,"'":-5}},"x":{"d":"6,-174r35,0r44,65v12,-23,27,-43,41,-65r35,0r-59,84r60,90r-35,0r-46,-69v-12,23,-29,47,-43,69r-35,0r62,-89","w":166,"k":{"J":-1,"C":5,"G":5,"O":5,"Q":5,"\u00d3":5,"\u0106":5,"g":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f3":-1,"\u0107":-1,"\u0119":-1,"x":-2,"-":-3,")":5,"]":5,"}":5}},"y":{"d":"13,53v24,-9,46,-28,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-60,232,-146,253","w":169,"k":{"T":-10,"Y":28,"A":-7,"\u0104":-7,"Z":1,"\u0179":1,"\u017b":1,"S":5,"\u015a":5,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"N":10,"P":10,"R":10,"\u0141":10,"\u0118":10,"\u0143":10,"a":19,"\u0105":19,"f":5,"g":28,"s":-1,"\u015b":-1,"t":3,"u":4,"v":1,"w":1,"y":1,"z":1,"\u017a":1,"\u017c":1,"x":1,":":4,";":4,"-":4,")":8,"]":8,"}":8,"\"":-5,"'":-5}},"z":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"M":1,"C":4,"G":4,"O":4,"Q":4,"\u00d3":4,"\u0106":4,"X":4,"Y":7,"A":-1,"\u0104":-1,"a":4,"\u0105":4,"g":-6,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0144":-7,"x":-6,":":-6,";":-6,")":-3,"]":-3,"}":-3}},"{":{"d":"33,-9v-1,-33,28,-82,-23,-86r0,-18v51,-3,22,-53,23,-87v1,-35,25,-49,60,-47r0,20v-74,-8,6,110,-56,123v62,8,-20,126,56,125r0,19v-35,1,-59,-10,-60,-49","w":102,"k":{"V":-31217,"W":-31217}},"|":{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},"}":{"d":"69,-200v1,35,-28,84,23,87r0,18v-51,4,-22,51,-23,86v-2,39,-25,51,-60,49r0,-19v73,6,-4,-112,56,-125v-60,-8,19,-126,-56,-123r0,-20v35,-1,59,12,60,47","w":102},"~":{"d":"197,-129v-1,98,-91,33,-137,23v-12,0,-20,9,-21,30r-21,0v-1,-36,18,-54,42,-54v24,0,71,32,96,31v13,0,19,-10,20,-30r21,0","w":214},"'":{"d":"18,-249r32,0r-6,86r-20,0","w":67},"`":{"d":"8,-249r34,0r32,51r-22,0","w":108},"\u0141":{"d":"164,0r-136,0r0,-97r-30,22r0,-24r30,-22r0,-122r32,0r0,100r48,-34r0,24r-48,35r0,92r104,0r0,26","w":171,"k":{"T":9,"J":13,"M":18,"C":18,"G":18,"O":18,"Q":18,"\u00d3":18,"\u0106":18,"U":-22,"V":-6,"W":-6,"Y":-12,"A":22,"\u0104":22,"v":12,"w":12,"y":12,",":2,".":2," ":-1}},"\u0142":{"d":"59,0r-31,0r0,-104r-25,21r0,-25r25,-21r0,-127r31,0r0,103r26,-22r0,25r-26,22r0,128","w":87},"\u00d3":{"d":"125,-247v67,0,110,51,110,123v0,83,-51,128,-113,128v-64,0,-109,-50,-109,-124v0,-77,47,-127,112,-127xm124,-221v-52,0,-78,48,-78,101v0,52,28,98,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-78,-99xm138,-298r38,0r-46,42r-25,0","w":248,"k":{"\u0142":-1,"T":3,"U":2,"S":4,"\u015a":4,"f":3,"g":7,"s":6,"\u015b":6,"t":8,"z":2,"\u017a":2,"\u017c":2,",":4,".":4," ":13}},"\u00f3":{"d":"100,-178v50,0,84,37,84,89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-15,-67,-53,-67xm111,-249r35,0r-44,51r-22,0","w":197,"k":{"J":9,",":6,".":6," ":4}},"\u0104":{"d":"129,-243r83,243v-28,-6,-46,50,-14,53v6,0,12,-2,17,-4r5,17v-24,15,-64,9,-63,-23v0,-18,13,-35,21,-44r-25,-75r-86,0r-25,76r-33,0r83,-243r37,0xm73,-101r74,0r-38,-114v-9,39,-24,77,-36,114","w":220,"k":{"Y":1,"g":31,"b":6,"h":6,"k":6,"l":6,"\u0142":6,"u":28,":":16,";":16,"-":6,"\"":9,"'":9," ":13}},"\u0106":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,98,-152,184,-117r-8,26v-66,-29,-143,7,-143,90v0,81,75,116,144,87xm144,-298r38,0r-46,42r-25,0","w":208,"k":{"T":-7,"C":-6,"G":-6,"O":-6,"Q":-6,"\u00d3":-6,"\u0106":-6,"V":2,"W":2,"X":-4,"A":-4,"\u0104":-4,"a":2,"\u0105":2,"f":6,"j":-8,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f3":2,"\u0107":2,"\u0119":2,"s":6,"\u015b":6,"t":-8,"v":1,"w":1,"y":1,"z":-3,"\u017a":-3,"\u017c":-3,"x":-6,"\"":32,"'":32,",":14,".":14," ":13}},"\u0118":{"d":"161,50r5,17v-23,13,-63,9,-63,-22v0,-19,17,-36,29,-45r-105,0r0,-243r131,0r0,27r-99,0r0,76r94,0r0,26r-94,0r0,88r105,0r0,26v-22,3,-34,26,-35,38v-1,17,18,17,32,12","w":177,"k":{"T":1,"J":5,"M":10,"Y":14,"A":15,"\u0104":15,"S":35,"\u015a":35,"B":42,"D":42,"E":42,"F":42,"H":42,"I":42,"K":42,"L":42,"N":42,"P":42,"R":42,"\u0141":42,"\u0118":42,"\u0143":42,"a":37,"\u0105":37,"s":4,"\u015b":4}},"\u0143":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,29,31,56,45,79v-6,-62,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81xm133,-298r39,0r-46,42r-26,0","w":236,"k":{"C":5,"G":5,"O":5,"Q":5,"\u00d3":5,"\u0106":5,"U":3,"V":30,"W":30,"X":11,"Z":9,"\u0179":9,"\u017b":9,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,"\u0141":9,"\u0118":9,"\u0143":9,"a":2,"\u0105":2,"g":6,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f3":5,"\u0107":5,"\u0119":5,"s":-1,"\u015b":-1,"v":4,"w":4,"y":4,"x":8,":":6,";":6,"-":-2,")":-8,"]":-8,"}":-8,"\"":50,"'":50}},"\u015a":{"d":"15,-12r8,-26v30,24,107,23,107,-26v0,-22,-13,-35,-46,-48v-39,-14,-64,-35,-64,-69v0,-58,86,-82,132,-54r-9,26v-7,-5,-23,-12,-45,-12v-34,0,-46,20,-46,37v0,22,14,36,48,46v88,25,83,142,-23,142v-23,0,-49,-7,-62,-16xm107,-298r39,0r-46,42r-26,0","w":177,"k":{"t":-3,"u":4,"-":21,")":2,"]":2,"}":2,"\"":1,"'":1," ":-1}},"\u0179":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm117,-298r38,0r-46,42r-25,0","w":199,"k":{"T":-6,"U":2,"u":-17,"v":-6,"w":-6,"y":-6,"x":4,"-":-15,")":4,"]":4,"}":4}},"\u017b":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm101,-259v-10,0,-18,-9,-18,-19v0,-9,8,-18,18,-18v10,0,17,9,17,18v0,10,-7,19,-17,19","w":199,"k":{"T":-6,"U":2,"u":-17,"v":-6,"w":-6,"y":-6,"x":4,"-":-15,")":4,"]":4,"}":4}},"\u0105":{"d":"82,-178v97,3,56,97,70,178v-24,-3,-34,53,-6,53v7,0,12,-2,16,-4r5,17v-23,16,-62,9,-62,-22v0,-27,27,-41,14,-66v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-19,-3,-42,-39,-43v-17,0,-34,4,-46,13r-7,-22v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-34,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"\u0107":{"d":"145,-30r5,24v-8,4,-26,10,-50,10v-52,0,-86,-36,-86,-89v0,-70,74,-113,137,-83r-7,24v-41,-24,-106,5,-98,57v-3,58,55,78,99,57xm109,-249r34,0r-44,51r-22,0","w":161,"k":{"M":-1,"Y":2,"Z":-5,"\u0179":-5,"\u017b":-5,"B":-6,"D":-6,"E":-6,"F":-6,"H":-6,"I":-6,"K":-6,"L":-6,"N":-6,"P":-6,"R":-6,"\u0141":-6,"\u0118":-6,"\u0143":-6,"b":-5,"h":-5,"k":-5,"l":-5,"\u0142":-5,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"t":-6,"u":-6,"v":4,"w":4,"y":4,"-":12}},"\u0119":{"d":"157,-7v-23,6,-50,23,-50,44v0,19,19,18,32,12r5,16v-20,16,-62,12,-62,-19v0,-18,15,-34,26,-42v-60,3,-93,-33,-94,-88v0,-53,31,-94,81,-94v64,0,75,53,71,97r-122,0v-2,63,65,69,108,51xm45,-104r92,0v0,-20,-8,-51,-44,-51v-32,0,-46,29,-48,51","w":180,"k":{"M":1,"X":-10,"S":9,"\u015a":9,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u0118":4,"\u0143":4,"i":12,"m":12,"n":12,"p":12,"r":12,"\u0144":12,"\"":-1,"'":-1," ":2}},"\u0144":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-54,120,41r0,104r-32,0v-5,-58,21,-152,-40,-152xm114,-249r35,0r-44,51r-22,0","w":199,"k":{"Y":-6,"S":-6,"\u015a":-6,"a":-6,"\u0105":-6,"j":-1,"i":-5,"m":-5,"n":-5,"p":-5,"r":-5,"\u0144":-5,"t":-4,"z":4,"\u017a":4,"\u017c":4,"-":-5," ":11}},"\u015b":{"d":"14,-8r8,-24v18,15,76,19,76,-14v0,-15,-9,-24,-32,-31v-69,-20,-59,-99,13,-101v18,0,33,5,43,11r-8,23v-12,-12,-64,-17,-64,13v0,15,9,24,32,30v67,19,58,108,-19,105v-19,0,-36,-5,-49,-12xm88,-249r35,0r-44,51r-22,0","w":142,"k":{"J":-5,"Y":2,"B":-9,"D":-9,"E":-9,"F":-9,"H":-9,"I":-9,"K":-9,"L":-9,"N":-9,"P":-9,"R":-9,"\u0141":-9,"\u0118":-9,"\u0143":-9,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f3":7,"\u0107":7,"\u0119":7}},"\u017a":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0xm94,-249r35,0r-44,51r-23,0","w":154,"k":{"M":1,"C":4,"G":4,"O":4,"Q":4,"\u00d3":4,"\u0106":4,"X":4,"Y":7,"A":-1,"\u0104":-1,"a":4,"\u0105":4,"g":-6,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0144":-7,"x":-6,":":-6,";":-6,")":-3,"]":-3,"}":-3}},"\u017c":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0xm78,-205v-11,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-7,19,-18,19","w":154,"k":{"M":1,"C":4,"G":4,"O":4,"Q":4,"\u00d3":4,"\u0106":4,"X":4,"Y":7,"A":-1,"\u0104":-1,"a":4,"\u0105":4,"g":-6,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0144":-7,"x":-6,":":-6,";":-6,")":-3,"]":-3,"}":-3}},"\u00a0":{"w":76}}});Cufon.registerFont({"w":199,"face":{"font-family":"Myriad Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-14 -306 315 90","underline-thickness":"18","underline-position":"-18","stemh":"40","stemv":"55","unicode-range":"U+0020-U+017C"},"glyphs":{" ":{"w":72},"!":{"d":"69,-80r-41,0r-8,-163r57,0xm48,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,14,32,33v0,19,-12,33,-32,33","w":96},"\"":{"d":"13,-249r48,0r-8,97r-32,0xm82,-249r48,0r-8,97r-32,0","w":142,"k":{"A":-4,"\u0104":-4,"C":34,"G":34,"O":34,"Q":34,"\u00d3":34,"\u0106":34,"M":-2,"Z":-2,"\u0179":-2,"\u017b":-2,":":23,";":23}},"#":{"d":"80,-98r33,0r6,-40r-33,0xm66,0r-33,0r10,-64r-30,0r0,-34r35,0r6,-40r-30,0r0,-33r35,0r9,-63r32,0r-9,63r33,0r9,-63r32,0r-9,63r29,0r0,33r-34,0r-6,40r30,0r0,34r-35,0r-9,64r-33,0r10,-64r-33,0","w":198},"$":{"d":"117,31r-36,0r0,-34v-24,-1,-48,-8,-61,-15r11,-42v20,14,94,28,94,-7v0,-14,-10,-25,-38,-31v-80,-17,-88,-116,-4,-130r0,-34r35,0r0,31v24,1,40,6,53,12r-11,41v-8,-12,-83,-23,-83,8v0,11,12,21,44,30v82,23,77,120,-4,134r0,37"},"%":{"d":"76,-238v40,0,62,30,62,70v0,48,-31,74,-65,74v-35,0,-63,-26,-63,-71v0,-41,25,-73,66,-73xm74,-208v-16,0,-24,19,-24,42v0,25,9,43,25,43v15,0,23,-16,23,-43v0,-24,-7,-42,-24,-42xm105,4r-29,0r135,-242r29,0xm244,-141v40,0,63,30,63,70v0,48,-31,74,-65,74v-35,0,-63,-26,-63,-70v0,-42,25,-74,65,-74xm243,-111v-17,0,-24,19,-24,42v0,25,9,42,24,42v15,0,23,-15,23,-42v0,-24,-6,-42,-23,-42","w":316},"&":{"d":"177,-190v0,25,-18,46,-48,64v14,15,29,33,41,45v10,-15,17,-37,20,-59r49,0v-6,37,-18,68,-40,92r43,48r-64,0v-5,-5,-10,-11,-16,-17v-15,12,-37,21,-66,21v-105,0,-104,-107,-39,-140v-35,-42,-17,-110,55,-111v37,0,65,22,65,57xm63,-74v0,36,53,50,74,26v-15,-15,-35,-37,-55,-60v-10,8,-19,18,-19,34xm131,-189v0,-11,-7,-26,-22,-24v-30,4,-25,43,-4,60v17,-12,26,-22,26,-36","w":244},"(":{"d":"63,-249r38,0v-47,59,-48,232,0,291r-38,0v-19,-28,-41,-76,-41,-145v0,-70,22,-118,41,-146","w":113,"k":{"X":-31217,"C":33,"G":33,"O":33,"Q":33,"\u00d3":33,"\u0106":33}},")":{"d":"51,42r-38,0v46,-59,47,-232,0,-291r38,0v19,28,41,75,41,146v0,70,-22,117,-41,145","w":113},"*":{"d":"103,-247r31,18r-39,47r58,-11r0,36v-19,-2,-41,-9,-58,-9r39,45r-32,18r-21,-55r-21,55r-31,-18v11,-15,30,-31,38,-46r-56,10r0,-36v18,2,40,10,56,10r-38,-45r32,-19v8,18,12,39,21,56","w":163},"+":{"d":"90,-192r35,0r0,79r75,0r0,33r-75,0r0,80r-35,0r0,-80r-76,0r0,-33r76,0r0,-79","w":214},",":{"d":"37,40r-37,3v12,-32,22,-70,27,-102r55,-4v-11,37,-28,75,-45,103","w":93,"k":{"T":26,"-":-7}},"-":{"d":"11,-113r94,0r0,37r-94,0r0,-37","w":115,"k":{"U":27,"Z":35,"\u0179":35,"\u017b":35,"T":-1,")":3,"]":3,"}":3,",":-1,".":-1}},".":{"d":"50,4v-19,0,-32,-14,-32,-33v0,-20,13,-34,32,-34v19,0,32,14,32,34v0,19,-13,33,-32,33","w":93,"k":{"T":26,"-":-7}},"\/":{"d":"42,14r-36,0r77,-261r36,0","w":119},"0":{"d":"101,-238v62,0,87,56,87,120v0,72,-29,122,-89,122v-60,0,-87,-54,-87,-121v0,-68,28,-121,89,-121xm100,-197v-20,0,-33,26,-33,80v0,54,13,80,33,80v22,0,33,-27,33,-80v0,-52,-11,-80,-33,-80"},"1":{"d":"85,0r-1,-185r-44,21r-9,-41r62,-29r45,0r0,234r-53,0"},"2":{"d":"181,0r-166,0r0,-33v38,-35,116,-98,107,-127v4,-44,-69,-38,-88,-15r-16,-39v18,-13,45,-24,77,-24v53,0,82,31,82,73v0,49,-50,88,-84,120r88,0r0,45"},"3":{"d":"14,-12r11,-42v18,17,101,24,97,-16v-3,-31,-35,-36,-69,-34r0,-39v29,1,61,0,63,-27v2,-34,-68,-25,-84,-11r-11,-39v14,-9,42,-18,73,-18v86,0,104,90,34,113v28,5,51,27,51,58v0,41,-36,71,-96,71v-30,0,-56,-8,-69,-16"},"4":{"d":"164,0r-52,0r0,-56r-104,0r0,-35r88,-143r68,0r0,137r28,0r0,41r-28,0r0,56xm59,-98v15,3,36,0,53,1r0,-95v-15,34,-35,63,-53,94"},"5":{"d":"76,-153v56,-6,106,20,105,75v0,43,-38,82,-101,82v-28,0,-52,-7,-65,-13r10,-41v26,14,100,21,100,-25v8,-33,-56,-44,-98,-36r15,-123r129,0r0,45r-90,0"},"6":{"d":"165,-237r0,42v-53,-3,-98,25,-97,56v43,-38,122,-13,122,58v0,47,-36,85,-86,85v-113,0,-113,-155,-51,-207v28,-24,64,-36,112,-34xm100,-118v-20,0,-35,13,-35,34v0,25,13,48,38,48v19,0,32,-18,32,-42v0,-21,-12,-40,-35,-40"},"7":{"d":"18,-234r165,0r0,35r-97,199r-58,0r97,-189r-107,0r0,-45"},"8":{"d":"98,4v-99,0,-109,-95,-45,-125v-65,-33,-28,-121,49,-117v88,4,98,79,43,113v75,28,45,129,-47,129xm100,-34v20,0,32,-12,32,-29v0,-21,-15,-33,-36,-39v-39,8,-38,66,4,68xm99,-201v-18,0,-28,13,-28,27v0,16,14,26,33,32v29,-6,36,-58,-5,-59"},"9":{"d":"32,-39v54,4,91,-19,99,-59v-41,37,-120,10,-120,-56v0,-45,37,-84,88,-84v110,0,106,161,48,209v-29,24,-67,35,-115,32r0,-42xm98,-120v20,0,33,-7,33,-29v0,-25,-9,-49,-34,-49v-19,0,-32,17,-32,41v0,20,11,37,33,37"},":":{"d":"50,-112v-19,0,-32,-14,-32,-33v0,-20,14,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33xm50,4v-19,0,-32,-14,-32,-33v0,-19,14,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33","w":93,"k":{")":3,"]":3,"}":3,":":5,";":5,"-":-10}},";":{"d":"37,40r-36,3v11,-32,21,-70,26,-102r55,-4v-11,37,-28,75,-45,103xm52,-112v-19,0,-32,-14,-32,-33v0,-20,13,-33,32,-33v19,0,32,13,32,33v0,19,-12,33,-32,33","w":93,"k":{")":3,"]":3,"}":3,":":5,";":5,"-":-10}},"<":{"d":"21,-80r0,-31r173,-81r0,39r-131,58r131,57r0,38","w":214},"=":{"d":"200,-117r-186,0r0,-33r186,0r0,33xm200,-42r-186,0r0,-34r186,0r0,34","w":214},">":{"d":"194,-112r0,33r-173,79r0,-38r133,-58r-133,-57r0,-39","w":214},"?":{"d":"147,-191v1,50,-55,61,-49,112r-48,0v-14,-39,38,-72,41,-103v3,-28,-45,-25,-61,-11r-13,-39v14,-8,35,-15,60,-15v48,0,70,26,70,56xm72,4v-19,0,-32,-14,-32,-33v0,-19,14,-33,32,-33v20,0,32,14,33,33v0,19,-13,33,-33,33","w":160},"@":{"d":"129,-52v24,0,33,-44,36,-72v-30,-9,-54,18,-54,49v0,14,6,23,18,23xm190,4r7,20v-82,36,-179,-3,-179,-100v0,-73,54,-137,135,-137v63,0,109,43,109,104v0,53,-30,86,-69,86v-17,0,-29,-9,-31,-28v-22,40,-87,38,-87,-19v0,-60,68,-104,127,-75r-11,67v-3,21,-1,30,9,31v16,1,35,-19,35,-61v0,-47,-30,-83,-86,-83v-55,0,-103,43,-103,112v0,81,77,113,144,83","w":277},"A":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99","w":236,"k":{"Z":3,"\u0179":3,"\u017b":3,"b":25,"h":25,"k":25,"l":25,"\u0142":25,"v":24,"w":24,"y":24,"x":5,")":7,"]":7,"}":7,"\"":9,"'":9,",":10,".":10," ":7}},"B":{"d":"204,-71v0,59,-45,73,-121,74v-27,0,-47,-2,-59,-4r0,-238v61,-8,171,-17,171,56v0,21,-12,41,-39,52v27,8,48,29,48,60xm78,-203r0,56v32,2,65,-5,62,-29v4,-27,-37,-31,-62,-27xm78,-107r0,68v32,4,69,-2,68,-34v0,-31,-33,-36,-68,-34","w":217,"k":{"A":6,"\u0104":6,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0144":-1,"s":-1,"\u015b":-1,"t":1,"u":1,"v":-3,"w":-3,"y":-3,"z":1,"\u017a":1,"\u017c":1}},"C":{"d":"194,-50r8,44v-10,4,-33,10,-62,10v-84,0,-127,-53,-127,-122v0,-106,104,-150,192,-117r-12,43v-53,-23,-123,-3,-123,71v0,67,65,94,124,71","w":214,"k":{"V":5,"W":5,"A":6,"\u0104":6,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"N":7,"P":7,"R":7,"\u0141":7,"\u0118":7,"\u0143":7,"f":15,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"\u0144":-3,"s":3,"\u015b":3,"t":8,"u":-3,"v":-1,"w":-1,"y":-1,"x":3,"a":-1,"\u0105":-1,"z":-3,"\u017a":-3,"\u017c":-3,"\"":37,"'":37,",":11,".":11," ":23}},"D":{"d":"238,-127v5,116,-103,141,-214,126r0,-238v20,-3,46,-5,74,-5v91,0,136,34,140,117xm78,-200r0,159v61,7,102,-19,102,-84v0,-60,-44,-85,-102,-75","w":250,"k":{"\u0142":-3,"T":5,"A":1,"\u0104":1,"M":9,"f":4,"g":13,"j":3,"t":6,"u":6,"x":-1,"a":4,"\u0105":4,",":17,".":17,"C":2,"G":2,"O":2,"Q":2,"\u00d3":2,"\u0106":2,"X":-4,"Z":5,"\u0179":5,"\u017b":5,"-":-2,"\"":21,"'":21}},"E":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0","w":192,"k":{"T":4,"J":13,"U":-1,"Y":-1,"Z":6,"\u0179":6,"\u017b":6,"A":6,"\u0104":6,"S":36,"\u015a":36,"B":44,"D":44,"E":44,"F":44,"H":44,"I":44,"K":44,"L":44,"N":44,"P":44,"R":44,"\u0141":44,"\u0118":44,"\u0143":44,"f":35,"t":5," ":-1,"C":-1,"G":-1,"O":-1,"Q":-1,"\u00d3":-1,"\u0106":-1,"\"":6,"'":6}},"F":{"d":"24,0r0,-243r148,0r0,45r-93,0r0,56r87,0r0,44r-87,0r0,98r-55,0","w":189,"k":{"A":10,"\u0104":10,"f":3,"g":12,"b":13,"h":13,"k":13,"l":13,"\u0142":13,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0144":6,"u":-4,"v":-1,"w":-1,"y":-1,"x":-1,"z":-1,"\u017a":-1,"\u017c":-1,"-":-2,")":-4,"]":-4,"}":-4,"\"":4,"'":4}},"G":{"d":"145,3v-83,1,-128,-45,-132,-121v-6,-107,116,-149,206,-116r-12,45v-53,-25,-137,-9,-137,68v0,60,47,89,104,76r0,-51r-38,0r0,-43r90,0r0,128v-16,6,-49,14,-81,14","w":245},"H":{"d":"24,-243r55,0r0,94r90,0r0,-94r55,0r0,243r-55,0r0,-102r-90,0r0,102r-55,0r0,-243","w":248,"k":{"J":3,"C":10,"G":10,"O":10,"Q":10,"\u00d3":10,"\u0106":10,"U":7,"V":3,"W":3,"X":-3,"Y":5,"S":9,"\u015a":9,"g":3,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0144":-4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"\u0119":4,"s":-3,"\u015b":-3,"u":6,"x":4,"z":6,"\u017a":6,"\u017c":6,":":5,";":5,"-":-6,")":-9,"]":-9,"}":-9,"\"":-2,"'":-2,"T":-2}},"I":{"d":"24,-243r55,0r0,243r-55,0r0,-243","w":102,"k":{"J":3,"C":10,"G":10,"O":10,"Q":10,"\u00d3":10,"\u0106":10,"U":7,"V":3,"W":3,"X":-3,"Y":5,"S":9,"\u015a":9,"g":3,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0144":-4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"\u0119":4,"s":-3,"\u015b":-3,"u":6,"x":4,"z":6,"\u017a":6,"\u017c":6,":":5,";":5,"-":-6,")":-9,"]":-9,"}":-9,"\"":-2,"'":-2,"T":-2}},"J":{"d":"71,-90r0,-153r55,0r0,154v3,86,-58,104,-126,87r6,-44v34,8,65,8,65,-44","w":147},"K":{"d":"24,0r0,-243r54,0r1,108r71,-108r68,0r-80,104r84,139r-64,0r-59,-105r-21,26r0,79r-54,0","w":221,"k":{"T":-3,"C":-4,"G":-4,"O":-4,"Q":-4,"\u00d3":-4,"\u0106":-4,"X":-4,"Z":1,"\u0179":1,"\u017b":1,"M":-3,"s":-2,"\u015b":-2,":":-8,";":-8,")":-10,"]":-10,"}":-10,"\"":4,"'":4,",":26,".":26," ":1,"A":-6,"\u0104":-6}},"L":{"d":"24,0r0,-243r55,0r0,197r96,0r0,46r-151,0","w":183,"k":{"T":13,"J":15,"C":19,"G":19,"O":19,"Q":19,"\u00d3":19,"\u0106":19,"U":22,"V":-11,"W":-11,"X":-3,"Z":-6,"\u0179":-6,"\u017b":-6,"A":30,"\u0104":30,"x":11}},"M":{"d":"233,0r-7,-193r-57,189r-43,0r-26,-94v-7,-28,-15,-63,-22,-95r-9,193r-51,0r16,-243r73,0r24,81v10,27,12,63,22,87v12,-58,32,-114,48,-168r72,0r13,243r-53,0","w":304,"k":{"U":-8,"V":14,"W":14,"X":3,"Z":-2,"\u0179":-2,"\u017b":-2,"B":19,"D":19,"E":19,"F":19,"H":19,"I":19,"K":19,"L":19,"N":19,"P":19,"R":19,"\u0141":19,"\u0118":19,"\u0143":19,"g":3,"i":3,"m":3,"n":3,"p":3,"r":3,"\u0144":3,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f3":3,"\u0107":3,"\u0119":3,"t":10,"u":15,"v":14,"w":14,"y":14,"x":3,"a":11,"\u0105":11,"z":5,"\u017a":5,"\u017c":5,"-":-1,")":-1,"]":-1,"}":-1,"\"":9,"'":9,",":2,".":2}},"N":{"d":"74,0r-50,0r0,-243r64,0v30,56,66,111,90,172r-4,-172r51,0r0,243r-58,0r-52,-94v-15,-25,-29,-59,-43,-85","w":248,"k":{"J":3,"C":10,"G":10,"O":10,"Q":10,"\u00d3":10,"\u0106":10,"U":7,"V":3,"W":3,"X":-3,"Y":5,"S":9,"\u015a":9,"g":3,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0144":-4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"\u0119":4,"s":-3,"\u015b":-3,"u":6,"x":4,"z":6,"\u017a":6,"\u017c":6,":":5,";":5,"-":-6,")":-9,"]":-9,"}":-9,"\"":-2,"'":-2,"T":-2}},"O":{"d":"131,-247v74,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-54,-114,-124v0,-73,46,-127,118,-127xm130,-203v-38,0,-59,35,-59,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-58,-81","w":258,"k":{"\u0142":-3,"T":5,"A":1,"\u0104":1,"M":9,"f":4,"g":13,"j":3,"t":6,"u":6,"x":-1,"a":4,"\u0105":4,",":17,".":17,"C":2,"G":2,"O":2,"Q":2,"\u00d3":2,"\u0106":2,"X":-4,"Z":5,"\u0179":5,"\u017b":5,"-":-2,"\"":21,"'":21}},"P":{"d":"198,-169v2,63,-54,89,-120,82r0,87r-54,0r0,-239v17,-3,40,-5,74,-5v62,-1,98,21,100,75xm78,-201r0,72v34,6,69,-8,66,-38v4,-30,-36,-41,-66,-34","w":209,"k":{"T":16,"J":26,"C":1,"G":1,"O":1,"Q":1,"\u00d3":1,"\u0106":1,"U":20,"V":33,"W":33,"X":1,"Y":18,"Z":16,"\u0179":16,"\u017b":16,"A":26,"\u0104":26,"M":8,"S":-12,"\u015a":-12,"B":-3,"D":-3,"E":-3,"F":-3,"H":-3,"I":-3,"K":-3,"L":-3,"N":-3,"P":-3,"R":-3,"\u0141":-3,"\u0118":-3,"\u0143":-3,"f":4,"g":-1,"b":42,"h":42,"k":42,"l":42,"\u0142":42,"v":-8,"w":-8,"y":-8,"x":8,":":2,";":2,"-":13,")":10,"]":10,"}":10,",":7,".":7}},"Q":{"d":"231,42v-39,-10,-71,-32,-112,-38v-54,-8,-106,-44,-106,-124v0,-73,46,-127,118,-127v74,0,115,56,115,123v0,57,-29,92,-57,110v18,5,39,10,58,13xm130,-40v37,0,58,-35,58,-82v0,-45,-21,-81,-58,-81v-38,0,-59,36,-59,82v0,46,22,81,59,81","w":258,"k":{"\u0142":-3,"T":5,"A":1,"\u0104":1,"M":9,"f":4,"g":13,"j":3,"t":6,"u":6,"x":-1,"a":4,"\u0105":4,",":17,".":17,"C":2,"G":2,"O":2,"Q":2,"\u00d3":2,"\u0106":2,"X":-4,"Z":5,"\u0179":5,"\u017b":5,"-":-2,"\"":21,"'":21}},"R":{"d":"97,-244v61,0,99,16,101,70v1,31,-24,51,-43,60v35,8,40,92,52,114r-56,0v-4,-7,-10,-27,-17,-57v-8,-37,-21,-39,-56,-38r0,95r-54,0r0,-239v17,-3,43,-5,73,-5xm78,-202r0,67v35,3,65,-6,65,-35v0,-31,-37,-36,-65,-32","w":213,"k":{"a":-1,"\u0105":-1,":":-1,";":-1,")":-1,"]":-1,"}":-1,"\"":3,"'":3}},"S":{"d":"14,-12r12,-45v21,16,100,29,99,-11v0,-15,-12,-23,-41,-34v-40,-14,-67,-36,-67,-72v0,-41,35,-72,92,-72v28,0,48,5,62,12r-12,44v-14,-13,-86,-20,-86,12v0,15,12,24,45,34v96,30,81,150,-35,148v-28,0,-55,-8,-69,-16","w":194,"k":{"u":-2,"v":4,"w":4,"y":4,"-":21,")":3,"]":3,"}":3,",":-3,".":-3}},"T":{"d":"71,0r0,-197r-66,0r0,-46r187,0r0,46r-66,0r0,197r-55,0","w":197,"k":{"i":8,"t":-1,"v":2,"w":2,"y":2,"A":14,"\u0104":14,"C":28,"G":28,"O":28,"Q":28,"\u00d3":28,"\u0106":28,"T":33,"M":17,":":9,";":9,"-":-3,")":5,"]":5,"}":5,"\"":7,"'":7}},"U":{"d":"24,-243r54,0v6,70,-24,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-62,0,-97,-34,-97,-111r0,-136","w":245,"k":{"J":1,"C":3,"G":3,"O":3,"Q":3,"\u00d3":3,"\u0106":3,"V":-3,"W":-3,"Y":2,"A":5,"\u0104":5,"S":-3,"\u015a":-3,"j":-4,"s":3,"\u015b":3,"t":5}},"V":{"d":"145,0r-64,0r-78,-243r60,0r30,103v10,28,13,61,23,87v13,-66,35,-127,52,-190r59,0","w":228,"k":{"J":-10,"C":-3,"G":-3,"O":-3,"Q":-3,"\u00d3":-3,"\u0106":-3,"V":1,"W":1,"X":-26,"Y":-15,"Z":-15,"\u0179":-15,"\u017b":-15,"A":-23,"\u0104":-23,"M":14,"-":2}},"W":{"d":"123,0r-60,0r-58,-243r59,0r34,185r36,-185r58,0r33,184r34,-184r56,0r-63,243r-59,0r-21,-104r-12,-75v-9,63,-25,119,-37,179","w":319,"k":{"J":-10,"C":-3,"G":-3,"O":-3,"Q":-3,"\u00d3":-3,"\u0106":-3,"V":1,"W":1,"X":-26,"Y":-15,"Z":-15,"\u0179":-15,"\u017b":-15,"A":-23,"\u0104":-23,"M":14,"-":2}},"X":{"d":"215,0r-63,0r-45,-87v-10,27,-27,59,-39,87r-62,0r70,-123r-68,-120r63,0r41,85v10,-32,24,-56,37,-85r62,0r-68,119","w":220,"k":{"V":15,"W":15,"X":8,"A":8,"\u0104":8,"S":19,"\u015a":19,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0144":-2,"C":9,"G":9,"O":9,"Q":9,"\u00d3":9,"\u0106":9,":":-3,";":-3,"-":-3,",":3,".":3}},"Y":{"d":"135,0r-55,0r0,-99r-77,-144r63,0r44,105r43,-105r62,0r-80,142r0,101","w":217,"k":{"Y":-1,",":2,".":2," ":-4}},"Z":{"d":"9,0r0,-30r115,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-188,0","w":207,"k":{"v":-8,"w":-8,"y":-8,"x":-4,"a":8,"\u0105":8,":":-10,";":-10,")":7,"]":7,"}":7}},"[":{"d":"98,40r-74,0r0,-287r74,0r0,30r-34,0r0,227r34,0r0,30","w":113,"k":{"X":-31217,"C":33,"G":33,"O":33,"Q":33,"\u00d3":33,"\u0106":33}},"\\":{"d":"113,14r-36,0r-73,-261r37,0","w":118},"]":{"d":"15,-247r74,0r0,287r-74,0r0,-30r34,0r0,-227r-34,0r0,-30","w":113},"^":{"d":"199,-64r-39,0r-53,-128r-53,128r-39,0r76,-170r33,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"91,-180v104,-2,69,96,80,180r-49,0v-2,-6,-1,-14,-4,-18v-29,40,-108,20,-108,-32v0,-46,41,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-6,36,-15,68,-15xm86,-35v23,-1,33,-20,30,-48v-29,0,-52,7,-52,28v0,14,10,20,22,20","w":190},"b":{"d":"21,0r1,-256r55,0r0,101v41,-51,126,-19,126,64v0,91,-87,124,-134,67r-2,24r-46,0xm148,-89v0,-54,-69,-68,-71,-12v-1,34,4,61,33,62v23,0,38,-18,38,-50","w":215,"k":{"J":13,",":4,".":4," ":4}},"c":{"d":"148,-45r6,40v-62,26,-150,-7,-142,-81v-6,-65,69,-113,142,-87r-8,41v-32,-16,-78,2,-78,43v0,45,44,59,80,44","w":162,"k":{"J":-3,"Y":4,"A":-6,"\u0104":-6,"S":-5,"\u015a":-5,"f":-1,"j":-4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"\u00f3":-4,"\u0107":-4,"\u0119":-4,"t":-2,"u":-11,"v":-6,"w":-6,"y":-6,"x":3,"-":15}},"d":{"d":"138,-256r55,0r1,256r-49,0v-2,-8,0,-20,-3,-26v-39,61,-130,23,-130,-60v0,-83,77,-118,126,-75r0,-95xm67,-88v0,57,71,65,71,10v0,-33,-3,-59,-33,-60v-25,0,-38,22,-38,50","w":214},"e":{"d":"177,-71r-113,0v3,40,65,39,98,26r8,37v-68,30,-158,3,-158,-78v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,22,-34,36","w":190,"k":{"T":4,"Y":-11,"A":1,"\u0104":1,"S":8,"\u015a":8,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"\u0141":6,"\u0118":6,"\u0143":6,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f3":12,"\u0107":12,"\u0119":12}},"f":{"d":"28,-176v-6,-57,43,-98,100,-80r-2,42v-26,-8,-49,6,-43,38r35,0r0,40r-35,0r0,136r-55,0r0,-136r-23,0r0,-40r23,0","w":122,"k":{"S":45,"\u015a":45,"i":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u0144":-7,"c":31,"d":31,"e":31,"o":31,"q":31,"\u00f3":31,"\u0107":31,"\u0119":31,"s":14,"\u015b":14,"u":-4,"v":-3,"w":-3,"y":-3,"x":-5,"a":-1,"\u0105":-1,"z":26,"\u017a":26,"\u017c":26,":":2,";":2,"-":5,")":23,"]":23,"}":23,"\"":-1,"'":-1,",":23,".":23," ":15}},"g":{"d":"189,-26v11,91,-87,123,-162,88r11,-42v32,22,111,19,96,-44v-41,51,-122,10,-122,-63v0,-81,87,-122,129,-68r2,-21r47,0xm67,-89v0,54,67,64,67,11v0,-32,-3,-62,-31,-61v-20,0,-36,18,-36,50","w":210,"k":{"T":6,"Y":21,":":2,";":2}},"h":{"d":"106,-136v-51,4,-22,88,-29,136r-55,0r0,-256r55,0r0,101v34,-44,112,-30,112,52r0,103r-55,0v-6,-48,19,-131,-28,-136","w":210,"k":{"A":5,"\u0104":5,"M":-4,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"\u0141":-4,"\u0118":-4,"\u0143":-4,"f":5,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0144":-1,"s":-2,"\u015b":-2,"u":-1,"a":2,"\u0105":2,"-":-1," ":13}},"i":{"d":"77,0r-55,0r0,-176r55,0r0,176xm50,-252v17,0,28,12,28,27v0,15,-11,27,-29,27v-17,0,-28,-12,-28,-27v0,-15,11,-27,29,-27","w":98},"j":{"d":"-14,35v39,-7,42,-13,43,-69r0,-142r55,0v-7,107,36,260,-93,253xm57,-252v17,0,28,12,28,27v0,15,-11,27,-29,27v-17,0,-29,-12,-29,-27v0,-15,12,-27,30,-27","w":104},"k":{"d":"77,-256r0,154v15,-26,33,-49,49,-74r66,0r-63,71r72,105r-68,0r-43,-72r-13,17r0,55r-55,0r0,-256r55,0","w":195,"k":{"i":8,"m":8,"n":8,"p":8,"r":8,"\u0144":8,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f3":3,"\u0107":3,"\u0119":3,"a":18,"\u0105":18}},"l":{"d":"22,0r0,-256r55,0r0,256r-55,0","w":99},"m":{"d":"103,-136v-49,0,-21,88,-28,136r-53,0r-1,-176r46,0v2,7,0,18,3,24v8,-12,24,-28,53,-28v24,0,41,12,49,30v32,-48,116,-42,116,46r0,104r-53,0r0,-96v0,-25,-8,-40,-26,-40v-47,0,-20,89,-27,136r-53,0r0,-99v0,-22,-8,-37,-26,-37","w":309,"k":{"A":5,"\u0104":5,"M":-4,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"\u0141":-4,"\u0118":-4,"\u0143":-4,"f":5,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0144":-1,"s":-2,"\u015b":-2,"u":-1,"a":2,"\u0105":2,"-":-1," ":13}},"n":{"d":"107,-136v-52,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-11,24,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-22,-8,-38,-27,-38","w":210,"k":{"A":5,"\u0104":5,"M":-4,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"\u0141":-4,"\u0118":-4,"\u0143":-4,"f":5,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0144":-1,"s":-2,"\u015b":-2,"u":-1,"a":2,"\u0105":2,"-":-1," ":13}},"o":{"d":"106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-52,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v22,0,35,-22,35,-54v0,-25,-10,-52,-35,-52","w":207,"k":{"J":13,",":4,".":4," ":4}},"p":{"d":"22,71r-1,-247r47,0r3,24v42,-54,132,-27,132,62v0,86,-81,118,-126,74r0,87r-55,0xm148,-88v0,-56,-68,-67,-71,-12v-2,34,4,62,33,62v24,0,38,-20,38,-50","w":215,"k":{"J":13,",":4,".":4," ":4}},"q":{"d":"12,-86v0,-88,85,-121,128,-69r1,-21r53,0r-1,247r-55,0r-1,-93v-41,54,-125,19,-125,-64xm67,-88v0,56,69,66,71,12v1,-33,-3,-61,-33,-62v-25,0,-38,22,-38,50","w":214,"k":{"J":-6,"C":3,"G":3,"O":3,"Q":3,"\u00d3":3,"\u0106":3,"U":7,"X":9,"Y":12,"f":7,"z":-10,"\u017a":-10,"\u017c":-10,":":3,";":3,")":3,"]":3,"}":3,",":-6,".":-6," ":-5}},"r":{"d":"130,-128v-31,-5,-53,8,-53,39r0,89r-55,0r-1,-176r46,0v2,10,-2,26,4,32v13,-30,32,-39,59,-35r0,51","w":136,"k":{"\u0142":-1,"U":5,"Z":5,"\u0179":5,"\u017b":5,"A":6,"\u0104":6,"B":-7,"D":-7,"E":-7,"F":-7,"H":-7,"I":-7,"K":-7,"L":-7,"N":-7,"P":-7,"R":-7,"\u0141":-7,"\u0118":-7,"\u0143":-7,"g":3,"j":-2,"s":3,"\u015b":3,"v":-9,"w":-9,"y":-9,"x":-7,"a":17,"\u0105":17,")":10,"]":10,"}":10}},"s":{"d":"12,-9r10,-39v13,10,70,24,70,-1v0,-9,-5,-14,-25,-20v-81,-23,-59,-111,21,-111v20,0,38,5,49,10r-9,38v-11,-7,-58,-20,-59,4v0,8,7,14,28,20v75,22,60,116,-28,112v-23,0,-44,-5,-57,-13","w":156,"k":{"T":-7,"Z":1,"\u0179":1,"\u017b":1,"B":-5,"D":-5,"E":-5,"F":-5,"H":-5,"I":-5,"K":-5,"L":-5,"N":-5,"P":-5,"R":-5,"\u0141":-5,"\u0118":-5,"\u0143":-5,"s":10,"\u015b":10}},"t":{"d":"121,-1v-47,14,-91,-2,-91,-63r0,-72r-24,0r0,-40r24,0r0,-33r53,-15r0,48r39,0r0,40r-39,0v4,39,-17,108,38,94r0,41","w":132},"u":{"d":"76,-81v-8,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-22,-62,-77r0,-103r55,0r0,95","w":209,"k":{"J":-6,"C":3,"G":3,"O":3,"Q":3,"\u00d3":3,"\u0106":3,"U":7,"X":9,"Y":12,"f":7,"z":-10,"\u017a":-10,"\u017c":-10,":":3,";":3,")":3,"]":3,"}":3,",":-6,".":-6," ":-5}},"v":{"d":"3,-176r60,0v13,40,19,88,35,125v7,-44,21,-84,32,-125r58,0r-66,176r-55,0","w":190,"k":{"T":-6,"Z":30,"\u0179":30,"\u017b":30,"A":-5,"\u0104":-5,"M":9,"S":13,"\u015a":13,"B":21,"D":21,"E":21,"F":21,"H":21,"I":21,"K":21,"L":21,"N":21,"P":21,"R":21,"\u0141":21,"\u0118":21,"\u0143":21,"f":9,"g":34,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"t":5,"u":5,"v":2,"w":2,"y":2,"x":2,"a":2,"\u0105":2,"z":5,"\u017a":5,"\u017c":5,":":1,";":1,"-":11,")":1,"]":1,"}":1}},"w":{"d":"4,-176r56,0r25,130r31,-130r43,0r32,130v5,-45,16,-88,25,-130r54,0r-54,176r-51,0r-29,-117v-7,47,-17,77,-29,117r-52,0","w":273,"k":{"T":-6,"Z":30,"\u0179":30,"\u017b":30,"A":-5,"\u0104":-5,"M":9,"S":13,"\u015a":13,"B":21,"D":21,"E":21,"F":21,"H":21,"I":21,"K":21,"L":21,"N":21,"P":21,"R":21,"\u0141":21,"\u0118":21,"\u0143":21,"f":9,"g":34,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"t":5,"u":5,"v":2,"w":2,"y":2,"x":2,"a":2,"\u0105":2,"z":5,"\u017a":5,"\u017c":5,":":1,";":1,"-":11,")":1,"]":1,"}":1}},"x":{"d":"3,-176r61,0v11,18,20,39,32,56r29,-56r60,0r-58,84r58,92r-62,0v-11,-19,-19,-41,-32,-58r-30,58r-60,0r60,-90","w":186,"k":{"T":4,"C":12,"G":12,"O":12,"Q":12,"\u00d3":12,"\u0106":12,"V":1,"W":1,"g":-2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f3":2,"\u0107":2,"\u0119":2,"t":-1,"z":-4,"\u017a":-4,"\u017c":-4,")":5,"]":5,"}":5}},"y":{"d":"20,33v21,-5,58,-22,47,-48r-65,-161r61,0r36,119r30,-119r58,0v-40,93,-59,246,-155,256","w":188,"k":{"T":-6,"Z":30,"\u0179":30,"\u017b":30,"A":-5,"\u0104":-5,"M":9,"S":13,"\u015a":13,"B":21,"D":21,"E":21,"F":21,"H":21,"I":21,"K":21,"L":21,"N":21,"P":21,"R":21,"\u0141":21,"\u0118":21,"\u0143":21,"f":9,"g":34,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"t":5,"u":5,"v":2,"w":2,"y":2,"x":2,"a":2,"\u0105":2,"z":5,"\u017a":5,"\u017c":5,":":1,";":1,"-":11,")":1,"]":1,"}":1}},"z":{"d":"8,0r0,-31r55,-70r28,-31r-77,0r0,-44r144,0r0,33r-53,67v-10,11,-19,22,-29,32r85,0r0,44r-153,0","w":168,"k":{"J":1,"C":7,"G":7,"O":7,"Q":7,"\u00d3":7,"\u0106":7,"X":7,"Y":12,"A":4,"\u0104":4,"M":-3,"f":1,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"j":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f3":-3,"\u0107":-3,"\u0119":-3,"z":-2,"\u017a":-2,"\u017c":-2,":":-8,";":-8,"-":-3}},"{":{"d":"34,-9v-2,-34,25,-76,-23,-81r0,-27v47,-4,23,-47,23,-81v0,-39,27,-52,68,-49r0,31v-63,-6,7,108,-56,113v37,1,31,51,27,87v-2,19,8,28,29,26r0,30v-40,2,-66,-8,-68,-49","w":113,"k":{"X":-31217,"C":33,"G":33,"O":33,"Q":33,"\u00d3":33,"\u0106":33}},"|":{"d":"32,-270r38,0r0,360r-38,0r0,-360","w":101},"}":{"d":"79,-198v0,34,-25,77,23,81r0,27v-47,5,-21,47,-23,81v-2,40,-27,51,-67,49r0,-30v62,5,-8,-109,55,-114v-37,-2,-30,-51,-27,-87v2,-18,-8,-27,-28,-25r0,-31v40,-2,67,11,67,49","w":113},"~":{"d":"151,-67v-25,0,-64,-30,-84,-32v-9,0,-16,6,-17,30r-35,0v0,-48,21,-67,51,-67v24,0,65,29,84,31v9,0,14,-8,15,-29r34,0v2,51,-20,67,-48,67","w":214},"'":{"d":"13,-249r48,0r-8,97r-32,0","w":73,"k":{"A":-4,"\u0104":-4,"C":34,"G":34,"O":34,"Q":34,"\u00d3":34,"\u0106":34,"M":-2,"Z":-2,"\u0179":-2,"\u017b":-2,":":23,";":23}},"`":{"d":"1,-253r51,0r31,55r-38,0","w":108},"\u0141":{"d":"177,0r-151,0r0,-85r-27,19r0,-38r27,-19r0,-120r55,0r0,84r45,-31r0,38r-45,31r0,75r96,0r0,46","w":186,"k":{"T":13,"J":15,"C":19,"G":19,"O":19,"Q":19,"\u00d3":19,"\u0106":19,"U":22,"V":-11,"W":-11,"X":-3,"Z":-6,"\u0179":-6,"\u017b":-6,"A":30,"\u0104":30,"x":11}},"\u0142":{"d":"79,0r-55,0r0,-82r-23,18r0,-39r23,-19r0,-134r55,0r0,94r25,-21r0,39r-25,21r0,123","w":103},"\u00d3":{"d":"131,-247v74,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-54,-114,-124v0,-73,46,-127,118,-127xm130,-203v-38,0,-59,35,-59,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-58,-81xm134,-300r58,0r-44,44r-44,0","w":258,"k":{"\u0142":-3,"T":5,"A":1,"\u0104":1,"M":9,"f":4,"g":13,"j":3,"t":6,"u":6,"x":-1,"a":4,"\u0105":4,",":17,".":17,"C":2,"G":2,"O":2,"Q":2,"\u00d3":2,"\u0106":2,"X":-4,"Z":5,"\u0179":5,"\u017b":5,"-":-2,"\"":21,"'":21}},"\u00f3":{"d":"106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-52,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v22,0,35,-22,35,-54v0,-25,-10,-52,-35,-52xm111,-253r50,0r-44,55r-37,0","w":207,"k":{"J":13,",":4,".":4," ":4}},"\u0104":{"d":"152,-243r76,243r-30,0v-11,12,-14,46,11,45v7,0,12,-1,16,-3r7,26v-27,19,-79,15,-77,-27v0,-17,10,-35,13,-41r-18,-62r-70,0r-17,62r-57,0r74,-243r72,0xm88,-103r54,0r-28,-99","w":236,"k":{"Z":3,"\u0179":3,"\u017b":3,"b":25,"h":25,"k":25,"l":25,"\u0142":25,"v":24,"w":24,"y":24,"x":5,")":7,"]":7,"}":7,"\"":9,"'":9,",":10,".":10," ":7}},"\u0106":{"d":"194,-50r8,44v-10,4,-33,10,-62,10v-84,0,-127,-53,-127,-122v0,-106,104,-150,192,-117r-12,43v-53,-23,-123,-3,-123,71v0,67,65,94,124,71xm136,-300r57,0r-44,44r-44,0","w":214,"k":{"V":5,"W":5,"A":6,"\u0104":6,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"N":7,"P":7,"R":7,"\u0141":7,"\u0118":7,"\u0143":7,"f":15,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"\u0144":-3,"s":3,"\u015b":3,"t":8,"u":-3,"v":-1,"w":-1,"y":-1,"x":3,"a":-1,"\u0105":-1,"z":-3,"\u017a":-3,"\u017c":-3,"\"":37,"'":37,",":11,".":11," ":23}},"\u0118":{"d":"174,42r7,26v-23,18,-76,16,-76,-23v0,-20,14,-36,26,-45r-107,0r0,-243r150,0r0,45r-95,0r0,51r89,0r0,44r-89,0r0,58r100,0r0,45v-21,0,-33,21,-34,33v-1,13,17,14,29,9","w":192,"k":{"T":4,"J":13,"U":-1,"Y":-1,"Z":6,"\u0179":6,"\u017b":6,"A":6,"\u0104":6,"S":36,"\u015a":36,"B":44,"D":44,"E":44,"F":44,"H":44,"I":44,"K":44,"L":44,"N":44,"P":44,"R":44,"\u0141":44,"\u0118":44,"\u0143":44,"f":35,"t":5," ":-1,"C":-1,"G":-1,"O":-1,"Q":-1,"\u00d3":-1,"\u0106":-1,"\"":6,"'":6}},"\u0143":{"d":"74,0r-50,0r0,-243r64,0v30,56,66,111,90,172r-4,-172r51,0r0,243r-58,0r-52,-94v-15,-25,-29,-59,-43,-85xm127,-300r57,0r-44,44r-44,0","w":248,"k":{"J":3,"C":10,"G":10,"O":10,"Q":10,"\u00d3":10,"\u0106":10,"U":7,"V":3,"W":3,"X":-3,"Y":5,"S":9,"\u015a":9,"g":3,"b":9,"h":9,"k":9,"l":9,"\u0142":9,"j":8,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0144":-4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"\u0119":4,"s":-3,"\u015b":-3,"u":6,"x":4,"z":6,"\u017a":6,"\u017c":6,":":5,";":5,"-":-6,")":-9,"]":-9,"}":-9,"\"":-2,"'":-2,"T":-2}},"\u015a":{"d":"14,-12r12,-45v21,16,100,29,99,-11v0,-15,-12,-23,-41,-34v-40,-14,-67,-36,-67,-72v0,-41,35,-72,92,-72v28,0,48,5,62,12r-12,44v-14,-13,-86,-20,-86,12v0,15,12,24,45,34v96,30,81,150,-35,148v-28,0,-55,-8,-69,-16xm105,-300r58,0r-44,44r-44,0","w":194,"k":{"u":-2,"v":4,"w":4,"y":4,"-":21,")":3,"]":3,"}":3,",":-3,".":-3}},"\u0179":{"d":"9,0r0,-30r115,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-188,0xm107,-300r58,0r-44,44r-44,0","w":207,"k":{"v":-8,"w":-8,"y":-8,"x":-4,"a":8,"\u0105":8,":":-10,";":-10,")":7,"]":7,"}":7}},"\u017b":{"d":"9,0r0,-30r115,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-188,0xm105,-257v-14,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,13,-11,24,-25,24","w":207,"k":{"v":-8,"w":-8,"y":-8,"x":-4,"a":8,"\u0105":8,":":-10,";":-10,")":7,"]":7,"}":7}},"\u0105":{"d":"91,-180v104,-2,69,96,80,180r-19,0v-10,12,-13,46,10,44v6,0,11,-1,15,-3r8,26v-27,21,-75,16,-75,-25v0,-27,19,-39,8,-60v-29,40,-108,20,-108,-32v0,-46,41,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-6,36,-15,68,-15xm86,-35v23,-1,33,-20,30,-48v-29,0,-52,7,-52,28v0,14,10,20,22,20","w":190},"\u0107":{"d":"148,-45r6,40v-62,26,-150,-7,-142,-81v-6,-65,69,-113,142,-87r-8,41v-32,-16,-78,2,-78,43v0,45,44,59,80,44xm105,-253r50,0r-44,55r-37,0","w":162,"k":{"J":-3,"Y":4,"A":-6,"\u0104":-6,"S":-5,"\u015a":-5,"f":-1,"j":-4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"\u00f3":-4,"\u0107":-4,"\u0119":-4,"t":-2,"u":-11,"v":-6,"w":-6,"y":-6,"x":3,"-":15}},"\u0119":{"d":"170,-8v-21,6,-45,23,-47,41v1,15,17,14,29,8r8,25v-22,19,-77,17,-75,-18v0,-20,14,-36,24,-44v-61,1,-97,-33,-97,-90v0,-45,28,-94,89,-94v64,0,84,54,76,109r-113,0v3,40,65,39,98,26xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,22,-34,36","w":190,"k":{"T":4,"Y":-11,"A":1,"\u0104":1,"S":8,"\u015a":8,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"\u0141":6,"\u0118":6,"\u0143":6,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f3":12,"\u0107":12,"\u0119":12}},"\u0144":{"d":"107,-136v-52,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-11,24,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-22,-8,-38,-27,-38xm109,-253r51,0r-44,55r-37,0","w":210,"k":{"A":5,"\u0104":5,"M":-4,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"\u0141":-4,"\u0118":-4,"\u0143":-4,"f":5,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0144":-1,"s":-2,"\u015b":-2,"u":-1,"a":2,"\u0105":2,"-":-1," ":13}},"\u015b":{"d":"12,-9r10,-39v13,10,70,24,70,-1v0,-9,-5,-14,-25,-20v-81,-23,-59,-111,21,-111v20,0,38,5,49,10r-9,38v-11,-7,-58,-20,-59,4v0,8,7,14,28,20v75,22,60,116,-28,112v-23,0,-44,-5,-57,-13xm87,-253r51,0r-44,55r-37,0","w":156,"k":{"T":-7,"Z":1,"\u0179":1,"\u017b":1,"B":-5,"D":-5,"E":-5,"F":-5,"H":-5,"I":-5,"K":-5,"L":-5,"N":-5,"P":-5,"R":-5,"\u0141":-5,"\u0118":-5,"\u0143":-5,"s":10,"\u015b":10}},"\u017a":{"d":"8,0r0,-31r55,-70r28,-31r-77,0r0,-44r144,0r0,33r-53,67v-10,11,-19,22,-29,32r85,0r0,44r-153,0xm93,-253r51,0r-44,55r-38,0","w":168,"k":{"J":1,"C":7,"G":7,"O":7,"Q":7,"\u00d3":7,"\u0106":7,"X":7,"Y":12,"A":4,"\u0104":4,"M":-3,"f":1,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"j":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f3":-3,"\u0107":-3,"\u0119":-3,"z":-2,"\u017a":-2,"\u017c":-2,":":-8,";":-8,"-":-3}},"\u017c":{"d":"8,0r0,-31r55,-70r28,-31r-77,0r0,-44r144,0r0,33r-53,67v-10,11,-19,22,-29,32r85,0r0,44r-153,0xm85,-201v-14,0,-25,-11,-25,-25v0,-14,11,-25,26,-25v14,0,24,11,24,25v0,14,-10,25,-25,25","w":168,"k":{"J":1,"C":7,"G":7,"O":7,"Q":7,"\u00d3":7,"\u0106":7,"X":7,"Y":12,"A":4,"\u0104":4,"M":-3,"f":1,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"j":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f3":-3,"\u0107":-3,"\u0119":-3,"z":-2,"\u017a":-2,"\u017c":-2,":":-8,";":-8,"-":-3}},"\u00a0":{"w":72}}});

Cufon.replace('.cf', { fontFamily: 'Myriad Pro' });
if($.browser.msie && jQuery.browser.version.substr(0,1) == "6"){
	
}
else
{	
	Cufon.replace('#side-col h3', { fontFamily: 'Myriad Pro' });
}


/*

Quicksand 1.2.1

Reorder and filter items with a nice shuffling animation.

Copyright (c) 2010 Jacek Galanciak (razorjack.net) and agilope.com
Big thanks for Piotr Petrus (riddle.pl) for deep code review and wonderful docs & demos.

Dual licensed under the MIT and GPL version 2 licenses.
http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt
http://github.com/jquery/jquery/blob/master/GPL-LICENSE.txt

Project site: http://razorjack.net/quicksand
Github site: http://github.com/razorjack/quicksand

*/

(function(a){a.fn.quicksand=function(y,r,t){var b={duration:750,easing:"swing",attribute:"data-id",adjustHeight:"auto",useScaling:true,enhancement:function(){},selector:"> *"};a.extend(b,r);if(a.browser.msie||typeof a.fn.scale=="undefined")b.useScaling=false;var o;if(typeof r=="function")o=r;else if(typeof(t=="function"))o=t;return this.each(function(k){var m,i=[],l=a(y).clone(),g=a(this);k=a(this).css("height");var p,u=false,v=a(g).offset(),s=[],n=a(this).find(b.selector);if(a.browser.msie&&a.browser.version.substr(0,
1)<7)g.html("").append(l);else{var w=0,z=function(){if(!w){g.html(j.html());typeof o=="function"&&o.call(this);u&&g.css("height",p);b.enhancement(g);w=1}},c=g.offsetParent(),e=c.offset();if(c.css("position")=="relative"){if(c.get(0).nodeName.toLowerCase()!="body"){e.top+=parseFloat(c.css("border-top-width"));e.left+=parseFloat(c.css("border-left-width"))}}else{e.top-=parseFloat(c.css("border-top-width"));e.left-=parseFloat(c.css("border-left-width"));e.top-=parseFloat(c.css("margin-top"));e.left-=
parseFloat(c.css("margin-left"))}g.css("height",a(this).height());n.each(function(f){s[f]=a(this).offset()});a(this).stop();n.each(function(f){a(this).stop();var h=a(this).get(0);h.style.position="absolute";h.style.margin="0";h.style.top=s[f].top-parseFloat(h.style.marginTop)-e.top+"px";h.style.left=s[f].left-parseFloat(h.style.marginLeft)-e.left+"px"});var j=a(g).clone();c=j.get(0);c.innerHTML="";c.setAttribute("id","");c.style.height="auto";c.style.width=g.width()+"px";j.append(l);j.insertBefore(g);
j.css("opacity",0);c.style.zIndex=-1;c.style.margin="0";c.style.position="absolute";c.style.top=v.top-e.top+"px";c.style.left=v.left-e.left+"px";if(b.adjustHeight==="dynamic")g.animate({height:j.height()},b.duration,b.easing);else if(b.adjustHeight==="auto"){p=j.height();if(parseFloat(k)<parseFloat(p))g.css("height",p);else u=true}n.each(function(){var f=[];if(typeof b.attribute=="function"){m=b.attribute(a(this));l.each(function(){if(b.attribute(this)==m){f=a(this);return false}})}else f=l.filter("["+
b.attribute+"="+a(this).attr(b.attribute)+"]");if(f.length)b.useScaling?i.push({element:a(this),animation:{top:f.offset().top-e.top,left:f.offset().left-e.left,opacity:1,scale:"1.0"}}):i.push({element:a(this),animation:{top:f.offset().top-e.top,left:f.offset().left-e.left,opacity:1}});else b.useScaling?i.push({element:a(this),animation:{opacity:"0.0",scale:"0.0"}}):i.push({element:a(this),animation:{opacity:"0.0"}})});l.each(function(){var f=[],h=[];if(typeof b.attribute=="function"){m=b.attribute(a(this));
n.each(function(){if(b.attribute(this)==m){f=a(this);return false}});l.each(function(){if(b.attribute(this)==m){h=a(this);return false}})}else{f=n.filter("["+b.attribute+"="+a(this).attr(b.attribute)+"]");h=l.filter("["+b.attribute+"="+a(this).attr(b.attribute)+"]")}var x;if(f.length===0){x=b.useScaling?{opacity:"1.0",scale:"1.0"}:{opacity:"1.0"};d=h.clone();var q=d.get(0);q.style.position="absolute";q.style.margin="0";q.style.top=h.offset().top-e.top+"px";q.style.left=h.offset().left-e.left+"px";
d.css("opacity",0);b.useScaling&&d.css("transform","scale(0.0)");d.appendTo(g);i.push({element:a(d),animation:x})}});j.remove();b.enhancement(g);for(k=0;k<i.length;k++)i[k].element.animate(i[k].animation,b.duration,b.easing,z)}})}})(jQuery);


/*
 * Scripts
 *
 */
 
 $.easing.custom = function (x, t, b, c, d) { 
    //var s = 1.70158;  
    var s = 1;  
    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
}


 
jQuery(function($) {

var $list = $('#projects-a');
var $data = $list.clone();
var $preferences = {
					duration: 700,
					easing: 'easeInOutQuad',
					adjustHeight: false,
					useScaling : false
			  };

	var Engine = {
		utils : {
			links : function(){
				$('a[rel*=external]').click(function(e){
					e.preventDefault();
					window.open($(this).attr('href'));
				});
			},
			mails : function(){
				$('a[href^=mailto:]').each(function(){
					var mail = $(this).attr('href').replace('mailto:','');
					var replaced = mail.replace('/at/','@');
					$(this).attr('href','mailto:'+replaced);
					if($(this).text() == mail) {
						$(this).text(replaced);
					}
				});
			}
		},
		ui : {
			sideBarClickArea : function () {
				$('#side-col ul li').click(function(){
					var url = $(this).find('a').attr('href');
					window.location = url;
				});
			},
			sideBarHover : function () {
				$('#side-col ul li a').hover(
					function () {
					  $(this).parent().find('div').show();
					  
					}, 
					function () {
					  $(this).parent().find('div').hide();
					}	
				);
			},	
			portfolioInit : function () {				
				if($.cookie('view-type') == 2)
				{
					$('.view-trigger').removeClass('checked');
					$('.view-trigger').eq(1).addClass('checked');
					$('#projects-wrapper').hide();
					$('#projects-a-container').show();
				}
				
				if($.cookie('filter-type') != 'all' && $.cookie('filter-type') !== null)
				{					
					$('.by-filter-trigger').removeClass('checked')
					$('.by-filter-trigger').filter('[rel*="'+$.cookie('filter-type')+'"]').addClass('checked');
					$preferences.duration = 0;
					Engine.ui.portfolioFilter($.cookie('filter-type'));
					$preferences.duration = 700;
				}
				
			},
			portfolioBehaviors : function () {
				$('.view-trigger').click(function (e) {
					e.preventDefault();
					if(!$(this).hasClass('checked'))
					{					
						//$('#projects-wrapper').toggleClass('view-type-1');
						//$('#projects-a-container').toggleClass('view-type-1');
																		
						$('#projects-wrapper').slideToggle('normal', function() {
							// Animation complete.	
							if($('#projects-wrapper').is(':visible'))
							{
								$.cookie('view-type', 1, {expires : 100});
							}
							else
							{
								$.cookie('view-type', 2, {expires : 100});
							}
						});
						
						$('#projects-a-container').slideToggle('normal', function() {
							// Animation complete.
						});						
					}
					$('.view-trigger').removeClass('checked');
					$(this).addClass('checked');					
				});
				
				$('.by-filter-trigger').click(function (e) {
					e.preventDefault();
					var myClass = $(this).attr('rel');
					
					$.cookie('filter-type', myClass, {expires : 100});
					
					if(!$(this).hasClass('checked'))
					{						
						Engine.ui.portfolioFilter(myClass);						
					}
					$('.by-filter-trigger').removeClass('checked')
					$(this).addClass('checked');
				});				
			},
			portfolioFilter : function (myClass) {			 
				if(myClass == 'all')
				{
					$filtered_data = $data.find('li');
				}
				else
				{
					//$filtered_data = $data.find('li');
					$filtered_data = $data.find('li.'+myClass);
				}					  
				$list.quicksand($filtered_data, $preferences);
			},
			
			addScrollableTestimonialsControls : function () {
				$('#testimonials').before('<p class="prev nav"><a><span>Poprzedni</span></a></p>');
				$('#testimonials').after('<p class="next nav"><a><span>Następny</span></a></p>');
			},
			scrollableTestimonialsInit : function () {
				Engine.ui.addScrollableTestimonialsControls();
				$("#testimonials").scrollable({vertical:true, size: 1, clickable: false });
			},
			addScrollableProjectsControls : function () {
				$('#projects').before('<p class="prevPage nav"><a><span>Poprzedni</span></a></p>');
				$('#projects').after('<p class="nextPage nav"><a><span>Następny</span></a></p>');
				$("#projects").after('<div class="navi"></div>');
			},
			scrollableProjectsInit : function () {
				Engine.ui.addScrollableProjectsControls();
				$("#projects").scrollable({size: 3, clickable: false, nextPage: '.nextPage', prevPage: '.prevPage' }).navigator();
				
				$("#projects-wrapper .navi a").each(function (i) {					
					$countNum = $(this).attr('href', i);
					$countNum = i+1;					
					$(this).html($countNum);					
				});
			},
			scrollableShowcaseInit : function () {				
				$("#showcase").after('<div class="navi"></div>');
				$('#showcase').before('<p class="prev nav"><a><span>Poprzedni</span></a></p>');
				$('#showcase').after('<p class="next nav"><a><span>Następny</span></a></p>');
				$("#showcase").scrollable({ size: 1, speed: 800, easing: 'custom', clickable: false }).circular().navigator().mousewheel();				
				
				$("#showcase-container .navi a").each(function (i) {					
					$countNum = $(this).attr('href', i);
					$countNum = i+1;					
					$(this).html($countNum);					
				});
			},
			scrollableShowcaseNoJS : function () {
				$("#showcase .items a").click(function (e) { 
					e.preventDefault();
				});
			},
			toolTipsInit : function () {
				//Coda Bubble
			   $('#project-nav li').each(function () {
					var distance = 10;
					var time = 250;
					var hideDelay = 0;

					var hideDelayTimer = null;

					var beingShown = false;
					var shown = false;
					var trigger = $('.trigger', this);
					var info = $('.bubble', this).css('opacity', 0);


					$([trigger.get(0), info.get(0)]).mouseover(function () {
						 if (hideDelayTimer) clearTimeout(hideDelayTimer);
						 if (beingShown || shown) {
							  // don't trigger the animation again
							  return;
						 } else {
							  // reset position of info box
							  beingShown = true;

							  info.css({
									top: -120,
									left: -100,
									display: 'block'
							  }).animate({
									top: '-=' + distance + 'px',
									opacity: 1
							  }, time, 'swing', function() {
									beingShown = false;
									shown = true;
							  });
						 }

						 return false;
					}).mouseout(function () {
						 if (hideDelayTimer) clearTimeout(hideDelayTimer);
						 hideDelayTimer = setTimeout(function () {
							  hideDelayTimer = null;
							  info.animate({
									top: '-=' + distance + 'px',
									opacity: 0
							  }, time, 'swing', function () {
									shown = false;
									info.css('display', 'none');
							  });

						 }, hideDelay);

						 return false;
					});
			   });			
			},
			scopeAccordionInit : function () {
				
				var loc = window.location;
				loc = loc.toString();				
				var id = "#"+loc.split("#")[1];
				
				if(id != 'undefined')
				{
					$('#scope-list li'+id+' div').show();				
					$('#scope-list li'+id).addClass('expanded');		
				}				
				
				$('#scope-list li span').click(function () {
					
					var $parent = $(this).parent();					
					
					$('#scope-list li div:visible').each(function () {
						$(this).slideUp();
						$(this).parent().removeClass('expanded');						
					});
					
					var $div = $parent.find('div');
					if($div.is(':visible'))
					{
						$div.slideUp();
						$parent.removeClass('expanded');
					}
					else
					{
						$div.slideDown();
						$parent.addClass('expanded');
					}
				});
			}
		},
		forms : {
			validateContactForm : function () {
				$("#contact-form").validate({
					rules: {
						fname: "required",
						email: {
							required: true,
							email: true
						},
						message: "required"
					},
					messages: {
						fname: "Nie przedstawiłeś się, wpisz swoje imię i nazwisko.",
						email: {
							required: "Wpisz poprawny adres e-mail.",
							email: "Wpisz poprawny adres e-mail."
						},
						message: "Wiadomość nie może być pusta."
					}
				});
			},
			focusIEFix : function () {
				$("input, textarea").focus(function () {
					$(this).addClass('focus');
				});

				$("input, textarea").blur(function () {
					$(this).removeClass('focus');
				});
			}
		}
	};
	
	Engine.utils.links();
	Engine.utils.mails();
	Engine.ui.sideBarClickArea();	
	Engine.ui.scrollableTestimonialsInit();
	Engine.ui.scrollableProjectsInit();
	Engine.ui.scrollableShowcaseInit();
	Engine.ui.scrollableShowcaseNoJS();
	Engine.ui.toolTipsInit();
	Engine.ui.sideBarHover();
	Engine.ui.scopeAccordionInit();
	Engine.ui.portfolioInit();
	Engine.ui.portfolioBehaviors();
	Engine.forms.validateContactForm();
	Engine.forms.focusIEFix();

});
