function arrayUnique(e) {
    var a = [];
    var l = e.length;
    for(var i=0; i<l; i++) {
        for(var j=i+1; j<l; j++) {
            // If this[i] is found later in the array
            if (e[i] === e[j])
                j = ++i;
        }
        a.push(e[i]);
    }
    return a;
}

//Penny tickets
if(window.location.href.indexOf("penny-tickets") != -1){
    //Drop cookie
    var date = new Date();
    date.setTime(date.getTime()+(7*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
    document.cookie = "penny=1"+expires+"; path=/";
}

jQuery(function() {
    var capable = true;

    listOfEvents = {
        $fieldsToShowHide : null,
        capableBrowser:function() {
            //DP - I have upped the specificity of the rules to try and speed them up.
            if(capable == true) {
                listOfEvents.$fieldsToShowHide = jQuery("#content div.views-field-field-event-price, #content div.views-field-field-event-genre, #content div.views-field-field-event-door-time, #content div.views-field-field-event-end-time, #content div.views-field-field-event-hp-featured, #content div.views-field-field-event-show-time, #content div.views-field-field-event-image, #content div.views-field-field-event-show-finish, #content div.views-field-body");

                listOfEvents.showHideToggle();
                listOfEvents.addViewToggle();
                listOfEvents.calendarView();
                listOfEvents.tabularView();
                listOfEvents.listView();

                //If url has a #calendar, then show it
                if(window.location.href.indexOf("#calendar") != -1){
                    listOfEvents.calendarViewAction();
                }
            }
        },

        /*
           * The "more info" toggle on the event information that you see on the listings view.
           */
        showHideToggle:function() {
            // insert button
            jQuery(".views-field-field-event-hbs-url").append("<a class='show-more-info'>More Info</a>");

            //hide content
            listOfEvents.$fieldsToShowHide.hide();

            // add toggle
            jQuery(".show-more-info").click(function(e){
                var parentContainer = jQuery(this).closest(".views-row");
                jQuery(".views-field-field-event-price, .views-field-field-event-genre, .views-field-field-event-door-time,	.views-field-field-event-end-time, .views-field-field-event-hp-featured,	.views-field-field-event-show-time, .views-field-field-event-image, .views-field-field-event-show-finish, .views-field-body", parentContainer)
                .toggle();
                jQuery(this).toggleClass("expanded");
                if(jQuery(this).hasClass("expanded")) {
                    jQuery(this).html("Less Info");
                } else {
                    jQuery(this).html("More Info");
                }
            });

        },

        /*
           * Add the different view options to the top of the listings pages - "calendar", "grid", "listing"
           */
        addViewToggle:function(e) {
            jQuery(".node-type-venue .region-content h2.block-title, .page-events .region-content h2.block-title, .table-toggle-view-handle").append("<span class='table-view-toggle'>choose view <a class='list-view'></a><a class='table-view'></a><a class='calendar-view'></a></span>");
            jQuery(".section-whats-on h1.title, .front .region-content h2.block-title").append("<span class='table-view-toggle'>choose view <a class='list-view'></a><a class='table-view'></a></span>");
        },

        /*
           * Instigate the table view
           */
        tabularView:function(e) {
            jQuery(".table-view").click(function(e) {
                listOfEvents.removeCalendarView();
                if(!jQuery(".region-content").hasClass("tabular-view")) {
                    jQuery(".region-content").removeClass("calendar-view");
                    jQuery(".region-content").addClass("tabular-view");
                    listOfEvents._hideAll();
                    var $rows = jQuery(".region-content .views-row");
                    $rows.each(function() {
                        var dateContent = jQuery(".views-field-field-event-date", this).clone();
                        var appendTo = jQuery(".views-field-field-event-hbs-url", this);
                        jQuery(dateContent).addClass("grid-view-date").insertBefore(appendTo);
                    });
                    jQuery(".views-field-field-event-image").show();
                }
            });
        },

        removeCalendarView:function(){
            jQuery("#calendar-block, #calendar-paging").remove();
        },

        calendarViewAction : function(e){
            listOfEvents.removeCalendarView();

            jQuery(".region-content").removeClass("tabular-view");
            listOfEvents._hideAll();
            jQuery(".grid-view-date").remove();
            jQuery(".region-content").addClass("calendar-view");

            //Set arrays of months and days in month
            var aDays = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
            var aMonths = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
            var aMonthsFull = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
            var aDaysInMonth = new Array("31","29","31","30","31","30","31","31","30","31","30","31");

            var sMarkup = "";
            var sPaging = "";

            //Loop through the existing rows and get the days and months of each of the shows.
            var aDay = new Array();
            var aMonth = new Array();
            var aDayMonth = new Array();
            var aTitle = new Array();
            var aBuy = new Array();
            var aImg = new Array();
            var aSoldOut = new Array();
            var aOffer = new Array();
            jQuery(".region-content .views-row").each(function(e) {
                //Get the day of the event
                var sDay = jQuery(this).find(".day:first").text();

                if(sDay.length > 0){
                    aDay.push(sDay);

                    var sMonth = jQuery(this).find(".month:first").text();
                    sMonth = sMonth.substring(0,3);
                    aMonth.push(sMonth);

                    var sDayMonth = sDay + "-" + sMonth;
                    aDayMonth.push(sDayMonth);

                    var sTitle = jQuery(this).find(".views-field-title span:first").html();
                    aTitle.push(sTitle);

                    var sBuy = jQuery(this).find(".views-field-field-event-hbs-url div:first").html();
                    aBuy.push(sBuy);

                    var sImg = jQuery(this).find(".views-field-field-event-image div:first-child").html();
                    aImg.push(sImg);

                    var bSoldOut = jQuery(this).hasClass('sold-out');
                    if(bSoldOut==true){
                      aSoldOut.push("sold-out");
                    }else{
                      aSoldOut.push(" ");
                    }

                    var bOffer = jQuery(this).find(".views-field-field-tax-offer div p:first-child").text();
                    if(bOffer != false){
                      aOffer.push(bOffer);
                    }else{
                      aOffer.push(" ");
                    }
                }
            });
            //Get the number of unique months in the aMonth array.
            aMonthUnique = arrayUnique(aMonth);

            var bInTheFuture = false;

            //Loop through the unique months
            for (var i = 0; i < aMonthUnique.length; i++){
                var iPage = i+1;
                var iTargetMonth = jQuery.inArray(aMonthUnique[i], aMonths);
                //Loop through the number of days in each month
                for(var x = 0; x < aDaysInMonth[iTargetMonth]; x++){
                    var iRealMonth = iTargetMonth + 1;
                    var sRealDaysInMonth = x + 1;

                    if (sRealDaysInMonth < 10){
                        sRealDaysInMonth = "0"+sRealDaysInMonth;
                    }
                    var sCurrentDayMonth = sRealDaysInMonth + "-" + aMonthUnique[i];

                    var sDate = aMonthsFull[iTargetMonth] + " " + sRealDaysInMonth + ",2012";
                    var dd = new Date(sDate);
                    dd = dd.getDay();

                    var iTargetArrayIndex = jQuery.inArray(sCurrentDayMonth, aDayMonth);

                    //Tests if there is more than one event on a day.
                    var iTargetArrayIndexArray = jQuery.grep(aDayMonth, function(n, i){
                        return (sCurrentDayMonth == n);
                    });

                    sContent = "<p>" + sRealDaysInMonth + " " + aMonthUnique[i] + "</p>";  //Output e.g. "02 Aug"
                    sContent += "<p>"+aDays[dd]+"</p>"; // Output e.g. "Tue"
                    var bEventContent = false;
                    if(iTargetArrayIndex != -1){
                        bEventContent = true;   //There is event content
                        bInTheFuture = true;    //In the future
                        //If there is more than one event in a day, then print out 2 events and don't show the image
                        if(iTargetArrayIndexArray.length > 1){
                            sContent += "<h5>" + aTitle[iTargetArrayIndex + 1] + "</h5>" + "<div class='field-content buy-button'>" + aBuy[iTargetArrayIndex + 1] + "</div>";
                            sContent += "<h5>" + aTitle[iTargetArrayIndex] + "</h5>" + "<div class='field-content buy-button'>" + aBuy[iTargetArrayIndex] + "</div>";
                        }else{
                            //Print out the event and show the image
                            sContent += "<h5>" + aTitle[iTargetArrayIndex] + "</h5>" + aImg[iTargetArrayIndex] +"<div class='field-content buy-button'>" + aBuy[iTargetArrayIndex] + "</div>";

                            if(aOffer[iTargetArrayIndex] != " "){
                              sContent += '<p class="cal-offer">' + aOffer[iTargetArrayIndex] + '</p>';
                            }
                        }
                    }

                    //If there is no event content, add some "available for private hire" chat.
                    if((bEventContent == false) && (bInTheFuture == true)){
                        sContent += '<p class="p-hire"><a href="/private-hire-request-form">Available for private hire</a></p>';
                    }

                    var sSoldout = "";
                    if(aSoldOut[iTargetArrayIndex] == "sold-out"){
                      sSoldout = "sold-out";
                    }

                    sMarkup += "<div class='dc r"+i+" date-" + x + " " + sSoldout + "'>" + sContent + "</div>";
                    if ((x+1) % 7 == 0){
                        sMarkup += "<div class='clear r"+i+"'> </div>";
                    }
                }
                sPaging += '<a href="#" rel="'+i+'">'+aMonthUnique[i]+'</a> ';
            }

            //Add paging and calendar block.
            sMarkup = "<div id='calendar-paging'>" + sPaging + "</div><div id='calendar-block'>" + sMarkup + "</div>";

            jQuery(sMarkup).insertBefore(".region-content .content .view-content:last");

            //Add events to the paging
            listOfEvents.calendarPaging();
        },
        calendarView:function(e) {
            jQuery(".calendar-view").click(function(e) {
                listOfEvents.calendarViewAction();
            });
        },
        calendarPaging:function(){
            jQuery("#calendar-paging a").click(function(){
                jQuery("#calendar-paging a").removeClass("selected");
                jQuery(this).addClass("selected");
                var sTargetPane = jQuery(this).attr("rel");
                jQuery("#calendar-block .dc, #calendar-block .clear").fadeOut();

                var sTargerClass = "#calendar-block .r" + sTargetPane;
                jQuery(sTargerClass).fadeIn();

                return false;
            })
            jQuery("#calendar-paging a:first").addClass("selected");
        },

        listView:function(e) {
            jQuery(".list-view").click(function(e) {
                listOfEvents.removeCalendarView();
                jQuery(".region-content").removeClass("tabular-view");
                jQuery(".region-content").removeClass("calendar-view");
                listOfEvents._hideAll();
                jQuery(".grid-view-date").remove();
            });
        },
        _hideAll:function(e) {
            listOfEvents.$fieldsToShowHide.hide();
            jQuery(".show-more-info").removeClass("expanded").html("More Info");
        }
    };

    slider = {
        timeOut : null,
        scrollThruBanners:function(bannerToShow) {
            // if no banner is being passed, select the first one
            if(!bannerToShow) {
                bannerToShow = jQuery(".view-id-rotating_banners .views-row").eq(0);
            }

            // if there are no previous banners, hide the last one as we know we're at the end of the list
            if(bannerToShow.prev().length == "0" ) {
                jQuery(".view-id-rotating_banners .views-row:last-child").removeClass("show");
            } else {
                bannerToShow.prev().removeClass("show");
            }

            // show the current banner
            bannerToShow.addClass("show");

            // find the next banner
            var nextNode = bannerToShow.next();

            // if at the last node, then return to the beginning
            if(nextNode.length == "0") {
                nextNode = jQuery(".view-id-rotating_banners .views-row").eq(0);
            }
            slider.timeOut = setTimeout(function(){
                slider.scrollThruBanners(nextNode)
            },4500);
        }
    };

    //ie 7 and 6 support
    if (jQuery.browser.msie && jQuery.browser.version.substr(0,1)<8) {
        // search for selectors you want to add hover behavior to
        jQuery('.whats-on, .venues').hover(
            function() {
                jQuery(this).addClass('over');
            },
            function() {
                jQuery(this).removeClass('over');
            }
            );

        if(jQuery(".views-field-field-event-price").length > 50) {
            capable = false;
        }
    }

    jQuery(".view-id-rotating_banners .views-field-field-rotating-banner-1").click(function() {

        // clear timeout
        clearTimeout(slider.timeOut);

        // find the parent
        var that = jQuery(this).parent(".views-row");

        //reset all banners
        jQuery(".view-id-rotating_banners .views-row").removeClass("show");

        // initite the scroll with the selected node
        slider.scrollThruBanners(that);
    });

    facebook = {
        detect : function(e){
            try{
                var aFrame = parent.document.getElementsByTagName("IFRAME");
                if(aFrame){
                    jQuery('body').removeClass('fb-app');
                }
            }catch(e){

            }
        }
    };
    facebook.detect();

    listOfEvents.capableBrowser();
    slider.scrollThruBanners();
});
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Chalet (C) 2000 House Industries/Brand Design Co. Inc. House Industries is a
 * registered trademark of House Industries/ Brand Design Co., Inc.
 * 
 * Manufacturer:
 * Chalet (C) House Industries/Brand Design Co. Inc
 */
Cufon.registerFont({"w":240,"face":{"font-family":"Chalet Bold","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-9 -295 331 89.7959","underline-thickness":"2.88","underline-position":"-16.92","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":110},"\u00d7":{"d":"93,-66r-65,64r-24,-25r64,-64r-64,-64r24,-25r65,64r64,-64r24,25r-64,64r64,64r-24,25","w":185},"!":{"d":"76,-75r-48,0r0,-175r48,0r0,175xm76,0r-48,0r0,-47r48,0r0,47","w":103},"\"":{"d":"122,-250r-8,103r-30,0r-8,-103r46,0xm58,-250r-8,103r-30,0r-8,-103r46,0","w":134},"#":{"d":"146,-94r30,0r-5,35r-31,0r-6,46r-36,0r7,-46r-36,0r-6,46r-36,0r7,-46r-31,0r5,-35r31,0r9,-62r-31,0r5,-34r31,0r7,-47r35,0r-6,47r35,0r7,-47r36,0r-7,47r30,0r-5,34r-30,0xm84,-156r-9,62r35,0r9,-62r-35,0","w":193},"$":{"d":"166,-83v0,39,-28,64,-67,66r0,21r-23,0r0,-21v-39,-6,-65,-28,-66,-72r41,0v-1,19,11,29,25,33r0,-55v-32,-7,-63,-21,-63,-59v0,-36,27,-61,63,-63r0,-21r23,0r0,21v36,4,62,29,62,68r-42,0v0,-15,-8,-25,-20,-29r0,49v35,7,67,21,67,62xm76,-194v-15,0,-29,21,-16,34v3,3,9,6,16,9r0,-43xm99,-55v23,0,37,-35,13,-46v-3,-2,-7,-3,-13,-5r0,51","w":177},"%":{"d":"8,-187v0,-38,25,-63,63,-63v38,0,63,25,63,63v0,38,-25,63,-63,63v-38,0,-63,-25,-63,-63xm193,-250r38,0r-137,250r-38,0xm279,-63v0,38,-25,63,-63,63v-38,0,-63,-25,-63,-63v0,-38,25,-63,63,-63v38,0,63,25,63,63xm44,-187v0,15,12,29,27,29v16,0,27,-14,27,-29v0,-15,-12,-29,-27,-29v-14,0,-27,14,-27,29xm244,-63v0,-15,-13,-29,-28,-29v-15,0,-27,14,-27,29v0,15,12,29,27,29v15,0,28,-14,28,-29","w":287},"&":{"d":"215,-126v2,32,-5,61,-17,82r35,44r-55,0r-11,-13v-54,36,-158,14,-155,-62v2,-38,24,-56,48,-72v-35,-35,-18,-113,43,-109v39,2,61,23,61,60v0,29,-21,46,-41,58r45,57v4,-13,5,-27,4,-45r43,0xm103,-217v-25,1,-19,38,-5,48v15,-9,23,-19,23,-30v0,-11,-7,-18,-18,-18xm57,-75v-2,39,55,45,83,28r-55,-69v-17,10,-27,21,-28,41","w":237},"'":{"d":"58,-250r-8,103r-31,0r-7,-103r46,0","w":70},"(":{"d":"14,-121v0,-70,26,-126,62,-163r38,0v-31,40,-55,96,-55,163v0,67,24,123,55,163r-38,0v-35,-38,-62,-93,-62,-163","w":117},")":{"d":"41,-284v36,37,62,92,62,163v0,71,-27,125,-62,163r-38,0v31,-40,55,-96,55,-163v0,-67,-24,-123,-55,-163r38,0","w":117},"*":{"d":"93,-183r20,32r-24,14r-19,-33r-18,33r-24,-14r20,-32r-38,0r0,-27r38,1r-20,-33r24,-14r18,34r19,-34r24,14r-20,33r38,-1r0,27r-38,0","w":140},"+":{"d":"118,-77r0,59r-47,0r0,-59r-58,0r0,-45r58,0r0,-58r47,0r0,58r57,0r0,45r-57,0","w":188},",":{"d":"21,37v15,-4,25,-16,23,-37r-27,0r0,-51r51,0v1,52,6,108,-47,110r0,-22","w":84},"-":{"d":"11,-122r97,0r0,44r-97,0r0,-44","w":119},".":{"d":"68,0r-51,0r0,-51r51,0r0,51","w":84},"\/":{"d":"77,-268r49,0r-76,268r-49,0","w":121},"0":{"d":"13,-123v0,-73,25,-127,92,-127v68,0,93,54,93,127v0,74,-26,128,-93,128v-66,0,-92,-54,-92,-128xm60,-123v0,39,7,84,45,84v39,0,46,-46,46,-84v0,-37,-7,-84,-46,-84v-38,0,-45,45,-45,84","w":210},"1":{"d":"16,-205v28,-2,44,-18,48,-45r38,0r0,250r-47,0r0,-174r-39,0r0,-31","w":151},"2":{"d":"102,-251v73,-4,108,80,62,129v-27,29,-85,37,-99,78r120,0r0,44r-173,0v-11,-98,69,-110,118,-154v19,-17,6,-56,-27,-53v-24,2,-41,19,-40,45r-48,0v3,-53,31,-86,87,-89","w":202},"3":{"d":"149,-131v25,7,38,26,40,56v6,92,-151,105,-174,28v-4,-10,-6,-21,-6,-33r47,0v1,26,16,40,43,40v24,0,42,-14,43,-35v2,-26,-25,-34,-57,-32r0,-41v29,1,50,-5,50,-29v0,-20,-14,-30,-35,-30v-24,0,-35,15,-37,37r-47,0v2,-51,33,-76,84,-81v75,-8,109,91,49,120","w":200},"4":{"d":"162,-51r0,51r-44,0r0,-51r-109,0r0,-42r98,-157r55,0r0,157r27,0r0,42r-27,0xm118,-192r-62,99r62,0r0,-99","w":199},"5":{"d":"63,-153v54,-32,123,7,123,73v0,92,-135,111,-169,40v-4,-9,-6,-18,-7,-29r48,0v7,42,81,35,81,-13v0,-45,-62,-55,-79,-21r-42,-11r14,-136r139,0r0,44r-102,0","w":198},"6":{"d":"61,-147v51,-38,137,-2,132,67v-3,52,-34,84,-88,84v-64,0,-92,-47,-92,-117v0,-77,22,-137,95,-140v46,-2,76,29,81,71r-48,0v-2,-29,-50,-37,-66,-10v-7,12,-12,27,-14,45xm105,-38v26,0,41,-16,41,-41v0,-25,-15,-42,-41,-42v-25,0,-40,17,-40,42v0,25,15,41,40,41","w":202},"7":{"d":"45,0v1,-92,28,-161,76,-206r-115,0r0,-44r174,0r0,42v-55,44,-88,113,-88,208r-47,0","w":185},"8":{"d":"100,-253v70,-6,104,82,53,118v22,12,36,32,36,63v0,50,-37,76,-89,76v-52,0,-89,-27,-89,-76v0,-29,16,-50,37,-62v-14,-11,-27,-27,-26,-52v2,-44,33,-63,78,-67xm100,-212v-18,0,-33,8,-33,29v0,21,15,30,33,30v19,0,34,-10,34,-30v0,-20,-15,-29,-34,-29xm100,-37v25,0,43,-12,43,-37v1,-26,-19,-37,-43,-37v-25,0,-43,13,-43,37v0,24,18,37,43,37","w":200},"9":{"d":"189,-136v0,78,-18,138,-93,140v-44,1,-73,-26,-81,-61r52,0v7,25,53,22,64,1v6,-12,11,-28,12,-48v-43,44,-139,9,-133,-63v4,-54,33,-86,87,-86v65,0,92,48,92,117xm97,-124v25,0,41,-18,41,-43v0,-26,-14,-44,-41,-44v-26,1,-40,18,-40,44v0,25,16,43,40,43","w":201},":":{"d":"70,-128r-51,0r0,-51r51,0r0,51xm70,0r-51,0r0,-51r51,0r0,51","w":88},";":{"d":"70,-128r-51,0r0,-51r51,0r0,51xm23,37v15,-4,24,-16,22,-37r-26,0r0,-51r51,0v1,52,6,108,-47,110r0,-22","w":88},"<":{"d":"58,-99r92,39r0,48r-139,-64r0,-47r139,-64r0,49","w":161},"=":{"d":"168,-118r-155,0r0,-44r155,0r0,44xm168,-37r-155,0r0,-44r155,0r0,44","w":181},">":{"d":"151,-76r-140,64r0,-48r93,-39r-93,-39r0,-49r140,64r0,47","w":162},"?":{"d":"98,-212v-24,0,-39,15,-39,38r-47,0v2,-52,33,-82,86,-82v49,0,82,23,84,73v3,60,-67,49,-65,108r-44,0v-7,-63,53,-63,62,-108v-1,-18,-15,-29,-37,-29xm119,0r-48,0r0,-47r48,0r0,47","w":198},"@":{"d":"143,-28v30,0,55,-12,71,-27r43,0v-23,36,-59,60,-114,60v-79,0,-132,-50,-132,-130v0,-78,50,-131,128,-131v69,0,118,37,118,108v0,48,-25,82,-70,86v-17,1,-30,-8,-36,-19v-20,34,-77,19,-77,-23v0,-44,23,-81,65,-85v13,-1,22,6,27,15r2,-9r33,0v-7,25,-24,56,-21,84v24,14,42,-20,41,-48v-2,-50,-33,-76,-82,-76v-56,0,-92,41,-92,98v0,59,37,97,96,97xm110,-104v13,23,34,-7,40,-22v9,-24,-10,-40,-26,-21v-8,9,-19,26,-14,43","w":268},"A":{"d":"69,-50r-16,50r-51,0r87,-250r60,0r88,250r-51,0r-17,-50r-100,0xm119,-197r-35,103r70,0"},"B":{"d":"189,-133v21,11,34,30,34,60v3,93,-112,71,-200,73r0,-250v83,3,194,-21,190,68v-1,24,-9,38,-24,49xm167,-179v0,-41,-58,-25,-96,-28r0,55v39,-3,96,13,96,-27xm71,-44v42,-3,104,14,104,-31v0,-46,-61,-30,-104,-33r0,64","w":234},"C":{"d":"246,-79v-16,49,-51,83,-113,83v-76,0,-115,-54,-121,-130v-11,-140,202,-177,235,-47r-52,0v-10,-23,-32,-40,-62,-40v-47,0,-74,39,-74,87v0,49,27,85,74,87v30,2,52,-18,62,-40r51,0","w":254},"D":{"d":"116,-250v74,3,112,49,112,125v0,76,-38,125,-112,125r-93,0r0,-250r93,0xm116,-44v47,-1,65,-35,65,-81v0,-46,-18,-80,-65,-81r-45,0r0,162r45,0"},"E":{"d":"208,0r-185,0r0,-250r183,0r0,44r-135,0r0,54r115,0r0,44r-115,0r0,64r137,0r0,44","w":218},"F":{"d":"71,-146r112,0r0,44r-112,0r0,102r-48,0r0,-250r179,0r0,44r-131,0r0,60","w":210},"G":{"d":"59,-126v-8,92,128,117,149,31r-68,0r0,-44r111,0r0,139r-44,0r0,-27v-15,19,-41,31,-74,31v-75,0,-115,-54,-121,-130v-11,-140,202,-176,235,-47r-52,0v-10,-23,-30,-40,-62,-40v-47,0,-70,39,-74,87","w":269},"H":{"d":"225,0r-48,0r0,-105r-106,0r0,105r-48,0r0,-250r48,0r0,100r106,0r0,-100r48,0r0,250","w":248},"I":{"d":"72,0r-48,0r0,-250r48,0r0,250","w":95},"J":{"d":"169,-77v-2,51,-32,82,-82,82v-55,0,-85,-37,-81,-99r48,0v-2,30,5,52,33,52v22,0,35,-12,35,-34r0,-174r47,0r0,173","w":190},"K":{"d":"71,-85r0,85r-48,0r0,-250r48,0r0,101r94,-101r65,0r-101,105r106,145r-62,0r-78,-111","w":233},"L":{"d":"71,-44r124,0r0,44r-172,0r0,-250r48,0r0,206","w":201},"M":{"d":"269,0r-47,0r0,-183r-51,183r-50,0r-51,-183r0,183r-47,0r0,-250r71,0r52,187r52,-187r71,0r0,250","w":291},"N":{"d":"230,0r-58,0r-101,-178r0,178r-48,0r0,-250r57,0r102,178r0,-178r48,0r0,250","w":252},"O":{"d":"12,-126v0,-77,45,-130,122,-130v77,0,122,53,122,130v0,77,-45,130,-122,130v-77,0,-122,-53,-122,-130xm60,-126v0,48,26,85,74,85v47,0,74,-36,74,-85v0,-50,-28,-85,-74,-85v-47,0,-74,37,-74,85","w":268},"P":{"d":"128,-250v52,1,83,30,83,81v0,71,-61,87,-140,80r0,89r-48,0r0,-250r105,0xm163,-169v0,-48,-50,-36,-92,-37r0,73v42,-2,92,12,92,-36","w":219},"Q":{"d":"256,-126v0,39,-15,71,-35,93r36,37r-54,0r-13,-13v-90,40,-181,-21,-178,-117v3,-77,45,-130,122,-130v77,0,122,53,122,130xm59,-126v0,55,40,97,98,81r-37,-39r54,0r14,16v40,-45,15,-147,-54,-143v-47,2,-75,36,-75,85","w":267},"R":{"d":"188,-118v38,13,20,80,33,118r-48,0v-15,-27,15,-96,-38,-96r-64,0r0,96r-48,0r0,-250v90,1,202,-17,200,75v-1,29,-14,47,-35,57xm175,-173v2,-47,-62,-30,-104,-33r0,67v44,-2,102,12,104,-34"},"S":{"d":"49,-129v-60,-47,-14,-135,67,-127v56,6,92,28,95,82r-47,0v4,-46,-91,-53,-97,-9v11,42,94,27,126,55v14,12,26,28,26,54v0,97,-165,99,-197,30v-6,-11,-9,-24,-9,-39r48,0v-2,54,104,61,110,10v-10,-46,-87,-29,-122,-56","w":232},"T":{"d":"120,-206r0,206r-47,0r0,-206r-67,0r0,-44r181,0r0,44r-67,0","w":192},"U":{"d":"117,4v-65,0,-95,-38,-96,-103r0,-151r47,0r0,152v0,37,17,56,49,56v32,0,49,-19,49,-56r0,-152r47,0r0,151v-1,65,-31,103,-96,103","w":234},"V":{"d":"134,0r-51,0r-82,-250r50,0r58,193r57,-193r50,0","w":217},"W":{"d":"252,0r-53,0r-38,-188r-39,188r-53,0r-68,-250r50,0r43,182r38,-182r57,0r37,182r44,-182r50,0","w":320},"X":{"d":"110,-87r-53,87r-56,0r80,-128r-77,-122r56,0r50,82r49,-82r57,0r-77,122r80,128r-56,0","w":219},"Y":{"d":"131,0r-48,0r0,-96r-84,-154r54,0r54,107r54,-107r54,0r-84,154r0,96","w":214},"Z":{"d":"204,0r-195,0r0,-42r134,-164r-130,0r0,-44r188,0r0,42r-134,164r137,0r0,44","w":213},"[":{"d":"66,5r43,0r0,39r-86,0r0,-339r86,0r0,39r-43,0r0,261","w":114},"\\":{"d":"71,0r-76,-268r50,0r76,268r-50,0","w":121},"]":{"d":"98,44r-90,0r0,-39r46,0r0,-261r-46,0r0,-39r90,0r0,339","w":121},"^":{"d":"100,-203r-41,110r-47,0r64,-157r47,0r65,157r-48,0","w":199},"_":{"d":"291,69r-292,0r0,-44r292,0r0,44","w":290},"`":{"d":"80,-260r33,50r-35,0r-51,-50r53,0","w":150},"a":{"d":"185,-136v5,45,-5,100,7,136r-44,0v-2,-4,-4,-10,-5,-17v-34,36,-132,25,-132,-40v0,-65,82,-46,125,-68v13,-16,-9,-29,-30,-27v-18,2,-36,7,-40,23r-48,0v5,-74,159,-85,167,-7xm59,-56v9,30,88,21,83,-16r0,-17v-20,17,-78,2,-83,33","w":209},"b":{"d":"124,-189v55,3,84,40,88,96v5,80,-93,127,-145,73r0,20r-45,0r0,-268r47,0r0,100v13,-12,30,-22,55,-21xm117,-40v29,0,48,-22,48,-52v0,-30,-19,-53,-48,-53v-29,0,-48,23,-48,53v0,30,19,52,48,52","w":222},"c":{"d":"59,-92v0,51,68,71,86,29r51,0v-10,39,-41,68,-89,67v-60,-1,-92,-39,-96,-97v-7,-107,163,-132,185,-30r-51,0v-18,-42,-86,-21,-86,31","w":205},"d":{"d":"11,-93v-5,-79,89,-124,143,-75r0,-100r47,0r0,268r-45,0r0,-20v-14,14,-31,24,-57,24v-55,0,-84,-41,-88,-97xm106,-40v30,0,48,-22,48,-52v0,-30,-18,-53,-48,-53v-29,0,-47,22,-47,53v0,31,18,52,47,52","w":223},"e":{"d":"11,-93v-7,-107,162,-131,184,-30v3,14,6,31,4,49r-140,0v5,40,69,49,86,15r50,0v-11,36,-41,64,-89,63v-58,-3,-91,-39,-95,-97xm152,-113v-6,-44,-85,-46,-92,0r92,0","w":210},"f":{"d":"106,-185r0,42r-33,0r0,143r-48,0r0,-143r-22,0r0,-42r22,0v3,-49,27,-83,83,-77r0,44v-25,-2,-35,8,-35,33r33,0","w":113},"g":{"d":"11,-93v-5,-80,92,-125,145,-73r0,-19r45,0r0,176v15,113,-163,135,-186,35r52,0v24,40,101,16,87,-44v-13,12,-31,22,-55,22v-55,0,-84,-41,-88,-97xm106,-40v30,0,48,-22,48,-52v0,-30,-18,-53,-48,-53v-29,0,-47,22,-47,53v0,31,18,52,47,52","w":220},"h":{"d":"69,-176v50,-35,119,1,119,68r0,108r-48,0v-7,-53,23,-144,-35,-144v-58,0,-30,90,-36,144r-47,0r0,-268r47,0r0,92","w":207},"i":{"d":"70,-206r-47,0r0,-44r47,0r0,44xm70,0r-47,0r0,-185r47,0r0,185","w":92},"j":{"d":"67,-206r-48,0r0,-44r48,0r0,44xm-9,40v19,1,28,-4,28,-23r0,-202r48,0v-3,78,7,169,-5,238v-10,24,-35,34,-71,29r0,-42","w":86},"k":{"d":"69,-53r0,53r-47,0r0,-268r47,0r0,150r61,-67r65,0r-69,72r73,113r-60,0r-46,-78","w":200},"l":{"d":"70,0r-47,0r0,-268r47,0r0,268","w":92},"m":{"d":"67,-167v20,-32,86,-27,104,3v13,-14,30,-26,56,-26v51,1,79,32,79,82r0,108r-48,0v-7,-53,23,-143,-34,-145v-58,-2,-30,91,-36,145r-48,0v-7,-53,23,-145,-35,-145v-58,0,-30,91,-36,145r-47,0r0,-185r45,0r0,18","w":325},"n":{"d":"115,-190v88,-1,72,104,72,190r-47,0v-7,-53,23,-145,-35,-145v-58,0,-30,91,-36,145r-47,0r0,-185r45,0r0,18v11,-13,26,-23,48,-23","w":207},"o":{"d":"11,-93v0,-58,35,-97,93,-97v58,0,94,40,94,97v0,57,-36,97,-94,97v-58,0,-93,-39,-93,-97xm58,-92v0,30,16,53,46,53v30,0,46,-23,46,-53v0,-30,-16,-55,-46,-55v-30,0,-46,25,-46,55","w":208},"p":{"d":"67,-166v52,-52,145,-8,145,73v0,79,-89,125,-143,75r0,100r-47,0r0,-267r45,0r0,19xm117,-40v29,0,48,-22,48,-53v0,-30,-19,-52,-48,-52v-29,0,-48,22,-48,52v0,30,19,53,48,53","w":222},"q":{"d":"11,-93v-5,-80,92,-125,145,-73r0,-19r45,0r0,267r-47,0r0,-100v-13,12,-31,22,-55,22v-55,0,-84,-41,-88,-97xm106,-40v30,0,48,-23,48,-53v0,-30,-18,-52,-48,-52v-28,0,-47,21,-47,52v0,32,18,53,47,53","w":223},"r":{"d":"127,-143v-76,-13,-56,76,-58,143r-47,0r0,-185r45,0r0,18v14,-15,33,-26,60,-22r0,46","w":131},"s":{"d":"124,-132v-4,-20,-58,-23,-62,-1v22,34,116,3,116,75v0,76,-132,79,-159,25v-5,-8,-9,-17,-10,-27r48,0v6,23,65,32,73,5v-15,-40,-116,-3,-116,-76v0,-82,157,-73,160,-1r-50,0","w":189},"t":{"d":"73,-143v3,42,-15,107,35,99r0,44v-82,9,-87,-62,-83,-143r-22,0r0,-42r22,0r0,-48r48,0r0,48r33,0r0,42r-33,0","w":113},"u":{"d":"102,-41v58,0,30,-90,36,-144r48,0r0,185r-46,0r0,-17v-10,13,-25,22,-47,21v-88,1,-73,-102,-73,-189r48,0v7,53,-24,144,34,144","w":207},"v":{"d":"122,0r-51,0r-71,-185r50,0r46,138r47,-138r49,0","w":191},"w":{"d":"224,0r-49,0r-34,-123r-33,123r-50,0r-57,-185r50,0r33,129r33,-129r48,0r34,129r32,-129r51,0","w":282},"x":{"d":"131,0r-38,-63r-39,63r-54,0r65,-96r-61,-89r54,0r35,56r34,-56r54,0r-61,89r65,96r-54,0","w":184},"y":{"d":"109,34v-12,36,-35,57,-85,52r0,-43v32,3,41,-16,48,-40r-72,-188r51,0r45,134r44,-134r51,0","w":191},"z":{"d":"170,0r-162,0r0,-41r97,-102r-93,0r0,-42r154,0r0,42r-96,100r100,0r0,43","w":177},"{":{"d":"7,-141v63,3,13,-108,54,-134v14,-9,29,-14,51,-12r0,35v-37,-5,-27,43,-27,76v0,26,-10,44,-28,52v32,11,29,56,28,100v0,17,8,31,27,28r0,36v-62,7,-70,-42,-70,-108v0,-26,-12,-38,-35,-39r0,-34","w":120},"|":{"d":"24,0r0,-268r48,0r0,268r-48,0","w":96},"}":{"d":"78,-226v0,40,-6,87,35,85r0,34v-63,-4,-14,108,-53,134v-14,9,-30,15,-52,13r0,-36v37,4,28,-42,28,-76v0,-27,9,-44,27,-52v-31,-11,-27,-57,-27,-100v0,-17,-8,-31,-28,-28r0,-35v45,-4,71,16,70,61","w":120},"~":{"d":"141,-263v-4,23,-13,41,-38,43v-26,1,-55,-30,-67,1r-22,0v4,-23,15,-41,40,-42v24,-1,56,30,65,-2r22,0","w":155},"\u2122":{"d":"313,-93r-34,0r0,-95r-31,95r-38,0r-31,-95r0,95r-34,0r0,-157r46,0r38,114r38,-114r46,0r0,157xm127,-250r0,34r-40,0r0,123r-35,0r0,-123r-39,0r0,-34r114,0","w":331},"\u2026":{"d":"294,0r-51,0r0,-51r51,0r0,51xm181,0r-51,0r0,-51r51,0r0,51xm68,0r-51,0r0,-51r51,0r0,51","w":311},"\u2013":{"d":"11,-122r196,0r0,44r-196,0r0,-44","w":218},"\u2014":{"d":"11,-122r320,0r0,44r-320,0r0,-44","w":342},"\u201c":{"d":"136,-230v-15,4,-20,15,-20,33r25,0r0,45r-48,0v-1,-47,-4,-96,43,-98r0,20xm56,-230v-15,4,-22,14,-21,33r26,0r0,45r-49,0v-2,-47,-4,-96,44,-98r0,20","w":153},"\u201d":{"d":"97,-172v16,-2,21,-14,21,-32r-25,0r0,-46r48,0v2,47,4,96,-44,98r0,-20xm17,-172v16,-2,21,-14,21,-32r-26,0r0,-46r49,0v2,47,4,96,-44,98r0,-20","w":153},"\u2018":{"d":"56,-230v-15,4,-22,14,-21,33r26,0r0,45r-49,0v-2,-47,-4,-96,44,-98r0,20","w":73},"\u2019":{"d":"17,-172v16,-2,21,-14,21,-32r-26,0r0,-46r49,0v2,47,4,96,-44,98r0,-20","w":73},"\u00a0":{"w":110}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Chalet (C) 2000 House Industries/Brand Design Co. Inc. House Industries is a
 * registered trademark of House Industries/ Brand Design Co., Inc.
 * 
 * Manufacturer:
 * Chalet (C) House Industries/Brand Design Co. Inc
 */
Cufon.registerFont({"w":225,"face":{"font-family":"Chalet Regular","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-6 -284 336 89.7113","underline-thickness":"2.88","underline-position":"-16.92","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":106},"\u00d7":{"d":"92,-70r-66,66r-21,-21r66,-66r-66,-66r21,-20r66,65r66,-65r21,20r-66,66r66,66r-21,21","w":183},"!":{"d":"64,-64r-31,0r0,-186r31,0r0,186xm66,0r-34,0r0,-36r34,0r0,36","w":97},"\"":{"d":"93,-160r-19,0r-5,-90r29,0xm40,-160r-18,0r-5,-90r28,0","w":114},"#":{"d":"144,-87r30,0r-4,28r-30,0r-7,46r-29,0r6,-46r-48,0r-7,46r-29,0r7,-46r-31,0r4,-28r31,0r11,-74r-31,0r4,-29r31,0r7,-47r29,0r-7,47r48,0r7,-47r30,0r-7,47r30,0r-4,29r-31,0xm77,-161r-10,74r47,0r11,-74r-48,0","w":191},"$":{"d":"97,-141v36,8,69,19,69,61v0,40,-30,60,-69,63r0,21r-20,0r0,-21v-39,-2,-70,-31,-69,-70r31,0v-1,25,17,37,38,41r0,-69v-31,-9,-63,-20,-64,-59v0,-35,30,-57,64,-60r0,-22r20,0r0,22v38,4,61,26,63,66r-30,0v0,-21,-13,-33,-33,-36r0,63xm77,-204v-25,0,-44,26,-26,46v5,5,13,8,26,12r0,-58xm97,-46v35,4,54,-46,20,-58v-5,-2,-12,-5,-20,-7r0,65","w":177},"%":{"d":"9,-189v0,-36,24,-61,60,-61v36,0,61,25,61,61v0,36,-25,60,-61,60v-35,0,-60,-25,-60,-60xm200,-250r29,0r-137,250r-29,0xm283,-60v0,36,-25,60,-61,60v-35,0,-60,-23,-60,-60v0,-37,25,-61,60,-61v36,0,61,25,61,61xm69,-224v-46,0,-40,70,0,70v21,0,34,-15,34,-35v0,-20,-12,-35,-34,-35xm256,-60v-2,-20,-12,-35,-34,-35v-21,0,-33,14,-33,35v0,20,12,34,33,34v22,0,32,-14,34,-34","w":291},"&":{"d":"205,-118v1,28,-2,53,-12,70r39,48r-39,0r-19,-22v-45,46,-159,28,-157,-49v1,-42,27,-61,54,-77v-11,-14,-25,-30,-25,-52v0,-34,24,-56,60,-56v34,0,57,20,57,54v0,33,-24,46,-47,61r56,68v3,-13,3,-28,3,-45r30,0xm105,-228v-38,0,-29,51,-7,66v16,-11,33,-16,34,-40v1,-16,-12,-26,-27,-26xm48,-71v0,50,79,60,108,27r-67,-82v-24,14,-41,27,-41,55","w":232},"'":{"d":"40,-160r-18,0r-5,-90r28,0","w":61},"(":{"d":"21,-121v0,-71,26,-125,61,-163r27,0v-31,41,-55,95,-55,163v0,67,24,123,55,163r-27,0v-35,-39,-61,-91,-61,-163","w":113},")":{"d":"31,-284v35,38,61,92,61,163v0,72,-26,124,-61,163r-26,0v31,-40,54,-96,54,-163v1,-68,-23,-122,-54,-163r26,0","w":113},"*":{"d":"79,-191r19,31r-18,10r-17,-32r-18,32r-18,-10r19,-31r-37,1r0,-21r37,0r-19,-31r18,-10r17,32r18,-32r18,10r-19,31r37,0r0,20r-37,0","w":124},"+":{"d":"107,-85r0,62r-30,0r0,-62r-62,0r0,-29r62,0r0,-62r30,0r0,62r61,0r0,29r-61,0","w":183},",":{"d":"21,31v13,-3,19,-14,18,-31r-21,0r0,-37r36,0v0,37,7,81,-33,83r0,-15","w":72},"-":{"d":"16,-85r0,-29r97,0r0,29r-97,0","w":129},".":{"d":"54,0r-36,0r0,-37r36,0r0,37","w":72},"\/":{"d":"29,0r-30,0r75,-268r31,0","w":98},"0":{"d":"200,-126v0,73,-24,130,-92,130v-68,0,-91,-58,-91,-130v0,-72,23,-130,91,-130v68,0,92,57,92,130xm169,-126v0,-55,-15,-102,-61,-102v-44,0,-62,48,-61,102v0,54,16,102,61,102v46,0,61,-47,61,-102","w":216},"1":{"d":"10,-223v21,-1,37,-8,40,-27r28,0r0,250r-31,0r0,-199r-37,0r0,-24","w":121},"2":{"d":"103,-256v71,-5,105,77,60,125v-35,37,-103,44,-118,101r138,0r0,30r-170,0v-10,-107,97,-104,138,-166v10,-35,-10,-64,-48,-62v-35,2,-54,23,-54,59r-32,0v3,-52,32,-83,86,-87","w":200},"3":{"d":"150,-136v25,9,40,30,40,63v0,89,-145,102,-170,30v-4,-9,-6,-19,-7,-30r31,0v4,31,21,50,57,49v34,-1,59,-16,59,-49v0,-38,-31,-49,-73,-47r0,-28v39,0,64,-8,64,-40v0,-27,-19,-40,-48,-40v-33,0,-50,19,-51,50r-32,0v2,-50,33,-78,83,-78v46,0,77,22,78,68v0,27,-12,43,-31,52","w":205},"4":{"d":"189,-88r0,29r-24,0r0,59r-31,0r0,-59r-126,0r0,-27r124,-164r33,0r0,162r24,0xm134,-203r-87,115r87,0r0,-115","w":199},"5":{"d":"57,-151v52,-37,127,1,127,70v0,102,-164,114,-170,15r31,0v5,25,22,42,53,41v34,-1,52,-22,55,-56v5,-63,-81,-72,-103,-28r-27,-11r16,-130r130,0r0,29r-103,0","w":196},"6":{"d":"109,-170v52,0,84,37,84,87v0,52,-32,87,-85,87v-65,0,-90,-49,-91,-117v-2,-78,27,-141,93,-143v42,0,72,27,78,66r-31,0v-4,-42,-70,-49,-90,-13v-9,17,-17,39,-19,64v12,-18,35,-31,61,-31xm109,-24v33,1,54,-25,53,-59v-1,-35,-19,-59,-53,-59v-34,0,-57,23,-57,59v0,37,21,58,57,59","w":205},"7":{"d":"174,-222v-58,47,-92,125,-99,222r-31,0v6,-93,36,-171,87,-220r-125,0r0,-30r168,0r0,28","w":182},"8":{"d":"149,-137v22,12,39,33,38,64v-1,50,-36,77,-87,77v-51,0,-86,-27,-87,-77v-1,-31,16,-52,37,-64v-14,-11,-27,-28,-27,-52v2,-44,32,-64,77,-67v72,-6,101,85,49,119xm100,-228v-25,0,-48,14,-47,39v1,26,20,38,47,39v27,0,45,-13,46,-39v0,-24,-21,-39,-46,-39xm100,-24v33,0,56,-17,56,-49v0,-32,-22,-49,-56,-49v-34,0,-57,16,-57,49v0,32,24,49,57,49","w":199},"9":{"d":"98,-256v67,0,86,53,91,122v6,97,-62,174,-145,121v-14,-9,-21,-25,-25,-43r31,0v7,40,80,40,95,3v7,-18,12,-37,14,-60v-11,19,-32,31,-60,31v-52,0,-85,-33,-85,-87v0,-53,32,-87,84,-87xm99,-110v36,0,55,-23,55,-59v0,-35,-21,-58,-55,-59v-33,-1,-56,25,-55,59v1,36,19,59,55,59","w":205},":":{"d":"59,-142r-36,0r0,-37r36,0r0,37xm59,0r-36,0r0,-37r36,0r0,37","w":81},";":{"d":"59,-142r-36,0r0,-37r36,0r0,37xm25,31v14,-2,20,-13,18,-31r-20,0r0,-37r36,0v0,38,6,81,-34,83r0,-15","w":81},"<":{"d":"150,-52r0,32r-139,-63r0,-33r139,-63r0,32r-109,48","w":163},"=":{"d":"16,-120r0,-29r142,0r0,29r-142,0xm158,-50r-142,0r0,-29r142,0r0,29","w":174},">":{"d":"122,-99r-109,-48r0,-32r139,63r0,33r-139,63r0,-32","w":163},"?":{"d":"93,-256v47,0,76,24,78,70v3,67,-74,52,-69,122r-30,0v-9,-74,69,-65,69,-121v0,-28,-18,-42,-48,-42v-30,0,-51,16,-51,45r-31,0v3,-46,32,-74,82,-74xm104,0r-35,0r0,-36r35,0r0,36","w":187},"@":{"d":"90,-64v-66,-52,33,-177,85,-113r4,-14r26,0r-27,87v-5,14,3,20,13,20v30,0,41,-30,41,-61v0,-54,-35,-85,-91,-85v-62,0,-100,44,-100,106v0,64,37,101,100,103v34,1,63,-14,79,-33r33,0v-20,34,-60,59,-112,58v-79,-2,-127,-48,-127,-128v0,-79,50,-132,127,-132v72,0,118,42,118,112v0,47,-23,83,-68,85v-19,1,-31,-9,-35,-23v-13,17,-41,31,-66,18xm98,-95v28,29,63,-14,62,-49v5,-32,-32,-30,-45,-12v-12,11,-26,40,-17,61","w":272},"A":{"d":"62,-73r-27,73r-33,0r94,-250r35,0r93,250r-35,0r-26,-73r-101,0xm113,-212r-41,111r81,0"},"B":{"d":"177,-132v25,8,37,30,38,59v2,87,-100,73,-186,73r0,-250v80,1,181,-17,179,67v0,24,-12,42,-31,51xm178,-183v0,-54,-69,-35,-118,-38r0,76v49,-3,118,15,118,-38xm60,-30v55,-2,125,13,125,-43v0,-59,-71,-40,-125,-43r0,86","w":230},"C":{"d":"253,-79v-18,47,-53,83,-115,83v-76,0,-119,-54,-124,-130v-8,-120,158,-175,222,-80v7,10,13,21,17,33r-32,0v-13,-30,-41,-56,-83,-54v-57,3,-93,42,-93,101v0,59,36,101,93,101v40,0,69,-24,83,-54r32,0","w":261},"D":{"d":"235,-125v0,76,-39,125,-113,125r-93,0r0,-250r93,0v74,3,113,49,113,125xm204,-125v0,-59,-25,-96,-82,-96r-62,0r0,191r62,0v58,-1,82,-38,82,-95","w":249},"E":{"d":"208,-250r0,29r-148,0r0,76r133,0r0,29r-133,0r0,86r148,0r0,30r-179,0r0,-250r179,0","w":223},"F":{"d":"60,-145r125,0r0,28r-125,0r0,117r-31,0r0,-250r170,0r0,29r-139,0r0,76","w":210},"G":{"d":"45,-126v-8,102,138,136,176,50v5,-10,8,-20,9,-31r-90,0r0,-29r120,0r0,136r-30,0r0,-42v-18,26,-48,48,-91,46v-77,-3,-120,-54,-125,-130v-9,-120,157,-174,221,-81v8,10,13,21,18,34r-32,0v-14,-31,-41,-53,-82,-53v-59,0,-90,41,-94,100","w":279},"H":{"d":"227,-250r0,250r-30,0r0,-116r-137,0r0,116r-31,0r0,-250r31,0r0,104r137,0r0,-104r30,0","w":256},"I":{"d":"61,0r-30,0r0,-250r30,0r0,250","w":91},"J":{"d":"172,-250v-2,117,29,291,-116,248v-30,-9,-49,-38,-51,-77r31,0v0,34,21,53,53,54v36,1,53,-24,53,-60r0,-165r30,0","w":195},"K":{"d":"60,-88r0,88r-31,0r0,-250r31,0r0,122r125,-122r43,0r-103,100r108,150r-39,0r-91,-129","w":233},"L":{"d":"188,0r-159,0r0,-250r31,0r0,220r128,0r0,30","w":197},"M":{"d":"269,0r-30,0r0,-209r-73,209r-33,0r-73,-209r0,209r-31,0r0,-250r47,0r73,211r74,-211r46,0r0,250","w":298},"N":{"d":"228,0r-34,0r-134,-203r0,203r-31,0r0,-250r34,0r135,203r0,-203r30,0r0,250","w":257},"O":{"d":"14,-126v0,-76,48,-130,124,-130v76,0,124,52,124,130v0,77,-47,130,-124,130v-76,0,-124,-54,-124,-130xm45,-126v0,60,36,101,93,101v58,0,94,-42,94,-101v0,-60,-36,-101,-94,-101v-57,0,-93,41,-93,101","w":276},"P":{"d":"215,-174v0,48,-29,76,-81,75r-74,0r0,99r-31,0r0,-250r105,0v51,1,81,27,81,76xm184,-174v0,-60,-68,-46,-124,-47r0,93v55,-2,124,13,124,-46","w":223},"Q":{"d":"138,-256v76,0,124,52,124,130v0,39,-14,68,-34,90r34,36r-41,0r-16,-16v-18,11,-39,21,-67,20v-76,-4,-124,-54,-124,-130v0,-76,48,-130,124,-130xm45,-126v-3,76,73,124,140,88r-35,-38r41,0r16,18v51,-57,17,-174,-69,-169v-57,4,-91,41,-93,101","w":276},"R":{"d":"140,-250v81,-10,107,106,46,136v38,14,20,76,32,114r-31,0v-10,-36,11,-99,-46,-99r-81,0r0,99r-31,0r0,-250r111,0xm190,-174v0,-62,-73,-45,-130,-47r0,93v57,-1,130,13,130,-46","w":239},"S":{"d":"107,-227v-56,0,-80,62,-25,75v53,13,118,15,120,81v4,94,-157,95,-183,26v-4,-10,-7,-22,-7,-34r32,0v-1,35,27,55,63,54v60,11,89,-64,33,-82v-48,-15,-121,-13,-121,-78v0,-86,146,-92,170,-26v4,10,6,21,6,33r-31,0v0,-32,-23,-49,-57,-49","w":215},"T":{"d":"115,-221r0,221r-30,0r0,-221r-79,0r0,-29r188,0r0,29r-79,0","w":199},"U":{"d":"55,-250v8,89,-33,225,66,225v97,0,57,-136,65,-225r30,0r0,160v-1,59,-37,94,-95,94v-59,0,-96,-34,-96,-94r0,-160r30,0","w":241},"V":{"d":"126,0r-32,0r-93,-250r34,0r75,212r75,-212r33,0","w":219},"W":{"d":"217,0r-55,-201r-56,201r-32,0r-71,-250r32,0r55,201r55,-201r32,0r56,201r55,-201r32,0r-71,250r-32,0","w":323},"X":{"d":"5,-250r37,0r63,97r63,-97r36,0r-81,123r85,127r-37,0r-66,-101r-66,101r-37,0r85,-127","w":209},"Y":{"d":"119,-108r0,108r-31,0r0,-108r-87,-142r36,0r67,114r67,-114r35,0","w":207},"Z":{"d":"200,0r-190,0r0,-27r151,-194r-147,0r0,-29r185,0r0,28r-150,192r151,0r0,30","w":209},"[":{"d":"58,4r46,0r0,27r-76,0r0,-314r76,0r0,27r-46,0r0,260","w":111},"\\":{"d":"24,-268r76,268r-30,0r-76,-268r30,0","w":98},"]":{"d":"8,-256r0,-27r76,0r0,314r-76,0r0,-27r45,0r0,-260r-45,0","w":111},"^":{"d":"173,-93r-33,0r-47,-123r-48,123r-33,0r64,-157r33,0","w":184},"_":{"d":"317,54r-317,0r0,-29r317,0r0,29","w":317},"`":{"d":"73,-265r31,48r-23,0r-45,-48r37,0","w":150},"a":{"d":"179,-132v2,44,-5,97,5,132v-19,1,-38,4,-35,-21v-29,40,-139,35,-136,-32v2,-42,33,-54,76,-58v27,-2,57,-1,60,-25v-3,-38,-95,-35,-94,7r-32,0v2,-40,36,-61,81,-61v45,0,73,20,75,58xm43,-53v9,50,111,32,106,-18r0,-29v-25,26,-104,0,-106,47","w":204},"b":{"d":"120,-190v57,3,92,40,92,97v0,57,-35,95,-92,98v-29,1,-53,-17,-64,-35r0,30r-30,0r0,-268r31,0r0,111v12,-18,34,-34,63,-33xm120,-23v38,0,62,-30,62,-69v0,-40,-24,-66,-62,-70v-38,4,-63,29,-63,70v0,39,25,69,63,69"},"c":{"d":"43,-93v-7,69,93,92,116,35r33,0v-11,36,-42,62,-87,62v-57,0,-88,-40,-92,-97v-7,-104,153,-131,179,-35r-33,0v-22,-57,-123,-34,-116,35","w":202},"d":{"d":"105,-190v28,-1,51,15,63,33r0,-111r31,0r0,268r-29,0r0,-30v-12,18,-35,36,-65,35v-57,-2,-92,-41,-92,-98v0,-57,35,-95,92,-97xm105,-23v39,0,63,-30,63,-69v0,-41,-24,-70,-63,-70v-39,0,-62,30,-62,70v0,39,24,69,62,69"},"e":{"d":"44,-85v-1,64,98,84,119,27r32,0v-11,37,-41,63,-87,62v-58,-1,-92,-38,-95,-97v-6,-104,150,-130,179,-36v5,13,7,27,7,44r-155,0xm166,-112v-6,-49,-85,-69,-111,-21v-4,6,-8,13,-10,21r121,0","w":210},"f":{"d":"105,-238v-34,-3,-45,20,-43,53r42,0r0,29r-42,0r0,156r-30,0r0,-156r-25,0r0,-29r25,0v-2,-52,22,-86,73,-81r0,28","w":110},"g":{"d":"105,-190v29,-1,53,17,65,34r0,-29r29,0r0,176v14,109,-157,136,-183,39r32,0v8,22,30,32,56,32v49,0,68,-36,64,-90v-12,17,-35,33,-63,33v-57,0,-92,-41,-92,-98v0,-57,35,-94,92,-97xm105,-23v39,0,63,-30,63,-69v0,-41,-24,-70,-63,-70v-39,0,-62,30,-62,70v0,39,24,69,62,69","w":222},"h":{"d":"110,-190v88,-2,70,105,71,190r-30,0v-6,-64,23,-163,-46,-162v-69,0,-43,97,-48,162r-31,0r0,-268r31,0r0,101v11,-13,29,-23,53,-23","w":206},"i":{"d":"57,-213r-30,0r0,-37r30,0r0,37xm57,0r-30,0r0,-185r30,0r0,185","w":83},"j":{"d":"57,-213r-31,0r0,-37r31,0r0,37xm57,26v-2,34,-18,59,-57,55r0,-30v17,2,27,-6,26,-26r0,-210r31,0r0,211","w":79},"k":{"d":"193,0r-37,0r-63,-94r-36,34r0,60r-31,0r0,-268r31,0r0,166r84,-83r45,0r-71,69","w":196},"l":{"d":"58,0r-31,0r0,-268r31,0r0,268","w":84},"m":{"d":"56,-165v20,-36,92,-30,106,7v11,-18,31,-32,58,-32v88,-3,67,106,69,190r-31,0v-7,-61,25,-164,-42,-162v-65,2,-37,100,-43,162r-30,0v-7,-61,25,-162,-42,-162v-66,0,-38,99,-44,162r-31,0r0,-185r30,0r0,20","w":314},"n":{"d":"110,-190v88,-2,70,105,71,190r-30,0v-5,-64,23,-162,-46,-162v-69,0,-43,97,-48,162r-31,0r0,-185r30,0r0,20v11,-15,30,-24,54,-25","w":206},"o":{"d":"13,-92v0,-58,36,-98,93,-98v57,0,93,40,93,98v0,56,-35,96,-93,96v-58,0,-93,-40,-93,-96xm44,-92v0,40,23,68,62,68v39,0,62,-28,62,-68v0,-42,-24,-66,-62,-70v-38,4,-62,29,-62,70","w":212},"p":{"d":"120,-190v58,2,92,40,92,97v0,57,-34,95,-92,97v-28,0,-51,-15,-63,-32r0,110r-31,0r0,-267r30,0r0,29v12,-17,35,-35,64,-34xm120,-24v40,0,62,-29,62,-69v0,-39,-22,-69,-62,-69v-40,0,-63,30,-63,69v0,40,23,69,63,69"},"q":{"d":"105,-190v29,-1,53,17,65,34r0,-29r29,0r0,267r-31,0r0,-110v-12,17,-35,32,-63,32v-58,-2,-92,-40,-92,-97v0,-57,34,-95,92,-97xm105,-24v40,0,63,-29,63,-69v0,-40,-23,-69,-63,-69v-40,0,-62,30,-62,69v0,40,22,69,62,69"},"r":{"d":"116,-159v-79,-7,-56,89,-59,159r-31,0r0,-185r30,0r0,20v12,-16,31,-28,60,-25r0,31","w":124},"s":{"d":"135,-132v-2,-39,-82,-40,-87,-4v17,45,121,2,122,80v1,75,-124,76,-150,24v-4,-8,-8,-17,-9,-27r31,0v2,43,94,48,98,5v-9,-54,-120,-4,-122,-81v-2,-57,86,-68,125,-40v13,10,21,25,23,43r-31,0","w":181},"t":{"d":"62,-156v5,53,-20,135,42,128r0,28v-83,10,-74,-77,-73,-156r-25,0r0,-29r25,0r0,-40r31,0r0,40r42,0r0,29r-42,0","w":112},"u":{"d":"102,-23v69,0,44,-97,48,-162r30,0r0,185r-29,0r0,-20v-12,15,-29,24,-54,24v-89,3,-69,-104,-71,-189r30,0v5,64,-23,162,46,162","w":206},"v":{"d":"104,0r-33,0r-67,-185r32,0r51,147r52,-147r32,0","w":174},"w":{"d":"185,-46r40,-139r32,0r-56,185r-32,0r-39,-142r-40,142r-32,0r-55,-185r32,0r40,139r39,-139r32,0","w":259},"x":{"d":"87,-72r-47,72r-38,0r66,-96r-62,-89r38,0r43,66r43,-66r38,0r-63,89r67,96r-37,0","w":174},"y":{"d":"93,36v-12,31,-29,47,-70,44r0,-28v38,5,41,-28,52,-53r-71,-184r33,0r54,147r53,-147r32,0","w":180},"z":{"d":"159,0r-149,0r0,-26r106,-130r-103,0r0,-29r143,0r0,27r-105,128r108,0r0,30","w":169},"{":{"d":"10,-138v74,6,-22,-147,88,-143r0,26v-60,-3,4,114,-53,130v34,9,25,60,26,102v0,18,7,28,27,27r0,26v-60,9,-60,-53,-57,-112v1,-21,-11,-30,-31,-30r0,-26","w":110},"|":{"d":"55,0r-30,0r0,-268r30,0r0,268","w":79},"}":{"d":"66,-125v-56,-16,7,-133,-53,-130r0,-26v60,-9,56,54,56,113v0,20,10,31,31,30r0,26v-74,-3,21,147,-87,142r0,-26v60,4,-4,-114,53,-129","w":110},"~":{"d":"128,-251v-2,22,-14,38,-37,38v-19,0,-31,-12,-50,-14v-8,-1,-16,7,-15,15r-18,0v3,-20,13,-37,37,-37v25,-1,57,31,66,-2r17,0","w":136},"\u2122":{"d":"301,-93r-25,0r0,-113r-42,113r-25,0r-42,-113r0,113r-25,0r0,-157r34,0r45,127r46,-127r34,0r0,157xm126,-250r0,24r-44,0r0,133r-25,0r0,-133r-45,0r0,-24r114,0","w":322},"\u2026":{"d":"286,0r-36,0r0,-37r36,0r0,37xm170,0r-36,0r0,-37r36,0r0,37xm54,0r-36,0r0,-37r36,0r0,37","w":303},"\u2013":{"d":"16,-85r0,-29r195,0r0,29r-195,0","w":227},"\u2014":{"d":"16,-85r0,-29r320,0r0,29r-320,0","w":351},"\u201c":{"d":"105,-237v-14,2,-19,14,-18,31r20,0r0,37r-36,0v-1,-39,-5,-80,34,-84r0,16xm49,-237v-15,1,-20,13,-18,31r20,0r0,37r-36,0v-1,-38,-5,-80,34,-84r0,16","w":120},"\u201d":{"d":"72,-182v15,-1,20,-13,18,-31r-21,0r0,-37r37,0v1,39,5,80,-34,84r0,-16xm16,-182v14,-2,19,-14,18,-31r-20,0r0,-37r36,0v1,39,5,80,-34,84r0,-16","w":120},"\u2018":{"d":"49,-237v-15,1,-20,13,-18,31r20,0r0,37r-36,0v-1,-38,-5,-80,34,-84r0,16","w":64},"\u2019":{"d":"16,-182v14,-2,19,-14,18,-31r-20,0r0,-37r36,0v1,39,5,80,-34,84r0,-16","w":64},"\u00a0":{"w":106}}});
;
var chaletBold = [
	'#navigation a',
	'.region-venue-header ul li a',
	'#block-search-form .form-submit',
	'.region-content .block-title',
	'.table-toggle-view-handle',
	'#secondary-menu li',
	'.error-404 h2',
	'.region-sidebar-first .block-title',
	'.view-header p',
	'#page-title',
     '.front .region-venue-header .view-header h3'
]; 

var chaletRegular = [
	'#site-slogan'
];


jQuery(document).ready(function(){
	Cufon(chaletBold,{fontFamily: 'Chalet Bold'});
	Cufon(chaletRegular,{fontFamily: 'Chalet Regular'});
});;

