/*
 * 	Easy Slider 1.8 - jQuery plugin
 *	written by Alen Grakalic (modified by Kyle Florence - kyle.florence@gmail.com)
 *	http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
 *
 *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */


(function($)
{
    $.fn.easySlider = function(options)
    {
        // default configuration properties
        var defaults = {
            prevId:         'prevBtn',
            prevText:       '',
            nextId:         'nextBtn',
            nextText:       '',
            controlsShow:   true,
            controlsBefore: '',
            controlsAfter:  '',
            controlsFade:   true,
            insertAfter:    false,
            firstId:        'firstBtn',
            firstText:      'First',
            firstShow:      false,
            lastId:         'lastBtn',
            lastText:       'Last',
            lastShow:       false,
            vertical:       false,
            speed:          800,
            ease:           'swing',
            auto:           false,
            pause:          3000,
            continuous:     false,
            prevNext:       true,
            numeric:        false,
            numericId:      'controls'
        };

        var options = $.extend(defaults, options);

        this.each(function()
        {
            var obj = $(this);

            // Fix for nested list items
            var ul = obj.children("ul");
            var li = ul.children("li");

            var s = li.length;
            var w = obj.width();
            var h = obj.height();

            var t = 0;
            var ts = s-1;
            var clickable = true;

            // Set obj overflow to hidden
            obj.css("overflow","hidden");

            // Set width/height of list items based on width/height of obj
            li.each(function() {
               if(options.vertical) $(this).height(h);
                else $(this).width(w);
            });

            // Float items to the left
            li.css('float', 'left');

            // Set width/height of ul
            if(options.vertical) ul.height(s*w);
            else ul.width(s*h);

            // Clone elements for continuous scrolling
            if(options.continuous)
            {
                if(options.vertical)
                {
                    ul.prepend(li.filter(":last-child").clone().css("margin-top","-"+ h +"px"));
                    ul.append(li.filter(":nth-child(2)").clone());
                    ul.height((s+1)*h);
                } else {
                    ul.prepend(li.filter(":last-child").clone().css("margin-left","-"+ w +"px"));
                    ul.append(li.filter(":nth-child(2)").clone());
                    ul.width((s+1)*w);
                }
            };

            if(options.controlsShow)
            {
                var html = options.controlsBefore;
                if(options.numeric){
                    html += '<ol id="'+ options.numericId +'"></ol>';
					html += '<a class="controls" href="/portfolio">View portfolio &rarr; </a>';
                }
                if(options.firstShow) {
                    html += '<span id="'+ options.firstId +'"><a href="#">'+ options.firstText +'</a></span>';
                }
                if(options.prevNext){
                    html += '<span id="'+ options.prevId +'"><a href="#">'+ options.prevText +'</a></span>';
                    html += '<span id="'+ options.nextId +'"><a href="#">'+ options.nextText +'</a></span>';
                }
                if(options.lastShow) {
                    html += '<span id="'+ options.lastId +'"><a href="#">'+ options.lastText +'</a></span>';
                }
                html += options.controlsAfter;

                if (options.insertAfter) $(obj).after(html);
                else $(obj).before(html);
            };

            if(options.numeric)
            {
                for(var i=0;i<s;i++)
                {
                    $(document.createElement("li"))
                        .attr('id',options.numericId + (i+1))
                        .html('<a rel="'+ i +'" href="#"><span>'+ (i+1) +'</span></a>')
                        .appendTo($("#"+ options.numericId))
                        .click(function(){
                            animate($("a",$(this)).attr('rel'),true);
                            return false;
                        });
                };
            }

            if(options.prevNext)
            {
                $("a","#"+options.nextId).click(function(){
                    animate("next",true); return false;
                });
                $("a","#"+options.prevId).click(function(){
                    animate("prev",true); return false;
                });
                $("a","#"+options.firstId).click(function(){
                    animate("first",true); return false;
                });
                $("a","#"+options.lastId).click(function(){
                    animate("last",true); return false;
                });
            };

            function setCurrent(i)
            {
                i = parseInt(i)+1;
                $("li", "#" + options.numericId).removeClass("current");
                $("li#" + options.numericId + i).addClass("current");
            };

            function adjust()
            {
                if(t>ts) t=0;
                if(t<0) t=ts;
                if(!options.vertical) {
                    ul.css("margin-left",(t*w*-1));
                } else {
                    ul.css("margin-top",(t*h*-1));
                }
                clickable = true;
                if(options.numeric) setCurrent(t);
            };

            function animate(dir,clicked)
            {
                if (clickable)
                {
                    clickable = false;
                    var ot = t;
                    switch(dir)
                    {
                        case "next":
                            t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;
                            break;
                        case "prev":
                            t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;
                            break;
                        case "first":
                            t = 0;
                            break;
                        case "last":
                            t = ts;
                            break;
                        default:
                            t = parseInt(dir);
                            break;
                    };

                    var diff = Math.abs(ot-t);
                    var speed = diff*options.speed;
                    if(!options.vertical) {
                        p = (t*w*-1);
                        ul.animate(
                            { marginLeft: p },
                            {
                                queue:false,
                                duration:speed,
                                easing:options.ease,
                                complete:adjust
                            }
                        );
                    } else {
                        p = (t*h*-1);
                        ul.animate(
                            { marginTop: p },
                            {
                                queue:false,
                                duration:speed,
                                easing:options.ease,
                                complete:adjust
                            }
                        );
                    };

                    if(!options.continuous && options.controlsFade)
                    {
                        if(t==0){
                            $("a","#"+options.prevId).fadeOut('slow');
                            $("a","#"+options.firstId).fadeOut('slow');
                        } else if(t==ts){
                            $("a","#"+options.nextId).fadeOut('slow');
                            $("a","#"+options.lastId).fadeOut('slow');
                        } else {
                            $("a","#"+options.prevId).fadeIn('slow');
                            $("a","#"+options.firstId).fadeIn('slow');
                            $("a","#"+options.nextId).fadeIn('slow');
                            $("a","#"+options.lastId).fadeIn('slow');
                        };
                    };

                    if(clicked) clearTimeout(timeout);
                    if(options.auto && dir=="next" && !clicked){;
                        timeout = setTimeout(function(){
                            animate("next",false);
                        },diff*options.speed+options.pause);
                    };

                };
            };
            // init
            var timeout;
            if(options.auto){;
                timeout = setTimeout(function(){
                    animate("next",false);
                },options.pause);
            };

            if(options.numeric) setCurrent(0);

            if(!options.continuous && options.controlsFade){
                $("a","#"+options.prevId).hide();
                $("a","#"+options.firstId).hide();
            };

        });

    };
})(jQuery);


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());



/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Ronda-Light
 */
Cufon.registerFont({"w":225,"face":{"font-family":"Ronda","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-41 -308 327 93.3858","underline-thickness":"2.52","underline-position":"-14.76","stemh":"27","stemv":"28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":87},"!":{"d":"54,-276r-30,0r0,214r30,0r0,-214xm18,-16v2,30,47,27,45,-3v-2,-30,-47,-27,-45,3","w":79},"\"":{"d":"46,-207v2,-13,32,-73,-7,-73v-39,0,-9,60,-6,73r13,0xm106,-207v0,-7,14,-34,15,-52v1,-12,-10,-21,-22,-21v-40,0,-8,61,-5,73r12,0","w":132},"#":{"d":"198,-116r85,0r11,-20r-86,0r22,-43r86,0r11,-20r-86,0r39,-74r-25,0r-39,74r-49,0r39,-74r-25,0r-38,74r-80,0r-11,20r80,0r-22,43r-80,0r-11,20r80,0r-39,74r25,0r38,-74r50,0r-39,74r25,0xm183,-136r-49,0r23,-43r49,0","w":342},"$":{"d":"88,-25r31,-103v28,9,44,40,35,68v-10,29,-38,43,-66,35xm123,-246r-26,82v-27,-5,-47,-28,-38,-57v8,-26,40,-38,64,-25xm19,-89v-2,38,8,58,33,77r-18,59r31,0r14,-46v49,15,103,-19,106,-74v3,-50,-35,-77,-58,-84r42,-141r-31,0r-7,25v-47,-23,-103,14,-103,66v0,37,26,63,61,71r-27,95v-10,-8,-15,-21,-14,-39","w":203},"%":{"d":"147,-50v0,-19,15,-35,34,-35v48,0,40,68,1,69v-19,1,-35,-15,-35,-34xm181,7v32,0,58,-26,58,-58v0,-32,-27,-59,-59,-58v-32,0,-57,26,-57,58v0,32,26,58,58,58xm42,-215v0,-19,16,-34,34,-34v19,0,34,15,34,34v0,18,-15,33,-33,34v-19,1,-35,-15,-35,-34xm121,-249r57,0r-136,249r28,0r150,-273r-143,-1v-33,0,-59,26,-59,58v0,32,26,58,58,58v46,0,77,-59,45,-91","w":253},"&":{"d":"114,-251v26,0,46,21,46,46v0,26,-21,47,-47,47v-26,0,-48,-22,-47,-48v0,-26,21,-45,48,-45xm120,-134v37,-2,66,-34,67,-71v1,-41,-33,-71,-73,-73v-58,-3,-98,72,-60,118v-48,39,-43,109,0,144v39,32,96,27,128,-11r25,27r42,0r-49,-51r50,-78r-24,-15r-47,71xm75,-139r86,92v-22,27,-63,31,-90,7v-30,-26,-30,-74,4,-99","w":263},"(":{"d":"18,-139v-3,90,58,165,142,182r0,-28v-67,-19,-117,-80,-114,-155v3,-70,54,-124,114,-140r0,-28v-75,14,-139,83,-142,169","w":177},")":{"d":"161,-139v3,90,-59,165,-143,182r0,-28v67,-19,117,-80,114,-155v-3,-70,-54,-124,-114,-140r0,-28v75,14,140,83,143,169","w":176},"*":{"d":"71,-234r0,-44r26,0r0,44r39,-23r14,23r-40,23r40,21r-14,24r-39,-22r0,45r-26,0r0,-45r-39,23r-14,-23r40,-23r-40,-20r14,-24","w":165},"+":{"d":"100,-190r22,0r0,84r83,0r0,24r-83,0r0,83r-22,0r0,-83r-83,0r-1,-24r84,0r0,-84","w":221},",":{"d":"45,30r-26,0r19,-30v-25,-3,-24,-46,3,-43v41,5,9,51,4,73","w":78},"-":{"d":"31,-100r0,-27r87,0r0,27r-87,0","w":154},".":{"d":"18,-22v-1,30,43,30,44,1v1,-29,-44,-30,-44,-1","w":77},"\/":{"d":"183,-282r6,3r-148,288r-8,-4","w":213},"0":{"d":"275,-144v5,67,-49,123,-113,121v-62,-2,-116,-56,-112,-119v4,-67,54,-110,116,-107v58,2,104,47,109,105xm19,-141v-3,79,64,145,143,146v81,1,147,-68,141,-151v-5,-74,-64,-132,-139,-133v-77,-1,-142,61,-145,138","w":318},"1":{"d":"18,-245r49,0r0,245r30,0r0,-273r-79,0r0,28","w":113},"2":{"d":"18,-197r29,0v3,-24,23,-53,59,-53v29,0,53,21,56,50v3,28,-18,53,-23,59r-107,141r155,0r0,-29r-97,0r81,-107v47,-52,6,-143,-67,-143v-43,0,-83,36,-86,82","w":207},"3":{"d":"62,-212r-27,0v2,-37,31,-65,70,-67v63,-3,97,81,49,121v76,35,42,163,-45,163v-50,0,-90,-39,-90,-88r29,0v0,33,29,62,62,60v32,-2,57,-29,57,-61v0,-31,-22,-55,-52,-59r0,-23v8,-4,37,-13,33,-49v-3,-21,-22,-37,-43,-37v-23,0,-40,17,-43,40","w":214},"4":{"d":"161,-203r0,119r-106,0xm19,-84r16,28r126,0r0,56r29,0r0,-56r26,0r0,-28r-26,0r0,-194","w":231},"5":{"d":"178,-246r0,-27r-127,0r-11,119r24,13v33,-47,127,-23,127,41v0,40,-30,78,-72,77v-37,0,-65,-28,-70,-63r-31,0v3,49,46,91,101,91v58,0,101,-46,101,-103v0,-71,-84,-123,-149,-83r6,-65r101,0","w":235},"6":{"d":"117,-21v39,0,68,-33,68,-71v-1,-39,-31,-69,-68,-69v-37,-1,-68,30,-70,67v-2,39,31,73,70,73xm86,-180v64,-27,126,26,126,89v0,55,-44,97,-96,97v-74,0,-115,-88,-77,-158r66,-121r32,0","w":227},"7":{"d":"37,0r30,0r111,-273r-160,0r0,27r118,0","w":191},"8":{"d":"65,-210v1,-23,20,-41,43,-41v23,0,42,19,43,42v1,24,-19,43,-42,43v-27,1,-45,-20,-44,-44xm110,-147v33,0,59,26,62,59v3,36,-26,64,-60,65v-38,1,-67,-30,-65,-66v2,-33,30,-58,63,-58xm108,-278v-62,0,-95,81,-50,120v-21,13,-38,37,-40,68v-3,51,42,95,94,95v51,0,92,-42,88,-93v-2,-32,-18,-55,-42,-71v46,-41,10,-119,-50,-119","w":216},"9":{"d":"113,-253v-39,0,-68,34,-68,72v1,39,31,68,68,68v37,1,68,-29,70,-66v2,-39,-31,-74,-70,-74xm154,-95v-68,32,-136,-20,-136,-87v0,-55,44,-97,96,-97v44,0,87,30,96,78v6,31,-4,57,-15,82r-52,119r-30,0","w":227},":":{"d":"18,-22v-1,30,44,30,44,1v1,-29,-44,-30,-44,-1xm18,-80v-1,29,44,31,44,2v1,-30,-44,-31,-44,-2","w":78},";":{"d":"45,30r-26,0r19,-30v-25,-3,-24,-46,3,-43v41,5,9,51,4,73xm17,-80v-1,29,44,31,44,2v1,-30,-44,-31,-44,-2","w":76},"<":{"d":"18,-105r0,19r184,86r0,-23r-154,-72r154,-69r0,-25","w":219},"=":{"d":"18,-130r191,0r0,21r-191,0r0,-21xm18,-59r191,0r0,22r-191,0r0,-22"},">":{"d":"203,-106r0,20r-184,86r0,-24r154,-72r-154,-69r0,-25","w":216},"?":{"d":"60,-16v0,12,11,22,23,22v12,0,21,-10,21,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22xm131,-210v0,-44,-74,-61,-89,-17r-23,-14v26,-59,139,-46,139,30v0,39,-25,64,-52,73v-12,4,-41,7,-35,30v3,12,19,16,30,7r12,24v-46,29,-96,-35,-53,-71v20,-16,71,-9,71,-62","w":173},"@":{"d":"107,-141v-12,26,-16,62,10,73v27,11,46,-20,58,-46v11,-24,20,-54,-2,-69v-25,-17,-54,15,-66,42xm205,-201r26,0v-13,44,-32,83,-42,130v2,20,37,3,49,-19v9,-17,23,-46,18,-76v-9,-49,-51,-79,-100,-80v-66,-2,-115,57,-114,121v1,63,48,118,111,118v41,0,73,-15,97,-50r23,0v-27,46,-67,70,-120,69v-75,-1,-134,-64,-134,-139v0,-75,61,-141,136,-138v62,2,118,41,124,103v4,38,-10,56,-21,78v-16,32,-74,65,-95,23v-18,18,-41,22,-65,12v-36,-15,-32,-65,-16,-101v22,-49,88,-85,119,-35","w":294},"A":{"d":"69,-59r101,0r21,59r31,0r-103,-288r-101,288r31,0xm160,-88r-81,0r40,-120","w":237},"B":{"d":"93,-251v22,0,39,17,41,39v4,37,-37,52,-83,46v-3,-44,2,-85,42,-85xm156,-85v2,48,-48,63,-105,57r0,-110v55,-4,103,1,105,53xm21,-212r0,212v86,4,163,-2,164,-86v0,-34,-20,-60,-47,-73v52,-35,16,-121,-46,-121v-38,0,-71,30,-71,68","w":196},"C":{"d":"208,-3v-102,33,-196,-36,-193,-137v2,-92,97,-164,193,-129r0,31v-77,-36,-160,21,-162,98v-3,84,83,144,162,106r0,31","w":227},"D":{"d":"52,-29r0,-217v63,-3,112,46,114,105v2,63,-52,115,-114,112xm194,-143v-2,-80,-67,-141,-172,-130r0,273v104,10,174,-55,172,-143","w":206},"E":{"d":"49,-131r84,0r0,-30r-84,0r0,-82r89,0r0,-30r-119,0r0,273r129,0r0,-30r-99,0r0,-101","w":164},"F":{"d":"48,0r0,-131r84,0r0,-30r-84,0r0,-82r89,0r0,-30r-119,0r0,273r30,0","w":153},"G":{"d":"233,-19v-100,65,-221,-7,-220,-121v1,-91,92,-161,189,-131r0,30v-80,-33,-155,25,-158,101v-4,82,83,142,159,105r0,-103r30,0r0,119","w":252},"H":{"d":"162,-137r0,137r30,0r0,-273r-30,0r0,108r-113,0r0,-108r-30,0r0,273r30,0r0,-137r113,0","w":207},"I":{"d":"57,-273r-30,0r0,273r30,0r0,-273","w":81},"J":{"d":"18,4v47,3,108,-47,108,-105r0,-172r-30,0r0,172v4,40,-38,81,-78,77r0,28","w":141},"K":{"d":"47,-127r0,-146r-30,0r0,273r30,0r0,-78r29,-40r87,118r37,0r-106,-143r95,-130r-35,0","w":213},"L":{"d":"48,-29r0,-244r-30,0r0,273r116,0r0,-29r-86,0","w":149},"M":{"d":"154,3r-79,-186r-28,183r-29,0r44,-283r92,216r93,-216r44,283r-29,0r-28,-183","w":306},"N":{"d":"193,0r0,-273r-30,0r0,187r-147,-192r0,278r30,0r0,-193","w":210},"O":{"d":"274,-144v5,67,-49,123,-113,121v-62,-2,-116,-56,-112,-119v4,-67,54,-110,116,-107v58,2,104,47,109,105xm18,-141v-3,79,64,145,143,146v81,1,147,-68,141,-151v-5,-74,-64,-132,-139,-133v-77,-1,-142,61,-145,138","w":318},"P":{"d":"51,-181v0,-37,30,-68,67,-68v38,-1,71,31,70,70v-1,36,-29,65,-65,67v-39,2,-72,-30,-72,-69xm52,-111v56,59,165,13,165,-69v0,-54,-44,-99,-98,-98v-57,1,-97,44,-97,98r0,180r30,0r0,-111","w":228},"Q":{"d":"50,-140v-1,74,63,132,144,112r-41,-81r24,-13r44,82v36,-22,58,-62,54,-108v-6,-59,-54,-102,-114,-102v-61,0,-110,52,-111,110xm234,-15r23,43r-33,0r-16,-31v-99,33,-192,-43,-189,-140v1,-77,66,-136,143,-136v78,0,144,64,143,143v-1,54,-30,97,-71,121","w":320},"R":{"d":"21,-197r0,197r30,0r0,-132r105,132r38,0r-93,-115v49,3,85,-35,86,-79v1,-46,-36,-85,-82,-85v-46,0,-84,33,-84,82xm48,-199v2,-30,26,-53,55,-53v31,-1,55,24,56,54v1,33,-26,57,-57,57v-31,0,-56,-27,-54,-58","w":204},"S":{"d":"162,-231r-25,9v-11,-43,-79,-37,-83,9v-3,35,24,45,51,51v31,7,75,25,75,87v0,103,-151,103,-162,12r26,-10v3,28,25,50,53,51v26,0,52,-21,54,-49v3,-45,-30,-59,-62,-65v-40,-8,-64,-35,-64,-72v0,-40,34,-73,73,-72v31,1,55,21,64,49","w":196},"T":{"d":"175,-273r0,29r-64,0r0,244r-30,0r0,-244r-64,0r0,-29r158,0","w":191},"U":{"d":"214,-95r0,-178r-30,0r0,177v0,39,-29,73,-68,73v-39,0,-68,-34,-68,-72r0,-178r-30,0r0,177v0,54,43,100,97,100v54,0,99,-45,99,-99","w":230},"V":{"d":"121,-75r-74,-198r-30,0r104,282r104,-282r-29,0","w":240},"W":{"d":"164,-205r-80,216r-64,-284r32,0r39,181r73,-195r74,195r38,-181r32,0r-63,284","w":322},"X":{"d":"115,-117r-64,117r-34,0r82,-149r-65,-124r34,0r47,92r47,-92r33,0r-64,124r81,149r-33,0","w":227},"Y":{"d":"137,-104r0,104r-30,0r0,-104r-89,-169r33,0r71,135r71,-135r33,0","w":242},"Z":{"d":"19,0r165,0r0,-30r-117,0r119,-243r-154,0r0,30r106,0","w":199},"[":{"d":"86,-304r0,18r-42,0r-1,298r44,0r0,18r-70,0r0,-334r69,0","w":100},"\\":{"d":"24,-273r-6,4r172,273r7,-4","w":212},"]":{"d":"19,-303r0,18r42,0r0,297r-44,0r0,18r71,0r0,-333r-69,0","w":104},"^":{"d":"48,-273r-30,40r35,0r19,-23r19,23r34,0r-29,-40r-48,0","w":138},"_":{"d":"21,50r237,0r0,5r-237,0r0,-5","w":271},"a":{"d":"116,-21v38,-1,67,-34,66,-71v-1,-37,-31,-67,-68,-67v-38,0,-69,31,-69,69v0,39,33,70,71,69xm200,-54v-14,37,-43,58,-83,59v-53,2,-100,-42,-99,-96v1,-52,43,-94,95,-94v107,0,99,112,136,185r-28,0","w":263},"b":{"d":"117,5v55,1,101,-42,99,-96v-1,-52,-42,-92,-95,-92v-43,0,-62,24,-70,30r0,-120r-26,0r0,184v0,58,45,93,92,94xm118,-20v-38,-1,-68,-33,-67,-71v1,-37,31,-67,68,-67v38,0,69,31,69,69v0,39,-32,70,-70,69"},"c":{"d":"115,4v-53,1,-98,-41,-97,-94v1,-52,46,-92,94,-93v43,0,61,19,71,29r-17,18v-7,-7,-22,-23,-53,-23v-38,0,-68,35,-68,70v0,39,32,69,70,68v27,-1,41,-14,51,-24r17,19v-15,13,-31,29,-68,30","w":198},"d":{"d":"111,5v-54,1,-100,-42,-99,-96v1,-52,42,-92,95,-92v43,0,62,24,70,30r0,-120r26,0r0,184v0,58,-45,93,-92,94xm110,-20v38,-1,68,-33,67,-71v-1,-37,-31,-67,-68,-67v-38,0,-69,31,-69,69v0,39,32,70,70,69"},"e":{"d":"112,-159v33,0,60,21,68,52r-132,0v6,-28,32,-52,64,-52xm47,-80r161,0v5,-56,-37,-105,-95,-104v-53,0,-94,42,-94,94v0,84,111,126,163,66r-19,-19v-35,43,-114,17,-116,-37","w":224},"f":{"d":"126,-278v-40,3,-84,48,-81,98r-28,0r0,25r28,0r0,155r26,0r0,-155r56,0r0,-25r-56,0v3,-45,22,-60,55,-71r0,-27","w":142},"g":{"d":"117,-21v39,-1,68,-33,67,-71v-1,-37,-32,-68,-70,-68v-38,0,-69,32,-69,70v0,39,34,69,72,69xm38,35v44,62,156,29,145,-59v-10,9,-27,28,-66,29v-53,2,-100,-42,-99,-96v1,-52,43,-94,95,-94v98,0,97,79,97,173v0,99,-137,144,-191,65"},"h":{"d":"172,-99v7,-71,-80,-111,-126,-63r0,-111r-27,0r0,273r27,0v3,-65,-19,-157,49,-157v68,0,49,91,51,157r26,0r0,-99","w":188},"i":{"d":"56,-179r-26,0r0,179r26,0r0,-179xm24,-219v0,24,37,23,37,-1v0,-24,-37,-23,-37,1","w":84},"j":{"d":"21,-219v0,24,36,23,36,-1v0,-24,-36,-23,-36,1xm26,-6v4,33,-33,74,-67,71r0,27v45,2,94,-41,94,-98r0,-173r-27,0r0,173","w":79},"k":{"d":"118,0r36,0r-81,-96r74,-83r-35,0r-64,75r0,-169r-27,0r0,273r27,0r0,-86","w":167},"l":{"d":"57,-273r-27,0r0,273r27,0r0,-273","w":83},"m":{"d":"83,-183v-81,-2,-64,103,-65,183r27,0v6,-61,-23,-157,40,-157v66,0,34,97,41,157r26,0v7,-60,-24,-157,39,-157v64,0,33,97,40,157r27,0v-1,-82,15,-183,-69,-183v-21,0,-40,10,-50,28v-9,-13,-24,-28,-56,-28","w":273},"n":{"d":"82,-183v-80,0,-60,105,-62,183r26,0v7,-60,-24,-150,38,-157v63,5,33,97,40,157r26,0v-1,-82,15,-183,-68,-183","w":164},"o":{"d":"116,-20v39,0,67,-34,66,-72v-1,-37,-31,-67,-68,-67v-38,0,-68,31,-68,69v0,39,32,70,70,70xm117,5v-55,0,-99,-40,-99,-96v0,-52,43,-94,95,-94v51,0,95,40,96,94v1,53,-41,96,-92,96","w":224},"p":{"d":"116,-183v55,-1,101,43,99,97v-1,52,-42,92,-95,92v-43,0,-62,-24,-70,-30r0,111r-26,0r0,-175v0,-58,45,-94,92,-95xm117,-158v-38,1,-68,34,-67,72v1,37,31,66,68,66v38,0,69,-31,69,-69v0,-39,-32,-70,-70,-69"},"q":{"d":"112,-183v-54,-1,-100,43,-99,97v1,52,42,92,95,92v43,0,62,-24,70,-30r0,111r26,0r0,-175v0,-58,-45,-94,-92,-95xm111,-158v38,1,68,34,67,72v-1,37,-31,66,-68,66v-38,0,-69,-31,-69,-69v0,-39,32,-70,70,-69","w":226},"r":{"d":"89,-181v-21,-3,-36,8,-44,20r0,-18r-26,0r0,179r27,0v6,-54,-15,-115,14,-150v9,-7,23,-7,29,-7r0,-24","w":101},"s":{"d":"131,-153r-24,12v-7,-25,-49,-25,-51,4v6,47,97,19,93,86v-4,72,-115,75,-131,8r25,-12v5,22,19,35,39,35v20,0,41,-10,40,-31v-1,-17,-14,-25,-39,-31v-30,-7,-53,-22,-53,-53v1,-55,83,-67,101,-18","w":164},"t":{"d":"122,-23v-60,3,-62,-66,-58,-131r57,0r0,-26r-57,0r0,-43r-27,0r0,43r-19,0r0,26r19,0v-5,80,1,157,85,158r0,-27","w":136},"u":{"d":"150,-60r0,-119r-26,0v-8,60,26,158,-39,158v-61,0,-33,-100,-39,-158r-27,0r0,119v0,36,29,65,65,65v36,0,66,-29,66,-65","w":166},"v":{"d":"18,-179r32,0r59,142r51,-142r31,0r-66,179r-31,0","w":206},"w":{"d":"137,-179r-39,130r-49,-130r-30,0r68,179r26,0r35,-120r34,120r25,0r69,-179r-30,0r-49,130r-39,-130r-21,0","w":291},"x":{"d":"92,-69r-42,69r-32,0r58,-94r-57,-85r33,0r40,58r40,-58r34,0r-58,85r58,94r-32,0","w":182},"y":{"d":"18,-179r32,0r56,142r52,-142r31,0r-99,266r-29,0r30,-84","w":204},"z":{"d":"17,0r137,0r0,-28r-87,0r92,-152r-130,0r0,25r82,0","w":174},"{":{"d":"37,-135v66,-16,-5,-157,61,-166v-66,-9,-54,59,-54,120v0,23,-9,43,-31,46v76,6,-23,180,86,166v-69,-5,5,-151,-62,-166","w":111},"|":{"d":"19,-259r18,0r-1,332r-17,0r0,-332","w":51},"}":{"d":"75,-139v-66,-16,5,-157,-62,-166v67,-10,54,58,54,120v0,24,9,43,31,46v-74,6,24,181,-85,166v69,-6,-5,-151,62,-166","w":111},"~":{"d":"19,-255r14,21v14,-24,48,0,69,-1v8,-1,18,-8,25,-17r-16,-20v-16,21,-38,-1,-62,-1v-11,0,-23,8,-30,18","w":143},"'":{"d":"45,-207v0,-7,14,-34,15,-52v1,-12,-10,-21,-22,-21v-39,-1,-9,60,-6,73r13,0","w":74},"`":{"d":"18,-273r37,0r28,40r-33,0","w":96},"\u00a0":{"w":87}}});
