/**
 * jCarouselLite - jQuery plugin to navigate images/any content in a carousel style widget.
 * @requires jQuery v1.2 or above
 *
 * http://gmarwaha.com/jquery/jcarousellite/
 *
 * Copyright (c) 2007 Ganeshji Marwaha (gmarwaha.com)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Version: 1.0.1
 * Note: Requires jquery 1.2 or above from version 1.0.1
 */

/**
 * Creates a carousel-style navigation widget for images/any-content from a simple HTML markup.
 *
 * The HTML markup that is used to build the carousel can be as simple as...
 *
 *  <div class="carousel">
 *      <ul>
 *          <li><img src="image/1.jpg" alt="1"></li>
 *          <li><img src="image/2.jpg" alt="2"></li>
 *          <li><img src="image/3.jpg" alt="3"></li>
 *      </ul>
 *  </div>
 *
 * As you can see, this snippet is nothing but a simple div containing an unordered list of images.
 * You don't need any special "class" attribute, or a special "css" file for this plugin.
 * I am using a class attribute just for the sake of explanation here.
 *
 * To navigate the elements of the carousel, you need some kind of navigation buttons.
 * For example, you will need a "previous" button to go backward, and a "next" button to go forward.
 * This need not be part of the carousel "div" itself. It can be any element in your page.
 * Lets assume that the following elements in your document can be used as next, and prev buttons...
 *
 * <button class="prev">&lt;&lt;</button>
 * <button class="next">&gt;&gt;</button>
 *
 * Now, all you need to do is call the carousel component on the div element that represents it, and pass in the
 * navigation buttons as options.
 *
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev"
 * });
 *
 * That's it, you would have now converted your raw div, into a magnificient carousel.
 *
 * There are quite a few other options that you can use to customize it though.
 * Each will be explained with an example below.
 *
 * @param an options object - You can specify all the options shown below as an options object param.
 *
 * @option btnPrev, btnNext : string - no defaults
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev"
 * });
 * @desc Creates a basic carousel. Clicking "btnPrev" navigates backwards and "btnNext" navigates forward.
 *
 * @option btnGo - array - no defaults
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      btnGo: [".0", ".1", ".2"]
 * });
 * @desc If you don't want next and previous buttons for navigation, instead you prefer custom navigation based on
 * the item number within the carousel, you can use this option. Just supply an array of selectors for each element
 * in the carousel. The index of the array represents the index of the element. What i mean is, if the
 * first element in the array is ".0", it means that when the element represented by ".0" is clicked, the carousel
 * will slide to the first element and so on and so forth. This feature is very powerful. For example, i made a tabbed
 * interface out of it by making my navigation elements styled like tabs in css. As the carousel is capable of holding
 * any content, not just images, you can have a very simple tabbed navigation in minutes without using any other plugin.
 * The best part is that, the tab will "slide" based on the provided effect. :-)
 *
 * @option mouseWheel : boolean - default is false
 * @example
 * $(".carousel").jCarouselLite({
 *      mouseWheel: true
 * });
 * @desc The carousel can also be navigated using the mouse wheel interface of a scroll mouse instead of using buttons.
 * To get this feature working, you have to do 2 things. First, you have to include the mouse-wheel plugin from brandon.
 * Second, you will have to set the option "mouseWheel" to true. That's it, now you will be able to navigate your carousel
 * using the mouse wheel. Using buttons and mouseWheel or not mutually exclusive. You can still have buttons for navigation
 * as well. They complement each other. To use both together, just supply the options required for both as shown below.
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      mouseWheel: true
 * });
 *
 * @option auto : number - default is null, meaning autoscroll is disabled by default
 * @example
 * $(".carousel").jCarouselLite({
 *      auto: 800,
 *      speed: 500
 * });
 * @desc You can make your carousel auto-navigate itself by specfying a millisecond value in this option.
 * The value you specify is the amount of time between 2 slides. The default is null, and that disables auto scrolling.
 * Specify this value and magically your carousel will start auto scrolling.
 *
 * @option speed : number - 200 is default
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      speed: 800
 * });
 * @desc Specifying a speed will slow-down or speed-up the sliding speed of your carousel. Try it out with
 * different speeds like 800, 600, 1500 etc. Providing 0, will remove the slide effect.
 *
 * @option easing : string - no easing effects by default.
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      easing: "bounceout"
 * });
 * @desc You can specify any easing effect. Note: You need easing plugin for that. Once specified,
 * the carousel will slide based on the provided easing effect.
 *
 * @option vertical : boolean - default is false
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      vertical: true
 * });
 * @desc Determines the direction of the carousel. true, means the carousel will display vertically. The next and
 * prev buttons will slide the items vertically as well. The default is false, which means that the carousel will
 * display horizontally. The next and prev items will slide the items from left-right in this case.
 *
 * @option circular : boolean - default is true
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      circular: false
 * });
 * @desc Setting it to true enables circular navigation. This means, if you click "next" after you reach the last
 * element, you will automatically slide to the first element and vice versa. If you set circular to false, then
 * if you click on the "next" button after you reach the last element, you will stay in the last element itself
 * and similarly for "previous" button and first element.
 *
 * @option visible : number - default is 3
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      visible: 4
 * });
 * @desc This specifies the number of items visible at all times within the carousel. The default is 3.
 * You are even free to experiment with real numbers. Eg: "3.5" will have 3 items fully visible and the
 * last item half visible. This gives you the effect of showing the user that there are more images to the right.
 *
 * @option start : number - default is 0
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      start: 2
 * });
 * @desc You can specify from which item the carousel should start. Remember, the first item in the carousel
 * has a start of 0, and so on.
 *
 * @option scrool : number - default is 1
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      scroll: 2
 * });
 * @desc The number of items that should scroll/slide when you click the next/prev navigation buttons. By
 * default, only one item is scrolled, but you may set it to any number. Eg: setting it to "2" will scroll
 * 2 items when you click the next or previous buttons.
 *
 * @option beforeStart, afterEnd : function - callbacks
 * @example
 * $(".carousel").jCarouselLite({
 *      btnNext: ".next",
 *      btnPrev: ".prev",
 *      beforeStart: function(a) {
 *          alert("Before animation starts:" + a);
 *      },
 *      afterEnd: function(a) {
 *          alert("After animation ends:" + a);
 *      }
 * });
 * @desc If you wanted to do some logic in your page before the slide starts and after the slide ends, you can
 * register these 2 callbacks. The functions will be passed an argument that represents an array of elements that
 * are visible at the time of callback.
 *
 *
 * @cat Plugins/Image Gallery
 * @author Ganeshji Marwaha/ganeshread@gmail.com
 */

(function($) {                                          // Compliant with jquery.noConflict()
$.fn.jCarouselLite = function(o) {
    o = $.extend({
        btnPrev: null,
        btnNext: null,
        btnGo: null,
        mouseWheel: false,
        auto: null,
        hoverPause: false,

        speed: 200,
        easing: null,

        vertical: false,
        circular: true,
        visible: 3,
        start: 0,
        scroll: 1,

        beforeStart: null,
        afterEnd: null
    }, o || {});

    return this.each(function() {                           // Returns the element collection. Chainable.

        var running = false, animCss=o.vertical?"top":"left", sizeCss=o.vertical?"height":"width";
        var div = $(this), ul = $("ul", div), tLi = $("li", ul), tl = tLi.size(), v = o.visible;

        if(o.circular) {
            ul.prepend(tLi.slice(tl-v+1).clone())
              .append(tLi.slice(0,o.scroll).clone());
            o.start += v-1;
        }

        var li = $("li", ul), itemLength = li.size(), curr = o.start;
        div.css("visibility", "visible");

        li.css({overflow: "hidden", float: o.vertical ? "none" : "left"});
        ul.css({margin: "0", padding: "0", position: "relative", "list-style-type": "none", "z-index": "1"});
        div.css({overflow: "hidden", position: "relative", "z-index": "2", left: "0px"});

        var liSize = o.vertical ? height(li) : width(li);   // Full li size(incl margin)-Used for animation
        var ulSize = liSize * itemLength;                   // size of full ul(total length, not just for the visible items)
        var divSize = liSize * v;                           // size of entire div(total length for just the visible items)

        li.css({width: li.width(), height: li.height()});
        ul.css(sizeCss, ulSize+"px").css(animCss, -(curr*liSize));

        div.css(sizeCss, divSize+"px");                     // Width of the DIV. length of visible images

        if(o.btnPrev) {
            $(o.btnPrev).click(function() {
                return go(curr-o.scroll);
            });
            if(o.hoverPause) {
                $(o.btnPrev).hover(function(){stopAuto();}, function(){startAuto();});
            }
        }


        if(o.btnNext) {
            $(o.btnNext).click(function() {
                return go(curr+o.scroll);
            });
            if(o.hoverPause) {
                $(o.btnNext).hover(function(){stopAuto();}, function(){startAuto();});
            }
        }

        if(o.btnGo)
            $.each(o.btnGo, function(i, val) {
                $(val).click(function() {
                    return go(o.circular ? o.visible+i : i);
                });
            });

        if(o.mouseWheel && div.mousewheel)
            div.mousewheel(function(e, d) {
                return d>0 ? go(curr-o.scroll) : go(curr+o.scroll);
            });

        var autoInterval;

        function startAuto() {
          stopAuto();
          autoInterval = setInterval(function() {
                  go(curr+o.scroll);
              }, o.auto+o.speed);
        };

        function stopAuto() {
            clearInterval(autoInterval);
        };

        if(o.auto) {
            if(o.hoverPause) {
                div.hover(function(){stopAuto();}, function(){startAuto();});
            }
            startAuto();
        };

        function vis() {
            return li.slice(curr).slice(0,v);
        };

        function go(to) {
            if(!running) {

                if(o.beforeStart)
                    o.beforeStart.call(this, vis());

                if(o.circular) {            // If circular we are in first or last, then goto the other end
                    if(to<0) {           // If before range, then go around
                        ul.css(animCss, -( (curr + tl) * liSize)+"px");
                        curr = to + tl;
                    } else if(to>itemLength-v) { // If beyond range, then come around
                        ul.css(animCss, -( (curr - tl) * liSize ) + "px" );
                        curr = to - tl;
                    } else curr = to;
                } else {                    // If non-circular and to points to first or last, we just return.
                    if(to<0 || to>itemLength-v) return;
                    else curr = to;
                }                           // If neither overrides it, the curr will still be "to" and we can proceed.

                running = true;

                ul.animate(
                    animCss == "left" ? { left: -(curr*liSize) } : { top: -(curr*liSize) } , o.speed, o.easing,
                    function() {
                        if(o.afterEnd)
                            o.afterEnd.call(this, vis());
                        running = false;
                    }
                );
                // Disable buttons when the carousel reaches the last/first, and enable when not
                if(!o.circular) {
                    $(o.btnPrev + "," + o.btnNext).removeClass("disabled");
                    $( (curr-o.scroll<0 && o.btnPrev)
                        ||
                       (curr+o.scroll > itemLength-v && o.btnNext)
                        ||
                       []
                     ).addClass("disabled");
                }

            }
            return false;
        };
    });
};

function css(el, prop) {
    return parseInt($.css(el[0], prop)) || 0;
};
function width(el) {
    return  el[0].offsetWidth + css(el, 'marginLeft') + css(el, 'marginRight');
};
function height(el) {
    return el[0].offsetHeight + css(el, 'marginTop') + css(el, 'marginBottom');
};

})(jQuery);;
var slideMenu=function(){
	var sp,st,t,m,sa,l,w,gw,ot;
	return{
		build:function(sm,sw,mt,s,sl,h){
			sp=s; st=sw; t=mt;
			m=document.getElementById(sm);
			sa=m.getElementsByTagName('li');
			l=sa.length; w=m.offsetWidth; gw=w/l;
			ot=Math.floor((w-st)/(l-1)); var i=0;
			for(i;i<l;i++){s=sa[i]; s.style.width=gw+'px'; this.timer(s)}
			if(sl!=null){m.timer=setInterval(function(){slideMenu.slide(sa[sl-1])},t)}
		},
		timer:function(s){
			s.onmouseover=function(){slideMenu.setclass(s);clearInterval(m.htimer);clearInterval(m.timer);m.timer=setInterval(function(){slideMenu.slide(s)},t)}
			s.onmouseout=function(){slideMenu.setclass(s,true);clearInterval(m.timer);clearInterval(m.htimer);m.htimer=setInterval(function(){slideMenu.slide(s,true)},t)}
		},
                setclass:function(s,c){
                    for(var i in sa){
                      sa[i].className='';
                    }
                    if(!c) s.className = 'active';
                },
		slide:function(s,c){
			var cw=parseInt(s.style.width);
			if((cw<st && !c) || (cw>gw && c)){
				var owt=0; var i=0;
				for(i;i<l;i++){
					if(sa[i]!=s){
						var o,ow; var oi=0; o=sa[i]; ow=parseInt(o.style.width);
						if(ow<gw && c){oi=Math.floor((gw-ow)/sp); oi=(oi>0)?oi:1; o.style.width=(ow+oi)+'px';
						}else if(ow>ot && !c){oi=Math.floor((ow-ot)/sp); oi=(oi>0)?oi:1; o.style.width=(ow-oi)+'px'}
						if(c){owt=owt+(ow+oi)}else{owt=owt+(ow-oi)}}}
				s.style.width=(w-owt)+'px';
			}else{clearInterval(m.timer);clearInterval(m.htimer)}
		}
	};
}();;
/*
 * 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:
 * 2005 Albert-Jan Pool published by FSI Fonts und Software GmbH
 * 
 * Trademark:
 * DIN is a trademark of FSI Fonts und Software GmbH
 * 
 * Manufacturer:
 * FSI Fonts und Software GmbH
 * 
 * Designer:
 * Albert-Jan Pool
 * 
 * Vendor URL:
 * http://www.fontfont.com
 * 
 * License information:
 * http://www.fontfont.com/eula/license.html
 */
Cufon.registerFont({"w":195,"face":{"font-family":"DINPro-Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 3 0 0 2 0 4","ascent":"275","descent":"-85","x-height":"2","bbox":"-17 -365 333 74","underline-thickness":"18.36","underline-position":"-30.6","stemh":"45","stemv":"47","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":83},"!":{"d":"98,-256r-12,176r-34,0r-12,-176r58,0xm96,0r-54,0r0,-53r54,0r0,53","w":124},"\"":{"d":"68,-180r-44,0r0,-76r44,0r0,76xm142,-180r-43,0r0,-76r43,0r0,76","w":167},"#":{"d":"231,-151r-32,0r-5,39r25,0r0,44r-33,0r-10,68r-50,0r12,-68r-42,0r-11,68r-49,0r10,-68r-24,0r0,-44r32,0r5,-39r-25,0r0,-44r32,0r10,-63r50,0r-10,63r41,0r10,-63r49,0r-9,63r24,0r0,44xm150,-151r-41,0r-6,39r41,0","w":248},"$":{"d":"186,-130v44,47,10,131,-58,131r0,40r-36,0r0,-39v-35,-1,-62,-10,-85,-34r32,-32v15,15,35,21,57,22r0,-66v-48,-4,-79,-24,-79,-73v0,-41,28,-72,75,-77r0,-32r36,0r0,32v29,2,52,10,71,29r-32,32v-12,-12,-29,-17,-44,-18r0,63v26,3,51,10,63,22xm123,-43v32,-1,43,-33,26,-53v-6,-8,-17,-8,-26,-9r0,62xm96,-154r0,-60v-43,3,-38,58,0,60","w":222},"%":{"d":"287,-83v0,50,-10,85,-53,85v-42,0,-52,-35,-52,-85v0,-32,24,-49,52,-49v28,0,53,17,53,49xm123,-209v0,49,-10,85,-52,85v-41,0,-52,-36,-52,-85v0,-32,24,-49,52,-49v28,0,52,17,52,49xm232,-256r-121,256r-37,0r121,-256r37,0xm234,-28v24,2,19,-30,19,-53v0,-14,-7,-21,-19,-21v-24,-2,-17,31,-18,53v0,14,6,21,18,21xm71,-154v24,2,17,-32,18,-54v0,-14,-6,-20,-18,-20v-24,0,-17,31,-18,53v0,14,6,21,18,21","w":305},"&":{"d":"251,0r-60,0r-19,-22v-12,9,-29,24,-66,24v-57,0,-84,-30,-84,-78v0,-33,24,-53,46,-68v-10,-12,-26,-31,-26,-55v0,-35,26,-59,69,-59v64,0,87,76,39,105r-19,13r44,51v8,-11,12,-27,13,-45r44,0v-2,33,-10,60,-28,80xm144,-55r-51,-61v-36,16,-34,76,13,76v15,0,26,-5,38,-15xm106,-169v24,-7,39,-46,5,-50v-31,3,-24,35,-5,50","w":259},"'":{"d":"69,-180r-45,0r0,-76r45,0r0,76","w":93},"(":{"d":"76,-52v-1,32,11,39,25,55r-31,31v-22,-20,-44,-44,-41,-84v4,-68,-12,-150,9,-203v6,-15,20,-25,32,-37r31,31v-15,16,-25,22,-25,55r0,152","w":120},")":{"d":"51,-290v21,19,44,43,41,83v-4,69,12,150,-9,204v-6,15,-20,25,-32,37r-32,-32v15,-16,26,-21,26,-54r0,-152v1,-33,-10,-39,-26,-54","w":120},"*":{"d":"158,-166r-16,29r-38,-24r1,45r-33,0r2,-45r-38,24r-16,-29r39,-20r-39,-21r16,-29r38,24r-2,-45r33,0r-1,45r38,-24r16,29r-40,21","w":177},"+":{"d":"177,-78r-57,0r0,58r-44,0r0,-58r-58,0r0,-44r58,0r0,-57r44,0r0,57r57,0r0,44"},",":{"d":"76,20r-52,39r0,-110r52,0r0,71","w":100},"-":{"d":"132,-81r-111,0r0,-44r111,0r0,44","w":153},".":{"d":"78,0r-54,0r0,-53r54,0r0,53","w":102},"\/":{"d":"147,-283r-103,310r-44,0r103,-310r44,0","w":145},"0":{"d":"176,-74v0,49,-36,76,-78,76v-42,0,-78,-27,-78,-76r0,-108v0,-49,36,-76,78,-76v42,0,78,27,78,76r0,108xm98,-40v51,-3,31,-91,31,-141v0,-22,-13,-35,-31,-35v-51,3,-31,91,-31,141v0,22,13,35,31,35"},"1":{"d":"136,0r-47,0r0,-206r-52,45r0,-50r52,-45r47,0r0,256"},"2":{"d":"177,0r-156,0r0,-42r96,-111v22,-21,17,-63,-18,-63v-15,0,-31,7,-31,32r-47,0v0,-47,34,-74,78,-74v73,0,96,81,51,133r-72,83r99,0r0,42"},"3":{"d":"178,-74v0,51,-37,76,-81,76v-42,0,-81,-21,-82,-75r47,0v1,23,17,33,35,33v20,0,34,-13,34,-36v0,-23,-15,-37,-42,-35r0,-41v26,2,40,-12,39,-32v0,-22,-15,-32,-32,-32v-18,0,-30,12,-31,31r-47,0v1,-46,35,-73,78,-73v73,0,107,97,49,126v18,10,33,27,33,58"},"4":{"d":"184,-36r-23,0r0,36r-45,0r0,-36r-105,0r0,-45r88,-175r51,0r-88,175r54,0r0,-48r45,0r0,48r23,0r0,45"},"5":{"d":"107,-172v51,-3,71,45,71,86v0,51,-24,87,-79,88v-52,1,-78,-32,-78,-74r46,0v3,20,13,32,32,32v24,1,33,-20,32,-46v10,-52,-52,-57,-62,-26r-43,0r0,-144r146,0r0,42r-104,0r0,55v7,-6,22,-13,39,-13"},"6":{"d":"177,-78v0,50,-35,80,-80,80v-45,0,-80,-28,-80,-79v0,-68,53,-122,76,-179r51,0r-53,106v45,-15,86,18,86,72xm130,-77v0,-23,-13,-38,-33,-38v-19,0,-33,14,-33,38v0,24,14,37,33,37v19,0,33,-13,33,-37"},"7":{"d":"181,-214r-83,214r-51,0r83,-214r-67,0r0,40r-45,0r0,-82r163,0r0,42"},"8":{"d":"180,-75v0,50,-37,77,-82,77v-45,0,-82,-27,-82,-77v0,-31,18,-48,32,-57v-13,-9,-29,-26,-29,-53v0,-45,36,-73,79,-73v43,0,78,28,78,73v0,27,-15,44,-28,53v14,9,32,26,32,57xm133,-75v0,-20,-15,-36,-35,-36v-20,0,-35,16,-35,36v0,20,15,35,35,35v20,0,35,-15,35,-35xm130,-184v0,-18,-14,-32,-32,-32v-18,0,-32,14,-32,32v0,19,14,32,32,32v18,0,32,-13,32,-32"},"9":{"d":"98,-258v76,0,90,83,59,147r-54,111r-51,0r53,-106v-47,13,-87,-19,-87,-73v0,-50,35,-79,80,-79xm131,-179v0,-24,-14,-37,-33,-37v-19,0,-33,13,-33,37v0,23,13,38,33,38v19,0,33,-14,33,-38"},":":{"d":"87,-98r-54,0r0,-53r54,0r0,53xm87,0r-54,0r0,-53r54,0r0,53","w":111},";":{"d":"86,20r-51,39r0,-110r51,0r0,71xm87,-98r-54,0r0,-53r54,0r0,53","w":111},"<":{"d":"171,-15r-146,-67r0,-41r146,-67r0,49r-87,38r87,39r0,49"},"=":{"d":"177,-120r-159,0r0,-44r159,0r0,44xm177,-42r-159,0r0,-44r159,0r0,44"},">":{"d":"171,-82r-146,67r0,-49r87,-39r-87,-38r0,-49r146,67r0,41"},"?":{"d":"99,-258v60,0,100,72,59,117v-11,19,-34,30,-33,61r-47,0v-6,-53,42,-66,51,-107v0,-17,-12,-29,-30,-29v-19,0,-28,13,-28,30r-47,0v0,-45,33,-72,75,-72xm126,0r-50,0r0,-48r50,0r0,48","w":188},"@":{"d":"111,-258v84,0,141,10,141,90r0,169r-44,-1r0,-17v-42,44,-120,6,-105,-66v-13,-72,60,-109,104,-67v9,-60,-33,-66,-93,-66v-27,0,-51,20,-48,49v5,48,-14,115,15,140r-32,32v-45,-29,-24,-107,-28,-173v-4,-57,32,-90,90,-90xm207,-83v0,-28,-7,-46,-30,-46v-23,0,-29,18,-29,46v0,28,6,46,29,46v23,0,30,-18,30,-46","w":272},"A":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0","w":229,"k":{"\u00ff":9,"\u00fd":9,"\u00dd":13,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":9,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"B":{"d":"216,-74v2,89,-100,74,-186,74r0,-256r103,0v50,0,79,28,79,72v0,28,-19,47,-32,53v15,7,36,23,36,57xm166,-76v0,-37,-48,-33,-86,-32r0,63v37,1,86,6,86,-31xm162,-182v0,-36,-46,-30,-82,-30r0,59v35,0,82,7,82,-29","w":236,"k":{"J":7}},"C":{"d":"71,-128v0,71,3,75,45,86v24,0,38,-15,43,-37r51,0v-9,52,-45,81,-94,81v-67,0,-95,-47,-95,-130v0,-84,28,-130,95,-130v49,0,85,29,94,81r-51,0v-5,-22,-19,-37,-43,-37v-43,0,-45,16,-45,86","w":223,"k":{"\u00dd":4,"\u00d8":12,"\u00d6":12,"\u00d5":12,"\u00d4":12,"\u00d3":12,"\u00d2":12,"\u00c7":12,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"Q":12,"O":12,"J":7,"G":12,"C":12,"A":4}},"D":{"d":"122,-256v70,-5,94,62,94,127v0,39,2,75,-26,105v-33,35,-99,21,-160,24r0,-256r92,0xm80,-45v67,3,86,-5,86,-84v0,-78,-19,-85,-86,-83r0,167","w":237,"k":{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":9,"A":4}},"E":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45","w":217,"k":{"J":1}},"F":{"d":"199,-212r-119,0r0,63r101,0r0,45r-101,0r0,104r-50,0r0,-256r169,0r0,44","w":212,"k":{"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":12,"\u00f6":12,"\u00f5":12,"\u00f4":12,"\u00f3":12,"\u00f2":12,"\u00f1":11,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e8":12,"\u00e7":12,"\u00e6":12,"\u00e5":12,"\u00e4":12,"\u00e3":12,"\u00e2":12,"\u00e1":12,"\u00e0":12,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":11,"x":11,"u":11,"r":11,"p":11,"o":12,"n":11,"m":11,"e":12,"c":12,"a":12,"S":4,"Q":7,"O":7,"J":45,"G":7,"C":7,"A":22}},"G":{"d":"116,-42v31,0,50,-24,47,-59r-47,0r0,-42r96,0v9,88,-23,147,-96,145v-67,-2,-95,-47,-95,-130v0,-84,28,-130,95,-130v58,0,89,37,96,82r-50,0v-6,-25,-21,-38,-46,-38v-41,10,-45,15,-45,86v0,71,3,75,45,86","w":229,"k":{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"H":{"d":"217,0r-50,0r0,-107r-87,0r0,107r-50,0r0,-256r50,0r0,104r87,0r0,-104r50,0r0,256","w":246},"I":{"d":"80,0r-50,0r0,-256r50,0r0,256","w":109},"J":{"d":"157,-84v3,86,-106,111,-156,60r33,-33v20,26,73,19,73,-29r0,-170r50,0r0,172","w":183,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"K":{"d":"237,0r-58,0r-66,-117r-33,40r0,77r-50,0r0,-256r50,0r0,111r90,-111r61,0r-85,102","w":239,"k":{"\u00ff":13,"\u00fd":13,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":13,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"L":{"d":"196,0r-166,0r0,-256r50,0r0,211r116,0r0,45","w":207,"k":{"\u00ff":22,"\u00fd":22,"\u00dd":29,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"y":22,"Y":29,"W":14,"V":25,"U":4,"T":29,"Q":9,"O":9,"J":-1,"G":9,"C":9}},"M":{"d":"262,0r-50,0r0,-149r-49,97r-34,0r-49,-97r0,149r-50,0r0,-256r49,0r67,138r67,-138r49,0r0,256","w":291},"N":{"d":"226,0r-45,0r-101,-157r0,157r-50,0r0,-256r45,0r101,157r0,-157r50,0r0,256","w":255},"O":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86","w":231,"k":{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"P":{"d":"214,-176v0,62,-58,89,-134,80r0,96r-50,0r0,-256r99,0v53,0,85,36,85,80xm164,-176v0,-39,-44,-38,-84,-36r0,71v39,1,84,5,84,-35","w":226,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":18,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"J":43,"A":18}},"Q":{"d":"116,-258v68,0,95,56,95,130v0,39,0,67,-16,91r22,22r-27,26r-22,-23v-80,43,-166,-20,-147,-116v-8,-75,26,-130,95,-130xm71,-128v0,71,3,75,45,86v6,0,11,-2,16,-5r-22,-22r27,-26r19,19v4,-11,5,-26,5,-52v-1,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86","w":231},"R":{"d":"224,0r-58,0r-50,-102r-36,0r0,102r-50,0r0,-256r100,0v92,-8,109,124,37,145xm163,-178v0,-38,-44,-35,-83,-34r0,68v39,1,83,4,83,-34","w":235,"k":{"J":3}},"S":{"d":"176,-130v45,54,3,132,-76,132v-39,0,-68,-8,-93,-34r32,-32v29,39,140,23,100,-32v-26,-17,-85,-10,-104,-34v-40,-51,-8,-128,71,-128v35,0,61,8,83,29r-32,32v-32,-37,-119,-12,-84,33v24,19,84,11,103,34","w":212,"k":{"\u00dd":7,"Y":7,"S":2,"J":7}},"T":{"d":"195,-212r-67,0r0,212r-50,0r0,-212r-67,0r0,-44r184,0r0,44","w":205,"k":{"\u00ff":14,"\u00fd":14,"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":24,"\u00f6":24,"\u00f5":24,"\u00f4":24,"\u00f3":24,"\u00f2":24,"\u00f1":14,"\u00eb":24,"\u00ea":24,"\u00e9":24,"\u00e8":24,"\u00e7":24,"\u00e6":24,"\u00e5":24,"\u00e4":24,"\u00e3":24,"\u00e2":24,"\u00e1":24,"\u00e0":24,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":22,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":14,"y":14,"x":14,"w":14,"v":14,"u":14,"s":24,"r":14,"q":24,"p":14,"o":24,"n":14,"m":14,"g":24,"e":24,"d":24,"c":24,"a":24,"Q":7,"O":7,"J":31,"G":7,"C":7,"A":22}},"U":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168","w":240,"k":{"J":4}},"V":{"d":"208,-256r-85,256r-37,0r-85,-256r52,0r51,167r52,-167r52,0","w":209,"k":{"\u00ff":4,"\u00fd":4,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00f1":7,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e7":14,"\u00e6":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"z":7,"y":4,"x":7,"u":7,"s":14,"r":7,"q":14,"p":7,"o":14,"n":7,"m":7,"g":14,"e":14,"d":14,"c":14,"a":14,"Q":4,"O":4,"G":4,"C":4,"A":13}},"W":{"d":"317,-256r-69,256r-41,0r-48,-156r-47,156r-41,0r-69,-256r52,0r40,161r47,-161r37,0r47,161r40,-161r52,0","w":319,"k":{"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e7":14,"\u00e6":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":6,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"s":14,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14,"a":14,"Q":4,"O":4,"G":4,"C":4,"A":6}},"X":{"d":"215,0r-57,0r-50,-89r-49,89r-57,0r79,-131r-74,-125r57,0r44,82r45,-82r57,0r-75,125","w":217,"k":{"\u00ff":12,"\u00fd":12,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":12,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"Y":{"d":"205,-256r-77,151r0,105r-50,0r0,-105r-77,-151r54,0r48,103r47,-103r55,0","w":205,"k":{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":29,"\u00f6":29,"\u00f5":29,"\u00f4":29,"\u00f3":29,"\u00f2":29,"\u00f1":14,"\u00eb":29,"\u00ea":29,"\u00e9":29,"\u00e8":29,"\u00e7":29,"\u00e6":29,"\u00e5":29,"\u00e4":29,"\u00e3":29,"\u00e2":29,"\u00e1":29,"\u00e0":29,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":14,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"z":14,"x":14,"u":14,"s":29,"r":14,"q":29,"p":14,"o":29,"n":14,"m":14,"g":29,"e":29,"d":29,"c":29,"a":29,"Q":4,"O":4,"J":14,"G":4,"C":4,"A":14}},"Z":{"d":"183,0r-169,0r0,-40r110,-172r-105,0r0,-44r164,0r0,39r-110,172r110,0r0,45","w":197},"[":{"d":"121,27r-92,0r0,-310r92,0r0,42r-45,0r0,226r45,0r0,42","w":136},"\\":{"d":"145,27r-44,0r-101,-305r44,0","w":145},"]":{"d":"108,27r-93,0r0,-42r46,0r0,-226r-46,0r0,-42r93,0r0,310","w":136},"^":{"d":"194,-140r-49,0r-37,-68r-36,68r-49,0r64,-119r43,0","w":216},"_":{"d":"217,64r-217,0r0,-31r217,0r0,31","w":216},"`":{"d":"110,-217r-32,0r-41,-62r50,0","w":180},"a":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22","w":192},"b":{"d":"118,-190v51,-2,65,48,65,96v0,48,-13,96,-65,96v-20,0,-33,-6,-46,-20r0,18r-46,0r0,-256r47,0r0,85v12,-14,26,-19,45,-19xm136,-94v0,-31,-3,-54,-31,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,31,-23,31,-54","w":201},"c":{"d":"64,-94v-6,49,39,70,67,39r32,32v-53,46,-146,36,-146,-71v0,-108,93,-116,146,-71r-32,32v-27,-31,-73,-9,-67,39","w":172,"k":{"\u00f8":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":6,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,"w":7,"o":6,"e":6,"d":4,"c":6,"a":1}},"d":{"d":"18,-94v0,-48,13,-99,65,-96v19,0,34,5,46,19r0,-85r47,0r0,256r-46,0r0,-18v-13,14,-26,20,-46,20v-52,3,-66,-47,-66,-96xm129,-94v0,-31,-4,-54,-32,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,32,-23,32,-54","w":201},"e":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0","w":197,"k":{"\u00ff":4,"\u00fd":4,"y":4,"x":2,"w":3,"v":4}},"f":{"d":"113,-147r-34,0r0,147r-47,0r0,-147r-19,0r0,-35r19,0v-7,-54,19,-83,81,-77r0,39v-18,-1,-34,-2,-34,17r0,21r34,0r0,35","w":123,"k":{"\u00f8":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":6,"\u00e6":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"o":6,"e":6,"c":6,"a":6}},"g":{"d":"18,-99v0,-53,15,-90,64,-91v20,0,33,6,46,20r0,-18r46,0r0,181v7,74,-104,104,-151,53r29,-29v22,27,82,11,75,-25r0,-19v-12,14,-27,19,-45,19v-50,0,-64,-38,-64,-91xm127,-99v0,-25,-3,-49,-31,-49v-28,0,-31,24,-31,49v0,25,3,49,31,49v28,0,31,-24,31,-49","w":199},"h":{"d":"181,0r-47,0r0,-114v0,-47,-61,-46,-61,0r0,114r-47,0r0,-256r47,0r0,86v38,-42,108,-13,108,49r0,121","w":204},"i":{"d":"73,0r-47,0r0,-188r47,0r0,188xm73,-220r-47,0r0,-38r47,0r0,38","w":99},"j":{"d":"73,17v3,36,-32,60,-81,53r0,-39v17,1,34,2,34,-17r0,-202r47,0r0,205xm73,-220r-47,0r0,-38r47,0r0,38","w":99},"k":{"d":"197,0r-58,0r-46,-78r-20,22r0,56r-47,0r0,-256r47,0r0,145r62,-77r57,0r-67,76","w":201,"k":{"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00e6":3,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3}},"l":{"d":"106,0v-50,6,-82,-17,-82,-54r0,-202r47,0r0,199v-2,18,17,18,35,17r0,40","w":117,"k":{"\u00ff":12,"\u00fd":12,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"y":12,"w":7,"v":14,"o":7,"e":9,"c":9}},"m":{"d":"168,-166v40,-48,123,-19,123,46r0,120r-47,0r0,-113v-1,-48,-62,-47,-62,-1r0,114r-47,0r0,-113v-1,-48,-61,-48,-62,0r0,113r-47,0r0,-188r46,0r0,18v25,-28,75,-27,96,4","w":315},"n":{"d":"72,-170v39,-43,110,-10,110,50r0,120r-47,0r0,-113v-1,-48,-61,-48,-62,0r0,113r-47,0r0,-188r46,0r0,18","w":206},"o":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"p":{"d":"118,-190v51,-2,65,48,65,96v0,48,-13,99,-65,96v-19,0,-33,-5,-45,-19r0,86r-47,0r0,-257r46,0r0,18v13,-14,26,-20,46,-20xm136,-94v0,-31,-3,-54,-31,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,31,-23,31,-54","w":201},"q":{"d":"18,-94v0,-49,14,-96,66,-96v20,0,33,6,46,20r0,-18r46,0r0,257r-47,0r0,-86v-12,14,-27,19,-46,19v-51,2,-65,-48,-65,-96xm129,-94v0,-31,-4,-54,-32,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,32,-23,32,-54","w":201},"r":{"d":"163,-172r-35,36v-17,-21,-55,-15,-55,23r0,113r-47,0r0,-188r46,0r0,18v18,-23,69,-29,91,-2","w":163,"k":{"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"s":4,"q":11,"o":11,"g":11,"e":11,"d":11,"c":11,"a":4,".":22,",":22}},"s":{"d":"167,-59v-1,71,-114,80,-159,34r31,-30v15,15,36,17,50,17v31,0,49,-35,13,-37v-45,-3,-84,-8,-84,-55v0,-68,103,-75,144,-38r-29,29v-15,-16,-70,-18,-70,6v-4,17,32,17,49,19v37,4,55,23,55,55","w":180,"k":{"v":4,"t":4,"s":2}},"t":{"d":"111,0v-49,6,-80,-17,-80,-54r0,-93r-20,0r0,-35r20,0r0,-56r46,0r0,56r34,0r0,35r-34,0r0,90v-1,18,16,18,34,17r0,40","w":126,"k":{"\u00f8":1,"\u00f6":1,"\u00f5":1,"\u00f4":1,"\u00f3":1,"\u00f2":1,"\u00eb":1,"\u00ea":1,"\u00e9":1,"\u00e8":1,"\u00e7":1,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,"o":1,"e":1,"c":1,"a":1}},"u":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17","w":206},"v":{"d":"176,-188r-69,188r-36,0r-70,-188r50,0r38,116r38,-116r49,0","w":177,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"s":4,"o":4,"e":4,"c":4,"a":4}},"w":{"d":"272,-188r-57,188r-39,0r-39,-118r-39,118r-39,0r-58,-188r50,0r30,116r39,-116r34,0r38,116r30,-116r50,0","w":273,"k":{"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00e6":3,"o":3,"e":3,"c":3}},"x":{"d":"185,0r-56,0r-34,-56r-35,56r-56,0r65,-96r-62,-92r56,0r32,54r32,-54r56,0r-62,92","w":189,"k":{"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"o":7,"e":7,"c":7}},"y":{"d":"176,-188r-80,218v-9,30,-34,43,-73,39r0,-42v31,6,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0","w":177,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"o":4,"e":4,"c":4,"a":4,",":22}},"z":{"d":"156,0r-143,0r0,-36r83,-109r-78,0r0,-43r138,0r0,36r-84,110r84,0r0,42","w":172},"{":{"d":"79,-128v49,7,-3,121,51,113r19,0r0,42v-53,5,-92,-7,-92,-54v0,-39,14,-91,-42,-80r0,-42v26,1,44,-2,42,-28v-2,-56,-3,-109,55,-106r37,0r0,42v-27,0,-45,-4,-45,28r0,49v0,26,-16,32,-25,36","w":164},"|":{"d":"86,27r-46,0r0,-310r46,0r0,310","w":126},"}":{"d":"108,-230v0,39,-15,92,41,81r0,42v-25,-1,-43,2,-41,28v3,57,2,108,-56,106r-37,0r0,-42v28,0,46,2,46,-29r0,-48v0,-26,16,-32,25,-36v-9,-4,-25,-10,-25,-36v0,-40,14,-90,-46,-77r0,-42v53,-4,93,5,93,53","w":164},"~":{"d":"72,-136v36,0,71,43,103,5r30,30v-22,22,-38,31,-60,31v-37,0,-70,-44,-102,-6r-30,-29v22,-22,37,-31,59,-31","w":218},"\u00a0":{"w":83},"\u00a1":{"d":"85,69r-58,0r12,-176r34,0xm81,-140r-50,0r0,-48r50,0r0,48","w":124},"\u00a2":{"d":"169,-65v-14,14,-29,23,-49,27r0,38r-36,0r0,-38v-38,-8,-67,-39,-67,-94v0,-55,29,-86,67,-94r0,-30r36,0r0,30v20,4,35,13,49,27r-31,31v-7,-8,-13,-12,-23,-15r0,103v10,-3,16,-7,23,-15xm89,-183v-34,8,-34,96,0,102r0,-102","w":179},"\u00a3":{"d":"192,0r-156,0r0,-107r-22,0r0,-36r22,0v-18,-104,92,-148,156,-89r-33,33v-20,-26,-78,-18,-73,29r0,27r41,0r0,36r-41,0r0,62r106,0r0,45","w":208},"\u00a4":{"d":"220,-35r-31,31r-27,-26v-24,15,-60,16,-84,0r-26,26r-31,-31r27,-26v-15,-24,-16,-60,0,-84r-27,-26r31,-31r26,26v24,-15,60,-16,84,0r27,-26r31,31r-27,26v15,24,16,60,0,84xm163,-103v0,-23,-20,-42,-43,-42v-23,0,-42,19,-42,42v0,23,19,42,42,42v23,0,43,-19,43,-42","w":240},"\u00a5":{"d":"204,-256r-48,97r26,0r0,36r-45,0v-5,10,-11,19,-9,36r54,0r0,36r-54,0r0,51r-50,0r0,-51r-55,0r0,-36r55,0v2,-17,-4,-26,-9,-36r-46,0r0,-36r27,0r-49,-97r54,0r48,103r47,-103r54,0","w":205},"\u00a6":{"d":"86,-157r-46,0r0,-126r46,0r0,126xm86,27r-46,0r0,-126r46,0r0,126","w":127},"\u00a7":{"d":"170,-99v0,27,-19,46,-32,54v16,8,29,22,29,50v0,86,-141,91,-143,2r45,0v1,13,11,23,27,23v34,-2,36,-40,1,-50v-39,-11,-75,-27,-75,-75v0,-27,19,-46,33,-54v-47,-23,-33,-109,41,-109v47,0,70,26,70,61r-44,0v-1,-16,-12,-22,-26,-22v-34,1,-31,38,-1,45v40,10,75,27,75,75xm96,-65v20,-3,29,-9,29,-32v0,-21,-10,-30,-29,-32v-20,3,-29,10,-29,32v0,23,9,29,29,32","w":191},"\u00a8":{"d":"150,-218r-40,0r0,-45r40,0r0,45xm70,-218r-40,0r0,-45r40,0r0,45","w":180},"\u00a9":{"d":"282,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm251,-128v0,-58,-43,-101,-99,-101v-56,0,-99,43,-99,101v0,58,43,101,99,101v56,0,99,-43,99,-101xm202,-76v-40,37,-112,17,-112,-52v0,-69,71,-90,112,-52r-20,20v-26,-23,-61,-8,-61,32v0,40,35,55,61,32","w":303},"\u00aa":{"d":"104,-120v-26,30,-87,12,-87,-32v0,-36,41,-48,86,-43v9,-36,-41,-39,-56,-19r-24,-23v30,-38,118,-25,118,32r0,98r-37,0r0,-13xm75,-136v21,1,31,-10,28,-34v-21,0,-50,-4,-49,17v0,10,7,17,21,17","w":163},"\u00ab":{"d":"202,-10r-90,-89r90,-89r0,56r-34,33r34,33r0,56xm102,-10r-90,-89r90,-89r0,56r-34,33r34,33r0,56","w":226},"\u00ac":{"d":"179,-34r-44,0r0,-52r-118,0r0,-44r162,0r0,96"},"\u00ad":{"d":"132,-81r-111,0r0,-44r111,0r0,44","w":153},"\u00ae":{"d":"282,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm251,-128v0,-58,-43,-101,-99,-101v-56,0,-99,43,-99,101v0,58,43,101,99,101v56,0,99,-43,99,-101xm211,-59r-36,0r-25,-54r-15,0r0,54r-31,0r0,-139r57,0v50,-3,60,69,20,81xm176,-154v0,-18,-21,-19,-41,-18r0,36v20,1,41,1,41,-18","w":303},"\u00af":{"d":"147,-224r-114,0r0,-32r114,0r0,32","w":180},"\u00b0":{"d":"152,-195v0,37,-29,66,-66,66v-37,0,-66,-29,-66,-66v0,-37,29,-67,66,-67v37,0,66,30,66,67xm114,-195v0,-16,-12,-29,-28,-29v-16,0,-28,13,-28,29v0,16,12,29,28,29v16,0,28,-13,28,-29","w":172},"\u00b1":{"d":"177,-123r-57,0r0,58r-44,0r0,-58r-58,0r0,-43r58,0r0,-58r44,0r0,58r57,0r0,43xm177,0r-159,0r0,-44r159,0r0,44"},"\u00b2":{"d":"113,-103r-98,0r0,-30r57,-62v13,-11,11,-32,-8,-32v-7,0,-15,3,-15,16r-34,0v0,-30,22,-47,49,-47v47,0,61,52,31,84r-38,41r56,0r0,30","w":128},"\u00b3":{"d":"99,-182v35,19,12,91,-33,81v-26,0,-51,-14,-51,-48r34,0v0,12,8,18,17,18v10,0,17,-6,17,-18v0,-12,-8,-20,-22,-18r0,-29v13,1,21,-5,20,-15v0,-10,-7,-16,-15,-16v-8,0,-15,5,-15,15r-34,0v0,-28,22,-46,49,-46v43,0,65,57,33,76","w":132},"\u00b4":{"d":"143,-279r-41,62r-32,0r23,-62r50,0","w":180},"\u00b5":{"d":"181,0r-46,0r0,-17v-15,16,-42,25,-63,14r0,72r-47,0r0,-257r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188","w":207},"\u00b6":{"d":"211,69r-47,0r0,-281r-36,0r0,281r-47,0r0,-180v-36,0,-68,-32,-68,-72v0,-47,33,-73,83,-73r115,0r0,325","w":240},"\u00b7":{"d":"78,-76r-54,0r0,-54r54,0r0,54","w":102},"\u00b8":{"d":"117,22r-16,52r-43,0r24,-52r35,0","w":180},"\u00b9":{"d":"80,-103r-34,0r0,-115r-32,28r0,-38r32,-28r34,0r0,153","w":105},"\u00ba":{"d":"83,-258v47,0,64,29,64,77v0,48,-17,76,-64,76v-47,0,-63,-28,-63,-76v0,-48,16,-77,63,-77xm83,-139v22,0,26,-20,26,-42v0,-22,-3,-43,-26,-43v-22,-1,-25,20,-25,43v0,22,3,42,25,42","w":166},"\u00bb":{"d":"214,-99r-90,89r0,-56r34,-33r-34,-33r0,-56xm114,-99r-90,89r0,-56r34,-33r-34,-33r0,-56","w":226},"\u00bc":{"d":"225,-256r-121,256r-37,0r121,-256r37,0xm287,-21r-12,0r0,21r-33,0r0,-21r-63,0r0,-32r51,-101r37,0r-51,101r26,0r0,-22r33,0r0,22r12,0r0,32xm80,-103r-34,0r0,-115r-32,28r0,-38r32,-28r34,0r0,153","w":300},"\u00bd":{"d":"295,0r-98,0r0,-31r56,-61v12,-10,11,-32,-7,-33v-7,0,-15,3,-15,16r-34,0v0,-30,22,-46,49,-46v47,0,66,57,30,83r-38,41r57,0r0,31xm223,-256r-121,256r-36,0r121,-256r36,0xm80,-103r-34,0r0,-115r-32,28r0,-38r32,-28r34,0r0,153","w":310},"\u00be":{"d":"237,-256r-122,256r-37,0r122,-256r37,0xm99,-182v35,19,12,91,-33,81v-26,0,-51,-14,-51,-48r34,0v0,12,8,18,17,18v10,0,17,-6,17,-18v0,-12,-8,-20,-22,-18r0,-29v13,1,21,-5,20,-15v0,-10,-7,-16,-15,-16v-8,0,-15,5,-15,15r-34,0v0,-28,22,-46,49,-46v43,0,65,57,33,76xm297,-21r-12,0r0,21r-32,0r0,-21r-64,0r0,-32r52,-101r37,0r-52,101r27,0r0,-22r32,0r0,22r12,0r0,32","w":311},"\u00bf":{"d":"165,-1v0,45,-34,72,-76,72v-61,0,-100,-73,-58,-117v11,-20,33,-31,33,-61r47,0v5,52,-51,63,-51,106v0,17,11,30,29,30v19,0,29,-13,29,-30r47,0xm112,-140r-50,0r0,-48r50,0r0,48","w":188},"\u00c0":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm134,-281r-31,0r-41,-61r49,0","w":229,"k":{"\u00ff":9,"\u00fd":9,"\u00d8":4,"y":9,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"\u00c1":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm167,-342r-41,61r-32,0r23,-61r50,0","w":229,"k":{"\u00ff":9,"\u00fd":9,"\u00d8":4,"y":9,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"\u00c2":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm180,-281r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0","w":229,"k":{"\u00ff":9,"\u00fd":9,"\u00d8":4,"y":9,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"\u00c3":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm49,-309v28,-35,55,-16,88,-7v6,0,11,0,21,-10r21,20v-29,36,-55,17,-89,7v-6,0,-12,1,-21,10","w":229,"k":{"\u00ff":9,"\u00fd":9,"\u00d8":4,"y":9,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"\u00c4":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm175,-282r-40,0r0,-45r40,0r0,45xm95,-282r-40,0r0,-45r40,0r0,45","w":229,"k":{"\u00ff":9,"\u00fd":9,"y":9,"w":1,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"\u00c5":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm161,-318v0,26,-21,47,-47,47v-26,0,-47,-21,-47,-47v0,-26,21,-47,47,-47v26,0,47,21,47,47xm135,-318v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":229,"k":{"\u00ff":9,"\u00fd":9,"y":9,"v":9,"Y":13,"W":10,"V":13,"T":22,"Q":4,"O":4,"J":-1,"G":4,"C":4}},"\u00c6":{"d":"333,0r-168,0r0,-56r-81,0r-29,56r-54,0r134,-256r198,0r0,44r-118,0r0,61r101,0r0,44r-101,0r0,62r118,0r0,45xm165,-98r0,-114r-60,114r60,0","w":352},"\u00c7":{"d":"71,-128v0,71,3,75,45,86v24,0,38,-15,43,-37r51,0v-9,52,-45,81,-94,81v-67,0,-95,-47,-95,-130v0,-84,28,-130,95,-130v49,0,85,29,94,81r-51,0v-5,-22,-19,-37,-43,-37v-43,0,-45,16,-45,86xm136,22r-15,52r-44,0r25,-52r34,0","w":223,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"Q":12,"O":12,"J":7,"G":12,"C":12,"A":4}},"\u00c8":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm131,-281r-31,0r-41,-61r49,0","w":217,"k":{"J":1}},"\u00c9":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm164,-342r-41,61r-32,0r23,-61r50,0","w":217,"k":{"J":1}},"\u00ca":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm178,-281r-37,0r-29,-33r-30,33r-37,0r48,-61r37,0","w":217,"k":{"J":1}},"\u00cb":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm171,-282r-40,0r0,-45r40,0r0,45xm92,-282r-40,0r0,-45r40,0r0,45","w":217,"k":{"J":1}},"\u00cc":{"d":"80,0r-50,0r0,-256r50,0r0,256xm80,-281r-31,0r-41,-61r49,0","w":109},"\u00cd":{"d":"80,0r-50,0r0,-256r50,0r0,256xm102,-342r-41,61r-31,0r23,-61r49,0","w":109},"\u00ce":{"d":"80,0r-50,0r0,-256r50,0r0,256xm121,-281r-36,0r-30,-33r-30,33r-37,0r48,-61r37,0","w":109},"\u00cf":{"d":"80,0r-50,0r0,-256r50,0r0,256xm115,-282r-40,0r0,-45r40,0r0,45xm35,-282r-40,0r0,-45r40,0r0,45","w":109},"\u00d0":{"d":"131,-256v65,1,103,52,93,128v8,79,-25,128,-94,128r-92,0r0,-111r-25,0r0,-38r25,0r0,-107r93,0xm88,-44v66,-3,86,5,86,-83v0,-87,-18,-83,-86,-85r0,63r42,0r0,38r-42,0r0,67","w":245,"k":{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":9,"A":4}},"\u00d1":{"d":"226,0r-45,0r-101,-157r0,157r-50,0r0,-256r45,0r101,157r0,-157r50,0r0,256xm63,-309v28,-35,55,-16,88,-7v6,0,11,0,21,-10r21,20v-29,36,-55,17,-89,7v-6,0,-12,1,-21,10","w":255},"\u00d2":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm136,-281r-32,0r-41,-61r50,0","w":231,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"\u00d3":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm168,-342r-41,61r-31,0r23,-61r49,0","w":231,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"\u00d4":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm182,-281r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0","w":231,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"\u00d5":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm51,-309v28,-35,55,-16,88,-7v6,0,11,0,21,-10r21,20v-29,36,-55,17,-89,7v-6,0,-12,1,-21,10","w":231,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"\u00d6":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm176,-282r-40,0r0,-45r40,0r0,45xm96,-282r-40,0r0,-45r40,0r0,45","w":231,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"\u00d7":{"d":"178,-52r-30,29r-50,-50r-51,50r-29,-29r50,-51r-50,-51r29,-29r51,51r50,-51r30,29r-51,51"},"\u00d8":{"d":"183,-232v27,25,28,59,28,104v0,91,-51,153,-136,122r-10,22r-36,0r19,-40v-27,-25,-27,-59,-27,-104v0,-91,49,-152,136,-123r10,-21r35,0xm116,-42v42,-10,44,-16,45,-86v0,-28,-1,-45,-4,-55r-64,134v6,4,14,7,23,7xm116,-214v-42,10,-44,16,-45,86v0,28,1,44,4,54r64,-134v-6,-4,-14,-6,-23,-6","w":234,"k":{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":12,"A":4}},"\u00d9":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm140,-281r-31,0r-41,-61r49,0","w":240,"k":{"J":4}},"\u00da":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm173,-342r-41,61r-32,0r23,-61r50,0","w":240,"k":{"J":4}},"\u00db":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm186,-281r-36,0r-30,-33r-30,33r-36,0r48,-61r37,0","w":240,"k":{"J":4}},"\u00dc":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm180,-282r-40,0r0,-45r40,0r0,45xm100,-282r-40,0r0,-45r40,0r0,45","w":240,"k":{"J":4}},"\u00dd":{"d":"205,-256r-77,151r0,105r-50,0r0,-105r-77,-151r54,0r48,103r47,-103r55,0xm155,-342r-41,61r-31,0r23,-61r49,0","w":205,"k":{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":29,"\u00f6":29,"\u00f5":29,"\u00f4":29,"\u00f3":29,"\u00f2":29,"\u00f1":14,"\u00eb":29,"\u00ea":29,"\u00e9":29,"\u00e8":29,"\u00e7":29,"\u00e6":29,"\u00e5":29,"\u00e4":29,"\u00e3":29,"\u00e2":29,"\u00e1":29,"\u00e0":29,"\u00d8":4,"\u00c6":14,"z":14,"x":14,"u":14,"s":29,"r":14,"q":29,"p":14,"o":29,"n":14,"m":14,"g":29,"e":29,"d":29,"c":29,"a":29,"Q":4,"O":4,"J":14,"G":4,"C":4,"A":14}},"\u00de":{"d":"214,-130v0,62,-58,89,-134,80r0,50r-50,0r0,-256r50,0r0,47v75,-8,134,16,134,79xm164,-130v0,-39,-44,-36,-84,-35r0,71v40,1,84,4,84,-36","w":227},"\u00df":{"d":"139,-194v0,-16,-13,-24,-32,-24v-25,0,-34,13,-34,34r0,184r-47,0r0,-188v0,-50,35,-70,81,-70v45,0,78,19,78,63v0,22,-11,33,-22,40v29,8,23,58,23,97v0,45,-29,62,-79,58r0,-40v42,8,31,-39,32,-74v0,-18,-13,-23,-32,-22r0,-36v19,1,32,-3,32,-22","w":206},"\u00e0":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm114,-217r-32,0r-41,-62r50,0","w":192},"\u00e1":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm147,-279r-42,62r-31,0r23,-62r50,0","w":192},"\u00e2":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm160,-217r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0","w":192},"\u00e3":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm27,-246v35,-49,73,14,109,-16r21,20v-29,35,-55,16,-89,7v-6,0,-11,1,-20,10","w":192},"\u00e4":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm154,-218r-40,0r0,-45r40,0r0,45xm75,-218r-40,0r0,-45r40,0r0,45","w":192},"\u00e5":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm141,-257v0,26,-21,47,-47,47v-26,0,-47,-21,-47,-47v0,-26,21,-48,47,-48v26,0,47,22,47,48xm115,-257v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21","w":192},"\u00e6":{"d":"142,-24v-39,45,-129,33,-129,-33v0,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v25,-36,102,-33,129,-5v49,-49,144,-5,135,69r0,21r-118,0v-5,45,63,54,84,24r28,28v-29,36,-103,41,-137,3xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm239,-111v4,-40,-54,-54,-67,-20v-3,7,-5,12,-5,20r72,0","w":301},"\u00e7":{"d":"64,-94v-6,49,39,70,67,39r32,32v-53,46,-146,36,-146,-71v0,-108,93,-116,146,-71r-32,32v-27,-31,-73,-9,-67,39xm117,22r-16,52r-43,0r24,-52r35,0","w":172,"k":{"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,"w":7,"o":6,"e":6,"d":4,"c":6,"a":1}},"\u00e8":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm120,-217r-32,0r-41,-62r49,0","w":197,"k":{"\u00ff":4,"\u00fd":4,"y":4,"x":2,"w":3,"v":4}},"\u00e9":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm152,-279r-41,62r-31,0r23,-62r49,0","w":197,"k":{"\u00ff":4,"\u00fd":4,"y":4,"x":2,"w":3,"v":4}},"\u00ea":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm166,-217r-36,0r-30,-33r-30,33r-37,0r48,-61r37,0","w":197,"k":{"\u00ff":4,"\u00fd":4,"y":4,"x":2,"w":3,"v":4}},"\u00eb":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm159,-218r-39,0r0,-45r39,0r0,45xm80,-218r-40,0r0,-45r40,0r0,45","w":197,"k":{"\u00ff":4,"\u00fd":4,"y":4,"x":2,"w":3,"v":4}},"\u00ec":{"d":"73,0r-47,0r0,-188r47,0r0,188xm73,-217r-32,0r-41,-62r50,0","w":99},"\u00ed":{"d":"73,0r-47,0r0,-188r47,0r0,188xm98,-279r-41,62r-31,0r23,-62r49,0","w":99},"\u00ee":{"d":"73,0r-47,0r0,-188r47,0r0,188xm116,-217r-37,0r-30,-33r-30,33r-36,0r48,-61r37,0","w":99},"\u00ef":{"d":"73,0r-47,0r0,-188r47,0r0,188xm109,-218r-40,0r0,-45r40,0r0,45xm30,-218r-40,0r0,-45r40,0r0,45","w":99},"\u00f0":{"d":"20,-91v0,-60,25,-91,80,-92r-12,-22r-41,0r0,-33r25,0r-12,-21r51,0r11,21r33,0r0,33r-17,0v44,57,69,207,-40,207v-57,0,-78,-34,-78,-93xm98,-40v26,0,30,-24,30,-51v0,-27,-4,-52,-30,-52v-27,0,-31,24,-31,52v0,28,4,51,31,51"},"\u00f1":{"d":"72,-170v39,-43,110,-10,110,50r0,120r-47,0r0,-113v-1,-48,-61,-48,-62,0r0,113r-47,0r0,-188r46,0r0,18xm37,-246v36,-49,74,13,110,-16r20,20v-29,35,-55,16,-88,7v-6,0,-12,1,-21,10","w":206},"\u00f2":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm116,-217r-31,0r-41,-62r49,0","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"\u00f3":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm150,-279r-41,62r-31,0r23,-62r49,0","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"\u00f4":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm164,-217r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"\u00f5":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm31,-246v35,-49,73,14,109,-16r21,20v-35,50,-73,-13,-110,17","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"\u00f6":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm158,-218r-40,0r0,-45r40,0r0,45xm78,-218r-40,0r0,-45r40,0r0,45","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"\u00f7":{"d":"179,-81r-162,0r0,-44r162,0r0,44xm121,-152r-46,0r0,-47r46,0r0,47xm121,-6r-46,0r0,-47r46,0r0,47"},"\u00f8":{"d":"18,-94v0,-74,52,-112,117,-88r13,-21r29,0v-6,12,-18,26,-21,36v22,11,21,39,21,73v0,75,-51,112,-117,88r-13,22r-28,0r21,-37v-17,-17,-22,-39,-22,-73xm80,-45v44,23,60,-33,47,-80xm115,-143v-43,-22,-60,34,-47,80","k":{"\u00ff":4,"\u00fd":4,"y":4,"x":7,"w":3,"v":4}},"\u00f9":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm122,-217r-32,0r-41,-62r50,0","w":206},"\u00fa":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm154,-279r-41,62r-31,0r23,-62r49,0","w":206},"\u00fb":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm168,-217r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0","w":206},"\u00fc":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm162,-218r-40,0r0,-45r40,0r0,45xm82,-218r-40,0r0,-45r40,0r0,45","w":206},"\u00fd":{"d":"176,-188r-80,218v-9,30,-34,43,-73,39r0,-42v31,6,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0xm140,-279r-41,62r-31,0r23,-62r49,0","w":177,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"o":4,"e":4,"c":4,"a":4,",":22}},"\u00fe":{"d":"118,-190v51,-2,65,48,65,96v0,48,-13,99,-65,96v-19,0,-33,-5,-45,-19r0,86r-47,0r0,-325r47,0r0,85v12,-14,26,-19,45,-19xm136,-94v0,-31,-3,-54,-31,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,31,-23,31,-54","w":202},"\u00ff":{"d":"176,-188r-80,218v-9,30,-34,43,-73,39r0,-42v31,6,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0xm149,-218r-40,0r0,-45r40,0r0,45xm70,-218r-40,0r0,-45r40,0r0,45","w":177,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"o":4,"e":4,"c":4,"a":4,".":23,",":28}}}});
;
(function() {
	
	var BrowserDetect = {
		init: function () {
			this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
			this.version = this.searchVersion(navigator.userAgent)
				|| this.searchVersion(navigator.appVersion)
				|| "an unknown version";
			this.OS = this.searchString(this.dataOS) || "an unknown OS";
		},
		searchString: function (data) {
			for (var i=0;i<data.length;i++)	{
				var dataString = data[i].string;
				var dataProp = data[i].prop;
				this.versionSearchString = data[i].versionSearch || data[i].identity;
				if (dataString) {
					if (dataString.indexOf(data[i].subString) != -1)
						return data[i].identity;
				}
				else if (dataProp)
					return data[i].identity;
			}
		},
		searchVersion: function (dataString) {
			var index = dataString.indexOf(this.versionSearchString);
			if (index == -1) return;
			return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
		},
		dataBrowser: [
			{
				string: navigator.userAgent,
				subString: "Chrome",
				identity: "Chrome"
			},
			{ 	string: navigator.userAgent,
				subString: "OmniWeb",
				versionSearch: "OmniWeb/",
				identity: "OmniWeb"
			},
			{
				string: navigator.vendor,
				subString: "Apple",
				identity: "Safari",
				versionSearch: "Version"
			},
			{
				prop: window.opera,
				identity: "Opera"
			},
			{
				string: navigator.vendor,
				subString: "iCab",
				identity: "iCab"
			},
			{
				string: navigator.vendor,
				subString: "KDE",
				identity: "Konqueror"
			},
			{
				string: navigator.userAgent,
				subString: "Firefox",
				identity: "Firefox"
			},
			{
				string: navigator.vendor,
				subString: "Camino",
				identity: "Camino"
			},
			{		// for newer Netscapes (6+)
				string: navigator.userAgent,
				subString: "Netscape",
				identity: "Netscape"
			},
			{
				string: navigator.userAgent,
				subString: "MSIE",
				identity: "Explorer",
				versionSearch: "MSIE"
			},
			{
				string: navigator.userAgent,
				subString: "Gecko",
				identity: "Mozilla",
				versionSearch: "rv"
			},
			{ 		// for older Netscapes (4-)
				string: navigator.userAgent,
				subString: "Mozilla",
				identity: "Netscape",
				versionSearch: "Mozilla"
			}
		],
		dataOS : [
			{
				string: navigator.platform,
				subString: "Win",
				identity: "Windows"
			},
			{
				string: navigator.platform,
				subString: "Mac",
				identity: "Mac"
			},
			{
				string: navigator.userAgent,
				subString: "iPhone",
				identity: "iPhone/iPod"
		    },
			{
				string: navigator.platform,
				subString: "Linux",
				identity: "Linux"
			}
		]
	
	};
	
	BrowserDetect.init();
	
	window.$.client = { os : BrowserDetect.OS, browser : BrowserDetect.browser };
	
})();;
$=jQuery;

/*
 *DO NOT DELETE - NEEDED INSTEAD OF CSS BASED TABLE ROW COLOR THINGS
 *TODO: ADD BOLD STYLE TO FIRST ROW OF TABLE
$().ready(function(){
  $('.content table tbody tr').each(function(index,value){
      if(index%2) {
          $(value).addClass('odd');
      }
  });
});
*/
/*
(function ($) {
   $.fn.moo = function () {
       this.css('color', 'red');
   };
})(jQuery);
*/


var makeCarouselWithDots=function(selector,arguments){
  var children_count=$(selector).children().length;
  //console//.log(children_count);
  $(selector).parent().after('<div class="carousel-indicator"></div>');
  var $indicator=$(selector).parent().siblings('.carousel-indicator');
  $indicator.html('<ul></ul>');
  $indicator_ul=$indicator.find('ul');
  for(var i=0;i<children_count;i++){
    i==0 ? $indicator_ul.append('<li class="active"></li>') : $indicator_ul.append('<li></li>') ;
  }
  var counter=1;
  arguments.afterEnd=function(e){
    //Need to find it again as the jquery objects are not inherited in the scope in the same way as simple variables
    var $ul=$(selector).parent().siblings('.carousel-indicator').find('ul');
    if (counter==children_count) {
      counter=0;
    }
    $ul.children().removeClass('active');
    $ul.children().eq(counter).addClass('active');
    counter++;
  }

  $(selector).parent().jCarouselLite(arguments);
}




var makeFilterView=function(viewContainer,tagData){
  if($(viewContainer).length){
    //preparing list of matching classes
    var matchList='';
    var clickHandlers={};
    var allClickHandlers={};
    for(var i in tagData){
      matchList+='.match-'+tagData[i].prefix;
    }

    for(var i in tagData){
      var tagsContainer=tagData[i].container;
      var tagsPrefix=tagData[i].prefix;
      //setting behavior of tags links
      $(tagsContainer+' ul li a').each(function(){
        var href=$(this).attr('href');
        var last=href.match(/[^/]+$/);
        var tagname=last[0].replace(/%/g,'_');

        //saving the tagData on the DOM node to avoid Javacript scope issues
        $(this).data('tagData', tagData[i]).click(function(e){
          var tagsContainer=$(this).data('tagData').container;
          var tagsPrefix=$(this).data('tagData').prefix;
          //clear all chosen classes
          $(tagsContainer+' ul li a').removeClass('chosen');
          //mark selected tag as chosen
          $(this).addClass('chosen');
          //clear matching class for all content
          $(viewContainer+' li').removeClass('match-'+tagsPrefix);
          //set matching class for matching content
          $(viewContainer+' li.'+tagsPrefix+'-'+tagname).addClass('match-'+tagsPrefix );
          //check if any content should be hidden
          var itemsToHide=$(viewContainer+' li').not(matchList).filter(':visible');
          var itemsToShow=$(viewContainer+' li'+matchList).not(':visible');
          $(viewContainer).fadeOut('fast',function (){
            if(itemsToHide.length){
              //hide all content that does not match and is visible
              $(itemsToHide).hide();
              //$(viewContainer+' li'+matchList).not(':visible').show();
            }
            //show content that matches all tag categories and is currently hidden
            itemsToShow.show();
            $(viewContainer).fadeIn('fast');
          });
          e.preventDefault();
          e.stopPropagation();
          return false;
        });
      });

      //Adds "all" links in the start of the lists
      $(tagsContainer+' ul').prepend('<li><a class="all chosen" href="#">'+Drupal.settings.filterpage.allButtonText+'</a></li>');     
      $(viewContainer+' li').addClass('match-'+tagsPrefix);

      //Sets behavior of all links
      $(tagsContainer+' ul li a.all').data('tagData', tagData[i]).click(function(){
        var tagsContainer=$(this).data('tagData').container;
        var tagsPrefix=$(this).data('tagData').prefix;
        $(tagsContainer+' ul li a').removeClass('chosen');
        $(this).addClass('chosen');
        $(viewContainer+' li').addClass('match-'+tagsPrefix);
        //show all mathcing content that is currently hidden
        var itemsToShow=$(viewContainer+' li'+matchList).not(':visible');
        $(viewContainer).fadeOut('fast',function(){
          itemsToShow.show();
          $(viewContainer).fadeIn('fast');
        });
        e.preventDefault();
        e.stopPropagation();
        return false;
      });
    }
  }
}

$(window).load(function(){

  //makes proper embedding of fonts from fonts.com instead of their broken method. - this method manipulates the content of the style tag created by the fonts.com javascript
  if(Drupal.settings.fdb_fonts_key){
    var content=$('#mti_fontface_'+Drupal.settings.fdb_fonts_key).html();
    content=content.replace(/\n/g,'');
    content=content.replace(/\r/g,'');
    content=content.replace(/\}/g,'}\n');
    var arr=content.split('\n');
    var new_lines=['','','',''];
    for (var i in arr) {
        var line=arr[i];
        if(line!=''){
          var m=line.match(/font-family:\s*'?([^;]+?)'?\s*;/);
          if(m!=null){
            var ff_tag=m[0];
            var ff_name=m[1];
            if(ff_name=='DINNextW01-BoldItalic'){
              ff_name='DIN Next W01 Bold Italic';
            }
            var m2=ff_name.match(/(DIN Next W01) (.*)/);
            if(m2!=null){
              var font_name=m2[1];
              var font_variant=m2[2];
              var font_style='normal';
              var font_weight='normal';
              if(font_variant.match(/bold/i)) {
                  font_weight='bold';
              }
              if(font_variant.match(/italic/i)) {
                  font_style='italic';
              }
              var newline=line.replace(ff_tag,"font-family:'"+font_name+"';font-weight:"+font_weight+";font-style:"+font_style+";");
              //Ugly evil dirty hack to make shitty IE8 pick the fonts in correct order if it is confused....
              if(font_weight=='normal' && font_style=='normal')
                new_lines[0]=newline;
              else if(font_weight=='normal' && font_style=='italic')
                new_lines[1]=newline;
              else if(font_weight=='bold' && font_style=='normal')
                new_lines[2]=newline;
              else//bold and italic
                new_lines[3]=newline;              
            }
          }
        }
    }
    $('head').append('<style type="text/css" id="totallycrappyfixforcrappyfontsdotcom">'+new_lines.join('\n')+'</style>');
  }


  if(!$('.view-articles').length){    //exclude article list
    //reducing height of text in filterlists
    $('.filtertags-content ul li .views-field-body .field-content').each(function() {
      var div=$(this);
      while(div.height() > parseInt(div.parent().css('max-height')) ) {
        var oldhtml=div.html();
        var lastpos=oldhtml.lastIndexOf(' ');
        var newhtml=oldhtml.substring(0,lastpos)+'...';
        div.html(newhtml);
      }
    });
  }
  //reducing height of text in sections
  $('.overview-item-content').each(function() {
    var container=$(this);
    var wrapper=container.find('.wrapper');
    var div=container.find('.field-item');
    while(wrapper.height() > parseInt(container.css('max-height')) ) {
      var oldhtml=div.html();
      var lastpos=oldhtml.lastIndexOf(' ');
      var newhtml=oldhtml.substring(0,lastpos)+'...';
      div.html(newhtml);
    }
  });


  //reduce height on front page carousel
  $('.frontpage-link-content-overlay .content').each(function() {
    var container=$(this);
    var wrapper=container.find('.wrapper');
    var div=container.find('.field-item');

    while(wrapper.height() > parseInt(container.css('max-height')) ) {
      var oldhtml=div.html();
      var lastpos=oldhtml.lastIndexOf(' ');
      var newhtml=oldhtml.substring(0,lastpos)+'...';
      div.html(newhtml);
    }
  });




});


$().ready(function(){
  Cufon.replace('#page-navigation .menu-name-main-menu ul li a', { fontFamily: 'DINPro-Bold',hover:true });
  Cufon.replace('a.buttonlink', { fontFamily: 'DINPro-Bold',hover:true });
  Cufon.replace('.readmore-button a', { fontFamily: 'DINPro-Bold',hover:true });
  Cufon.replace('a.readmore-button', { fontFamily: 'DINPro-Bold',hover:true });
  Cufon.replace('.field-name-field-signup-link a', { fontFamily: 'DINPro-Bold',hover:true });
  Cufon.replace('.shop-council-menu a', { fontFamily: 'DINPro-Bold',hover:true });  


  $('.content table tbody tr:nth-child(odd)').addClass('odd');
  $('.content table tbody tr:nth-child(even)').addClass('even');
  $('.content table tbody tr:first').addClass('header');

  makeFilterView('.view-articles',[{
    container:'.view-article-tags',
    prefix:'tag'
  },{
    container:'.view-article-years',
    prefix:'year'
  }]);

  makeFilterView('.view-analyses',[{
    container:'.view-analysis-tags',
    prefix:'tag'
  },{
    container:'.view-analysis-years',
    prefix:'year'
  }]);

  makeFilterView('.view-become-active',[{
    container:'.view-become-active-tags',
    prefix:'tag'
  }]);

  //enable slide menu
  if(document.getElementById('frontpage-slidermenu')) {
    slideMenu.build('frontpage-slidermenu',450,10,10);
  }

  //load facebook feed
  if(Drupal.settings.fdb_facebook!==undefined){
    var feedurl=Drupal.settings.fdb_facebook.feed_url;
    $.get(feedurl, function(data){
      var xml=$(data);
      $('ul#facebook-carousel').empty();
      var count=0;
      xml.find('rss channel item title').each(function(element){
        if(count>3){
          return;
        }
        if($(this).text().length<10){
          return;
        }
        $('ul#facebook-carousel').append('<li>'+$(this).text()+'</li>');
        count++;
      });

      makeCarouselWithDots('#facebook-carousel',{
        auto: 3000,
        speed: 500,
        visible:1,
        circular:true,
        hoverPause:true
      });

    });
  }
  //Search field specific
  var searchform=$('#page-navigation #search-block-form.google-cse .form-text, #google-cse-results-searchbox-form-analyses .form-text,#google-cse-results-searchbox-form-global .form-text');
  if(searchform.val()!='' && !searchform.hasClass('active'))
    searchform.addClass('active');
  searchform.focus(function(e){
    if(!$(this).hasClass('active'))
      $(this).addClass('active');
  });
  searchform.blur(function(e){
    if($(this).val()=='' && $(this).hasClass('active'))
      $(this).removeClass('active');
  });


  //setTimeout(function(){
  //For front page thing
  makeCarouselWithDots('.frontpage-links-carousel',{
    auto: 5000,
    speed: 500,
    visible:1,
    circular:true,
    hoverPause:true
  });

  //For related analyses
  makeCarouselWithDots('.related-analyses',{
    auto: 3000,
    speed: 500,
    visible:1,
    circular:true,
    hoverPause:true
  });
 // },500);

  //sort list of event period tags
  if($('#edit-field-event-period-tid').length){
    var months={jan:1,feb:2,mar:3,apr:4,maj:5,jun:6,jul:7,aug:8,sep:9,okt:10,nov:11,dec:12};

    var options=$('#edit-field-event-period-tid option').sort(function(a,b){
      if($(a).val()=="All") return -1;
      else if($(b).val()=="All") return 1;
      else{
        var aText=$(a).html();
        var aMatch=aText.match(/([A-z]+) ([0-9]+)/);
        var aMonth=months[aMatch[1]];
        var aYear=parseInt([aMatch[2]]);
        var bText=$(b).html();
        var bMatch=bText.match(/([A-z]+) ([0-9]+)/);
        var bMonth=months[bMatch[1]];
        var bYear=parseInt([bMatch[2]]);
        if(aYear<bYear) return -1;
        else if(aYear>bYear) return 1;
        else {
            if(aMonth<bMonth) return -1;
            else if(aMonth>bMonth) return 1;
        }
      }
      return 0;
    });
    $('#edit-field-event-period-tid').html(options);
  }



  //fix for bug in chrome on windows (rotating elements with custom fonts is buggy)
  if($.client.os=='Windows' && $.client.browser=='Chrome') {
    $('#mini-panel-page_footer .highlighted').css('-webkit-transform','none');
  }

  //fixes the borders of the section page items
  $('.node-section .field-type-node-reference > .field-items > .field-item:nth-child(3n) .overview-item,   .node-section .field-type-node-reference > .field-items > .field-item:last-child .overview-item').addClass('noborder');
});
;

