﻿// JS Plugins

/*!
 * jQuery blockUI plugin
 * Version 2.33 (29-MAR-2010)
 * @requires jQuery v1.2.3 or later
 *
 * Examples at: http://malsup.com/jquery/block/
 * Copyright (c) 2007-2008 M. Alsup
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Thanks to Amir-Hossein Sobhi for some excellent contributions!
 */

;(function($) {

if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {
  alert('blockUI requires jQuery v1.2.3 or later!  You are using v' + $.fn.jquery);
  return;
}

$.fn._fadeIn = $.fn.fadeIn;

var noOp = function() {};

// this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle
// retarded userAgent strings on Vista)
var mode = document.documentMode || 0;
var setExpr = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);
var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !mode;

// global $ methods for blocking/unblocking the entire page
$.blockUI   = function(opts) { install(window, opts); };
$.unblockUI = function(opts) { remove(window, opts); };

// convenience method for quick growl-like notifications  (http://www.google.com/search?q=growl)
$.growlUI = function(title, message, timeout, onClose) {
  var $m = $('<div class="growlUI"></div>');
  if (title) $m.append('<h1>'+title+'</h1>');
  if (message) $m.append('<h2>'+message+'</h2>');
  if (timeout == undefined) timeout = 3000;
  $.blockUI({
    message: $m, fadeIn: 700, fadeOut: 1000, centerY: false,
    timeout: timeout, showOverlay: false,
    onUnblock: onClose, 
    css: $.blockUI.defaults.growlCSS
  });
};

// plugin method for blocking element content
$.fn.block = function(opts) {
  return this.unblock({ fadeOut: 0 }).each(function() {
    if ($.css(this,'position') == 'static')
      this.style.position = 'relative';
    if ($.browser.msie)
      this.style.zoom = 1; // force 'hasLayout'
    install(this, opts);
  });
};

// plugin method for unblocking element content
$.fn.unblock = function(opts) {
  return this.each(function() {
    remove(this, opts);
  });
};

$.blockUI.version = 2.33; // 2nd generation blocking at no extra cost!

// override these in your code to change the default behavior and style
$.blockUI.defaults = {
  // message displayed when blocking (use null for no message)
  message:  '<h1>Please wait...</h1>',

  title: null,    // title string; only used when theme == true
  draggable: true,  // only used when theme == true (requires jquery-ui.js to be loaded)
  
  theme: false, // set to true to use with jQuery UI themes
  
  // styles for the message when blocking; if you wish to disable
  // these and use an external stylesheet then do this in your code:
  // $.blockUI.defaults.css = {};
  css: {
    padding:  0,
    margin:    0,
    width:    '30%',
    top:    '40%',
    left:    '35%',
    textAlign:  'center',
    color:    '#000',
    border:    '3px solid #aaa',
    backgroundColor:'#fff',
    cursor:    'wait'
  },
  
  // minimal style set used when themes are used
  themedCSS: {
    width:  '30%',
    top:  '40%',
    left:  '35%'
  },

  // styles for the overlay
  overlayCSS:  {
    backgroundColor: '#000',
    opacity:       0.6,
    cursor:         'wait'
  },

  // styles applied when using $.growlUI
  growlCSS: {
    width:    '350px',
    top:    '10px',
    left:     '',
    right:    '10px',
    border:   'none',
    padding:  '5px',
    opacity:  0.6,
    cursor:   'default',
    color:    '#fff',
    backgroundColor: '#000',
    '-webkit-border-radius': '10px',
    '-moz-border-radius':   '10px',
    'border-radius':      '10px'
  },
  
  // IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w
  // (hat tip to Jorge H. N. de Vasconcelos)
  iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',

  // force usage of iframe in non-IE browsers (handy for blocking applets)
  forceIframe: false,

  // z-index for the blocking overlay
  baseZ: 1000,

  // set these to true to have the message automatically centered
  centerX: true, // <-- only effects element blocking (page block controlled via css above)
  centerY: true,

  // allow body element to be stetched in ie6; this makes blocking look better
  // on "short" pages.  disable if you wish to prevent changes to the body height
  allowBodyStretch: true,

  // enable if you want key and mouse events to be disabled for content that is blocked
  bindEvents: true,

  // be default blockUI will supress tab navigation from leaving blocking content
  // (if bindEvents is true)
  constrainTabKey: true,

  // fadeIn time in millis; set to 0 to disable fadeIn on block
  fadeIn:  200,

  // fadeOut time in millis; set to 0 to disable fadeOut on unblock
  fadeOut:  400,

  // time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock
  timeout: 0,

  // disable if you don't want to show the overlay
  showOverlay: true,

  // if true, focus will be placed in the first available input field when
  // page blocking
  focusInput: true,

  // suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity)
  applyPlatformOpacityRules: true,
  
  // callback method invoked when fadeIn has completed and blocking message is visible
  onBlock: null,

  // callback method invoked when unblocking has completed; the callback is
  // passed the element that has been unblocked (which is the window object for page
  // blocks) and the options that were passed to the unblock call:
  //   onUnblock(element, options)
  onUnblock: null,

  // don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493
  quirksmodeOffsetHack: 4
};

// private data and functions follow...

var pageBlock = null;
var pageBlockEls = [];

function install(el, opts) {
  var full = (el == window);
  var msg = opts && opts.message !== undefined ? opts.message : undefined;
  opts = $.extend({}, $.blockUI.defaults, opts || {});
  opts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {});
  var css = $.extend({}, $.blockUI.defaults.css, opts.css || {});
  var themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {});
  msg = msg === undefined ? opts.message : msg;

  // remove the current block (if there is one)
  if (full && pageBlock)
    remove(window, {fadeOut:0});

  // if an existing element is being used as the blocking content then we capture
  // its current place in the DOM (and current display style) so we can restore
  // it when we unblock
  if (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) {
    var node = msg.jquery ? msg[0] : msg;
    var data = {};
    $(el).data('blockUI.history', data);
    data.el = node;
    data.parent = node.parentNode;
    data.display = node.style.display;
    data.position = node.style.position;
    if (data.parent)
      data.parent.removeChild(node);
  }

  var z = opts.baseZ;

  // blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;
  // layer1 is the iframe layer which is used to supress bleed through of underlying content
  // layer2 is the overlay layer which has opacity and a wait cursor (by default)
  // layer3 is the message content that is displayed while blocking

  var lyr1 = ($.browser.msie || opts.forceIframe) 
    ? $('<iframe class="blockUI" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+opts.iframeSrc+'"></iframe>')
    : $('<div class="blockUI" style="display:none"></div>');
  var lyr2 = $('<div class="blockUI blockOverlay" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>');
  
  var lyr3, s;
  if (opts.theme && full) {
    s = '<div class="blockUI blockMsg blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+z+';display:none;position:fixed">' +
        '<div class="ui-widget-header ui-dialog-titlebar blockTitle">'+(opts.title || '&nbsp;')+'</div>' +
        '<div class="ui-widget-content ui-dialog-content"></div>' +
      '</div>';
  }
  else if (opts.theme) {
    s = '<div class="blockUI blockMsg blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+z+';display:none;position:absolute">' +
        '<div class="ui-widget-header ui-dialog-titlebar blockTitle">'+(opts.title || '&nbsp;')+'</div>' +
        '<div class="ui-widget-content ui-dialog-content"></div>' +
      '</div>';
  }
  else if (full) {
    s = '<div class="blockUI blockMsg blockPage" style="z-index:'+z+';display:none;position:fixed"></div>';
  }      
  else {
    s = '<div class="blockUI blockMsg blockElement" style="z-index:'+z+';display:none;position:absolute"></div>';
  }
  lyr3 = $(s);

  // if we have a message, style it
  if (msg) {
    if (opts.theme) {
      lyr3.css(themedCSS);
      lyr3.addClass('ui-widget-content');
    }
    else 
      lyr3.css(css);
  }

  // style the overlay
  if (!opts.applyPlatformOpacityRules || !($.browser.mozilla && /Linux/.test(navigator.platform)))
    lyr2.css(opts.overlayCSS);
  lyr2.css('position', full ? 'fixed' : 'absolute');

  // make iframe layer transparent in IE
  if ($.browser.msie || opts.forceIframe)
    lyr1.css('opacity',0.0);

  //$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);
  var layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);
  $.each(layers, function() {
    this.appendTo($par);
  });
  
  if (opts.theme && opts.draggable && $.fn.draggable) {
    lyr3.draggable({
      handle: '.ui-dialog-titlebar',
      cancel: 'li'
    });
  }

  // ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling)
  var expr = setExpr && (!$.boxModel || $('object,embed', full ? null : el).length > 0);
  if (ie6 || expr) {
    // give body 100% height
    if (full && opts.allowBodyStretch && $.boxModel)
      $('html,body').css('height','100%');

    // fix ie6 issue when blocked element has a border width
    if ((ie6 || !$.boxModel) && !full) {
      var t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth');
      var fixT = t ? '(0 - '+t+')' : 0;
      var fixL = l ? '(0 - '+l+')' : 0;
    }

    // simulate fixed position
    $.each([lyr1,lyr2,lyr3], function(i,o) {
      var s = o[0].style;
      s.position = 'absolute';
      if (i < 2) {
        full ? s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:'+opts.quirksmodeOffsetHack+') + "px"')
           : s.setExpression('height','this.parentNode.offsetHeight + "px"');
        full ? s.setExpression('width','jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"')
           : s.setExpression('width','this.parentNode.offsetWidth + "px"');
        if (fixL) s.setExpression('left', fixL);
        if (fixT) s.setExpression('top', fixT);
      }
      else if (opts.centerY) {
        if (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"');
        s.marginTop = 0;
      }
      else if (!opts.centerY && full) {
        var top = (opts.css && opts.css.top) ? parseInt(opts.css.top) : 0;
        var expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"';
        s.setExpression('top',expression);
      }
    });
  }

  // show the message
  if (msg) {
    if (opts.theme)
      lyr3.find('.ui-widget-content').append(msg);
    else
      lyr3.append(msg);
    if (msg.jquery || msg.nodeType)
      $(msg).show();
  }

  if (($.browser.msie || opts.forceIframe) && opts.showOverlay)
    lyr1.show(); // opacity is zero
  if (opts.fadeIn) {
    var cb = opts.onBlock ? opts.onBlock : noOp;
    var cb1 = (opts.showOverlay && !msg) ? cb : noOp;
    var cb2 = msg ? cb : noOp;
    if (opts.showOverlay)
      lyr2._fadeIn(opts.fadeIn, cb1);
    if (msg)
      lyr3._fadeIn(opts.fadeIn, cb2);
  }
  else {
    if (opts.showOverlay)
      lyr2.show();
    if (msg)
      lyr3.show();
    if (opts.onBlock)
      opts.onBlock();
  }

  // bind key and mouse events
  bind(1, el, opts);

  if (full) {
    pageBlock = lyr3[0];
    pageBlockEls = $(':input:enabled:visible',pageBlock);
    if (opts.focusInput)
      setTimeout(focus, 20);
  }
  else
    center(lyr3[0], opts.centerX, opts.centerY);

  if (opts.timeout) {
    // auto-unblock
    var to = setTimeout(function() {
      full ? $.unblockUI(opts) : $(el).unblock(opts);
    }, opts.timeout);
    $(el).data('blockUI.timeout', to);
  }
};

// remove the block
function remove(el, opts) {
  var full = (el == window);
  var $el = $(el);
  var data = $el.data('blockUI.history');
  var to = $el.data('blockUI.timeout');
  if (to) {
    clearTimeout(to);
    $el.removeData('blockUI.timeout');
  }
  opts = $.extend({}, $.blockUI.defaults, opts || {});
  bind(0, el, opts); // unbind events
  
  var els;
  if (full) // crazy selector to handle odd field errors in ie6/7
    els = $('body').children().filter('.blockUI').add('body > .blockUI');
  else
    els = $('.blockUI', el);

  if (full)
    pageBlock = pageBlockEls = null;

  if (opts.fadeOut) {
    els.fadeOut(opts.fadeOut);
    setTimeout(function() { reset(els,data,opts,el); }, opts.fadeOut);
  }
  else
    reset(els, data, opts, el);
};

// move blocking element back into the DOM where it started
function reset(els,data,opts,el) {
  els.each(function(i,o) {
    // remove via DOM calls so we don't lose event handlers
    if (this.parentNode)
      this.parentNode.removeChild(this);
  });

  if (data && data.el) {
    data.el.style.display = data.display;
    data.el.style.position = data.position;
    if (data.parent)
      data.parent.appendChild(data.el);
    $(el).removeData('blockUI.history');
  }

  if (typeof opts.onUnblock == 'function')
    opts.onUnblock(el,opts);
};

// bind/unbind the handler
function bind(b, el, opts) {
  var full = el == window, $el = $(el);

  // don't bother unbinding if there is nothing to unbind
  if (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked')))
    return;
  if (!full)
    $el.data('blockUI.isBlocked', b);

  // don't bind events when overlay is not in use or if bindEvents is false
  if (!opts.bindEvents || (b && !opts.showOverlay)) 
    return;

  // bind anchors and inputs for mouse and key events
  var events = 'mousedown mouseup keydown keypress';
  b ? $(document).bind(events, opts, handler) : $(document).unbind(events, handler);

// former impl...
//     var $e = $('a,:input');
//     b ? $e.bind(events, opts, handler) : $e.unbind(events, handler);
};

// event handler to suppress keyboard/mouse events when blocking
function handler(e) {
  // allow tab navigation (conditionally)
  if (e.keyCode && e.keyCode == 9) {
    if (pageBlock && e.data.constrainTabKey) {
      var els = pageBlockEls;
      var fwd = !e.shiftKey && e.target == els[els.length-1];
      var back = e.shiftKey && e.target == els[0];
      if (fwd || back) {
        setTimeout(function(){focus(back)},10);
        return false;
      }
    }
  }
  // allow events within the message content
  if ($(e.target).parents('div.blockMsg').length > 0)
    return true;

  // allow events for content that is not being blocked
  return $(e.target).parents().children().filter('div.blockUI').length == 0;
};

function focus(back) {
  if (!pageBlockEls)
    return;
  var e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0];
  if (e)
    e.focus();
};

function center(el, x, y) {
  var p = el.parentNode, s = el.style;
  var l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth');
  var t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth');
  if (x) s.left = l > 0 ? (l+'px') : '0';
  if (y) s.top  = t > 0 ? (t+'px') : '0';
};

function sz(el, p) {
  return parseInt($.css(el,p))||0;
};

})(jQuery);



/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 // Cufon config
Cufon.replace('h1', { fontFamily: 'BriemAkademiStd-Semibold' });
Cufon.replace('.h1', { fontFamily: 'BriemAkademiStd-Semibold' });
Cufon.replace('h2', { fontFamily: 'BriemAkademiStd-Semibold' });
Cufon.replace('h3', { fontFamily: 'BriemAkademiStd-Regular' });
Cufon.replace('#StaticRow_Subpage h3', { fontFamily: 'BriemAkademiStd-Semibold' });
Cufon.replace('#LeftMenuHeader', { fontFamily: 'BriemAkademiStd-Semibold' });
Cufon.replace('.NewsListHeader', { fontFamily: 'BriemAkademiStd-Semibold' });
Cufon.replace('.text2', { fontFamily: 'BriemAkademiStd-Regular' });
Cufon.replace('.text3', { fontFamily: 'BriemAkademiStd-Regular' });
Cufon.replace('small', { fontFamily: 'BriemAkademiStd-Regular' });
Cufon.replace('#nyhedsbrevtilmeldingForm', { fontFamily: 'BriemAkademiStd-Regular' });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              /*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright ? 1997, 2002 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Briem is a registered trademark of Gunnlaugur SE Briem.
 * 
 * Full name:
 * BriemAkademiStd-Regular
 * 
 * Designer:
 * Gunnlaugur SE Briem
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"186,-706r0,706r-93,0r0,-706r93,0","w":279},{"d":"186,-794r0,118r-93,0r0,-118r93,0xm186,-588r0,588r-93,0r0,-588r93,0","w":279},{"d":"500,-216r0,216r-93,0r0,-255r-221,0r0,255r-93,0r0,-216v0,-41,26,-67,68,-78v-42,-11,-68,-37,-68,-79r0,-215r93,0r0,255r221,0r0,-255r93,0r0,215v0,42,-26,68,-67,79v41,11,67,37,67,78"},{"d":"186,-588r0,588r-93,0r0,-588r93,0xm135,-794r105,0r-68,126r-106,0","w":279},{"d":"500,-588r0,588r-93,0r0,-77r-52,77r-148,0v-67,0,-114,-39,-114,-115r0,-473r93,0r0,510r221,0r0,-510r93,0"},{"d":"500,-176r0,61v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,61r-93,0r0,-98r-221,0r0,432r221,0r0,-98r93,0"},{"d":"140,-706r0,235r-93,0r0,-235r93,0","w":186},{"d":"500,-297r0,182v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r168,0v67,0,114,39,114,115r0,91r-93,0r0,-128r-210,0r0,293r52,-77r148,0v67,0,114,39,114,115xm186,-78r221,0r0,-256r-221,0r0,256"},{"d":"500,-706r0,706r-93,0r0,-157r-221,-331r0,488r-93,0r0,-706r93,0r0,79r221,330r0,-409r93,0"},{"d":"419,-706r93,0r-186,314r60,0v67,0,114,39,114,115r0,277r-93,0r0,-314r-221,0r0,314r-93,0r0,-706r93,0r0,391","w":559},{"d":"294,128r0,78r-89,0v-67,0,-114,-40,-114,-115r0,-770v0,-76,47,-115,114,-115r89,0r0,78r-110,0r0,844r110,0","w":306},{"d":"186,-794r0,1000r-93,0r0,-1000r93,0","w":279},{"d":"195,-147r0,147r-93,0r0,-147r93,0xm492,-147r0,147r-93,0r0,-147r93,0xm789,-147r0,147r-93,0r0,-147r93,0","w":891},{"d":"814,-473r0,473r-93,0r0,-510r-221,0r0,510r-93,0r0,-510r-221,0r0,510r-93,0r0,-588r93,0r0,77r52,-77r148,0v56,0,99,23,114,77r52,-77r148,0v67,0,114,39,114,115","w":907},{"d":"500,-473r0,473r-93,0r0,-77r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-103v0,-76,47,-115,114,-115r200,0r0,-177r-210,0r0,98r-93,0r0,-61v0,-76,47,-115,114,-115r168,0v67,0,114,39,114,115xm186,-78r221,0r0,-177r-221,0r0,177xm311,-794r105,0r-68,126r-106,0"},{"d":"500,-473r0,473r-93,0r0,-510r-221,0r0,510r-93,0r0,-588r93,0r0,77r52,-77r148,0v67,0,114,39,114,115"},{"d":"270,-333r0,78r-55,0r0,346v0,76,-47,115,-114,115r-89,0r0,-78r110,0r0,-344v0,-41,25,-67,67,-78v-42,-11,-67,-37,-67,-79r0,-343r-110,0r0,-78r89,0v67,0,114,39,114,115r0,346r55,0","w":306},{"d":"281,-78r0,78r-74,0v-67,0,-114,-39,-114,-115r0,-679r93,0r0,716r95,0","w":312},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-43,0r0,118r-93,0r0,-118r-43,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-550r-221,0r0,550"},{"d":"204,-255r-43,0v-68,0,-114,-39,-114,-115r0,-336r93,0r0,373r220,0r0,-373r93,0r0,336v0,76,-46,115,-114,115r-42,0r0,255r-93,0r0,-255","w":500},{"d":"500,-176r0,61v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,218r-314,0r0,177r221,0r0,-98r93,0xm186,-333r221,0r0,-177r-221,0r0,177"},{"d":"419,-588r93,0r-170,216r44,0v67,0,114,39,114,115r0,257r-93,0r0,-294r-221,0r0,294r-93,0r0,-794r93,0r0,499","w":543},{"d":"186,-794r0,118r-93,0r0,-118r93,0xm186,-588r0,679v0,76,-46,115,-114,115r-89,0r0,-78r110,0r0,-716r93,0","w":279},{"d":"297,-365r0,83r-297,0r0,-83r297,0","w":297},{"d":"326,-78r0,78r-314,0r0,-78r222,-550r-222,0r0,-78r314,0r0,78r-222,550r222,0","w":338},{"d":"370,-794r112,206r-95,0r-81,-152r-81,152r-94,0r112,-206r127,0","w":613},{"d":"500,-473r0,358v0,76,-47,115,-114,115r-147,0r-53,-77r0,77r-93,0r0,-794r93,0r0,283r52,-77r148,0v67,0,114,39,114,115xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"294,128r0,78r-89,0v-68,0,-114,-39,-114,-115r0,-346r-55,0r0,-78r55,0r0,-346v0,-76,46,-115,114,-115r89,0r0,78r-110,0r0,343v0,42,-26,68,-68,79v42,11,68,37,68,78r0,344r110,0","w":306},{"d":"500,-473r0,358v0,76,-47,115,-114,115r-147,0r-53,-77r0,283r-93,0r0,-794r93,0r0,77r52,-77r148,0v67,0,114,39,114,115xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"500,-588r0,679v0,76,-47,115,-114,115r-246,0r0,-78r267,0r0,-205r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r148,0r52,77r0,-77r93,0xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"375,-78r0,78r-168,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r168,0r0,78r-189,0r0,236r189,0r0,78r-189,0r0,236r189,0xm261,-901r105,0r-68,126r-106,0","w":422},{"d":"199,-794r68,126r-105,0r-69,-126r106,0","w":360},{"d":"500,-473r0,358v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-432r-221,0r0,432xm299,-794r105,0r-68,126r-106,0"},{"d":"306,-706r0,78r-111,0r0,187r-93,0r0,-150v0,-76,46,-115,114,-115r90,0xm619,-706r0,78r-111,0r0,187r-93,0r0,-150v0,-76,47,-115,114,-115r90,0","w":610},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-550r-221,0r0,550xm231,-901r0,116r-81,0r0,-116r81,0xm444,-901r0,116r-81,0r0,-116r81,0"},{"d":"215,-679r0,770v0,75,-47,115,-114,115r-89,0r0,-78r110,0r0,-844r-110,0r0,-78r89,0v67,0,114,39,114,115","w":306},{"d":"407,-706r0,78r-157,0r0,628r-93,0r0,-628r-157,0r0,-78r407,0","w":407},{"d":"500,-423r0,308v0,76,-47,115,-114,115r-89,0r0,-78r110,0r0,-384r-110,0r0,-78r110,0r0,-176r-221,0r0,716r-93,0r0,-679v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,99v0,42,-26,68,-67,79v41,11,67,37,67,78"},{"d":"814,-706r0,471r-114,235r-93,0r-154,-245r-153,245r-93,0r-114,-235r0,-471r93,0r0,471r74,150r147,-235r0,-386r93,0r0,386r147,235r74,-150r0,-471r93,0","w":907},{"d":"500,-588r0,588r-93,0r0,-77r-52,77r-148,0v-67,0,-114,-39,-114,-115r0,-473r93,0r0,510r221,0r0,-510r93,0xm231,-794r0,116r-81,0r0,-116r81,0xm444,-794r0,116r-81,0r0,-116r81,0"},{"d":"500,-794r0,794r-93,0r0,-77r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r148,0r52,77r0,-283r93,0xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"195,-706r0,150v0,76,-47,115,-114,115r-90,0r0,-78r111,0r0,-187r93,0","w":297},{"d":"500,-588r0,588r-93,0r0,-77r-52,77r-148,0v-67,0,-114,-39,-114,-115r0,-473r93,0r0,510r221,0r0,-510r93,0xm299,-794r105,0r-68,126r-106,0"},{"d":"690,-581r0,78r-96,0r-61,300r124,0r0,78r-124,0r0,125r-93,0r0,-125r-220,0r0,125r-93,0r0,-125r-96,0r0,-78r96,0r61,-300r-124,0r0,-78r124,0r0,-125r93,0r0,125r220,0r0,-125r93,0r0,125r96,0xm440,-203r61,-300r-220,0r-61,300r220,0","w":721},{"d":"610,-471r0,78r-110,0r0,393r-293,0v-67,0,-114,-39,-114,-115r0,-238v0,-42,26,-67,68,-78v-42,-11,-68,-37,-68,-79r0,-81v0,-76,47,-115,114,-115r246,0r0,78r-267,0r0,157r221,0r0,-78r93,0r0,78r110,0xm186,-78r221,0r0,-315r-221,0r0,315","w":610},{"d":"500,-176r0,61v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,218r-314,0r0,177r221,0r0,-98r93,0xm186,-333r221,0r0,-177r-221,0r0,177xm299,-794r105,0r-68,126r-106,0"},{"d":"500,-473r0,473r-93,0r0,-77r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-103v0,-76,47,-115,114,-115r200,0r0,-177r-210,0r0,98r-93,0r0,-61v0,-76,47,-115,114,-115r168,0v67,0,114,39,114,115xm186,-78r221,0r0,-177r-221,0r0,177xm280,-833r45,0v64,0,107,28,107,83r0,2v0,56,-43,84,-107,84r-45,0v-65,0,-108,-28,-108,-84r0,-2v0,-55,43,-83,108,-83xm246,-703r112,0r0,-91r-112,0r0,91"},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-550r-221,0r0,550"},{"d":"500,-471r0,471r-93,0r0,-196r-221,0r0,196r-93,0r0,-471r157,-235r93,0xm186,-274r221,0r0,-197r-110,-165r-111,165r0,197xm231,-901r0,116r-81,0r0,-116r81,0xm444,-901r0,116r-81,0r0,-116r81,0"},{"d":"186,-706r0,471r-93,0r0,-471r93,0xm186,-147r0,147r-93,0r0,-147r93,0","w":279},{"d":"333,-588r0,98r-147,0r0,490r-93,0r0,-588r93,0r0,78r53,-78r94,0","w":333},{"d":"814,-176r0,61v0,76,-47,115,-114,115r-179,0v-57,0,-99,-28,-114,-77r-52,77r-148,0v-67,0,-114,-39,-114,-115r0,-103v0,-76,47,-115,114,-115r200,0r0,-177r-210,0r0,98r-93,0r0,-61v0,-76,47,-115,114,-115r157,0v42,0,67,11,78,28v11,-17,37,-28,79,-28r168,0v67,0,114,39,114,115r0,218r-314,0r0,177r221,0r0,-98r93,0xm500,-333r221,0r0,-177r-221,0r0,177xm186,-78r221,0r0,-177r-221,0r0,177","w":907},{"d":"689,-78r0,78r-168,0v-68,0,-114,-39,-114,-115r0,-81r-221,0r0,196r-93,0r0,-471r157,-235r93,0r65,97v7,-64,52,-97,113,-97r168,0r0,78r-189,0r0,236r189,0r0,78r-189,0r0,236r189,0xm186,-274r221,0r0,-197r-110,-165r-111,165r0,197","w":736},{"d":"140,-706r0,235r-93,0r0,-235r93,0xm394,-706r0,235r-93,0r0,-235r93,0","w":441},{"d":"500,-473r0,473r-93,0r0,-77r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-103v0,-76,47,-115,114,-115r200,0r0,-177r-210,0r0,98r-93,0r0,-61v0,-76,47,-115,114,-115r168,0v67,0,114,39,114,115xm186,-78r221,0r0,-177r-221,0r0,177xm236,-794r0,116r-81,0r0,-116r81,0xm449,-794r0,116r-81,0r0,-116r81,0"},{"d":"500,-284r0,110v0,76,-47,115,-114,115r-43,0r0,118r-93,0r0,-118r-43,0v-67,0,-114,-39,-114,-115r0,-61r93,0r0,98r221,0r0,-169r-200,0v-67,0,-114,-40,-114,-116r0,-110v0,-76,47,-115,114,-115r43,0r0,-118r93,0r0,118r43,0v67,0,114,39,114,115r0,61r-93,0r0,-98r-221,0r0,169r200,0v67,0,114,40,114,116"},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-168,0v-67,0,-114,-39,-114,-115r0,-91r93,0r0,128r210,0r0,-293r-52,77r-148,0v-67,0,-114,-39,-114,-115r0,-182v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-372r221,0r0,-256r-221,0r0,256"},{"d":"500,-471r0,356v0,76,-47,115,-114,115r-200,0r0,88r-93,0r0,-49v0,-41,26,-67,68,-78v-42,-11,-68,-37,-68,-79r0,-355v0,-76,47,-115,114,-115r200,0r0,-88r93,0r0,49v0,41,-26,67,-67,78v41,11,67,37,67,78xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-550r-221,0r0,550xm299,-901r105,0r-68,126r-106,0"},{"d":"532,-401r0,96r-471,205r0,-89r385,-164r-385,-164r0,-88"},{"d":"534,-254r0,78r-115,0r0,176r-93,0r0,-176r-314,0r0,-79r301,-451r93,0r-301,452r221,0r0,-256r93,0r0,256r115,0"},{"d":"500,-706r0,706r-93,0r0,-314r-221,0r0,314r-93,0r0,-706r93,0r0,314r221,0r0,-314r93,0"},{"d":"500,-588r0,473v0,76,-47,115,-114,115r-200,0r0,88r-93,0r0,-49v0,-41,26,-67,68,-78v-42,-11,-68,-37,-68,-79r0,-473v0,-76,47,-115,114,-115r200,0r0,-88r93,0r0,49v0,42,-26,67,-67,78v41,11,67,37,67,79xm186,-78r221,0r0,-550r-221,0r0,550"},{"d":"500,-473r0,473r-93,0r0,-77r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-103v0,-76,47,-115,114,-115r200,0r0,-177r-210,0r0,98r-93,0r0,-61v0,-76,47,-115,114,-115r168,0v67,0,114,39,114,115xm186,-78r221,0r0,-177r-221,0r0,177"},{"d":"500,-473r0,473r-93,0r0,-510r-221,0r0,510r-93,0r0,-794r93,0r0,283r52,-77r148,0v67,0,114,39,114,115"},{"d":"516,-411r0,100v0,46,-26,73,-65,73v-56,0,-123,-29,-173,-49r-87,-34r0,83r-93,0r0,-99v0,-47,27,-74,65,-74v58,0,121,29,172,49r88,35r0,-84r93,0","w":613},{"d":"215,-794r0,1000r-203,0r0,-78r110,0r0,-844r-110,0r0,-78r203,0","w":306},{"d":"500,-78r0,78r-407,0r0,-265v0,-76,47,-115,114,-115r200,0r0,-248r-221,0r0,99r-93,0r0,-62v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,189v0,76,-47,115,-114,115r-200,0r0,209r314,0"},{"d":"500,-588r0,679v0,76,-47,115,-114,115r-246,0r0,-78r267,0r0,-205r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-473r93,0r0,510r221,0r0,-510r93,0"},{"d":"195,-588r0,147r-93,0r0,-147r93,0xm195,-147r0,150v0,76,-47,115,-114,115r-90,0r0,-78r111,0r0,-187r93,0","w":297},{"d":"500,-706r0,591v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-591r93,0r0,628r221,0r0,-628r93,0xm231,-901r0,116r-81,0r0,-116r81,0xm444,-901r0,116r-81,0r0,-116r81,0"},{"d":"814,-588r0,353r-114,235r-93,0r-154,-245r-153,245r-93,0r-114,-235r0,-353r93,0r0,353r74,150r147,-235r0,-268r93,0r0,268r147,235r74,-150r0,-353r93,0","w":907},{"d":"375,-78r0,78r-168,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r168,0r0,78r-189,0r0,236r189,0r0,78r-189,0r0,236r189,0","w":422},{"d":"349,-78r0,78r-128,0v-68,0,-114,-39,-114,-115r0,-388r-95,0r0,-78r95,0r0,-125r93,0r0,125r149,0r0,78r-149,0r0,425r149,0","w":380},{"d":"814,-471r0,471r-93,0r0,-471r-74,-150r-147,235r0,386r-93,0r0,-386r-147,-235r-74,150r0,471r-93,0r0,-471r114,-235r93,0r153,245r154,-245r93,0","w":907},{"d":"418,-706r0,706r-93,0r0,-628r-150,0r0,-78r243,0"},{"d":"500,-226r0,111v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-61r93,0r0,98r221,0r0,-170r-200,0v-67,0,-114,-39,-114,-115r0,-110v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,61r-93,0r0,-98r-221,0r0,169r200,0v67,0,114,39,114,115"},{"d":"755,-706r0,235r-156,236r0,235r-93,0r0,-235r156,-236r0,-235r93,0xm140,-313r221,0r0,-315r-221,0r0,315xm900,-78r221,0r0,-315r-221,0r0,315xm454,-591r0,241v0,75,-47,115,-114,115r-179,0v-67,0,-114,-40,-114,-115r0,-241v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm1214,-355r0,240v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-240v0,-76,47,-116,114,-116r179,0v67,0,114,40,114,116","w":1261},{"d":"500,-275r0,160v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-160v0,-41,26,-67,68,-78v-42,-11,-68,-37,-68,-78r0,-160v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,160v0,41,-26,67,-67,78v41,11,67,37,67,78xm186,-392r221,0r0,-236r-221,0r0,236xm186,-78r221,0r0,-236r-221,0r0,236"},{"d":"1054,-679r0,525v0,76,-47,115,-114,115r-256,0r0,-77r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-280v0,-76,47,-115,114,-115r148,0r52,77r0,-77r93,0r0,432r184,0r0,-599r-775,0r0,844r669,0r0,78r-648,0v-67,0,-114,-39,-114,-115r0,-770v0,-76,47,-115,114,-115r733,0v67,0,114,39,114,115xm463,-117r221,0r0,-354r-221,0r0,354","w":1147},{"d":"195,-706r0,150v0,76,-47,115,-114,115r-90,0r0,-78r111,0r0,-187r93,0xm508,-706r0,150v0,76,-47,115,-114,115r-90,0r0,-78r111,0r0,-187r93,0","w":610},{"d":"195,-147r0,150v0,76,-47,115,-114,115r-90,0r0,-78r111,0r0,-187r93,0","w":297},{"w":279},{"d":"500,-314r0,199v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-91r93,0r0,128r221,0r0,-258r-314,0r0,-370r400,0r0,78r-307,0r0,199r200,0v67,0,114,39,114,115"},{"d":"500,-473r0,358v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-432r-221,0r0,432xm231,-794r0,116r-81,0r0,-116r81,0xm444,-794r0,116r-81,0r0,-116r81,0"},{"d":"500,-275r0,275r-93,0r0,-314r-221,0r0,314r-93,0r0,-275v0,-41,26,-67,68,-78v-42,-11,-68,-37,-68,-78r0,-275r93,0r0,314r221,0r0,-314r93,0r0,275v0,41,-26,67,-67,78v41,11,67,37,67,78"},{"d":"500,-284r0,169v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-61r93,0r0,98r221,0r0,-228r-200,0v-67,0,-114,-40,-114,-116r0,-169v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,62r-93,0r0,-99r-221,0r0,228r200,0v67,0,114,40,114,116"},{"d":"500,-473r0,358v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"306,-706r0,78r-111,0r0,187r-93,0r0,-150v0,-76,46,-115,114,-115r90,0","w":297},{"d":"532,-392r0,78r-189,0r0,196r-93,0r0,-196r-189,0r0,-78r189,0r0,-196r93,0r0,196r189,0"},{"d":"500,-471r0,471r-93,0r0,-196r-221,0r0,196r-93,0r0,-471r157,-235r93,0xm186,-274r221,0r0,-197r-110,-165r-111,165r0,197xm299,-901r105,0r-68,126r-106,0"},{"d":"500,-591r0,221v0,76,-47,115,-114,115r-200,0r0,255r-93,0r0,-706r293,0v67,0,114,39,114,115xm186,-333r221,0r0,-295r-221,0r0,295","w":547},{"d":"195,-588r0,147r-93,0r0,-147r93,0xm195,-147r0,147r-93,0r0,-147r93,0","w":297},{"d":"186,-706r0,706r-93,0r0,-706r93,0xm135,-901r105,0r-68,126r-106,0","w":279},{"d":"203,-706r0,709v0,76,-47,115,-114,115r-89,0r0,-78r110,0r0,-746r93,0","w":296},{"d":"500,-235r0,120v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,120r-93,0r0,-157r-221,0r0,550r221,0r0,-157r93,0","w":547},{"d":"500,-706r0,235r-157,236r0,235r-93,0r0,-235r157,-236r0,-157r-221,0r0,157r-93,0r0,-235r407,0"},{"d":"294,128r0,78r-203,0r0,-1000r203,0r0,78r-110,0r0,844r110,0","w":306},{"d":"500,-275r0,160v0,76,-47,115,-114,115r-293,0r0,-706r293,0v67,0,114,39,114,115r0,160v0,41,-26,67,-67,78v41,11,67,37,67,78xm186,-392r221,0r0,-236r-221,0r0,236xm186,-78r221,0r0,-236r-221,0r0,236"},{"d":"500,-706r0,471r-157,235r-93,0r-157,-235r0,-471r93,0r0,471r111,165r110,-165r0,-471r93,0"},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115xm186,-78r221,0r0,-550r-221,0r0,550"},{"d":"500,-275r0,275r-93,0r0,-314r-221,0r0,314r-93,0r0,-706r293,0v67,0,114,39,114,115r0,160v0,41,-26,67,-67,78v41,11,67,37,67,78xm186,-392r221,0r0,-236r-221,0r0,236"},{"d":"532,-529r0,78r-471,0r0,-78r471,0xm532,-255r0,78r-471,0r0,-78r471,0"},{"d":"500,-706r0,591v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-591r93,0r0,628r221,0r0,-628r93,0"},{"d":"532,-189r0,89r-471,-205r0,-96r471,-204r0,88r-385,164"},{"d":"343,-235r0,235r-93,0r0,-235r-157,-236r0,-235r93,0r0,235","w":436},{"d":"343,-706r0,235r-157,236r0,235r-93,0r0,-235r157,-236r0,-235r93,0","w":436},{"d":"500,-588r0,794r-93,0r0,-283r-53,77r-147,0v-67,0,-114,-39,-114,-115r0,-358v0,-76,47,-115,114,-115r148,0r52,77r0,-77r93,0xm186,-78r221,0r0,-432r-221,0r0,432"},{"d":"326,-78r0,78r-314,0r0,-78r222,-432r-222,0r0,-78r314,0r0,78r-222,432r222,0","w":338},{"d":"308,147r0,59r-311,0r0,-59r311,0","w":305},{"d":"500,-275r0,160v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-91r93,0r0,128r221,0r0,-236r-166,0r0,-78r166,0r0,-236r-221,0r0,128r-93,0r0,-91v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,160v0,41,-26,67,-67,78v41,11,67,37,67,78"},{"d":"500,-706r0,591v0,76,-47,115,-114,115r-179,0v-67,0,-114,-39,-114,-115r0,-591r93,0r0,628r221,0r0,-628r93,0xm299,-901r105,0r-68,126r-106,0"},{"d":"500,-591r0,476v0,76,-47,115,-114,115r-293,0r0,-706r293,0v67,0,114,39,114,115xm186,-78r221,0r0,-550r-221,0r0,550"},{"d":"500,-471r0,471r-93,0r0,-196r-221,0r0,196r-93,0r0,-471r157,-235r93,0xm186,-274r221,0r0,-197r-110,-165r-111,165r0,197xm275,-912r45,0v64,0,107,28,107,83r0,2v0,56,-43,84,-107,84r-45,0v-65,0,-108,-28,-108,-84r0,-2v0,-55,43,-83,108,-83xm241,-782r112,0r0,-91r-112,0r0,91"},{"w":279},{"d":"574,-625r30,83r-242,72r150,201r-71,55r-144,-210r-144,210r-71,-55r150,-201r-242,-72r30,-83r237,81r-5,-250r90,0r-5,250","w":594},{"d":"500,-588r0,353r-157,235r-93,0r-157,-235r0,-353r93,0r0,353r111,165r110,-165r0,-353r93,0"},{"d":"419,-591r0,162v0,76,-46,115,-114,115r-60,0r0,79r-93,0r0,-157r174,0r0,-236r-221,0r0,99r-93,0r0,-62v0,-76,47,-115,114,-115r179,0v68,0,114,39,114,115xm245,-147r0,147r-93,0r0,-147r93,0","w":466},{"d":"500,-333r0,333r-293,0v-67,0,-114,-39,-114,-115r0,-476v0,-76,47,-115,114,-115r179,0v67,0,114,39,114,115r0,120r-93,0r0,-157r-221,0r0,550r221,0r0,-177r-110,0r0,-78r203,0"},{"d":"500,-471r0,471r-93,0r0,-196r-221,0r0,196r-93,0r0,-471r157,-235r93,0xm186,-274r221,0r0,-197r-110,-165r-111,165r0,197"},{"d":"195,-147r0,147r-93,0r0,-147r93,0","w":297},{"d":"349,-581r0,78r-149,0r0,503r-93,0r0,-503r-95,0r0,-78r95,0r0,-98v0,-76,46,-115,114,-115r128,0r0,78r-149,0r0,135r149,0","w":349},{"d":"375,-392r0,78r-189,0r0,314r-93,0r0,-591v0,-76,47,-115,114,-115r168,0r0,78r-189,0r0,236r189,0","w":422},{"d":"375,-78r0,78r-168,0v-67,0,-114,-39,-114,-115r0,-591r93,0r0,628r189,0","w":375}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+39-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("X$My~tz_sE?TXa}#lt|{0$0?P;zyMt?TP;`{sE1LMjGW:8_HiE}OP+I%w$jKlEwLzK5VX+,xlp0%w6M9P+I%w$I,~LyWIj}}s;29E}5H4FvLP+I%w$w5:|,ywNvtwy,yw6R,:y,ywNvKzH}IP+I%w$1tjy,ywNvt:;1xlp0%wp}xlpR%Mt76`},ywNv}]j,ywNv}zpvxlpRRvaN7|$+0`XVwz]Jm1ipIjEP:Ms~xl4h!UH6K}tL2-=fW9Tq%,{8_y;FO5Q#G?3r%:8mUx},ywNv}z},ywNv6z}%HP+I%w$I_`N}xlpR%M6UxlpR%MNw3z7UxlpR%MNUUs+5lwLK#P+I%w$16l_j_pp|8`pURP+I{wN|KVaRyP+I%w$:;E|zqP+I{wN7OXy,ywNv6wjRQP+I%w$zKiKwFE_`Epy0?jp,xP|%qxP-hwy,ywNvK:I1xlpR%:8jxlpR%:pR=l6?+mi5t1K%HVLz%~$}_Xa0HXi,-JpRWxNyHVLRW~Ny%Vt,}~tl_sa,LJE0TMH5L~+}%s+w?4F_#sE:2:H5qs8_qPH!r]LlFly%TXpG2J8-T~F`Kx;?}~t?6ME|T:P`-lEyxVt1fXimqsi5_MPz_X$,q:;|_sE?TVtUqxF1T:Ey}Xi}t~F02];KG~NWfX;K-My96E;}lPpy%E;}lhiK2XiR!")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":593,"face":{"font-family":"BriemAkademiStd-Regular","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 5 0 0 0 0 0 0 0","ascent":"939","descent":"-61","bbox":"-17 -912 1214 206","underline-thickness":"50","underline-position":"-50","stemh":"78","stemv":"93","unicode-range":"U+0020-U+2026"}}));

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright ? 1997, 2002 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Briem is a registered trademark of Gunnlaugur SE Briem.
 * 
 * Full name:
 * BriemAkademiStd-Semibold
 * 
 * Designer:
 * Gunnlaugur SE Briem
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"180,-163r0,163r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-25v0,-32,20,-48,49,-48r58,0r0,-57r-57,0r0,31r-45,0r0,-15v0,-32,20,-49,49,-49r51,0v29,0,49,17,49,49xm73,-33r60,0r0,-56r-60,0r0,56xm97,-295r17,0v24,0,41,10,41,30r0,1v0,21,-17,30,-41,30r-17,0v-24,0,-41,-9,-41,-30r0,-1v0,-20,17,-30,41,-30xm85,-249r41,0r0,-31r-41,0r0,31"},{"d":"105,-33r0,33r-30,0v-29,0,-49,-17,-49,-49r0,-237r47,0r0,253r32,0","w":113},{"d":"180,-254r0,169r-57,85r-41,0r-56,-85r0,-169r47,0r0,171r30,45r30,-45r0,-171r47,0"},{"d":"287,-163r0,163r-47,0r0,-179r-60,0r0,179r-47,0r0,-179r-60,0r0,179r-47,0r0,-212r47,0r0,33r22,-33r36,0v24,0,43,11,49,33r22,-33r36,0v29,0,49,17,49,49","w":312},{"d":"123,-32r0,32r-41,0v-29,0,-49,-17,-49,-49r0,-128r-30,0r0,-32r30,0r0,-45r47,0r0,45r43,0r0,32r-43,0r0,145r43,0","w":132},{"d":"180,-286r0,286r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r36,0r22,33r0,-107r47,0xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"148,-254r0,33r-50,0r0,221r-47,0r0,-221r-51,0r0,-33r148,0","w":148},{"d":"75,-254r0,47v0,32,-20,48,-49,48r-30,0r0,-33r32,0r0,-62r47,0xm182,-254r0,47v0,32,-21,48,-50,48r-29,0r0,-33r32,0r0,-62r47,0","w":209},{"d":"180,-163r0,163r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-25v0,-32,20,-48,49,-48r58,0r0,-57r-57,0r0,31r-45,0r0,-15v0,-32,20,-49,49,-49r51,0v29,0,49,17,49,49xm73,-33r60,0r0,-56r-60,0r0,56xm100,-280r53,0r-24,44r-53,0"},{"d":"180,-122r0,122r-105,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48r0,33r-47,0r0,-48r-60,0r0,188r60,0r0,-56r-29,0r0,-33r76,0"},{"d":"180,-163r0,114v0,32,-20,49,-49,49r-36,0r-22,-32r0,106r-47,0r0,-286r47,0r0,33r22,-33r36,0v29,0,49,17,49,49xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"180,-73r0,73r-47,0r0,-89r-60,0r0,89r-47,0r0,-73v0,-16,10,-28,26,-33v-16,-5,-26,-16,-26,-33r0,-73r47,0r0,90r60,0r0,-90r47,0r0,73v0,17,-10,28,-26,33v16,5,26,17,26,33"},{"d":"180,-95r0,95r-47,0r0,-111r-60,0r0,111r-47,0r0,-95v0,-16,10,-27,26,-32v-16,-5,-26,-16,-26,-32r0,-95r47,0r0,110r60,0r0,-110r47,0r0,95v0,16,-10,27,-26,32v16,5,26,16,26,32"},{"d":"111,53r0,21r-112,0r0,-21r112,0","w":109},{"w":98},{"d":"188,-77r0,41r-170,-74r0,-34r170,-74r0,41r-117,50"},{"d":"180,-78r0,29v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-14r47,0r0,30r60,0r0,-52r-58,0v-29,0,-49,-16,-49,-48r0,-30v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49r0,15r-47,0r0,-31r-60,0r0,52r58,0v29,0,49,17,49,49"},{"d":"107,-254r0,33r-32,0r0,62r-47,0r0,-47v0,-32,20,-48,49,-48r30,0xm214,-254r0,33r-32,0r0,62r-47,0r0,-47v0,-32,20,-48,49,-48r30,0","w":209},{"d":"53,-254r0,84r-40,0r0,-84r40,0","w":65},{"d":"180,-163r0,114v0,32,-20,49,-49,49r-58,0r0,35r-47,0r0,-19v0,-17,10,-28,26,-33v-16,-5,-26,-15,-26,-32r0,-114v0,-32,20,-49,49,-49r58,0r0,-35r47,0r0,19v0,16,-10,28,-26,33v16,5,26,15,26,32xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"180,-212r0,286r-47,0r0,-106r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r36,0r22,33r0,-33r47,0xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"194,-153r0,35v0,19,-10,32,-29,32v-20,0,-45,-9,-69,-18r-30,-12r0,30r-39,0r0,-35v0,-20,11,-32,30,-32v20,0,43,9,67,18r30,12r0,-30r40,0","w":220},{"d":"180,-100r0,51v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-18r47,0r0,34r60,0r0,-73r-58,0v-29,0,-49,-16,-49,-48r0,-52v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48r0,19r-47,0r0,-34r-60,0r0,73r58,0v29,0,49,16,49,48"},{"w":98},{"d":"180,-63r0,14v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49r0,74r-107,0r0,56r60,0r0,-30r47,0xm73,-122r60,0r0,-57r-60,0r0,57"},{"d":"180,-254r0,205v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-205r47,0r0,221r60,0r0,-221r47,0"},{"d":"180,-212r0,238v0,32,-21,48,-50,48r-84,0r0,-33r87,0r0,-73r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-163r47,0r0,179r60,0r0,-179r47,0"},{"d":"107,-254r0,33r-32,0r0,62r-47,0r0,-47v0,-32,20,-48,49,-48r30,0","w":102},{"d":"73,-212r0,212r-47,0r0,-212r47,0xm41,-280r52,0r-24,44r-52,0","w":98},{"d":"180,-63r0,14v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49r0,74r-107,0r0,56r60,0r0,-30r47,0xm73,-122r60,0r0,-57r-60,0r0,57xm96,-280r52,0r-23,44r-53,0"},{"d":"180,-163r0,163r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-25v0,-32,20,-48,49,-48r58,0r0,-57r-57,0r0,31r-45,0r0,-15v0,-32,20,-49,49,-49r51,0v29,0,49,17,49,49xm73,-33r60,0r0,-56r-60,0r0,56xm86,-280r0,41r-38,0r0,-41r38,0xm163,-280r0,41r-38,0r0,-41r38,0"},{"d":"131,-33r0,33r-56,0v-29,0,-49,-17,-49,-49r0,-205r47,0r0,221r58,0","w":131},{"d":"123,-33r0,33r-119,0r0,-33r72,-146r-72,0r0,-33r119,0r0,33r-72,146r72,0","w":127},{"d":"287,-212r0,127r-36,85r-47,0r-48,-75r-47,75r-47,0r-36,-85r0,-127r47,0r0,127r20,43r40,-64r0,-106r47,0r0,106r40,64r20,-43r0,-127r47,0","w":312},{"d":"188,-147r0,39r-62,0r0,66r-46,0r0,-66r-62,0r0,-39r62,0r0,-65r46,0r0,65r62,0"},{"d":"180,-67r0,18v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49r0,18r-47,0r0,-34r-60,0r0,146r60,0r0,-34r47,0"},{"d":"100,-122r0,33r-18,0r0,115v0,32,-20,48,-49,48r-30,0r0,-33r32,0r0,-114v0,-17,10,-28,26,-33v-16,-5,-26,-16,-26,-33r0,-114r-32,0r0,-33r30,0v29,0,49,17,49,49r0,115r18,0","w":110},{"d":"180,-212r0,238v0,32,-20,48,-49,48r-85,0r0,-33r87,0r0,-73r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r36,0r22,33r0,-33r47,0xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"69,-53r0,53r-41,0r0,-53r41,0xm178,-53r0,53r-41,0r0,-53r41,0xm287,-53r0,53r-41,0r0,-53r41,0","w":315},{"d":"150,-254r0,254r-47,0r0,-221r-47,0r0,-33r94,0"},{"d":"122,-33r0,33r-119,0r0,-33r73,-188r-73,0r0,-33r119,0r0,33r-72,188r72,0","w":125},{"d":"180,-163r0,114v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49xm73,-33r60,0r0,-146r-60,0r0,146xm96,-280r52,0r-23,44r-53,0"},{"d":"180,-170r0,170r-47,0r0,-68r-60,0r0,68r-47,0r0,-170r56,-84r41,0xm73,-101r60,0r0,-70r-30,-45r-30,45r0,70xm84,-320r0,42r-38,0r0,-42r38,0xm160,-320r0,42r-38,0r0,-42r38,0"},{"d":"204,-230r14,40r-80,24r49,66r-33,26r-48,-70r-48,70r-34,-26r51,-66r-81,-24r14,-40r79,27r-2,-83r42,0r-2,83","w":212},{"d":"82,-237r0,263v0,32,-20,48,-49,48r-30,0r0,-33r32,0r0,-294r-32,0r0,-33r30,0v28,0,49,17,49,49","w":110},{"d":"180,-254r0,205v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-205r47,0r0,221r60,0r0,-221r47,0xm84,-320r0,42r-38,0r0,-42r38,0xm160,-320r0,42r-38,0r0,-42r38,0"},{"d":"180,-206r0,157v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48xm73,-33r60,0r0,-188r-60,0r0,188xm96,-320r52,0r-23,44r-53,0"},{"d":"180,-212r0,212r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-163r47,0r0,179r60,0r0,-179r47,0xm96,-280r52,0r-23,44r-53,0"},{"d":"180,-148r0,99v0,32,-20,49,-49,49r-28,0r0,-33r30,0r0,-131r-30,0r0,-33r30,0r0,-56r-60,0r0,253r-47,0r0,-237v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49r0,24v0,17,-10,28,-26,33v16,5,26,16,26,32"},{"d":"180,-95r0,46v0,32,-20,49,-49,49r-105,0r0,-254r105,0v29,0,49,16,49,48r0,47v0,16,-10,27,-26,32v16,5,26,16,26,32xm73,-144r60,0r0,-77r-60,0r0,77xm73,-33r60,0r0,-78r-60,0r0,78"},{"d":"73,-286r0,43r-47,0r0,-43r47,0xm73,-212r0,238v0,32,-21,48,-50,48r-33,0r0,-33r36,0r0,-253r47,0","w":98},{"d":"73,-286r0,360r-47,0r0,-360r47,0","w":98},{"d":"180,-163r0,114v0,32,-20,49,-49,49r-36,0r-22,-32r0,32r-47,0r0,-286r47,0r0,107r22,-33r36,0v29,0,49,17,49,49xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"180,-163r0,114v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49xm73,-33r60,0r0,-146r-60,0r0,146"},{"d":"377,-237r0,174v0,32,-21,49,-50,49r-96,0r0,-33r-22,33r-35,0v-29,0,-50,-17,-50,-49r0,-86v0,-32,21,-49,50,-49r38,0r19,28r0,-28r47,0r0,155r51,0r0,-210r-256,0r0,294r228,0r0,33r-226,0v-29,0,-49,-16,-49,-48r0,-263v0,-32,20,-49,49,-49r252,0v29,0,50,17,50,49xm171,-47r60,0r0,-118r-60,0r0,118","w":402},{"d":"180,-170r0,170r-47,0r0,-68r-60,0r0,68r-47,0r0,-170r56,-84r41,0xm73,-101r60,0r0,-70r-30,-45r-30,45r0,70xm96,-320r52,0r-23,44r-53,0"},{"d":"180,-33r0,33r-154,0r0,-90v0,-32,20,-49,49,-49r58,0r0,-82r-60,0r0,34r-47,0r0,-19v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48r0,59v0,32,-20,49,-49,49r-58,0r0,65r107,0"},{"d":"188,-144r0,34r-170,74r0,-41r117,-50r-117,-50r0,-41"},{"d":"180,-205r0,156v0,32,-21,49,-50,49r-57,0r0,35r-47,0r0,-19v0,-17,10,-28,26,-33v-16,-5,-26,-15,-26,-32r0,-157v0,-32,20,-48,49,-48r58,0r0,-35r47,0r0,19v0,17,-10,27,-26,32v16,5,26,16,26,33xm73,-33r60,0r0,-188r-60,0r0,188"},{"d":"287,-63r0,14v0,32,-20,49,-49,49r-55,0v-24,0,-43,-11,-50,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-25v0,-32,20,-48,49,-48r58,0r0,-57r-57,0r0,31r-45,0r0,-15v0,-32,20,-49,49,-49r48,0v14,0,23,4,28,11v5,-7,15,-11,29,-11r53,0v29,0,49,17,49,49r0,74r-107,0r0,56r60,0r0,-30r47,0xm180,-122r60,0r0,-57r-60,0r0,57xm73,-33r60,0r0,-56r-60,0r0,56","w":312},{"d":"180,-81r0,32v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48r0,33r-47,0r0,-48r-60,0r0,188r60,0r0,-48r47,0","w":192},{"d":"180,-163r0,114v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-114v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49xm73,-33r60,0r0,-146r-60,0r0,146xm84,-280r0,41r-38,0r0,-41r38,0xm160,-280r0,41r-38,0r0,-41r38,0"},{"d":"238,-33r0,33r-55,0v-29,0,-50,-17,-50,-49r0,-19r-60,0r0,68r-47,0r0,-170r56,-84r41,0r18,27v6,-18,22,-27,42,-27r55,0r0,33r-58,0r0,77r58,0r0,33r-58,0r0,78r58,0xm73,-101r60,0r0,-70r-30,-45r-30,45r0,70","w":251},{"d":"82,-286r0,360r-79,0r0,-33r32,0r0,-294r-32,0r0,-33r79,0","w":110},{"d":"180,-170r0,170r-47,0r0,-68r-60,0r0,68r-47,0r0,-170r56,-84r41,0xm73,-101r60,0r0,-70r-30,-45r-30,45r0,70xm95,-328r17,0v24,0,41,10,41,30r0,1v0,21,-17,30,-41,30r-17,0v-24,0,-41,-9,-41,-30r0,-1v0,-20,17,-30,41,-30xm83,-282r40,0r0,-31r-40,0r0,31"},{"d":"103,-134r0,35r-103,0r0,-35r103,0","w":102},{"d":"180,-206r0,157v0,32,-21,49,-49,49r-51,0v-29,0,-49,-17,-49,-49r0,-25r45,0r0,41r57,0r0,-104r-22,33r-36,0v-29,0,-49,-17,-49,-49r0,-53v0,-32,20,-48,49,-48r56,0v28,0,49,16,49,48xm73,-137r60,0r0,-84r-60,0r0,84"},{"d":"180,-206r0,157v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48xm73,-33r60,0r0,-188r-60,0r0,188"},{"d":"78,-280r24,44r-52,0r-24,-44r52,0","w":128},{"d":"73,-254r0,254r-47,0r0,-254r47,0xm41,-320r52,0r-24,44r-52,0","w":98},{"d":"124,-209r0,32r-44,0r0,177r-47,0r0,-177r-30,0r0,-32r30,0r0,-28v0,-32,20,-49,49,-49r42,0r0,32r-44,0r0,45r44,0","w":123},{"d":"131,-33r0,33r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0r0,33r-58,0r0,77r58,0r0,33r-58,0r0,78r58,0","w":144},{"d":"180,-206r0,68v0,32,-20,49,-49,49r-58,0r0,89r-47,0r0,-254r105,0v29,0,49,16,49,48xm73,-122r60,0r0,-99r-60,0r0,99","w":192},{"d":"180,-212r0,212r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-163r47,0r0,179r60,0r0,-179r47,0"},{"d":"180,-212r0,212r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-163r47,0r0,179r60,0r0,-179r47,0xm84,-280r0,41r-38,0r0,-41r38,0xm160,-280r0,41r-38,0r0,-41r38,0"},{"d":"180,-95r0,46v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-46v0,-16,10,-27,26,-32v-16,-5,-26,-16,-26,-32r0,-47v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48r0,47v0,16,-10,27,-26,32v16,5,26,16,26,32xm73,-144r60,0r0,-77r-60,0r0,77xm73,-33r60,0r0,-78r-60,0r0,78"},{"d":"188,-194r0,36r-170,0r0,-36r170,0xm188,-96r0,36r-170,0r0,-36r170,0"},{"d":"180,-206r0,157v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48xm73,-33r60,0r0,-188r-60,0r0,188xm84,-320r0,42r-38,0r0,-42r38,0xm160,-320r0,42r-38,0r0,-42r38,0"},{"d":"75,-53r0,47v0,32,-20,48,-49,48r-30,0r0,-32r32,0r0,-63r47,0","w":102},{"d":"53,-254r0,84r-40,0r0,-84r40,0xm146,-254r0,84r-40,0r0,-84r40,0","w":158},{"d":"142,-254r0,75r-69,104r0,75r-47,0r0,-75r69,-104r0,-75r47,0","w":168},{"d":"141,-286r43,78r-45,0r-29,-54r-29,54r-44,0r42,-78r62,0","w":220},{"d":"73,-254r0,169r-47,0r0,-169r47,0xm73,-53r0,53r-47,0r0,-53r47,0","w":98},{"d":"192,-94r0,32r-35,0r0,62r-48,0r0,-62r-106,0r0,-33r92,-159r46,0r-92,160r60,0r0,-78r48,0r0,78r35,0"},{"d":"75,-254r0,47v0,32,-20,48,-49,48r-30,0r0,-33r32,0r0,-62r47,0","w":102},{"d":"142,-75r0,75r-47,0r0,-75r-69,-104r0,-75r47,0r0,75","w":168},{"d":"287,-254r0,75r-70,104r0,75r-46,0r0,-75r69,-104r0,-75r47,0xm60,-117r60,0r0,-104r-60,0r0,104xm337,-33r60,0r0,-104r-60,0r0,104xm167,-206r0,73v0,32,-20,48,-49,48r-55,0v-29,0,-50,-16,-50,-48r0,-73v0,-32,21,-48,50,-48r55,0v29,0,49,16,49,48xm444,-121r0,72v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-72v0,-32,20,-49,49,-49r56,0v29,0,49,17,49,49","w":457},{"d":"180,-254r0,254r-47,0r0,-111r-60,0r0,111r-47,0r0,-254r47,0r0,110r60,0r0,-110r47,0"},{"d":"137,-212r47,0r-48,77r12,1v19,2,32,14,32,37r0,97r-47,0r0,-106r-60,0r0,106r-47,0r0,-286r47,0r0,180","w":192},{"d":"180,-102r0,36v0,30,-17,44,-42,47r-12,1r0,39r-46,0r0,-39r-12,-1v-25,-3,-42,-17,-42,-47r0,-19r47,0r0,38r60,0r0,-61r-58,0v-29,0,-49,-16,-49,-48r0,-36v0,-30,17,-45,42,-47r12,0r0,-40r46,0r0,40r12,0v25,2,42,18,42,47r0,19r-47,0r0,-38r-60,0r0,61r57,0v29,0,50,16,50,48"},{"d":"180,-95r0,46v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-25r47,0r0,41r60,0r0,-78r-53,0r0,-33r53,0r0,-77r-60,0r0,41r-47,0r0,-26v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48r0,47v0,16,-10,27,-26,32v16,5,26,16,26,32"},{"d":"157,-206r0,49v0,30,-17,46,-43,48r-15,0r0,24r-47,0r0,-59r59,0r0,-77r-61,0r0,34r-47,0r0,-19v0,-32,22,-48,50,-48r55,0v29,0,49,16,49,48xm99,-53r0,53r-47,0r0,-53r47,0","w":170},{"d":"180,-170r0,170r-47,0r0,-68r-60,0r0,68r-47,0r0,-170r56,-84r41,0xm73,-101r60,0r0,-70r-30,-45r-30,45r0,70"},{"d":"180,-163r0,163r-47,0r0,-32r-22,32r-36,0v-29,0,-49,-17,-49,-49r0,-25v0,-32,20,-48,49,-48r58,0r0,-57r-57,0r0,31r-45,0r0,-15v0,-32,20,-49,49,-49r51,0v29,0,49,17,49,49xm73,-33r60,0r0,-56r-60,0r0,56"},{"d":"137,-254r47,0r-52,114r15,0v19,2,33,15,33,38r0,102r-47,0r0,-111r-60,0r0,111r-47,0r0,-254r47,0r0,143","w":197},{"d":"107,41r0,33r-30,0v-29,0,-49,-16,-49,-48r0,-263v0,-32,21,-49,49,-49r30,0r0,33r-32,0r0,294r32,0","w":110},{"d":"73,-254r0,254r-47,0r0,-254r47,0","w":98},{"d":"180,-102r0,53v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r51,0v29,0,49,16,49,48r0,26r-45,0r0,-41r-57,0r0,104r22,-33r36,0v29,0,49,16,49,48xm73,-33r60,0r0,-84r-60,0r0,84"},{"d":"73,-286r0,43r-47,0r0,-43r47,0xm73,-212r0,212r-47,0r0,-212r47,0","w":98},{"d":"180,-254r0,205v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-205r47,0r0,221r60,0r0,-221r47,0xm96,-320r52,0r-23,44r-53,0"},{"d":"242,-209r0,32r-30,0r-20,100r38,0r0,32r-38,0r0,45r-47,0r0,-45r-60,0r0,45r-47,0r0,-45r-29,0r0,-32r29,0r21,-100r-38,0r0,-32r38,0r0,-45r46,0r0,45r60,0r0,-45r47,0r0,45r30,0xm146,-77r20,-100r-61,0r-21,100r62,0","w":250},{"d":"77,-254r0,248v0,32,-21,48,-50,48r-27,0r0,-32r30,0r0,-264r47,0","w":102},{"d":"180,-212r0,127r-57,85r-41,0r-56,-85r0,-127r47,0r0,129r30,45r30,-45r0,-129r47,0"},{"d":"180,-163r0,163r-47,0r0,-179r-60,0r0,179r-47,0r0,-286r47,0r0,107r22,-33r36,0v29,0,49,17,49,49"},{"d":"180,-107r0,58v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-25r47,0r0,41r60,0r0,-83r-105,0r0,-138r146,0r0,33r-99,0r0,65r56,0v29,0,49,17,49,49"},{"d":"180,-206r0,157v0,32,-20,49,-49,49r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48xm73,-33r60,0r0,-188r-60,0r0,188"},{"d":"67,-90r-11,0v-25,0,-43,-17,-43,-46r0,-118r47,0r0,131r60,0r0,-131r47,0r0,118v0,29,-18,46,-43,46r-10,0r0,90r-47,0r0,-90","w":180},{"d":"212,-170r0,33r-32,0r0,137r-105,0v-29,0,-49,-17,-49,-49r0,-72v0,-17,10,-27,26,-32v-16,-5,-26,-16,-26,-33r0,-20v0,-32,20,-48,49,-48r74,0r0,33r-76,0r0,51r60,0r0,-25r47,0r0,25r32,0xm73,-33r60,0r0,-104r-60,0r0,104","w":211},{"d":"107,41r0,33r-79,0r0,-360r79,0r0,33r-32,0r0,294r32,0","w":110},{"d":"180,-206r0,157v0,30,-17,45,-42,48r-12,0r0,43r-46,0r0,-43r-12,0v-25,-2,-42,-18,-42,-48r0,-157v0,-32,20,-48,49,-48r56,0v29,0,49,16,49,48xm73,-31r60,0r0,-190r-60,0r0,190"},{"d":"180,-254r0,254r-47,0r0,-77r-60,-90r0,167r-47,0r0,-254r47,0r0,26r60,90r0,-116r47,0"},{"d":"180,-95r0,95r-47,0r0,-111r-60,0r0,111r-47,0r0,-254r105,0v29,0,49,16,49,48r0,47v0,16,-10,27,-26,32v16,5,26,16,26,32xm73,-144r60,0r0,-77r-60,0r0,77"},{"d":"124,-212r0,44r-51,0r0,168r-47,0r0,-212r47,0r0,33r22,-33r29,0","w":124},{"d":"75,-212r0,53r-47,0r0,-53r47,0xm75,-53r0,47v0,32,-20,48,-49,48r-30,0r0,-32r32,0r0,-63r47,0","w":102},{"d":"131,-33r0,33r-56,0v-29,0,-49,-17,-49,-49r0,-157v0,-32,20,-48,49,-48r56,0r0,33r-58,0r0,77r58,0r0,33r-58,0r0,78r58,0xm78,-320r53,0r-24,44r-53,0","w":144},{"d":"287,-254r0,169r-36,85r-47,0r-48,-75r-47,75r-47,0r-36,-85r0,-169r47,0r0,169r20,43r40,-64r0,-148r47,0r0,148r40,64r20,-43r0,-169r47,0","w":312},{"d":"107,41r0,33r-30,0v-29,0,-49,-16,-49,-48r0,-115r-18,0r0,-33r18,0r0,-115v0,-32,20,-49,49,-49r30,0r0,33r-32,0r0,114v0,17,-10,28,-26,33v16,5,26,16,26,33r0,114r32,0","w":110},{"d":"75,-53r0,53r-47,0r0,-53r47,0","w":102},{"d":"131,-144r0,33r-58,0r0,111r-47,0r0,-206v0,-32,20,-48,49,-48r56,0r0,33r-58,0r0,77r58,0","w":144},{"d":"75,-212r0,53r-47,0r0,-53r47,0xm75,-53r0,53r-47,0r0,-53r47,0","w":102},{"d":"180,-206r0,157v0,32,-20,49,-49,49r-105,0r0,-254r105,0v29,0,49,16,49,48xm73,-33r60,0r0,-188r-60,0r0,188"},{"d":"287,-170r0,170r-47,0r0,-170r-20,-42r-40,64r0,148r-47,0r0,-148r-40,-64r-20,42r0,170r-47,0r0,-170r36,-84r47,0r47,74r48,-74r47,0","w":312},{"d":"180,-163r0,163r-47,0r0,-179r-60,0r0,179r-47,0r0,-212r47,0r0,33r22,-33r36,0v29,0,49,17,49,49"},{"d":"180,-254r0,84r-58,85r0,85r-47,0r0,-85r58,-85r0,-51r-60,0r0,51r-47,0r0,-84r154,0"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+119-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("f?yoqw#BFraHf*8EOwIm{?{ajV#oywaHjV}mFr.syGC~WQB^jX9c5?9oqIydO?.9jX9m51I|jX9c5?97.0PzrIauO>YcW>YCuo7o54Y7WmOuO>Ycy4)7b85KyGG=jX9m513zjX9c5?G|jX9c5?9=jX9c5?9B>X+0fV#ayo7o54Ym#4IFjX9c5?WQjX9c5?5Bf^8uO>Ycy?#uO>Ycy1#uO>YcywIuO>Ycy?y*Fs7^qBPuO>YcWQ3m`87o51P|kI7o51P8#|#uO>Ycy4yuO>YcWQyOjXYP*13I?X{}fN5#k`L.:>9GrjWyFquOgbK)^4|8ws[+_S~dHDc7mQBoV0z=!ECa;n9c5?5oN>|cWI7o51P4y?yI9XGuO>Ycyw5z`G7o51P|#^7u{8cDj^3BjX9m513=jIc8:?~|5QaPW9~[:>y+jX9c5?.){B+VF1G`r:yq99=:u4duO>YcWQ8jgm=?k|.#q4u^Ns#cq?8Bf*{^f:7+`>Y~u1o^NsY~q1ocNw78qwOBF*7s`r{Hy^=sqX8cFX5ag0BEFrW[W^=DFQBDj^KnksO0OocHf>C[`Q+Hq0}|uVa8qwa4yrIHWj}+OrouNw.Sf:LDF:=Byj#Bf?7DWVIBFraHNw)Du0.HWro8f:8wq0{[kV|Cq1~SfV|+yod4rV8Oj>ocrV8Ob:|[f:YK")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":205,"face":{"font-family":"BriemAkademiStd-Semibold","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 7 0 0 0 0 0 0 0","ascent":"338","descent":"-22","bbox":"-10 -328 444 74","underline-thickness":"18","underline-position":"-18","stemh":"33","stemv":"47","unicode-range":"U+0020-U+2026"}}));

/*ADD THIS*/
/* (c) 2008, 2009, 2010 Add This, LLC */
if(!window._ate){var _atd="www.addthis.com/",_atr="//s7.addthis.com/",_atn="//l.addthiscdn.com/",_euc=encodeURIComponent,_duc=decodeURIComponent,_atc={dr:0,ver:250,loc:0,enote:"",cwait:500,tamp:0.5,xamp:0,camp:1,vamp:1,famp:0.02,pamp:0.2,damp:1,abf:!!window.addthis_do_ab,unt:1};(function(){var E;try{E=window.location;if(E.protocol.indexOf("file")===0||E.protocol.indexOf("safari-extension")===0||E.protocol.indexOf("chrome-extension")===0){_atr="http:"+_atr}if(E.hostname.indexOf("localhost")!=-1){_atc.loc=1}}catch(J){}var H=navigator.userAgent.toLowerCase(),K=document,o=window,G=K.location,M={win:/windows/.test(H),xp:/windows nt 5.1/.test(H)||/windows nt 5.2/.test(H),osx:/os x/.test(H),chr:/chrome/.test(H),iph:/iphone/.test(H),dro:/android/.test(H),ipa:/ipad/.test(H),saf:/safari/.test(H),web:/webkit/.test(H),opr:/opera/.test(H),msi:(/msie/.test(H))&&!(/opera/.test(H)),ffx:/firefox/.test(H),ff2:/firefox\/2/.test(H),ie6:/msie 6.0/.test(H),ie7:/msie 7.0/.test(H),mod:-1},f={rev:"83680",bro:M,wlp:(E||{}).protocol,show:1,dl:G,upm:!!o.postMessage&&(""+o.postMessage).toLowerCase().indexOf("[native code]")!==-1,camp:_atc.camp-Math.random(),xamp:_atc.xamp-Math.random(),vamp:_atc.vamp-Math.random(),tamp:_atc.tamp-Math.random(),pamp:_atc.pamp-Math.random(),ab:"-",inst:1,wait:500,tmo:null,sub:!!window.at_sub,dbm:0,uid:null,spt:"static/r07/widget22.png",api:{},imgz:[],hash:window.location.hash};K.ce=K.createElement;K.gn=K.getElementsByTagName;window._ate=f;var t=function(r,p,q,d){if(!r){return q}if(r instanceof Array||(r.length&&(typeof r!=="function"))){for(var l=0,a=r.length,b=r[0];l<a;b=r[++l]){q=p.call(d||r,q,b,l,r)}}else{for(var e in r){q=p.call(d||r,q,r[e],e,r)}}return q},z=Array.prototype.slice,B=function(b){return z.apply(b,z.call(arguments,1))},A=function(a){return(""+a).replace(/(^\s+|\s+$)/g,"")},I=function(a,b){return t(B(arguments,1),function(e,d){return t(d,function(q,p,l){if(q){q[l]=p}return q},e)},a)},k=function(b,a){return t(b,function(l,e,d){d=A(d);if(d){l.push(_euc(d)+"="+_euc(A(e)))}return l},[]).join(a||"&")},i=function(b,a){return t((b||"").split(a||"&"),function(q,s){try{var p=s.split("="),l=A(_duc(p[0])),d=A(_duc(p.slice(1).join("=")));if(l){q[l]=d}}catch(r){}return q},{})},O=function(){var a=B(arguments,0),d=a.shift(),b=a.shift();return function(){return d.apply(b,a.concat(B(arguments,0)))}},F=function(b,e,a,d){if(!e){return}if(we){e[(b?"detach":"attach")+"Event"]("on"+a,d)}else{e[(b?"remove":"add")+"EventListener"](a,d,false)}},j=function(d,a,b){F(0,d,a,b)},g=function(d,a,b){F(1,d,a,b)},c={reduce:t,slice:B,strip:A,extend:I,toKV:k,fromKV:i,bind:O,listen:j,unlisten:g};f.util=c;I(f,c);(function(s,P,Q){var q,S=s.util;function w(V,U,X,T,W){this.type=V;this.triggerType=U||V;this.target=X||T;this.triggerTarget=T||X;this.data=W||{}}S.extend(w.prototype,{constructor:w,bubbles:false,preventDefault:S.noop,stopPropagation:S.noop,clone:function(){return new this.constructor(this.type,this.triggerType,this.target,this.triggerTarget,S.extend({},this.data))}});function l(T,U){this.target=T;this.queues={};this.defaultEventType=U||w}function a(T){var U=this.queues;if(!U[T]){U[T]=[]}return U[T]}function r(T,U){this.getQueue(T).push(U)}function e(U,V){var W=this.getQueue(U),T=W.indexOf(V);if(T!==-1){W.splice(T,1)}}function b(T,X,W,V){var U=this;if(!V){setTimeout(function(){U.dispatchEvent(new U.defaultEventType(T,T,X,U.target,W))},10)}else{U.dispatchEvent(new U.defaultEventType(T,T,X,U.target,W))}}function R(U){for(var V=0,X=U.target,W=this.getQueue(U.type),T=W.length;V<T;V++){W[V].call(X,U.clone())}}function d(U){if(!U){return}for(var T in p){U[T]=S.bind(p[T],this)}return U}var p={constructor:l,getQueue:a,addEventListener:r,removeEventListener:e,dispatchEvent:R,fire:b,decorate:d};S.extend(l.prototype,p);s.event={PolyEvent:w,EventDispatcher:l}})(f,f.api,f);f.ed=new f.event.EventDispatcher(f);var m={isBound:0,isReady:0,readyList:[],onReady:function(){if(!m.isReady){m.isReady=1;var a=m.readyList.concat(window.addthis_onload||[]);for(var b=0;b<a.length;b++){a[b].call(window)}m.readyList=[]}},addLoad:function(a){var b=o.onload;if(typeof o.onload!="function"){o.onload=a}else{o.onload=function(){if(b){b()}a()}}},bindReady:function(){if(v.isBound||_atc.xol){return}v.isBound=1;if(K.addEventListener&&!M.opr){K.addEventListener("DOMContentLoaded",v.onReady,false)}var a=window.addthis_product;if(a&&a.indexOf("f")>-1){v.onReady();return}if(M.msi&&window==top){(function(){if(v.isReady){return}try{K.documentElement.doScroll("left")}catch(d){setTimeout(arguments.callee,0);return}v.onReady()})()}if(M.opr){K.addEventListener("DOMContentLoaded",function(){if(v.isReady){return}for(var d=0;d<K.styleSheets.length;d++){if(K.styleSheets[d].disabled){setTimeout(arguments.callee,0);return}}v.onReady()},false)}if(M.saf){var b;(function(){if(v.isReady){return}if(K.readyState!="loaded"&&K.readyState!="complete"){setTimeout(arguments.callee,0);return}if(b===undefined){var d=K.gn("link");for(var e=0;e<d.length;e++){if(d[e].getAttribute("rel")=="stylesheet"){b++}}var l=K.gn("style");b+=l.length}if(K.styleSheets.length!=b){setTimeout(arguments.callee,0);return}v.onReady()})()}v.addLoad(v.onReady)},append:function(b,a){v.bindReady();if(v.isReady){b.call(window,[])}else{v.readyList.push(function(){return b.call(window,[])})}}},v=m,N=f;I(f,{plo:[],lad:function(a){f.plo.push(a)}});(function(d,l,e){var a=window;d.pub=function(){return _euc((window.addthis_config||{}).username||window.addthis_pub||"")};d.usu=function(p,q){if(!a.addthis_share){a.addthis_share={}}if(q||p!=addthis_share.url){addthis_share.imp_url=0}};d.rsu=function(){var r=document,q=r.title,p=r.location?r.location.href:"";if(_atc.ver>=250&&addthis_share.imp_url&&p&&p!=a.addthis_share.url&&!(f.util.ivc((r.location.hash||"").substr(1).split(",").shift()))){a.addthis_share.url=a.addthis_url=p;a.addthis_share.title=a.addthis_title=q;return 1}return 0};d.igv=function(p,q){if(!a.addthis_config){a.addthis_config={username:a.addthis_pub}}else{if(addthis_config.data_use_cookies===false){_atc.xck=1}}if(!a.addthis_share){a.addthis_share={}}if(!addthis_share.url){if(!a.addthis_url&&addthis_share.imp_url===undefined){addthis_share.imp_url=1}addthis_share.url=(a.addthis_url||p||"").split("#{").shift()}if(!addthis_share.title){addthis_share.title=(a.addthis_title||q||"").split("#{").shift()}};if(!_atc.ost){if(!a.addthis_conf){a.addthis_conf={}}for(var b in addthis_conf){_atc[b]=addthis_conf[b]}_atc.ost=1}})(f,f.api,f);(function(b,p,e){var r,q=document,a=b.util;b.ckv=a.fromKV(q.cookie,";");function l(d){return a.fromKV(q.cookie,";")[d]}if(!b.cookie){b.cookie={}}b.cookie.rck=l})(f,f.api,f);(function(e,l,q){var d,P=e.util,s=4294967295,b=new Date().getTime();function r(){return((b/1000)&s).toString(16)+("00000000"+(Math.floor(Math.random()*(s+1))).toString(16)).slice(-8)}function a(Q){return w(Q)?(new Date((parseInt(Q.substr(0,8),16)*1000))):new Date()}function p(Q,S){var R=a(Q);return(((new Date()).getTime()-R.getTime())>S*1000)}function w(Q){return Q&&Q.match(/^[0-9a-f]{16}$/)}P.cuid=r;P.ivc=w;P.ioc=p})(f,f.api,f);(function(p,Y,aa){var ab=p,P=new Date().getTime(),X=function(){return Math.floor(Math.random()*4294967295).toString(36)},ac=function(){return Math.floor((new Date().getTime()-P)/100).toString(16)},w=function(a){return"CXNID=2000001.521545608054043907"+(a||2)+"NXC"},q=0,s=function(a){if(q===0){ab.sid=q=(a||ab.util.cuid())}return q},e=null,d=function(a,ad){if(e!==null){clearTimeout(e)}if(a){e=f.sto(function(){ad(false)},f.wait)}},U=function(ad,a){return _euc(ad)+"="+_euc(a)+";"+ac()},T=1,r=function(ad,af){var a=(ad||"").split("?"),ad=a.shift(),ae=(a.pop()||"").split("&");return af(ad,ae)},Q=function(a,ad,af,ae){if(!ad){ad={}}if(!ad.remove){ad.remove=[]}ad.remove.push("sms_ss");ad.remove.push("at_xt");if(ad.remove){a=Z(a,ad.remove)}if(ad.clean){a=R(a)}if(ad.add){a=S(a,ad.add,af,ae)}return a},S=function(af,ah,ag,ad){var a={};if(ah){for(var ae in ah){if(af.indexOf(ae+"=")>-1){continue}a[ae]=V(ah[ae],af,ag,ad)}ah=f.util.toKV(a)}return af+(ah.length?((af.indexOf("?")>-1?"&":"?")+ah):"")},V=function(ae,ad,af,a){var af=af||addthis_share;return ae.replace(/{{service}}/g,_euc(a||"")).replace(/{{code}}/g,_euc(a||"")).replace(/{{title}}/g,_euc(af.title)).replace(/{{url}}/g,_euc(ad))},Z=function(ad,af){var a={},af=af||[];for(var ae=0;ae<af.length;ae++){a[af[ae]]=1}return r(ad,function(ag,aj){var ak=[];if(aj){for(var ah in aj){if(typeof(aj[ah])=="string"){var ai=(aj[ah]||"").split("=");if(ai.length!=2&&aj[ah]){ak.push(aj[ah])}else{if(a[ai[0]]){continue}else{if(aj[ah]){ak.push(aj[ah])}}}}}ag+=(ak.length?("?"+ak.join("&")):"")}return ag})},W=function(a){var ad=a.split("#").pop().split(",").shift().split("=").pop();if(f.util.ivc(ad)){return a.split("#").pop().split(",")}return[""]},l=function(a){var ad=W(a).shift().split("=").pop();if(f.util.ivc(ad)){return a.split("#").shift()}return a},R=function(a){return r(a,function(ae,ah){var ad=ae.indexOf(";jsessionid"),ai=[];if(ad>-1){ae=ae.substr(0,ad)}if(ah){for(var af in ah){if(typeof(ah[af])=="string"){var ag=(ah[af]||"").split("=");if(ag.length==2){if(ag[0].indexOf("utm_")===0||ag[0]=="gclid"||ag[0]=="sms_ss"){continue}}if(ah[af]){ai.push(ah[af])}}}ae+=(ai.length?("?"+ai.join("&")):"")}return ae})},b=function(){return"AT-"+(ab.pub?(typeof(ab.pub)=="function"?ab.pub():ab.pub):"unknown")+"/-/"+ab.ab+"/"+s()+"/"+(T++)+(ab.uid!==null?"/"+ab.uid:"")};if(!f.track){f.track={}}p.util.extend(f.track,{cst:w,fcv:U,ran:X,rup:Z,aup:S,cof:l,gof:W,clu:R,mgu:Q,ssid:s,sta:b,sxm:d})})(f,f.api,f);(function(){var V=document,W=f,s=[],r=null,R=[],w=function(){var a;while(a=R.pop()){U(a)}},l=[],T=function(d){d=d.split("-").shift();for(var a=0;a<l.length;a++){if(l[a]==d){return}}l.push(d)},P=function(){},X=null,q=function(){var a=V.getElementById("_atssh");if(!a){a=V.ce("div");a.style.visibility="hidden";a.id="_atssh";W.opp(a.style);V.body.insertBefore(a,V.body.firstChild)}return a},b=function(a){var aa,d=Math.floor(Math.random()*1000),Z=q();if(!W.bro.msi){aa=V.ce("iframe");aa.id="_atssh"+d}else{if(W.bro.ie6&&!a&&V.location.protocol.indexOf("https")==0){a="javascript:''"}Z.innerHTML='<iframe id="_atssh'+d+'" width="1" height="1" name="_atssh'+d+'" '+(a?'src="'+a+'"':"")+">";aa=V.getElementById("_atssh"+d)}W.opp(aa.style);aa.frameborder=aa.style.border=0;aa.style.top=aa.style.left=0;return aa},Q=function(a){if(a&&a.data&&a.data.service){if(!W.upm){if(W.dcp){return}W.dcp=1}U({gen:300,sh:a.data.service})}},e=function(d){var Z={},ac=d.data||{},aa=ac.svc,ab=ac.cmo,a=ac.pco,ad=ac.cso;if(aa){Z.sh=aa}if(ab){Z.cm=ab}if(ad){Z.cs=ad}if(a){Z.spc=a}Y("sh","3",null,Z)},U=function(d){var aa=W.dr,a=(W.rev||"");if(!d){return}if(aa){aa=aa.split("http://").pop()}d.xck=_atc.xck?1:0;d.xxl=1;d.sid=W.track.ssid();d.pub=W.pub();d.ssl=W.ssl||0;d.du=W.tru(W.du||W.dl.href);if(W.dt){d.dt=W.dt}if(W.cb){d.cb=W.cb}d.lng=W.lng();d.ver=_atc.ver;if(!W.upm&&W.uid){d.uid=W.uid}d.pc=d.spc||l.join(",");if(aa){d.dr=W.tru(aa)}if(W.dh){d.dh=W.dh}if(a){d.rev=a}if(W.xfr){if(W.upm){if(X){X.contentWindow.postMessage(k(d),"*")}}else{var ab=q(),Z="static/r07/sh25.html"+(false?"?t="+new Date().getTime():"");if(X){ab.removeChild(ab.firstChild)}X=b();X.src=_atr+Z+"#"+k(d);ab.appendChild(X)}}else{R.push(d)}},Y=function(Z,ac,a,aa,ab){if(!window.at_sub&&!_atc.xtr){var d=aa||{};d.evt=Z;if(a){d.ext=a}r=d;if(ab===1){p(true)}else{W.track.sxm(true,p)}}},S=function(d,a){s.push(W.track.fcv(d,a));W.track.sxm(true,p)},p=function(aa){var Z=W.dl?W.dl.hostname:"";if(s.length>0||r){W.track.sxm(false,p);if(_atc.xtr){return}var d=r||{};d.ce=s.join(",");s=[];r=null;U(d);if(aa){var a=V.ce("iframe");a.id="_atf";f.opp(a.style);V.body.appendChild(a);a=V.getElementById("_atf")}}};W.ed.addEventListener("addthis-internal.compact",e);W.ed.addEventListener("addthis.menu.share",Q);if(!W.track){W.track={}}W.util.extend(W.track,{pcs:l,apc:T,cev:S,ctf:b,gtf:q,qtp:function(a){R.push(a)},stf:function(a){X=a},trk:U,xtp:w})})();I(f,{_rec:[],xfr:!f.upm||!f.bro.ffx,pmh:function(d){if(d.origin.slice(-12)==".addthis.com"){if(!d.data){return}var b=i(d.data),a=f._rec;for(var l=0;l<a.length;l++){a[l](b)}}}});I(f,{lng:function(){return window.addthis_language||(window.addthis_config||{}).ui_language||(f.bro.msi?navigator.userLanguage:navigator.language)||"en"},iwb:function(a){var b={th:1,pl:1,sl:1,gl:1,hu:1,is:1,nb:1,se:1,su:1,sw:1};return !!b[a]},ivl:function(a){var b={af:1,afr:"af",ar:1,ara:"ar",az:1,aze:"az",be:1,bye:"be",bg:1,bul:"bg",bn:1,ben:"bn",bs:1,bos:"bs",ca:1,cat:"ca",cs:1,ces:"cs",cze:"cs",cy:1,cym:"cy",da:1,dan:"da",de:1,deu:"de",ger:"de",el:1,gre:"el",ell:"ell",en:1,eo:1,es:1,esl:"es",spa:"spa",et:1,est:"et",eu:1,fa:1,fas:"fa",per:"fa",fi:1,fin:"fi",fo:1,fao:"fo",fr:1,fra:"fr",fre:"fr",ga:1,gae:"ga",gdh:"ga",gl:1,glg:"gl",he:1,heb:"he",hi:1,hin:"hin",hr:1,cro:"hr",hu:1,hun:"hu",id:1,ind:"id",is:1,ice:"is",it:1,ita:"it",ja:1,jpn:"ja",ko:1,kor:"ko",ku:1,lb:1,ltz:"lb",lt:1,lit:"lt",lv:1,lav:"lv",mk:1,mac:"mk",mak:"mk",ml:1,mn:1,ms:1,msa:"ms",may:"ms",nb:1,nl:1,nla:"nl",dut:"nl",no:1,nds:1,nn:1,nno:"no",oc:1,oci:"oc",pl:1,pol:"pl",ps:1,pt:1,por:"pt",ro:1,ron:"ro",rum:"ro",ru:1,rus:"ru",sk:1,slk:"sk",slo:"sk",sl:1,slv:"sl",sq:1,alb:"sq",sr:1,se:1,si:1,ser:"sr",su:1,sv:1,sve:"sv",sw:1,swe:"sv",ta:1,tam:"ta",te:1,teg:"te",th:1,tha:"th",tl:1,tgl:"tl",tr:1,tur:"tr",tt:1,uk:1,ukr:"uk",ur:1,urd:"ur",vi:1,vec:1,vie:"vi","zh-hk":1,"chi-hk":"zh-hk","zho-hk":"zh-hk","zh-tr":1,"chi-tr":"zh-tr","zho-tr":"zh-tr","zh-tw":1,"chi-tw":"zh-tw","zho-tw":"zh-tw",zh:1,chi:"zh",zho:"zh"};if(b[a]){return b[a]}a=a.split("-").shift();if(b[a]){if(b[a]===1){return a}else{return b[a]}}return 0},gvl:function(a){var b=f.ivl(a)||"en";if(b===1){b=a}return b},alg:function(d,b){var a=f.gvl((d||f.lng()).toLowerCase());if(a.indexOf("en")!==0&&(!f.pll||b)){f.pll=f.ajs("static/r07/lang06/"+a+".js")}}});I(f,{trim:function(a,b){try{a=a.replace(/^[\s\u3000]+|[\s\u3000]+$/g,"");if(b){a=_euc(a)}}catch(b){}return a||""},trl:[],tru:function(b,a){var d="";if(b){d=b.substr(0,300);if(d!=b){f.trl.push(a)}}return d},sto:function(b,a){return setTimeout(b,a)},opp:function(a){a.width=a.height="1px";a.position="absolute";a.zIndex=100000},jlr:{},ajs:function(b,a){if(!f.jlr[b]){var e=K.ce("script"),d=K.gn("head")[0]||K.documentElement;e.src=(a?"":_atr)+b;d.insertBefore(e,d.firstChild);f.jlr[b]=1;return e}return 1},jlo:function(){try{var r=document,b=f,q=b.lng(),l=function(d){var a=new Image();f.imgz.push(a);a.src=d};b.alg(q);if(!b.pld){if(b.bro.ie6){l(_atr+b.spt);l(_atr+"static/t00/logo1414.gif");l(_atr+"static/t00/logo88.gif");if(window.addthis_feed){l("static/r05/feed00.gif",1)}}if(b.pll&&!window.addthis_translations){b.sto(function(){b.pld=b.ajs("static/r07/menu62.js")},10)}else{b.pld=b.ajs("static/r07/menu62.js")}}}catch(p){}},ao:function(b,p,l,d,e,a){f.lad(["open",b,p,l,d,e,a]);f.jlo();return false},ac:function(){},as:function(b,d,a){f.lad(["send",b,d,a]);f.jlo()}});(function(e,l,q){var w=document,r=1,a=["cbea","kkk","zvys","phz"];function b(d){return d.replace(/[a-zA-Z]/g,function(Q){return String.fromCharCode((Q<="Z"?90:122)>=(Q=Q.charCodeAt(0)+13)?Q:Q-26)})}for(var p=0;p<a.length;p++){a[p]=" "+b(a[p])+" "}function s(Q){var S=0,R;Q=(Q||"").toLowerCase()+" ";if(!Q){return S}for(var d=0;d<a.length;d++){R=a[d];if(Q==R.replace(/ /g,"")||Q.indexOf(R)>-1||Q.indexOf(R.replace(/^ /g,""))===0){S|=r}}return S}function P(){var T=(o.addthis_title||w.title),Q=s(T),S=w.all?w.all.tags("META"):w.getElementsByTagName?w.getElementsByTagName("META"):new Array();if(S&&S.length){for(var R=0;R<S.length;R++){var d=S[R]||{},V=(d.name||"").toLowerCase(),U=d.content;if(V=="description"||V=="keywords"){Q|=s(U)}}}return Q}if(!e.ad){e.ad={}}e.ad.cla=P})(f,f.api,f);(function(p,q,r){var e,w=document,R=p.util,b=p.event.EventDispatcher,P=25,l=[];function s(U,W,T){var d=[];function d(){d.push(arguments)}function V(){T[U]=W;while(d.length){W.apply(T,d.shift())}}d.ready=V;return d}function Q(U){if(U&&U instanceof a){l.push(U)}for(var d=0;d<l.length;){var T=l[d];if(T&&T.test()){l.splice(d,1);a.fire("load",T,{resource:T})}else{d++}}if(l.length){setTimeout(Q,P)}}function a(W,T,V){var d=this,U=new b(d);U.decorate(U).decorate(d);this.ready=false;this.loading=false;this.id=W;this.url=T;if(typeof(V)==="function"){this.test=V}else{this.test=function(){return(!!_window[V])}}a.addEventListener("load",function(X){var Y=X.resource;if(!Y||Y.id!==d.id){return}d.loading=false;d.ready=true;U.fire(X.type,Y,{resource:Y})})}R.extend(a.prototype,{load:function(){if(this.url.substr(this.url.length-4)==".css"){var d=w.ce("link"),T=(w.gn("head")[0]||w.documentElement);d.rel="stylesheet";d.type="text/css";d.href=this.url;d.media="all";T.insertBefore(d,T.firstChild)}else{f.ajs(this.url,1)}this.loading=true;a.monitor(this)}});var S=new b(a);S.decorate(S).decorate(a);R.extend(a,{known:{jquery:new a("jquery","//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js","jQuery"),ga:new a("ga","//www.google-analytics.com/ga.js",function(){var d=_window._gat;return !!(d&&(typeof(d._getTracker)==="function"))})},loading:l,monitor:Q});p.resource={Resource:a,ApiQueueFactory:s}})(f,f.api,f);var o=window,L=o.addthis_config||{},n=new f.resource.Resource("widgetcss",_atr+"static/r07/widget46.css",function(){return true});function h(){try{if(_atc.xol&&!_atc.xcs){n.load()}var ao=f,w=ao.bro.msi,b=0,Z=K.title,aa=K.referer||K.referrer||"",Y=G?G.href:null,V=(Y||"").split("#").shift(),am=G&&G.hash&&f.util.ivc(G.hash.substr(1).split(",").shift().substr(6))?G.hash.substr(7):"",R=Y,aj=G.hostname,an=Y?Y.indexOf("sms_ss"):-1,ah=Y?Y.indexOf("at_xt"):-1,d=Y?Y.indexOf("at_st"):-1,ae=(f.lng().split("-")).shift(),s=(G.href.indexOf(_atr)==-1&&!ao.sub),Q=0,af=K.gn("link"),p=_atr+"static/r07/sh25.html#",ac=Y&&Y.indexOf("https")===0?1:0,S,aq,X=function(){if(!f.track.pcs.length){f.track.apc(window.addthis_product||("men-"+_atc.ver))}aq.pc=f.track.pcs.join(",")};if(window.addthis_product){f.track.apc(addthis_product)}for(var ag=0;ag<af.length;ag++){var ad=af[ag];if(ad.rel&&ad.rel=="canonical"&&ad.href){if(ad.href.indexOf("http")!==0){R=(Y||"").split("//").pop().split("/");if(ad.href.indexOf("/")===0){R=R.shift()+ad.href}else{R.pop();R=R.join("/")+"/"+ad.href}R=G.protocol+"//"+R}else{R=ad.href}f.usu(0,1);break}}R=R.split("#{").shift();ao.igv(R,K.title||"");var U=addthis_share.view_url_transforms||addthis_share.track_url_transforms||addthis_share.url_transforms;if(U){R=f.track.mgu(R,U)}ao.smd={};ao.dr=ao.tru(aa,"fr");ao.du=ao.tru(R,"fp");ao.dt=Z=o.addthis_share.title;ao.cb=ao.ad.cla();ao.dh=G.hostname;ao.ssl=ac;aq={cb:ao.cb,ab:ao.ab,dh:ao.dh,dr:ao.dr,du:ao.du,dt:Z,inst:ao.inst,lng:ao.lng(),pc:o.addthis_product||"men",pub:ao.pub(),ssl:ac,sid:f.track.ssid(),srd:_atc.damp,srf:_atc.famp,srp:_atc.pamp,srx:_atc.xamp,ver:_atc.ver,xck:_atc.xck||0};if(ao.trl.length){aq.trl=ao.trl.join(",")}if(ao.rev){aq.rev=ao.rev}if(am){Q=parseInt(am.split(",").pop())+1;var W=[],T=am.split(","),ap=T.shift();if(ao.util.ioc(ap,5)&&ao.vamp>=0&&!ao.sub){ao.smd.rsi=ap;ao.smd.gen=Q;W.push(ao.track.fcv("plv",Math.round(1/_atc.vamp)));W.push(ao.track.fcv("rsi",ap));W.push(ao.track.fcv("gen",Q));aq.ce=W.join(",")}}else{if(Y.indexOf(_atd+"book")==-1&&V!=aa){var W=[],ab,ap,q,ai;if(ah>-1){ai=Y.substr(ah).split("&").shift().split("#").shift().split("=").pop().split(",");ab=ai.shift()}else{if(d>-1){ai=Y.substr(d).split("&").shift().split("#").shift().split("=").pop().split(",");ap=ai.shift()}}if(ai&&ai.length){Q=parseInt(ai.pop())+1}if(an>-1){ai=Y.substr(an);q=ai.split("&").shift().split("#").shift().split("=").pop();aq.sr=q}if(ao.vamp>=0&&!ao.sub&&(ab||ap||q)){if(ab){ao.smd.rxi=ab}if(ap){ao.smd.rsi=ap}ao.smd.gen=Q;W.push(ao.track.fcv("plv",Math.round(1/_atc.vamp)));if(q){W.push(ao.track.fcv("rsc",q))}if(ab){W.push(ao.track.fcv("rxi",ab))}else{if(ap){W.push(ao.track.fcv("rsi",ap))}}if(ap||ab){W.push(ao.track.fcv("gen",Q))}aq.ce=W.join(",")}}}if(ao.upm){aq.xd=1;if(f.bro.ffx){aq.xld=1}}if(addthis_config.data_track_copypaste&&V!=aa&&(Y.indexOf("#")==-1||am)){var P;if(am){var T=am.split(","),r=parseInt(T[1]);P=T[0];if(r>Q){Q=r+1}}if(!am||ao.util.ioc(P,5)){G.hash="at_st="+f.track.ssid()+","+Q}}if(s){if(ao.upm){if(w){f.sto(function(){X();S=ao.track.ctf(p+k(aq));ao.track.stf(S)},f.wait);o.attachEvent("onmessage",ao.pmh)}else{S=ao.track.ctf();o.addEventListener("message",ao.pmh,false)}if(f.bro.ffx){S.src=p;f.track.qtp(aq)}else{if(!w){f.sto(function(){X();S.src=p+k(aq)},f.wait)}}}else{S=ao.track.ctf();f.sto(function(){X();S.src=p+k(aq)},f.wait)}if(S){S=ao.track.gtf().appendChild(S);ao.track.stf(S)}}if(o.addthis_language||L.ui_language){ao.alg()}if(ao.plo.length>0){ao.jlo()}}catch(ak){window.console&&console.log("lod",ak)}}o._ate=N;o._adr=v;N._rec.push(function(b){if(b.ssh){var a=window.addthis_ssh=_duc(b.ssh);N.gssh=1;N._ssh=a.split(",")}if(b.uid){N.uid=b.uid}if(b.dbm){N.dbm=b.dbm}if(b.rdy){N.xfr=1;N.track.xtp();return}});try{var D=K.gn("script"),u=D[D.length-1],x=u.src.indexOf("#")>-1?u.src.replace(/^[^\#]+\#?/,""):u.src.replace(/^[^\?]+\??/,""),y=i(x);if(y.pub||y.username){o.addthis_pub=_duc(y.pub?y.pub:y.username)}if(o.addthis_pub&&o.addthis_config){o.addthis_config.username=o.addthis_pub}if(y.domready){_atc.dr=1}if(y.async){_atc.xol=1}if(_atc.ver===120){var C="atb"+f.util.cuid();K.write('<span id="'+C+'"></span>');f.igv();f.lad(["span",C,addthis_share.url||"[url]",addthis_share.title||"[title]"])}if(o.addthis_clickout){f.lad(["cout"])}if(!_atc.xol&&!_atc.xcs&&L.ui_use_css!==false){n.load()}}catch(J){if(window.console){console.log("main",J)}}m.bindReady();m.append(h);(function(p,s,w){var P=document,W=function(){var X=P.gn("link"),Z={};for(var Y=0;Y<X.length;Y++){var d=X[Y];if(d.href&&d.rel){Z[d.rel]=d.href}}return Z},T=W(),l=function(){var d=P.location.protocol;if(d=="file:"){d="http:"}return d+"//"+_atd},V=function(){if(f.dr){return"&pre="+_euc(f.dr)}else{return""}},e=function(Y,Z,X,d){return l()+(Z?"feed.php":"bookmark.php")+"?v="+(_atc.ver)+"&winname=addthis&"+r(Y,Z,X,d)+"&"+f.track.cst(4)+V()+"&tt=0"+(Y==="more"&&f.bro.ipa?"&imore=1":"")},r=function(an,ad,aq,aw){var aj=f.trim,at=window,ao=f.pub(),ah=window._atw||{},ai=(aq&&aq.url?aq.url:(ah.share&&ah.share.url?ah.share.url:addthis_url)),av,ac=function(az){if(ai&&ai!=""){var d=ai.indexOf("#at"+az);if(d>-1){ai=ai.substr(0,d)}}};if(!aw){aw=ah.conf||{}}else{for(var ap in ah.conf){if(!(aw[ap])){aw[ap]=ah.conf[ap]}}}if(!aq){aq=ah.share}else{for(var ap in ah.share){if(!(aq[ap])){aq[ap]=ah.share[ap]}}}if(f.rsu()){aq.url=window.addthis_url;aq.title=window.addthis_title;ai=aq.url}av=aw.services_custom;ac("pro");ac("opp");ac("cle");ac("clb");ac("abc");if(ai.indexOf("addthis.com/static/r07/ab")>-1){ai=ai.split("&");for(var ar=0;ar<ai.length;ar++){var al=ai[ar].split("=");if(al.length==2){if(al[0]=="url"){ai=al[1];break}}}}if(av instanceof Array){for(var ar=0;ar<av.length;ar++){if(av[ar].code==an){av=av[ar];break}}}var au=((aq.templates&&aq.templates[an])?aq.templates[an]:""),Y=((aq.modules&&aq.modules[an])?aq.modules[an]:""),aa=aq.share_url_transforms||aq.url_transforms||{},ag=aq.track_url_transforms||aq.url_transforms,ay=((aa&&aa.shorten&&aq.shorteners)?(typeof(aa.shorten)=="string"?aa.shorten:(aa.shorten[an]||aa.shorten["default"]||"")):""),ae="",am=(aw.product||at.addthis_product||("men-"+_atc.ver)),af="",ak=f.track.gof(ai),ax=ak.length==2?ak.shift().split("=").pop():"",X=ak.length==2?ak.pop():"";if(aq.email_vars){for(var ap in aq.email_vars){af+=(af==""?"":"&")+_euc(ap)+"="+_euc(aq.email_vars[ap])}}if(ah.mck>1||(ah.mck==1&&an!=="email")){am=am.replace("men","max")}if(aa&&aa.shorten&&aq.shorteners){for(var ap in aq.shorteners){for(var Z in aq.shorteners[ap]){ae+=(ae.length?"&":"")+_euc(ap+"."+Z)+"="+_euc(aq.shorteners[ap][Z])}}}ai=f.track.cof(ai);ai=f.track.mgu(ai,aa,aq,an);if(ag){aq.trackurl=f.track.mgu(aq.trackurl||ai,ag,aq,an)}var ab="pub="+ao+"&source="+am+"&lng="+(f.lng()||"xx")+"&s="+an+(aw.ui_508_compliant?"&u508=1":"")+(ad?"&h1="+aj((aq.feed||aq.url).replace("feed://",""),1)+"&t1=":"&url="+aj(ai,1)+"&title=")+aj(aq.title||at.addthis_title,1)+(_atc.ver<200?"&logo="+aj(at.addthis_logo,1)+"&logobg="+aj(at.addthis_logo_background,1)+"&logocolor="+aj(at.addthis_logo_color,1):"")+"&ate="+f.track.sta()+(window.addthis_ssh&&(addthis_ssh==an||addthis_ssh.search(new RegExp("(?:^|,)("+an+")(?:$|,)"))>-1)?"&ips=1":"")+(f.uid?"&uid="+_euc(f.uid):"")+(aq.email_template?"&email_template="+_euc(aq.email_template):"")+(af?"&email_vars="+_euc(af):"")+(ay?"&shortener="+_euc(typeof(ay)=="array"?ay.join(","):ay):"")+(ay&&ae?"&"+ae:"")+((aq.passthrough||{})[an]?"&passthrough="+aj(f.util.toKV(aq.passthrough[an]),1):"")+(aq.description?"&description="+aj(aq.description,1):"")+(aq.html?"&html="+aj(aq.html,1):(aq.content?"&html="+aj(aq.content,1):""))+(aq.trackurl&&aq.trackurl!=ai?"&trackurl="+aj(aq.trackurl,1):"")+(aq.screenshot?"&screenshot="+aj(aq.screenshot,1):"")+(aq.swfurl?"&swfurl="+aj(aq.swfurl,1):"")+(aq.iframeurl?"&iframeurl="+aj(aq.iframeurl,1):"")+(aq.width?"&width="+aq.width:"")+(aq.height?"&height="+aq.height:"")+(aw.data_track_p32?"&p32="+aw.data_track_p32:"")+(aw.data_track_clickback||aw.data_track_linkback||!ao||ao=="AddThis"?"&sms_ss=1&at_xt=1":"")+((av&&av.url)?"&acn="+_euc(av.name)+"&acc="+_euc(av.code)+"&acu="+_euc(av.url):"")+(f.smd?(f.smd.rxi?"&rxi="+f.smd.rxi:"")+(f.smd.rsi?"&rsi="+f.smd.rsi:"")+(f.smd.gen?"&gen="+f.smd.gen:""):((ax?"&rsi="+ax:"")+(X?"&gen="+X:"")))+(aq.xid?"&xid="+aj(aq.xid,1):"")+(au?"&template="+aj(au,1):"")+(Y?"&module="+aj(Y,1):"")+(aw.ui_cobrand?"&ui_cobrand="+aj(aw.ui_cobrand,1):"")+(aw.ui_header_color?"&ui_header_color="+aj(aw.ui_header_color,1):"")+(aw.ui_header_background?"&ui_header_background="+aj(aw.ui_header_background,1):"");return ab},R=function(d,ac,aa,ad,X){var ab=f.pub(),Z=ad||ac.url||"",Y=ac.xid||f.util.cuid();if(Z.toLowerCase().indexOf("http%3a%2f%2f")===0){Z=_duc(Z)}ac.xid=Y;if(X){(new Image()).src=e(d,0,ac,aa)}delete ac.xid;return Z+(aa.data_track_clickback||aa.data_track_linkback||!ab||ab=="AddThis"?((Z.indexOf("?")>-1)?"&":"?")+("sms_ss="+d)+("&at_xt="+Y+","+((f.smd||{}).gen||0)):"")},Q=function(aa,Y,d){var Y=Y||{},Z=aa.share_url_transforms||aa.url_transforms||{},X=f.track.cof(f.track.mgu(aa.url,Z,aa,"mailto"));return"mailto:?subject="+_euc(aa.title?aa.title:X)+"&body="+_euc(R("mailto",aa,Y,X,d))},q=function(d){return _atc.unt&&((!d.templates||!d.templates.twitter)&&(!f.wlp||f.wlp=="http:"))},b=function(ai,Y){var ae=550,ah=450,aa=screen.height,ac=screen.width,ad=Math.round((ac/2)-(ae/2)),X=0,af,ag="",ab=ai.share_url_transforms||ai.url_transforms||{},d=f.track.cof(f.track.mgu(ai.url,ab,ai,"twitter"));if(aa>ah){X=Math.round((aa/2)-(ah/2))}if((ai.passthrough||{}).twitter){ag=f.util.toKV(ai.passthrough.twitter)}if(ag.indexOf("text=")==-1){ag="text="+_euc(ai.title)+"&"+ag}if(ag.indexOf("via=")==-1){ag="via=AddThis&"+ag}o.open("http://twitter.com/share?url="+_euc(R("twitter",ai,Y,d))+"&"+ag,"twitter_tweet","left="+ad+",top="+X+",width="+ae+",height="+ah+",personalbar=no,toolbar=no,scrollbars=yes,location=yes,resizable=yes");var af=new Image();f.opp(af);af.src=f.share.genurl("twitter",0,ai,Y);return false},U=[],a=function(Z,aa,Y,X){var d;if(Z=="email"){d=e(Y,X)}else{d=e(Z,aa,Y,X)}U.push(f.ajs(d,1))},S=function(X,d){return l()+"tellfriend.php?&fromname=aaa&fromemail="+_euc(d.from)+"&frommenu=1&tofriend="+_euc(d.to)+(X.email_template?"&template="+_euc(X.email_template):"")+(d.vars?"&vars="+_euc(d.vars):"")+"&lng="+(f.lng()||"xx")+"&note="+_euc(d.note)+"&"+r("email")};p.share={pts:b,unt:q,uadd:r,genurl:e,geneurl:S,genieu:Q,acb:R,svcurl:l,track:a,links:T}})(f,f.api,f)})();function addthis_open(){if(typeof iconf=="string"){iconf=null}return _ate.ao.apply(_ate,arguments)}function addthis_close(){_ate.ac()}function addthis_sendto(){_ate.as.apply(_ate,arguments);return false}if(_atc.dr){_adr.onReady()}}else{_ate.inst++}if(_atc.abf){addthis_open(document.getElementById("ab"),"emailab",window.addthis_url||"[URL]",window.addthis_title||"[TITLE]")};if(!window.addthis||window.addthis.nodeType!==undefined){window.addthis=(function(){var g={a1webmarks:"A1&#8209;Webmarks",aim:"AOL Lifestream",amazonwishlist:"Amazon",aolmail:"AOL Mail",aviary:"Aviary Capture",domaintoolswhois:"Whois Lookup",googlebuzz:"Google Buzz",googlereader:"Google Reader",googletranslate:"Google Translate",linkagogo:"Link-a-Gogo",meneame:"Men&eacute;ame",misterwong:"Mister Wong",mailto:"Email App",myaol:"myAOL",myspace:"MySpace",readitlater:"Read It Later",rss:"RSS",stumbleupon:"StumbleUpon",typepad:"TypePad",wordpress:"WordPress",yahoobkm:"Y! Bookmarks",yahoomail:"Y! Mail",youtube:"YouTube"},i=document,f=i.gn("body").item(0),h=_ate.util.bind,c=_ate.ed,b=function(d,n){var o;if(window._atw&&_atw.list){o=_atw.list[d]}else{if(g[d]){o=g[d]}else{o=(n?d:(d.substr(0,1).toUpperCase()+d.substr(1)))}}return(o||"").replace(/&nbsp;/g," ")},l=function(d,w,u,t,v){w=w.toUpperCase();var r=(d==f&&addthis.cache[w]?addthis.cache[w]:(d||f||i.body).getElementsByTagName(w)),q=[],s,p;if(d==f){addthis.cache[w]=r}if(v){for(s=0;s<r.length;s++){p=r[s];if(p.className.indexOf(u)>-1){q.push(p)}}}else{u=u.replace(/\-/g,"\\-");var n=new RegExp("(^|\\s)"+u+(t?"\\w*":"")+"(\\s|$)");for(s=0;s<r.length;s++){p=r[s];if(n.test(p.className)){q.push(p)}}}return(q)},m=i.getElementsByClassname||l;function k(d){if(typeof d=="string"){var n=d.substr(0,1);if(n=="#"){d=i.getElementById(d.substr(1))}else{if(n=="."){d=m(f,"*",d.substr(1))}else{}}}if(!d){d=[]}else{if(!(d instanceof Array)){d=[d]}}return d}function a(n,d){return function(){addthis.plo.push({call:n,args:arguments,ns:d})}}function j(o){var n=this,d=this.queue=[];this.name=o;this.call=function(){d.push(arguments)};this.call.queuer=this;this.flush=function(r,q){for(var p=0;p<d.length;p++){r.apply(q||n,d[p])}return r}}return{ost:0,cache:{},plo:[],links:[],ems:[],init:_adr.onReady,_Queuer:j,_queueFor:a,_select:k,_gebcn:l,button:a("button"),counter:a("counter"),toolbox:a("toolbox"),update:a("update"),util:{getServiceName:b},addEventListener:h(_ate.ed.addEventListener,_ate.ed),removeEventListener:h(_ate.ed.removeEventListener,_ate.ed)}})()}_adr.append((function(){if(!window.addthis.ost){_ate.extend(addthis,_ate.api);var d=document,u=undefined,w=window,unaccent=function(s){if(s.indexOf("&")>-1){s=s.replace(/&([aeiou]).+;/g,"$1")}return s},customServices={},globalConfig=w.addthis_config,globalShare=w.addthis_share,upConfig={},upShare={},body=d.gn("body").item(0),mrg=function(o,n){if(n&&o!==n){for(var k in n){if(o[k]===u){o[k]=n[k]}}}},addEvents=function(o,ss,au){var oldclick=o.onclick||function(){},genshare=function(){_ate.ed.fire("addthis.menu.share",window.addthis||{},{service:ss,url:o.share.url})};if(o.conf.data_ga_tracker||addthis_config.data_ga_tracker||o.conf.data_ga_property||addthis_config.data_ga_property){o.onclick=function(){_ate.gat(ss,au,o.conf,o.share);genshare();oldclick()}}else{o.onclick=function(){genshare();oldclick()}}},getFollowUrl=function(ss,userid){var urls={googlebuzz:"http://www.google.com/profiles/%s",youtube:"http://www.youtube.com/user/%s",facebook:"http://www.facebook.com/profile.php?id=%s",facebook_url:"http://www.facebook.com/%s",rss:"%s",flickr:"http://www.flickr.com/photos/%s",twitter:"http://twitter.com/%s",linkedin:"http://www.linkedin.com/in/%s"};if(ss=="facebook"&&isNaN(parseInt(userid))){ss="facebook_url"}return(urls[ss]||"").replace("%s",userid)||""},registerProductCode=function(o){var opc=(o.parentNode||{}).className||"",pc=o.conf&&o.conf.product&&opc.indexOf("toolbox")==-1?o.conf.product:"tbx"+(o.className.indexOf("32x32")>-1||opc.indexOf("32x32")>-1?"32":"")+"-"+_atc.ver;_ate.track.apc(pc);return pc},rpl=function(o,n){var r={};for(var k in o){if(n[k]){r[k]=n[k]}else{r[k]=o[k]}}return r},addthis=window.addthis,f_title={rss:"Subscribe via RSS"},b_title={email:"Email",mailto:"Email",print:"Print",favorites:"Save to Favorites",twitter:"Tweet This",digg:"Digg This",more:"View more services"},json={email_vars:1,passthrough:1,modules:1,templates:1,services_custom:1},nosend={feed:1,more:1,email:1,mailto:1},nowindow={feed:1,email:1,mailto:1,print:1,more:!_ate.bro.ipa,favorites:1},_uniqueConcat=function(a,b){var keys={};for(var i=0;i<a.length;i++){keys[a[i]]=1}for(var i=0;i<b.length;i++){if(!keys[b[i]]){a.push(b[i]);keys[b[i]]=1}}return a},_makeButton=function(w,h,alt,url){var img=d.ce("img");img.width=w;img.height=h;img.border=0;img.alt=alt;img.src=url;return img},_parseThirdPartyAttributes=function(el,prefix){var key,attr=[],rv={};for(var i=0;i<el.attributes.length;i++){key=el.attributes[i];attr=key.name.split(prefix+":");if(attr.length==2){rv[attr.pop()]=key.value}}return rv},_parseAttributes=function(el,overrides,childWins){var overrides=overrides||{},rv={},at_attr=_parseThirdPartyAttributes(el,"addthis");for(var k in overrides){rv[k]=overrides[k]}for(var k in at_attr){if(overrides[k]&&!childWins){rv[k]=overrides[k]}else{var v=at_attr[k];if(v){rv[k]=v}else{if(overrides[k]){rv[k]=overrides[k]}}if(rv[k]==="true"){rv[k]=true}else{if(rv[k]==="false"){rv[k]=false}}}if(rv[k]!==undefined&&json[k]&&(typeof rv[k]=="string")){eval("var e = "+rv[k]);rv[k]=e}}return rv},_processCustomServices=function(conf){var acs=(conf||{}).services_custom;if(!acs){return}if(!(acs instanceof Array)){acs=[acs]}for(var i=0;i<acs.length;i++){var service=acs[i];if(service.name&&service.icon&&service.url){service.code=service.url=service.url.replace(/ /g,"");if(service.code.indexOf("http")===0){service.code=service.code.substr((service.code.indexOf("https")===0?8:7))}service.code=service.code.split("?").shift().split("/").shift().toLowerCase();customServices[service.code]=service}}},_select=addthis._select,_getCustomService=function(ss,conf){return customServices[ss]||{}},_getATtributes=function(el,config,share,childWins){var rv={conf:config||{},share:share||{}};rv.conf=_parseAttributes(el,config,childWins);rv.share=_parseAttributes(el,share,childWins);return rv},_render=function(what,conf,attrs){_ate.igv();if(what){conf=conf||{};attrs=attrs||{};var config=conf.conf||globalConfig,share=conf.share||globalShare,onmouseover=attrs.onmouseover,onmouseout=attrs.onmouseout,onclick=attrs.onclick,internal=attrs.internal,follow=attrs.follow,ss=attrs.singleservice;if(ss){if(onclick===u){onclick=nosend[ss]?function(el,config,share){var s=rpl(share,upShare);return addthis_open(el,ss,s.url,s.title,rpl(config,upConfig),s)}:nowindow[ss]?function(el,config,share){var s=rpl(share,upShare);return addthis_sendto(ss,rpl(config,upConfig),s)}:null}}else{if(!attrs.noevents){if(!attrs.nohover){if(onmouseover===u){onmouseover=function(el,config,share){return addthis_open(el,"",null,null,config,share)}}if(onmouseout===u){onmouseout=function(el){return addthis_close()}}if(onclick===u){onclick=function(el,config,share){return addthis_sendto("more",config,share)}}}else{if(onclick===u){onclick=function(el,config,share){return addthis_open(el,"more",null,null,config,share)}}}}}what=_select(what);for(var i=0;i<what.length;i++){var o=what[i],oattr=_getATtributes(o,config,share,true)||{};mrg(oattr.conf,globalConfig);mrg(oattr.share,globalShare);o.conf=oattr.conf;o.share=oattr.share;if(o.conf.ui_language){_ate.alg(o.conf.ui_language)}_processCustomServices(o.conf);if(ss){o.conf.product=registerProductCode(o)}if((!o.conf||!o.conf.ui_click)&&!_ate.bro.ipa){if(onmouseover){o.onmouseover=function(){return onmouseover(this,this.conf,this.share)}}if(onmouseout){o.onmouseout=function(){return onmouseout(this)}}if(onclick){o.onclick=function(){return onclick(this,this.conf,this.share)}}}else{if(onclick){if(ss){o.onclick=function(){return onclick(this,this.conf,this.share)}}else{o.onclick=function(){return addthis_open(this,"",null,null,this.conf,this.share)}}}}if(o.tagName.toLowerCase()=="a"){var url=o.share.url||addthis_share.url;_ate.usu(url);if(ss){var customService=_getCustomService(ss,o.conf);if(customService&&customService.code&&customService.icon){if(o.firstChild&&o.firstChild.className.indexOf("at300bs")>-1){o.firstChild.style.background="url("+customService.icon+") no-repeat top left"}}if(!nowindow[ss]){if(attrs.follow){o.href=url;o.onclick=function(){_ate.share.track(ss,1,o.share,o.conf)};if(o.children&&o.children.length==1&&o.parentNode&&o.parentNode.className.indexOf("toolbox")>-1){var sp=d.ce("span");sp.className="addthis_follow_label";sp.innerHTML=addthis.util.getServiceName(ss);o.appendChild(sp)}}else{if(ss=="twitter"){if(_ate.share.unt(o.share)){o.onclick=function(e){return _ate.share.pts(o.share,o.conf)};o.noh=1}else{o.onclick=null;o.href=_ate.share.genurl(ss,0,o.share,o.conf);o.noh=0}}else{if(!o.noh){o.href=_ate.share.genurl(ss,0,o.share,o.conf)}}}addEvents(o,ss,url);o.target="_blank";addthis.links.push(o)}else{if(ss=="mailto"||(ss=="email"&&(o.conf.ui_use_mailto||_ate.bro.iph||_ate.bro.ipa))){o.onclick=function(){o.share.xid=_ate.util.cuid();(new Image()).src=_ate.share.genurl("mailto",0,o.share,o.config)};o.href=_ate.share.genieu(o.share);addEvents(o,ss,url);addthis.ems.push(o)}}if(!o.title||o.at_titled){var serviceName=addthis.util.getServiceName(ss,!customService);o.title=unaccent(attrs.follow?(f_title[ss]?f_title[ss]:"Follow on "+serviceName):(b_title[ss]?b_title[ss]:"Send to "+serviceName));o.at_titled=1}}else{if(o.conf.product&&o.parentNode.className.indexOf("toolbox")==-1){registerProductCode(o)}}}var app;switch(internal){case"img":if(!o.hasChildNodes()){var lang=(o.conf.ui_language||_ate.lng()).split("-").shift(),validatedLang=_ate.ivl(lang);if(!validatedLang){lang="en"}else{if(validatedLang!==1){lang=validatedLang}}app=_makeButton(_ate.iwb(lang)?150:125,16,"Share",_atr+"static/btn/v2/lg-share-"+lang.substr(0,2)+".gif")}break}if(app){o.appendChild(app)}}}},buttons=addthis._gebcn(body,"A","addthis_button_",true,true),_renderToolbox=function(collection,config,share,reprocess){for(var i=0;i<collection.length;i++){var b=collection[i];if(b==null){continue}if(reprocess!==false||!b.ost){var attr=_getATtributes(b,config,share,true),hc=0,a="at300",c=b.className||"",passthrough="",s=c.match(/addthis_button_([\w\.]+)(?:\s|$)/),options={},sv=s&&s.length?s[1]:0;mrg(attr.conf,globalConfig);mrg(attr.share,globalShare);if(sv){if(sv==="tweetmeme"){if(b.ost){continue}var tm_attr=_parseThirdPartyAttributes(b,"tm"),tmw=50,tmh=61;passthrough=_ate.util.toKV(tm_attr);if(tm_attr.style==="compact"){tmw=95;tmh=25}b.innerHTML='<iframe frameborder="0" width="'+tmw+'" height="'+tmh+'" scrolling="no" allowTransparency="true" scrollbars="no"'+(_ate.bro.ie6?" src=\"javascript:''\"":"")+"></iframe>";var tm=b.firstChild;tm.src="//api.tweetmeme.com/button.js?url="+_euc(attr.share.url)+"&"+passthrough;b.noh=b.ost=1}else{if(sv==="tweet"){if(b.ost){continue}var tw_attr=_parseThirdPartyAttributes(b,"tw"),tww=110,twh=20;if(!tw_attr.text){tw_attr.text=attr.share.title}if(!tw_attr.via){tw_attr.via="AddThis"}passthrough=_ate.util.toKV(tw_attr);if(tw_attr.count==="none"){tww=55}else{if(tw_attr.count==="vertical"){tww=55;twh=63}}if(tw_attr.width){tww=tw_attr.width}if(tw_attr.height){twh=tw_attr.height}b.innerHTML='<iframe allowtransparency="true" frameborder="0" role="presentation" scrolling="no" style="width:'+tww+"px; height:"+twh+'px;"></iframe>';var tw=b.firstChild;tw.src="//platform.twitter.com/widgets/tweet_button.html?url="+_euc(tw_attr.url||attr.share.url)+"&"+passthrough;b.noh=b.ost=1}else{if(sv==="facebook_like"){if(b.ost){continue}var fblike,fb_attr=_parseThirdPartyAttributes(b,"fb:like"),fbw=fb_attr.width||82,fbh=fb_attr.height||25;passthrough=_ate.util.toKV(fb_attr);if(!_ate.bro.msi){fblike=d.ce("iframe")}else{b.innerHTML='<iframe frameborder="0" scrolling="no" allowTransparency="true" scrollbars="no"'+(_ate.bro.ie6?" src=\"javascript:''\"":"")+"></iframe>";fblike=b.firstChild}fblike.style.overflow="hidden";fblike.style.border="none";fblike.style.borderWidth="0px";fblike.style.width=fbw+"px";fblike.style.height=fbh+"px";fblike.src="//www.facebook.com/plugins/like.php?href="+_euc(attr.share.url)+"&layout=button_count&show_faces=false&width=100&action=like&font=arial&"+passthrough;if(!_ate.bro.msi){b.appendChild(fblike)}b.noh=b.ost=1}else{if(sv.indexOf("preferred")>-1){if(b._iss){continue}registerProductCode(b);s=c.match(/addthis_button_preferred_([0-9]+)(?:\s|$)/);var svidx=((s&&s.length)?Math.min(16,Math.max(1,parseInt(s[1]))):1)-1;if(!b.conf){b.conf={}}b.conf.product="tbx-"+_atc.ver;if(window._atw){if(!b.parentNode.services){b.parentNode.services={}}var excl=_atw.conf.services_exclude||"",locopts=_atw.loc,parentServices=b.parentNode.services,opts=_uniqueConcat(addthis_options.replace(",more","").split(","),locopts.split(","));do{sv=opts[svidx++]}while(svidx<opts.length&&(excl.indexOf(sv)>-1||parentServices[sv]));if(parentServices[sv]){for(var k in _atw.list){if(!parentServices[k]&&excl.indexOf(k)==-1){sv=k;break}}}b._ips=1;if(b.className.indexOf(sv)==-1){b.className+=" addthis_button_"+sv;b._iss=1}b.parentNode.services[sv]=1}else{_ate.alg(attr.conf.ui_language||window.addthis_language);_ate.plo.unshift(["deco",_renderToolbox,[b],config,share,true]);if(_ate.gssh){_ate.pld=_ate.ajs("static/r07/menu62.js")}else{if(!_ate.pld){_ate.pld=1;var loadmenu=function(){_ate.pld=_ate.ajs("static/r07/menu62.js")};if(_ate.upm){_ate._rec.push(function(data){if(data.ssh){loadmenu()}});_ate.sto(loadmenu,500)}else{loadmenu()}}}continue}}else{if(sv.indexOf("follow")>-1){sv=sv.split("_follow").shift();options.follow=true;attr.share.url=getFollowUrl(sv,attr.share.userid)}}}}}if(!b.childNodes.length){var sp=d.ce("span");b.appendChild(sp);sp.className=a+"bs at15t_"+sv}else{if(b.childNodes.length==1){var cn=b.childNodes[0];if(cn.nodeType==3){var sp=d.ce("span"),tv=cn.nodeValue;b.insertBefore(sp,cn);sp.className=a+"bs at15t_"+sv}}else{hc=1}}if(sv==="compact"||sv==="expanded"){if(!hc&&c.indexOf(a)==-1){b.className+=" "+a+"m"}if(!attr.conf.product){attr.conf.product="men-"+_atc.ver}if(sv==="expanded"){options.nohover=true;options.singleservice="more"}}else{if((b.parentNode.className||"").indexOf("toolbox")>-1){if(!b.parentNode.services){b.parentNode.services={}}b.parentNode.services[sv]=1}if(!hc&&c.indexOf(a)==-1){b.className+=" "+a+"b"}options.singleservice=sv}if(b._ips){options.issh=true}_render([b],attr,options);b.ost=1;registerProductCode(b)}}}},gat=function(s,au,conf,share){var pageTracker=conf.data_ga_tracker,propertyId=conf.data_ga_property;if(propertyId&&typeof(window._gat)=="object"){pageTracker=_gat._getTracker(propertyId)}if(pageTracker&&typeof(pageTracker)=="string"){pageTracker=window[pageTracker]}if(pageTracker&&typeof(pageTracker)=="object"){var gaUrl=au||(share||{}).url||location.href;if(gaUrl.toLowerCase().replace("https","http").indexOf("http%3a%2f%2f")==0){gaUrl=_duc(gaUrl)}try{pageTracker._trackEvent("addthis",s,gaUrl)}catch(e){try{pageTracker._initData();pageTracker._trackEvent("addthis",s,gaUrl)}catch(e){}}}};_ate.gat=gat;addthis.update=function(which,what,value){if(which=="share"){if(!window.addthis_share){window.addthis_share={}}window.addthis_share[what]=value;upShare[what]=value;for(var i in addthis.links){var o=addthis.links[i],rx=new RegExp("&"+what+"=(.*)&"),ns="&"+what+"="+_euc(value)+"&";if(!o.noh){o.href=o.href.replace(rx,ns)}if(o.href.indexOf(what)==-1){o.href+=ns}}for(var i in addthis.ems){var o=addthis.ems[i];o.href=_ate.share.genieu(addthis_share)}}else{if(which=="config"){if(!window.addthis_config){window.addthis_config={}}window.addthis_config[what]=value;upConfig[what]=value}}};addthis._render=_render;var rsrcs=[new _ate.resource.Resource("countercss",_atr+"static/r07/counter46.css",function(){return true}),new _ate.resource.Resource("counter",_atr+"js/250/plugin.sharecounter.js",function(){return window.addthis.counter.ost})];if(!w.JSON||!w.JSON.stringify){rsrcs.unshift(new _ate.resource.Resource("json2",_atr+"static/r07/json2.js",function(){return w.JSON&&w.JSON.stringify}))}addthis.counter=function(what,config,share){if(what){what=addthis._select(what);if(what.length){if(!addthis.counter.selects){addthis.counter.selects=[]}addthis.counter.selects=addthis.counter.selects.concat(what);for(var k in rsrcs){if((rsrcs[k]||{}).load){rsrcs[k].load()}}}}};addthis.button=function(what,config,share){config=config||{};if(!config.product){config.product="men-"+_atc.ver}_render(what,{conf:config,share:share},{internal:"img"})};addthis.toolbox=function(what,config,share){var toolboxes=_select(what);for(var i=0;i<toolboxes.length;i++){var tb=toolboxes[i],attr=_getATtributes(tb,config,share),sp=d.ce("div"),c;tb.services={};if(!attr.conf.product){attr.conf.product="tbx"+(tb.className.indexOf("32x32")>-1?"32":"")+"-"+_atc.ver}if(tb){c=tb.getElementsByTagName("a");if(c){_renderToolbox(c,attr.conf,attr.share)}tb.appendChild(sp)}sp.className="atclear"}};addthis.ready=function(){var at=addthis,a=".addthis_";if(at.ost){return}at.ost=1;addthis.toolbox(a+"toolbox");addthis.button(a+"button");addthis.counter(a+"counter");_renderToolbox(buttons,null,null,false);_ate.ed.fire("addthis.ready",addthis);for(var i=0,plo=at.plo,q;i<plo.length;i++){q=plo[i];(q.ns?at[q.ns]:at)[q.call].apply(this,q.args)}};addthis.util.getAttributes=_getATtributes;window.addthis=addthis;window.addthis.ready()}}));_ate.extend(addthis,{user:(function(){var i=_ate,d=addthis,j={},b=0,c;function h(a,l){return i.reduce(["getID","getServiceShareHistory"],a,l)}function f(a,l){return function(m){setTimeout(function(){m(i[a]||l)},0)}}function g(a){if(b){return}if(!a||!a.uid||!a.ssh){return}if(c!==null){clearTimeout(c)}c=null;b=1;h(function(n,l,m){j[l]=j[l].queuer.flush(f.apply(d,n[m]),d);return n},[["uid",""],["_ssh",[]]])}function k(a){if(a.ssh!==undefined){_ate.pld=_ate.ajs("static/r07/menu62.js")}}i._rec.push(g);c=setTimeout(function(){var a={uid:"x",ssh:""};g(a);k(a)},5000);j.getPreferredServices=function(a){if(window._atw){a(addthis_options.split(","))}else{i.plo.push(["pref",a]);_ate.alg();if(i.gssh){i.pld=i.ajs("static/r07/menu62.js")}else{if(!i.pld){i.pld=1;_ate._rec.push(k)}}}};return h(function(l,a){l[a]=(new d._Queuer(a)).call;return l},j)})()});

//AddThis
 var addthis_config = {
      services_compact: 'email, facebook, arto, twitter, more',
      services_exclude: 'print',
        ui_header_color: "#FFFFFF",
         ui_header_background: "#000000"
  }


// CUSTOM SCRIPTS HERE BELLOW 

// Flash bg covering the whole screen area
function setFlashBGHeight(){
  var numPageHeight = $("#MainWrapper").height();
  var numWinHeight = window.innerHeight;
  var numWindowHeight = $(window).height();
        var numOutputHeight=null; 
  if(numPageHeight>numWindowHeight){ numOutputHeight = numPageHeight; }
  else{numOutputHeight = numWindowHeight;}
  $("#NZWebBGFlash").css("height", numOutputHeight + "px");
  $("#FlashWrapper").css("height", numOutputHeight + "px");
}

//Open microsites in a new window
function openMicrosite(url) {
window.open(url,"ExplorerTest","height=768, width=1024, resizable=0, menubar=no");
}

//Used to open (in a new window) all a:tags including with "http://www.nordsoenskoletjeneste.dk/"
$(function() {
  $("a[href^=http://www.nordsoenskoletjeneste.dk/]").attr("target","_blank");
  
$("#Category_223").attr('checked', true);
$("#CategoriesFieldset").css("display", "none");

  // IE7 z-index hack
  if($.browser.msie == true && parseInt($.browser.version) < 8){ var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); }
});


