/* Clearing Inputs */




/*
 * clearingInput: a jQuery plugin
 *
 * clearingInput is a simple jQuery plugin that provides example/label text
 * inside text inputs that automatically clears when the input is focused.
 * Common uses are for a hint/example, or as a label when space is limited.
 *
 * For usage and examples, visit:
 * http://github.com/alexrabarts/jquery-clearinginput
 *
 * Licensed under the MIT:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Copyright (c) 2008 Stateless Systems (http://statelesssystems.com)
 *
 * @author   Alex Rabarts (alexrabarts -at- gmail -dawt- com)
 * @requires jQuery v1.2 or later
 * @version  0.1.2
 */

(function ($) {
  $.extend($.fn, {
    clearingInput: function (options) {
      var defaults = {blurClass: 'blur'};

      options = $.extend(defaults, options);

      return this.each(function () {
        var input = $(this).addClass(options.blurClass);
        var form  = input.parents('form:first');
        var label, text;

        text = options.text || textFromLabel() || input.val();

        if (text) {
          input.val(text);

          input.blur(function () {
            if (input.val() === '') {input.addClass(options.blurClass).val(text);}
          }).focus(function () {
            if (input.val() === text) {input.val('');}
            input.removeClass(options.blurClass);
          });

          form.submit(function() {
            if (input.hasClass(options.blurClass)) {input.val('');}
          });

          input.blur();
        }

        function textFromLabel() {
          label = form.find('label[for=' + input.attr('id') + ']');
          // Position label off screen and use it for the input text
          return label ? label.css({position: 'absolute', left: '-9999px'}).text() : '';
        }
      });
    }
  });
})(jQuery);



/* jQuery Cycle */

(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return}var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return}if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery)




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



/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991 Adobe Systems Incorporated. All Rights Reserved.Berthold
 * Akzidenz Grotesk is a registered trademark of H. Berthold AG.
 */
Cufon.registerFont({"w":202,"face":{"font-family":"Berthold Akzidenz Grotesk BE","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-4 -290 324 90","underline-thickness":"18","underline-position":"-36","stemh":"39","stemv":"43","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":97},"!":{"d":"76,-254v3,71,-3,133,-14,191r-20,0v-10,-58,-15,-121,-13,-191r47,0xm29,-50r47,0r0,50r-47,0r0,-50","w":90},"\"":{"d":"129,-259v5,35,-12,72,-15,107r-10,0r-18,-96v-5,-24,40,-26,43,-11xm53,-261v6,34,-11,73,-14,109r-10,0v-5,-32,-13,-61,-17,-96v-3,-23,34,-28,41,-13","w":142},"#":{"d":"168,-77r-11,77r-37,0r11,-77r-35,0r-11,77r-37,0r11,-77r-44,0r0,-36r49,0r4,-34r-45,0r0,-36r50,0r10,-72r37,0r-10,72r35,0r10,-72r37,0r-10,72r42,0r0,36r-47,0r-5,34r44,0r0,36r-48,0xm100,-113r36,0r5,-34r-36,0","w":240},"$":{"d":"129,-290r0,39v13,1,50,6,78,39r-34,27v-16,-21,-30,-23,-44,-27r0,58v36,6,82,20,82,75v0,17,-4,38,-25,56v-19,17,-40,21,-57,23r0,41r-33,0r0,-41v-23,-4,-56,-11,-83,-48r36,-28v16,22,34,32,47,33r0,-69v-15,-1,-77,-8,-77,-65v0,-14,5,-28,13,-40v19,-27,52,-32,64,-34r0,-39r33,0xm96,-160r0,-52v-35,6,-43,48,0,52xm129,-107r0,65v20,-4,35,-17,35,-34v0,-18,-15,-27,-35,-31","w":225},"%":{"d":"248,-162v44,-5,63,60,58,82v4,44,-22,86,-59,83v-43,5,-63,-57,-58,-84v-5,-20,16,-88,59,-81xm248,-134v-25,1,-26,31,-27,56v0,24,3,52,26,52v26,0,27,-32,27,-53v0,-17,0,-55,-26,-55xm86,2r113,-246r25,11r-113,246xm69,-245v42,-5,62,56,57,80v4,45,-21,84,-59,84v-43,0,-63,-60,-58,-82v-5,-22,15,-90,60,-82xm94,-165v0,-17,0,-53,-26,-53v-26,0,-26,38,-26,57v0,14,-1,52,26,52v26,0,26,-37,26,-56","w":315},"&":{"d":"176,-118r41,0v-4,31,-18,58,-29,72v4,6,18,14,33,10r0,36v-29,4,-55,-3,-64,-14v-16,11,-33,19,-61,19v-63,0,-81,-44,-81,-71v0,-37,26,-58,56,-75v-5,-7,-11,-19,-11,-38v0,-38,26,-59,58,-59v72,0,83,87,11,112v5,9,29,43,33,48v10,-15,13,-27,14,-40xm111,-158v22,1,44,-43,9,-46v-25,0,-23,31,-9,46xm134,-46r-44,-63v-40,12,-42,76,9,77v5,0,20,-1,35,-14","w":232},"\u2019":{"d":"14,-254r47,0v-2,28,6,68,-7,82v-12,14,-28,16,-37,17r0,-19v19,-6,19,-16,19,-30r-22,0r0,-50","w":74},"(":{"d":"118,-265v-19,7,-51,104,-51,154v0,55,21,100,51,126r-10,18v-83,-46,-120,-165,-63,-251v16,-25,37,-47,60,-65","w":127},")":{"d":"9,15v19,-7,51,-104,51,-154v0,-54,-21,-100,-51,-126r11,-18v83,46,121,166,62,251v-16,25,-37,47,-60,65","w":127},"*":{"d":"113,-231r9,23v-14,5,-26,14,-45,10v16,6,23,21,33,33r-19,15v-9,-12,-22,-21,-24,-40v-1,19,-13,28,-21,40r-20,-15v9,-11,15,-25,28,-32v-18,1,-28,-6,-41,-9r8,-23v14,5,30,8,39,18v-7,-10,-6,-26,-6,-43r26,0v1,17,1,34,-7,43v10,-10,26,-14,40,-20","w":135},"+":{"d":"139,-86r0,86r-37,0r0,-86r-87,0r0,-37r87,0r0,-87r37,0r0,87r86,0r0,37r-86,0","w":240},",":{"d":"13,-49r48,0v2,48,6,96,-45,99r0,-21v21,-3,20,-23,20,-29r-23,0r0,-49","w":74},"-":{"d":"19,-133r89,0r0,40r-89,0r0,-40","w":127},".":{"d":"13,-49r48,0r0,49r-48,0r0,-49","w":74},"\/":{"d":"5,0r121,-254r42,0r-120,254r-43,0","w":172},"0":{"d":"13,-120v-3,-54,23,-127,90,-127v22,0,48,7,67,35v19,28,20,65,20,89v0,55,-18,130,-89,126v-78,-4,-84,-59,-88,-123xm144,-121v0,-55,-11,-86,-41,-86v-39,0,-43,45,-43,87v0,40,3,83,42,83v34,0,42,-33,42,-84"},"1":{"d":"95,-243r36,0r0,243r-45,0r0,-139v8,-42,-29,-27,-59,-30r0,-28v29,0,56,2,68,-46"},"2":{"d":"182,-171v0,67,-57,95,-102,134r106,0r0,37r-165,0r0,-35v31,-21,61,-50,75,-65v13,-14,36,-37,36,-69v0,-19,-9,-37,-32,-37v-36,0,-34,40,-34,57r-45,-4v2,-67,27,-94,83,-94v46,0,78,30,78,76"},"3":{"d":"140,-75v0,-27,-21,-38,-54,-35r0,-38v15,0,17,1,20,1v5,0,29,-2,29,-29v0,-17,-11,-31,-31,-31v-32,0,-35,33,-35,41r-47,-10v0,-29,39,-71,83,-71v26,0,78,12,78,64v0,40,-19,45,-40,53v19,4,46,19,46,58v0,67,-101,98,-148,55v-11,-10,-24,-31,-24,-63r48,0v-5,25,11,44,38,44v27,0,37,-20,37,-39"},"4":{"d":"157,-93r31,0r0,37r-31,0r0,56r-44,0r0,-56r-107,0r0,-32r107,-155r44,0r0,150xm53,-93r60,0r2,-96"},"5":{"d":"98,-36v29,1,39,-21,40,-49v3,-51,-61,-59,-77,-23r-40,-2r17,-134r135,0r-4,41r-94,0r-9,54v45,-41,121,-7,121,63v0,67,-72,111,-137,79v-35,-17,-36,-49,-37,-61r50,-4v1,25,17,36,35,36"},"6":{"d":"103,3v-70,-1,-85,-58,-86,-117v0,-34,5,-133,91,-133v44,-1,69,28,74,61r-46,6v-1,-22,-19,-27,-29,-27v-35,0,-41,42,-43,75v38,-48,121,-25,121,51v0,50,-35,84,-82,84xm104,-37v51,0,44,-79,1,-79v-25,0,-37,19,-37,39v0,8,3,40,36,40"},"7":{"d":"184,-244r0,40v-47,58,-74,127,-81,204r-60,0v10,-71,47,-149,90,-201r-110,0r0,-43r161,0"},"8":{"d":"154,-127v73,38,30,130,-54,130v-55,0,-90,-31,-90,-73v0,-38,28,-51,40,-57v-64,-42,-26,-120,53,-120v77,0,113,85,51,120xm102,-207v-31,0,-37,19,-37,32v0,11,5,32,38,32v28,0,35,-18,35,-32v0,-28,-22,-32,-36,-32xm102,-106v-39,0,-41,27,-41,35v0,21,14,34,41,34v23,0,41,-12,41,-35v0,-4,-1,-34,-41,-34"},"9":{"d":"67,-65v2,17,10,28,29,29v32,0,40,-44,40,-72v-32,39,-123,21,-118,-55v5,-75,70,-103,125,-73v43,24,43,89,43,105v0,87,-36,134,-95,134v-57,0,-65,-30,-73,-61xm133,-165v0,-23,-11,-43,-34,-43v-16,0,-34,11,-34,40v0,24,12,42,34,42v4,0,34,0,34,-39"},":":{"d":"28,-183r48,0r0,49r-48,0r0,-49xm28,-49r48,0r0,49r-48,0r0,-49","w":90},";":{"d":"28,-183r48,0r0,49r-48,0r0,-49xm28,-49r48,0v-3,32,8,69,-12,85v-11,9,-25,12,-33,14r0,-21v12,1,23,-17,19,-29r-22,0r0,-49","w":90},"<":{"d":"240,-39r0,40r-240,-109r0,-37r240,-110r0,40r-190,88","w":240},"=":{"d":"240,-90r0,37r-240,0r0,-37r240,0xm240,-157r0,37r-240,0r0,-37r240,0","w":240},">":{"d":"240,-108r-240,109r0,-40r190,-88r-190,-88r0,-40r240,110r0,37","w":240},"?":{"d":"86,-65v-6,-94,42,-58,57,-118v0,-19,-16,-34,-39,-34v-26,0,-40,18,-41,47r-44,-5v4,-121,173,-98,173,-9v0,70,-73,51,-63,119r-43,0xm84,-49r48,0r0,49r-48,0r0,-49"},"@":{"d":"213,-24v-20,0,-29,-12,-31,-28v-29,42,-96,38,-97,-32v0,-52,34,-103,77,-103v27,0,36,17,40,26r4,-19r29,0v-7,36,-20,80,-22,117v0,9,5,13,9,13v18,0,50,-46,50,-100v0,-63,-46,-83,-84,-83v-73,0,-138,67,-138,148v0,140,169,124,232,53r14,18v-73,83,-271,94,-271,-71v0,-93,72,-171,164,-171v74,0,109,49,109,103v0,67,-42,129,-85,129xm192,-126v0,-23,-14,-34,-27,-34v-42,0,-69,108,-21,108v24,0,48,-35,48,-74","w":322},"A":{"d":"178,0r-15,-50r-95,0r-15,50r-50,0r85,-254r54,0r87,254r-51,0xm81,-91r70,0r-35,-117","w":232},"B":{"d":"231,-72v0,48,-37,72,-102,72r-100,0r0,-254r91,0v70,-5,100,14,100,62v0,26,-17,50,-43,53v28,5,54,28,54,67xm171,-184v0,-37,-47,-31,-95,-31r0,63v42,0,94,7,95,-32xm183,-76v-3,-49,-58,-40,-107,-40r0,75v48,-2,110,12,107,-35","w":247},"C":{"d":"135,-39v36,0,55,-28,62,-51r45,19v-13,37,-51,77,-110,77v-67,0,-119,-49,-119,-134v0,-86,56,-133,121,-133v79,0,98,61,104,79r-48,12v-5,-23,-16,-46,-55,-47v-41,0,-70,34,-70,88v0,58,30,90,70,90","w":247},"D":{"d":"241,-125v0,72,-49,136,-134,125r-81,0r0,-254v67,4,117,-14,166,20v43,29,49,81,49,109xm190,-125v2,-40,-21,-98,-92,-86r-25,0r0,168v85,-3,110,9,117,-82","w":254},"E":{"d":"209,-212r-134,0r0,60r122,0r0,41r-122,0r0,68r143,0r0,43r-190,0r0,-254r181,0r0,42","w":225},"F":{"d":"76,-212r0,64r107,0r0,40r-107,0r0,108r-47,0r0,-254r168,0r0,42r-121,0"},"G":{"d":"140,-139r107,0r0,139r-41,0r0,-22v-81,73,-189,-7,-189,-103v0,-80,52,-136,122,-136v53,0,93,33,108,75r-46,19v-5,-14,-18,-51,-61,-51v-48,0,-72,42,-72,92v0,56,31,88,72,88v27,0,59,-14,63,-59r-63,0r0,-42","w":270},"H":{"d":"186,-254r48,0r0,254r-48,0r0,-116r-109,0r0,116r-48,0r0,-254r48,0r0,96r109,0r0,-96","w":262},"I":{"d":"29,-254r47,0r0,254r-47,0r0,-254","w":105},"J":{"d":"9,-45v36,10,64,1,64,-47r0,-162r47,0r0,179v7,63,-51,91,-111,77r0,-47","w":142},"K":{"d":"234,-254r-84,96r89,158r-54,0r-68,-120r-41,48r0,72r-47,0r0,-254r47,0r0,116r102,-116r56,0","w":240},"L":{"d":"77,-255r0,212r101,0r0,43r-148,0r0,-255r47,0","w":187},"M":{"d":"195,-254r69,0r0,254r-47,0r5,-209r-55,209r-43,0r-55,-209r5,209r-47,0r0,-254r69,0r50,188","w":292},"N":{"d":"185,-75r-6,-179r47,0r0,254r-42,0r-111,-178r3,178r-46,0r0,-254r42,0","w":254},"O":{"d":"139,6v-65,0,-122,-70,-122,-133v0,-78,53,-134,122,-134v63,0,122,47,122,134v0,73,-44,133,-122,133xm213,-122v1,-50,-24,-95,-74,-95v-44,0,-73,35,-73,88v0,57,32,92,74,92v32,0,72,-24,73,-85","w":277},"P":{"d":"219,-170v3,47,-39,91,-105,84r-37,0r0,86r-47,0r0,-254v95,2,183,-17,189,84xm170,-171v-2,-52,-47,-40,-93,-42r0,88v21,-1,44,2,62,-2v30,-7,31,-35,31,-44","w":225},"Q":{"d":"281,-35r-14,45v-21,-5,-39,-17,-54,-31v-83,64,-200,7,-200,-106v0,-72,43,-134,121,-134v112,0,149,116,103,207v10,16,32,19,44,19xm204,-127v0,-59,-36,-88,-71,-88v-43,0,-69,43,-69,89v0,51,31,87,72,87v50,0,68,-49,68,-88","w":277},"R":{"d":"29,-254v93,-1,189,-12,188,81v0,49,-36,66,-50,70r57,103r-55,0r-50,-94r-43,0r0,94r-47,0r0,-254xm149,-208v-10,-6,-48,-5,-73,-5r0,79v46,-4,82,16,93,-40v0,-5,-1,-23,-20,-34","w":232},"S":{"d":"127,-37v42,0,69,-44,30,-59v-53,-21,-135,-2,-135,-85v0,-48,40,-80,100,-80v55,0,85,28,103,52r-39,29v-9,-13,-25,-38,-66,-38v-26,0,-48,12,-48,31v1,31,47,29,73,36v33,9,83,22,83,76v0,103,-175,108,-220,27r40,-28v6,9,25,39,79,39","w":240},"T":{"d":"195,-254r0,43r-70,0r0,211r-48,0r0,-211r-69,0r0,-43r187,0"},"U":{"d":"76,-98v-2,56,51,77,96,46v16,-11,14,-27,14,-48r0,-154r48,0r0,160v0,29,-1,53,-28,76v-61,50,-162,21,-174,-34v-11,-50,-1,-142,-3,-202r47,0r0,156","w":262},"V":{"d":"165,-254r49,0r-72,254r-64,0r-75,-254r50,0r57,200","w":217},"W":{"d":"247,-254r49,0r-56,254r-55,0r-36,-177r-36,177r-56,0r-53,-254r49,0r34,194r40,-194r44,0r41,194","w":299},"X":{"d":"216,-254r-72,116r86,138r-54,0r-60,-94r-58,94r-55,0r86,-138r-74,-116r55,0r46,73r44,-73r56,0","w":232},"Y":{"d":"221,-254r-86,154r0,100r-46,0r0,-100r-85,-154r53,0r55,105r56,-105r53,0","w":225},"Z":{"d":"73,-43r134,0r0,43r-198,0r0,-39r139,-172r-127,0r0,-43r186,0r0,41","w":217},"[":{"d":"117,-273r0,34r-48,0r0,225r48,0r0,35r-95,0r0,-294r95,0","w":127},"\\":{"d":"168,0r-42,0r-121,-254r43,0","w":172},"]":{"d":"9,21r0,-35r49,0r0,-224r-49,0r0,-35r96,0r0,294r-96,0","w":127},"^":{"d":"138,-254r67,137r-42,0r-42,-88r-44,88r-42,0r70,-137r33,0","w":240},"_":{"d":"184,27r0,18r-188,0r0,-18r188,0","w":180},"\u2018":{"d":"61,-156r-48,0v1,-21,-2,-55,2,-70v6,-22,33,-27,43,-29r0,21v-9,1,-20,6,-19,29r22,0r0,49","w":74},"a":{"d":"98,-152v-25,1,-36,9,-36,27r-44,-2v1,-9,1,-17,7,-27v17,-31,59,-31,71,-31v38,0,85,21,76,60v4,42,-9,96,8,125r-51,0v0,-4,-1,-11,-1,-14v-9,8,-28,18,-53,18v-41,0,-66,-25,-66,-56v1,-63,87,-59,120,-73v0,-9,-1,-27,-31,-27xm84,-33v37,-1,49,-19,45,-57v-16,13,-72,4,-74,36v0,14,12,21,29,21","w":195},"b":{"d":"23,-254r43,0r0,89v53,-46,131,-7,131,74v0,83,-88,124,-131,72r0,19r-43,0r0,-254xm152,-91v1,-36,-21,-55,-44,-55v-26,-7,-51,39,-40,76v10,34,37,34,41,34v32,0,42,-31,43,-55","w":209},"c":{"d":"177,-134r-38,18v-16,-49,-86,-38,-86,25v0,32,18,56,46,56v27,0,38,-21,43,-35r37,19v-34,92,-170,64,-170,-39v0,-55,39,-95,90,-95v45,0,69,30,78,51","w":180},"d":{"d":"143,-254r43,0r0,254r-43,0r0,-17v-49,50,-130,13,-130,-69v0,-75,74,-131,130,-79r0,-89xm143,-89v1,-25,-12,-56,-42,-56v-29,0,-43,26,-43,54v0,3,0,58,42,58v22,0,43,-17,43,-56","w":209},"e":{"d":"156,-62r37,22v-48,72,-181,61,-181,-51v0,-60,39,-94,90,-94v48,0,67,28,71,33v15,21,18,53,18,71r-133,0v5,28,23,44,51,44v30,0,42,-17,47,-25xm59,-113r85,0v-7,-55,-78,-47,-85,0"},"f":{"d":"111,-216v-27,-5,-44,5,-39,36r39,0r0,31r-39,0r0,149r-44,0r0,-149r-27,0r0,-31r27,0v1,-44,-11,-72,58,-75v9,0,17,1,25,2r0,37","w":112},"g":{"d":"187,-32v1,76,-12,92,-86,92v-64,0,-77,-27,-83,-56r48,0v3,10,10,22,36,22v42,0,41,-13,42,-56v-43,39,-132,18,-132,-66v0,-95,98,-106,132,-65r0,-19r43,0r0,148xm145,-96v0,-29,-15,-51,-44,-51v-22,0,-44,14,-44,49v0,31,18,48,44,48v23,0,44,-13,44,-46","w":209},"h":{"d":"111,-144v-40,10,-45,17,-45,61r0,83r-44,0r0,-254r44,0r0,92v14,-14,32,-23,57,-23v87,-2,60,103,64,185r-42,0r0,-99v-4,-35,4,-35,-34,-45","w":209},"i":{"d":"23,-252r43,0r0,44r-43,0r0,-44xm23,-180r43,0r0,180r-43,0r0,-180","w":90},"j":{"d":"24,-252r43,0r0,44r-43,0r0,-44xm0,18v16,-2,24,-2,24,-34r0,-164r43,0r0,181v5,54,-25,56,-67,57r0,-40","w":90},"k":{"d":"23,-254r43,0r0,143r70,-69r55,0r-69,69r76,111r-53,0r-54,-81r-25,25r0,56r-43,0r0,-254","w":195},"l":{"d":"23,-254r44,0r0,254r-44,0r0,-254","w":90},"m":{"d":"107,-145v-53,0,-40,85,-41,145r-43,0r0,-180r43,0r0,20v32,-32,80,-38,107,2v7,-10,25,-27,57,-27v39,0,62,33,62,72r0,113r-43,0r0,-99v0,-17,3,-46,-30,-46v-58,0,-36,87,-40,145r-43,0v-7,-51,22,-145,-29,-145","w":315},"n":{"d":"106,-143v-55,0,-37,84,-40,143r-43,0r0,-180r43,0r0,21v7,-13,35,-26,56,-26v82,0,53,107,58,185r-43,0v-5,-52,19,-143,-31,-143"},"o":{"d":"198,-91v0,56,-38,96,-92,96v-56,0,-93,-41,-93,-96v0,-55,37,-94,91,-94v50,0,94,34,94,94xm152,-91v-1,-30,-18,-56,-48,-56v-27,0,-46,22,-46,55v0,37,22,58,48,58v31,0,47,-27,46,-57","w":209},"p":{"d":"23,59r0,-239r43,0r0,17v7,-7,22,-22,50,-22v53,0,81,47,81,97v0,78,-85,118,-131,73r0,74r-43,0xm66,-91v-1,37,20,56,44,56v21,0,43,-14,43,-55v0,-45,-31,-54,-44,-54v-20,0,-42,14,-43,53","w":209},"q":{"d":"140,-180r43,0r0,239r-43,0r0,-76v-7,7,-22,22,-52,22v-50,0,-79,-40,-79,-93v0,-91,84,-125,131,-73r0,-19xm140,-90v-1,-42,-27,-53,-44,-53v-21,0,-43,16,-43,55v0,31,15,54,43,54v26,0,44,-20,44,-56"},"r":{"d":"122,-140v-34,-2,-57,27,-57,73r0,67r-42,0r0,-180r42,0r0,26v5,-9,17,-31,57,-30r0,44","w":127},"s":{"d":"8,-27r32,-26v11,13,27,23,52,23v41,0,43,-34,17,-37v-6,-1,-36,-7,-42,-9v-43,-10,-51,-35,-51,-51v0,-31,28,-58,77,-58v40,0,61,16,78,33r-31,29v-5,-10,-17,-28,-49,-28v-21,0,-30,10,-30,19v1,27,93,22,96,38v39,39,13,98,-63,99v-32,0,-63,-10,-86,-32","w":187},"t":{"d":"109,-149r-38,0r0,81v-5,31,12,36,38,30r0,37v-42,6,-81,7,-81,-56r0,-92r-27,0r0,-31r27,0r0,-64r43,0r0,64r38,0r0,31","w":112},"u":{"d":"101,-36v62,-1,37,-85,42,-144r43,0r0,180r-43,0r0,-18v-8,7,-25,22,-58,22v-94,0,-54,-104,-63,-184r44,0v6,53,-21,146,35,144","w":209},"v":{"d":"123,-180r45,0r-59,180r-46,0r-58,-180r44,0r38,124","w":172},"w":{"d":"188,-57r32,-123r45,0r-54,180r-43,0r-33,-115r-34,115r-43,0r-52,-180r45,0r31,123r34,-123r38,0","w":270},"x":{"d":"120,-180r51,0r-55,84r62,96r-50,0r-37,-57r-36,57r-52,0r62,-96r-55,-84r51,0r30,45","w":180},"y":{"d":"125,-180r44,0r-56,191v-12,48,-40,56,-85,49r0,-38v16,5,39,-3,41,-18r-65,-184r47,0r40,134","w":172},"z":{"d":"21,-180r144,0r0,33r-95,109r95,0r0,38r-154,0r0,-33r97,-108r-87,0r0,-39","w":180},"{":{"d":"126,33v-83,7,-84,-31,-84,-104v0,-32,-15,-39,-27,-43r0,-22v46,-2,11,-113,41,-132v12,-12,25,-15,70,-15r0,23v-34,2,-38,37,-38,85v0,36,-15,44,-34,50v26,7,35,29,35,75v0,38,4,51,37,60r0,23","w":127},"|":{"d":"60,-270r0,360r-37,0r0,-360r37,0","w":82},"}":{"d":"1,-283v83,-6,85,31,85,104v0,32,15,39,27,43r0,22v-46,2,-13,110,-41,132v-13,10,-26,15,-71,15r0,-23v32,-3,38,-37,38,-85v0,-36,15,-44,34,-50v-26,-7,-34,-30,-34,-75v0,-38,-5,-51,-38,-60r0,-23","w":127},"~":{"d":"194,-136r17,32v-13,19,-59,43,-90,18v-29,-14,-53,-24,-74,11r-17,-31v5,-19,58,-46,90,-21v23,18,59,19,74,-9","w":240},"'":{"d":"57,-261v6,35,-12,73,-15,109r-9,0r-18,-96v-1,-25,35,-26,42,-13","w":74},"\u201c":{"d":"60,-157r-47,0v2,-28,-5,-67,8,-82v12,-13,25,-15,37,-17r0,19v-19,6,-20,15,-20,30r22,0r0,50xm122,-157r-47,0v2,-28,-5,-67,7,-82v12,-14,25,-15,37,-17r0,19v-19,6,-19,15,-19,30r22,0r0,50","w":135},"\u2013":{"d":"15,-133r172,0r0,40r-172,0r0,-40"},"\u201d":{"d":"75,-254r47,0v-2,28,5,67,-8,82v-12,13,-25,15,-37,17r0,-19v19,-6,20,-15,20,-30r-22,0r0,-50xm13,-254r47,0v-2,28,5,67,-7,82v-12,14,-25,15,-37,17r0,-19v19,-6,19,-15,19,-30r-22,0r0,-50","w":135},"\u2026":{"d":"276,-49r48,0r0,49r-48,0r0,-49xm156,-49r48,0r0,49r-48,0r0,-49xm36,-49r48,0r0,49r-48,0r0,-49","w":360},"`":{"d":"13,-255r53,0r19,49r-32,0","w":97},"\u2014":{"d":"15,-133r225,0r0,40r-225,0r0,-40","w":254},"\u00d7":{"d":"216,-36r-27,27r-69,-69r-69,69r-27,-27r69,-69r-69,-69r27,-27r69,69r69,-69r27,27r-69,69","w":240},"\u2122":{"d":"236,-254r0,119r-25,0r2,-93r-27,93r-23,0r-28,-93r3,93r-25,0r0,-119r33,0r29,90r27,-90r34,0xm66,-233r0,98r-25,0r0,-98r-38,0r0,-21r100,0r0,21r-37,0","w":247},"\u00a0":{"w":97}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991 Adobe Systems Incorporated. All Rights Reserved.Berthold
 * Akzidenz Grotesk is a registered trademark of H. Berthold AG.
 */
Cufon.registerFont({"w":202,"face":{"font-family":"Berthold Akzidenz Grotesk BE","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-4 -290 352 90","underline-thickness":"18","underline-position":"-36","stemh":"42","stemv":"55","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":97},"!":{"d":"49,-87v-10,-51,-21,-102,-17,-167r58,0v3,65,-7,116,-17,167r-24,0xm32,0r0,-61r58,0r0,61r-58,0","w":105},"\"":{"d":"104,-147r-21,-99v0,-31,53,-32,51,-1v-2,36,-13,66,-19,100r-11,0xm28,-147r-20,-99v0,-31,53,-32,51,-1v-2,36,-13,66,-19,100r-12,0","w":142},"#":{"d":"175,-67r-10,67r-45,0r10,-67r-36,0r-9,67r-45,0r9,-67r-34,0r0,-44r40,0r5,-35r-36,0r0,-44r42,0r9,-64r45,0r-9,64r36,0r9,-64r45,0r-9,64r33,0r0,44r-39,0r-5,35r35,0r0,44r-41,0xm100,-111r36,0r5,-35r-36,0","w":240},"$":{"d":"40,-125v-57,-57,7,-125,66,-123r0,-42r29,0r0,42v31,3,53,11,81,29r-32,36v-24,-12,-30,-13,-49,-17r0,48v47,10,88,23,89,74v1,54,-44,78,-89,82r0,43r-28,0r0,-43v-33,-3,-62,-10,-97,-34r32,-37v33,19,51,21,65,22r0,-56v-27,-5,-52,-9,-67,-24xm107,-201v-15,2,-30,11,-30,24v0,14,15,17,30,20r0,-44xm135,-95r0,49v9,-1,32,-5,32,-27v0,-16,-18,-20,-32,-22","w":240},"%":{"d":"75,0r136,-259r28,15r-135,259xm305,-80v-4,45,-4,82,-58,82v-83,0,-75,-165,2,-165v43,0,59,50,56,83xm246,-132v-21,2,-19,43,-19,54v0,28,4,50,21,50v19,0,21,-38,21,-52v0,-22,-4,-54,-23,-52xm9,-165v1,-37,14,-84,59,-83v32,0,56,27,56,84v0,45,-4,82,-58,82v-44,0,-57,-46,-57,-83xm65,-216v-22,2,-19,43,-19,54v0,28,4,49,21,49v19,0,20,-35,20,-51v0,-15,-1,-54,-22,-52","w":315},"&":{"d":"10,-76v0,-43,40,-74,63,-80v-32,-42,-18,-100,48,-100v40,0,62,26,62,55v0,31,-24,51,-47,60v17,26,20,31,34,50v7,-15,9,-20,13,-38r45,17v-9,28,-13,34,-28,60v4,8,19,14,38,12r0,40v-32,0,-59,3,-73,-17v-12,7,-32,20,-67,20v-59,0,-88,-39,-88,-79xm114,-175v21,-6,38,-39,6,-42v-24,3,-21,23,-6,42xm139,-52r-44,-67v-30,10,-47,79,8,79v14,0,26,-6,36,-12","w":247},"\u2019":{"d":"16,-195r0,-59r57,0v-1,63,7,111,-57,122r0,-26v17,-5,22,-14,23,-37r-23,0","w":90},"(":{"d":"64,-109v0,55,25,114,58,140r-19,21v-35,-27,-89,-72,-89,-158v0,-13,-1,-57,34,-106v21,-30,42,-46,55,-55r19,18v-28,26,-58,79,-58,140","w":127},")":{"d":"63,-109v0,-55,-24,-114,-57,-140r18,-21v34,26,90,72,90,158v0,13,0,57,-35,106v-21,30,-43,47,-55,56r-19,-18v28,-26,58,-79,58,-141","w":127},"*":{"d":"56,-208v-8,-9,-7,-28,-7,-46r28,0v0,18,1,36,-6,46v8,-13,26,-16,42,-21r9,27v-15,4,-27,11,-46,8v16,6,23,21,33,34r-23,17v-8,-13,-20,-22,-22,-42v-2,20,-14,29,-22,42r-23,-17v10,-12,16,-28,31,-34v-16,6,-30,-3,-45,-6r8,-28v16,5,34,8,43,20","w":127},"+":{"d":"143,-82r0,82r-45,0r0,-82r-83,0r0,-46r83,0r0,-82r45,0r0,82r82,0r0,46r-82,0","w":240},",":{"d":"16,0r0,-60r58,0v-2,33,5,62,-7,88v-12,24,-35,30,-50,34r0,-25v16,-6,20,-18,21,-37r-22,0","w":90},"-":{"d":"19,-80r0,-52r89,0r0,52r-89,0","w":127},".":{"d":"16,0r0,-60r57,0r0,60r-57,0","w":90},"\/":{"d":"6,0r109,-254r51,0r-109,254r-51,0","w":172},"0":{"d":"14,-124v0,-54,8,-119,84,-124v81,-5,90,92,90,127v0,55,-19,126,-89,126v-11,0,-40,0,-63,-33v-14,-21,-22,-51,-22,-96xm134,-120v0,-35,-2,-83,-35,-83v-24,0,-31,36,-31,91v0,28,4,73,33,73v32,0,33,-47,33,-81"},"1":{"d":"32,-208v27,1,61,-16,65,-36r44,0r0,244r-58,0r0,-178v-13,6,-16,7,-51,8r0,-38"},"2":{"d":"95,-206v-28,-1,-29,24,-26,53r-57,-4v0,-12,-1,-26,5,-43v17,-46,61,-48,80,-48v12,0,30,1,46,9v32,16,37,48,37,65v8,39,-48,98,-94,129r95,-1r0,46r-168,0r0,-42v32,-31,109,-69,107,-131v0,-10,0,-33,-25,-33"},"3":{"d":"187,-73v0,75,-111,104,-159,51v-18,-20,-17,-46,-17,-60r56,-5v-3,27,9,48,30,47v19,0,32,-13,32,-36v0,-33,-30,-32,-44,-31r0,-42v6,0,12,2,18,0v39,-13,19,-56,-5,-56v-25,0,-25,25,-25,35r-57,-5v3,-23,8,-43,27,-56v59,-40,137,-12,138,48v0,29,-17,47,-41,54v29,4,47,29,47,56"},"4":{"d":"105,-244r55,0r0,148r32,0r0,40r-32,0r0,56r-57,0r0,-56r-99,0r1,-44xm103,-96r2,-94v-16,36,-40,63,-60,94r58,0"},"5":{"d":"126,-84v0,-48,-48,-53,-56,-23r-50,-9r15,-127r140,0r-4,46r-92,0r-6,44v5,-4,17,-12,39,-12v47,0,73,36,73,80v0,42,-26,90,-91,90v-61,0,-82,-44,-84,-82r57,-2v-2,20,8,40,29,40v28,0,30,-32,30,-45"},"6":{"d":"103,4v-61,0,-87,-40,-88,-120v0,-66,15,-133,95,-133v44,0,76,41,75,66r-57,7v3,-30,-31,-38,-46,-17v-10,15,-11,46,-12,65v29,-47,120,-39,120,46v0,54,-36,86,-87,86xm135,-78v3,-12,-10,-40,-31,-37v-15,2,-27,13,-27,37v0,13,3,39,28,39v30,0,30,-32,30,-39"},"7":{"d":"185,-200v-49,56,-75,122,-85,200r-67,0v8,-34,27,-119,96,-197r-117,0r0,-47r173,0r0,44"},"8":{"d":"14,-70v-1,-33,27,-53,44,-58v-10,-6,-34,-20,-34,-55v0,-30,20,-65,77,-65v42,0,76,23,76,67v0,36,-23,46,-35,52v15,6,45,19,45,60v0,56,-50,73,-87,73v-52,0,-84,-26,-86,-74xm100,-206v-15,1,-22,15,-22,29v0,10,2,30,23,30v12,0,23,-7,23,-27v0,-9,-2,-33,-24,-32xm100,-39v20,0,28,-7,29,-36v0,-28,-18,-33,-26,-34v-15,-1,-31,9,-31,34v0,26,14,36,28,36"},"9":{"d":"99,-248v63,0,87,40,87,120v0,67,-15,133,-94,133v-15,0,-30,-3,-43,-11v-26,-17,-30,-42,-32,-56r57,-6v-3,30,31,38,45,17v10,-15,12,-46,13,-65v-42,54,-120,35,-120,-46v0,-54,36,-86,87,-86xm67,-166v-4,12,9,41,31,37v15,-2,27,-13,27,-37v0,-13,-4,-40,-29,-40v-30,0,-29,33,-29,40"},":":{"d":"31,-127r0,-61r58,0r0,61r-58,0xm31,0r0,-61r58,0r0,61r-58,0","w":105},";":{"d":"31,-127r0,-62r58,0r0,62r-58,0xm31,-62r58,0v-2,44,8,72,-17,102v-13,15,-27,18,-41,22r0,-26v16,-6,21,-13,22,-36r-22,0r0,-62","w":105},"<":{"d":"240,-49r0,50r-240,-105r0,-45r240,-106r0,50r-176,79","w":240},"=":{"d":"240,-90r0,45r-240,0r0,-45r240,0xm240,-165r0,45r-240,0r0,-45r240,0","w":240},">":{"d":"240,-104r-240,105r0,-50r176,-77r-176,-79r0,-50r240,106r0,45","w":240},"?":{"d":"117,-218v-22,-4,-46,22,-44,42r-51,-16v6,-36,49,-67,99,-67v43,0,92,24,90,67v-4,68,-66,57,-85,105r-45,0v-3,-55,60,-51,69,-99v0,-12,-11,-35,-33,-32xm76,0r0,-61r56,0r0,61r-56,0","w":217},"@":{"d":"163,16v39,0,93,-24,117,-52r17,22v-22,21,-65,59,-132,59v-54,0,-140,-29,-140,-131v0,-91,70,-170,165,-170v67,0,108,45,108,105v0,65,-41,127,-86,127v-27,0,-31,-19,-32,-24v-27,39,-96,31,-96,-37v0,-50,32,-103,78,-103v24,0,34,14,39,21r3,-14r33,0v-8,35,-19,77,-22,116v0,4,0,11,6,11v15,0,46,-45,46,-96v0,-58,-42,-78,-80,-78v-69,0,-133,65,-133,143v0,80,65,101,109,101xm144,-56v26,0,45,-46,45,-70v0,-19,-11,-30,-25,-30v-26,0,-42,40,-42,69v0,30,18,31,22,31","w":322},"A":{"d":"94,-254r66,0r94,254r-68,0r-12,-41r-94,0r-13,41r-67,0xm159,-86r-33,-108v-8,36,-20,74,-31,108r64,0","w":254},"B":{"d":"179,-131v27,1,64,24,64,60v0,20,-10,49,-42,62v-44,17,-118,6,-177,9r0,-254v89,0,209,-15,209,65v0,41,-35,55,-54,58xm171,-181v-6,-42,-50,-21,-86,-26r0,53v37,-4,80,15,86,-27xm178,-76v-6,-51,-51,-26,-93,-32r0,62v39,-3,89,13,93,-30","w":254},"C":{"d":"194,-171v-4,-16,-33,-39,-54,-39v-41,0,-63,39,-63,81v0,56,29,83,63,83v33,0,46,-23,55,-38r50,26v-22,33,-44,66,-109,66v-67,0,-122,-49,-122,-135v0,-106,116,-173,197,-110v18,14,26,28,33,41","w":247},"D":{"d":"24,0r0,-254v78,4,135,-15,191,30v38,30,44,95,30,144v-23,78,-94,80,-121,80r-100,0xm175,-178v-25,-30,-49,-22,-87,-23r0,150v52,-1,100,6,100,-76v0,-18,0,-36,-13,-51","w":262},"E":{"d":"24,0r0,-254r188,0r0,49r-124,0r0,46r116,0r0,48r-116,0r0,61r136,0r0,50r-200,0","w":232},"F":{"d":"24,-254r195,0r0,49r-132,0r0,53r122,0r0,49r-122,0r0,103r-63,0r0,-254","w":225},"G":{"d":"78,-129v0,65,48,103,101,74v18,-10,19,-25,21,-38r-57,0r0,-48r110,0r0,141r-49,0r0,-24v-10,10,-32,30,-75,30v-71,0,-115,-58,-115,-133v0,-82,54,-136,126,-136v67,0,100,44,112,59r-49,29v-9,-14,-24,-36,-59,-36v-48,0,-66,40,-66,82","w":270},"H":{"d":"181,-254r64,0r0,254r-64,0r0,-108r-92,0r0,108r-65,0r0,-254r65,0r0,92r92,0r0,-92","w":270},"I":{"d":"24,-254r63,0r0,254r-63,0r0,-254","w":112},"J":{"d":"119,-71v9,67,-46,77,-113,71r0,-51v32,1,54,-1,49,-27r0,-176r64,0r0,183","w":142},"K":{"d":"24,0r0,-254r61,0r0,104r95,-104r76,0r-90,94r98,160r-72,0r-68,-115r-39,40r0,75r-61,0","w":254},"L":{"d":"24,0r0,-255r64,0r0,201r99,0r0,54r-163,0","w":195},"M":{"d":"213,-254r92,0r0,254r-61,0r5,-207r-56,207r-55,0r-57,-209r5,209r-62,0r0,-254r93,0r48,183","w":330},"N":{"d":"24,0r0,-254r62,0r94,163r-3,-163r61,0r0,254r-63,0r-92,-160r2,160r-61,0","w":262},"O":{"d":"270,-126v1,73,-57,133,-129,133v-81,0,-126,-62,-126,-135v0,-84,74,-160,172,-127v78,26,83,112,83,129xm206,-121v2,-46,-20,-88,-65,-88v-39,0,-63,34,-63,80v0,60,33,83,63,83v30,0,63,-22,65,-75","w":285},"P":{"d":"24,0r0,-254v95,4,216,-28,218,84v0,14,-3,28,-9,40v-33,57,-81,45,-145,47r0,83r-64,0xm179,-170v0,-53,-49,-33,-91,-37r0,77v44,-3,91,14,91,-40","w":247},"Q":{"d":"294,-22r-18,45v-27,-5,-37,-8,-70,-33v-47,28,-118,19,-153,-17v-77,-82,-33,-235,88,-235v81,0,129,62,129,133v0,44,-15,68,-25,84v15,13,23,19,49,23xm207,-128v0,-52,-35,-83,-69,-80v-45,4,-60,44,-60,79v0,51,26,83,65,83v43,0,64,-38,64,-82","w":285},"R":{"d":"24,-254v103,1,216,-20,218,82v0,51,-35,64,-52,70r58,102r-70,0r-50,-91r-40,0r0,91r-64,0r0,-254xm179,-173v-5,-53,-49,-28,-91,-34r0,69v44,-5,81,19,91,-35","w":254},"S":{"d":"235,-82v0,57,-60,88,-116,88v-72,0,-100,-34,-116,-52r48,-30v11,15,50,32,74,32v25,0,47,-12,47,-30v0,-32,-56,-24,-86,-32v-15,-4,-69,-14,-69,-69v0,-66,59,-85,103,-85v59,0,90,28,112,48r-47,33v-16,-17,-34,-31,-67,-31v-25,0,-37,14,-37,26v0,19,21,23,32,24v64,7,122,18,122,78","w":247},"T":{"d":"3,-204r0,-51r195,0r0,51r-66,0r0,204r-63,0r0,-204r-66,0"},"U":{"d":"86,-96v-4,34,17,49,46,49v43,0,44,-29,44,-49r0,-158r63,0v-5,76,16,157,-14,214v-24,45,-84,46,-95,46v-19,0,-42,-5,-59,-14v-49,-25,-49,-69,-49,-104r0,-142r64,0r0,158","w":262},"V":{"d":"120,-73r52,-181r68,0r-88,254r-65,0r-87,-254r67,0","w":240},"W":{"d":"251,-66v9,-67,24,-122,38,-188r63,0r-65,254r-65,0r-46,-168v-8,43,-33,117,-46,168r-66,0r-64,-254r63,0v27,121,30,134,38,189v11,-69,29,-123,46,-189r56,0v17,63,39,121,48,188","w":352},"X":{"d":"138,-177r50,-77r73,0r-84,116r99,138r-72,0r-65,-96r-66,96r-73,0r98,-138r-84,-116r75,0","w":277},"Y":{"d":"96,-118r-95,-136r73,0r55,87v14,-30,37,-59,54,-87r72,0r-96,134r0,120r-63,0r0,-118","w":254},"Z":{"d":"14,-204r0,-50r205,0r0,50r-139,154r138,0r0,50r-216,0r0,-48r141,-156r-129,0","w":225},"[":{"d":"24,37r0,-291r96,0r0,29r-49,0r0,233r49,0r0,29r-96,0","w":127},"\\":{"d":"166,0r-51,0r-109,-254r51,0","w":172},"]":{"d":"8,-225r0,-29r95,0r0,291r-95,0r0,-29r49,0r0,-233r-49,0","w":127},"^":{"d":"138,-254r67,137r-42,0r-42,-88r-44,88r-42,0r70,-137r33,0","w":240},"_":{"d":"184,27r0,18r-188,0r0,-18r188,0","w":180},"\u2018":{"d":"17,-134v2,-37,-7,-70,11,-95v16,-22,37,-26,46,-27r0,25v-16,7,-21,16,-23,37r23,0r0,60r-57,0","w":90},"a":{"d":"16,-52v0,-63,58,-58,114,-71v-1,-18,3,-34,-22,-34v-24,0,-28,15,-29,22r-55,0v-3,-33,43,-58,81,-58v23,0,79,5,79,54v0,43,-6,107,5,139r-54,0r0,-17v-14,10,-30,22,-58,22v-43,0,-61,-31,-61,-57xm130,-90v-22,10,-56,8,-60,35v-3,17,26,24,40,13v17,-13,20,-29,20,-48","w":209},"b":{"d":"213,-98v-1,55,-22,103,-82,103v-33,0,-48,-17,-55,-25r2,20r-53,0r0,-255r54,0r0,84v40,-39,136,-33,134,73xm119,-36v33,0,40,-39,40,-60v0,-30,-10,-59,-41,-57v-40,2,-41,46,-41,57v-1,30,13,60,42,60","w":225},"c":{"d":"111,-38v4,4,37,-14,36,-28r42,22v-36,67,-177,80,-177,-48v0,-55,31,-101,94,-101v21,0,56,6,80,45r-41,23v-4,-12,-17,-26,-36,-26v-56,0,-54,110,2,113","w":180},"d":{"d":"139,-254r54,0r0,254r-50,0r0,-18v-16,25,-77,31,-104,1v-25,-28,-27,-64,-27,-76v-3,-97,78,-121,127,-81r0,-80xm103,-36v30,0,40,-45,37,-58v1,-17,-4,-58,-33,-58v-39,0,-39,50,-39,58v0,26,7,58,35,58","w":217},"e":{"d":"200,-48v-18,29,-47,55,-93,55v-56,0,-95,-35,-95,-97v0,-45,22,-104,96,-104v11,0,44,1,68,27v24,26,25,63,26,84r-134,0v0,23,13,47,43,47v30,0,40,-20,47,-33xm145,-117v5,-32,-45,-49,-65,-25v-7,9,-10,17,-12,25r77,0","w":209},"f":{"d":"33,-184v-10,-60,30,-83,90,-71r0,42v0,0,-39,-3,-35,29r37,0r0,34r-37,0r0,150r-55,0r0,-150r-29,0r0,-34r29,0","w":127},"g":{"d":"71,0v-1,13,11,33,34,31v42,-3,33,-26,34,-56v-11,7,-24,16,-50,16v-50,1,-78,-42,-78,-90v0,-38,18,-92,80,-92v29,0,42,12,50,20r0,-17r52,0r0,180v-1,21,-1,46,-28,61v-58,32,-161,11,-151,-53r57,0xm138,-99v0,-25,-5,-53,-37,-51v-26,2,-33,24,-33,51v0,16,2,48,36,48v28,0,34,-21,34,-48","w":217},"h":{"d":"110,-146v-52,4,-23,94,-30,146r-56,0r0,-255r56,0r0,87v8,-8,24,-25,54,-25v38,0,59,30,59,70r0,123r-55,0v-4,-52,16,-149,-28,-146","w":217},"i":{"d":"25,-212r0,-43r55,0r0,43r-55,0xm25,0r0,-188r55,0r0,188r-55,0","w":105},"j":{"d":"25,-254r55,0r0,42r-55,0r0,-42xm25,-7r0,-181r55,0r0,186v0,32,0,66,-54,66r-26,0r0,-44v25,1,25,-6,25,-27","w":105},"k":{"d":"24,0r0,-254r54,0r0,131r61,-65r67,0r-65,67r73,121r-64,0r-48,-81r-24,22r0,59r-54,0","w":209},"l":{"d":"24,-254r56,0r0,254r-56,0r0,-254","w":105},"m":{"d":"107,-148v-50,7,-21,94,-28,148r-55,0r0,-188r55,0r0,20v6,-8,21,-25,53,-25v31,0,42,12,52,22v11,-9,26,-22,56,-22v51,0,58,20,58,71r0,122r-55,0r-2,-131v-21,-37,-53,-12,-53,29r0,102r-54,0r0,-111v1,-18,-7,-40,-27,-37","w":322},"n":{"d":"137,-106v2,-33,-5,-42,-27,-42v-29,0,-29,23,-29,46r0,102r-56,0r0,-188r56,0r0,17v30,-38,111,-28,111,42r0,129r-55,0r0,-106","w":217},"o":{"d":"120,-194v77,4,93,66,93,100v0,48,-27,99,-100,99v-53,0,-101,-30,-101,-99v0,-58,36,-104,108,-100xm157,-92v0,-52,-55,-79,-80,-39v-21,34,-8,93,36,92v30,0,44,-23,44,-53","w":225},"p":{"d":"72,-187r0,17v47,-47,135,-14,135,75v0,39,-18,99,-82,99v-21,0,-31,-7,-46,-16r0,77r-56,0r0,-252r49,0xm114,-36v50,3,56,-117,2,-117v-25,0,-42,28,-40,59v2,37,10,57,38,58","w":217},"q":{"d":"138,65r0,-78v-46,34,-127,14,-127,-79v0,-91,83,-126,132,-80r0,-16r50,0r0,253r-55,0xm104,-37v19,0,38,-18,38,-59v0,-37,-17,-57,-38,-57v-11,0,-38,7,-38,58v0,33,17,58,38,58","w":217},"r":{"d":"78,-188r0,20v12,-10,25,-19,54,-22r0,49v-26,5,-53,4,-53,35r0,106r-55,0r0,-188r54,0","w":135},"s":{"d":"-1,-32r35,-31v15,15,34,26,55,26v19,0,45,-17,26,-30v-41,-12,-101,-10,-102,-64v0,-31,26,-63,79,-63v44,0,71,19,84,28r-35,32v-18,-14,-34,-19,-47,-19v-22,0,-26,9,-26,14v0,11,12,13,30,16v38,7,81,17,81,62v0,44,-45,66,-89,66v-52,0,-79,-26,-91,-37","w":187},"t":{"d":"120,-1v-52,9,-89,-2,-89,-58r0,-91r-27,0r0,-34r27,0r0,-58r55,0r0,58r37,0r0,34r-37,0r0,85v-5,22,15,23,34,20r0,44","w":127},"u":{"d":"105,-40v14,4,38,-16,32,-31r0,-117r55,0r0,188r-55,0r0,-18v-36,41,-114,30,-114,-52r0,-118r56,0r0,117v-1,19,5,30,26,31","w":217},"v":{"d":"61,0r-61,-188r58,0v23,84,27,101,33,137v9,-50,19,-88,32,-137r57,0r-61,188r-58,0","w":180},"w":{"d":"0,-188r58,0r27,131r28,-131r59,0r26,133r29,-133r57,0r-56,188r-60,0r-28,-125r-28,125r-61,0","w":285},"x":{"d":"121,-188r59,0r-57,88r64,100r-59,0r-35,-58r-32,58r-61,0r64,-102r-57,-86r62,0r25,48","w":187},"y":{"d":"121,-188r59,0r-66,203v-8,39,-44,57,-98,49r0,-43v23,2,49,2,40,-27r-56,-182r59,0r31,135","w":180},"z":{"d":"23,-145r0,-43r161,0r0,43r-100,102r100,0r0,43r-172,0r0,-42r102,-103r-91,0","w":195},"{":{"d":"41,-19v3,-44,0,-69,-28,-79r0,-19v54,-11,10,-103,41,-134v16,-16,35,-16,73,-16r0,19v-32,5,-44,27,-40,69v6,49,-15,65,-37,71v24,3,43,33,38,80v-4,39,10,55,39,61r0,19v-59,5,-89,-14,-86,-71","w":127},"|":{"d":"64,-270r0,360r-46,0r0,-360r46,0","w":82},"}":{"d":"92,-197v-3,45,0,71,29,80r0,19v-53,11,-10,102,-41,133v-16,16,-36,17,-74,17r0,-19v32,-5,45,-27,40,-69v-5,-50,16,-65,38,-72v-25,-2,-45,-32,-39,-80v5,-39,-10,-55,-39,-60r0,-19v58,-4,89,13,86,70","w":127},"~":{"d":"194,-136r17,32v-13,19,-59,43,-90,18v-29,-14,-53,-24,-74,11r-17,-31v5,-19,58,-46,90,-21v23,18,59,19,74,-9","w":240},"'":{"d":"32,-147r-20,-99v0,-31,53,-32,51,-1v-2,36,-13,66,-19,100r-12,0","w":74},"\u201c":{"d":"156,-194r0,60r-57,0v1,-63,-9,-111,57,-123r0,26v-16,5,-22,14,-22,37r22,0xm73,-194r0,60r-56,0v1,-62,-9,-111,56,-123r0,26v-16,5,-22,14,-22,37r22,0","w":172},"\u2013":{"d":"19,-80r0,-51r164,0r0,51r-164,0"},"\u201d":{"d":"99,-194r0,-60r57,0v-1,62,9,112,-57,123r0,-26v16,-5,23,-14,23,-37r-23,0xm17,-194r0,-60r56,0v-1,62,9,111,-56,123r0,-26v16,-5,22,-14,22,-37r-22,0","w":172},"\u2026":{"d":"272,-60r57,0r0,60r-57,0r0,-60xm152,-60r56,0r0,60r-56,0r0,-60xm31,-60r57,0r0,60r-57,0r0,-60","w":360},"`":{"d":"2,-259r67,0r26,48r-36,0","w":97},"\u2014":{"d":"19,-80r0,-51r179,0r0,51r-179,0","w":217},"\u00d7":{"d":"218,-40r-32,33r-66,-65r-66,65r-32,-33r65,-65r-65,-66r32,-31r66,64r66,-64r32,31r-65,66","w":240},"\u2122":{"d":"243,-254r0,119r-30,0r4,-88r-25,88r-27,0r-27,-87v4,22,3,60,4,87r-29,0r0,-119r38,0r28,86r25,-86r39,0xm67,-230r0,95r-30,0r0,-95r-37,0r0,-24r103,0r0,24r-36,0","w":247},"\u00a0":{"w":97}}});




/*-------------------------------------------------------------------- 
 * javascript method: "pxToEm"
 * by:
   Scott Jehl (scott@filamentgroup.com) 
   Maggie Wachs (maggie@filamentgroup.com)
   http://www.filamentgroup.com
 *
 * Copyright (c) 2008 Filament Group
 * Dual licensed under the MIT (filamentgroup.com/examples/mit-license.txt) and GPL (filamentgroup.com/examples/gpl-license.txt) licenses.
 *
 * Description: Extends the native Number and String objects with pxToEm method. pxToEm converts a pixel value to ems depending on inherited font size.  
 * Article: http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/
 * Demo: http://www.filamentgroup.com/examples/pxToEm/	 	
 *							
 * Options:  	 								
 		scope: string or jQuery selector for font-size scoping
 		reverse: Boolean, true reverses the conversion to em-px
 * Dependencies: jQuery library						  
 * Usage Example: myPixelValue.pxToEm(); or myPixelValue.pxToEm({'scope':'#navigation', reverse: true});
 *
 * Version: 2.0, 08.01.2008 
 * Changelog:
 *		08.02.2007 initial Version 1.0
 *		08.01.2008 - fixed font-size calculation for IE
--------------------------------------------------------------------*/

Number.prototype.pxToEm = String.prototype.pxToEm = function(settings){
	//set defaults
	settings = jQuery.extend({
		scope: 'body',
		reverse: false
	}, settings);
	
	var pxVal = (this == '') ? 0 : parseFloat(this);
	var scopeVal;
	var getWindowWidth = function(){
		var de = document.documentElement;
		return self.innerWidth || (de && de.clientWidth) || document.body.clientWidth;
	};	
	
	/* When a percentage-based font-size is set on the body, IE returns that percent of the window width as the font-size. 
		For example, if the body font-size is 62.5% and the window width is 1000px, IE will return 625px as the font-size. 	
		When this happens, we calculate the correct body font-size (%) and multiply it by 16 (the standard browser font size) 
		to get an accurate em value. */
				
	if (settings.scope == 'body' && jQuery.browser.msie && (parseFloat(jQuery('body').css('font-size')) / getWindowWidth()).toFixed(1) > 0.0) {
		var calcFontSize = function(){		
			return (parseFloat(jQuery('body').css('font-size'))/getWindowWidth()).toFixed(3) * 16;
		};
		scopeVal = calcFontSize();
	}
	else { scopeVal = parseFloat(jQuery(settings.scope).css("font-size")); };
			
	var result = (settings.reverse == true) ? (pxVal * scopeVal).toFixed(2) + 'px' : (pxVal / scopeVal).toFixed(2) + 'em';
	return result;
};





/*-------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Description: Compares the heights or widths of the top-level children of a provided element 
 		and sets their min-height to the tallest height (or width to widest width). Sets in em units 
 		by default if pxToEm() method is available.
 * Dependencies: jQuery library, pxToEm method	(article: 
		http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/)							  
 * Usage Example: jQuery(element).equalHeights();
  		Optional: to set min-height in px, pass a true argument: jQuery(element).equalHeights(true);
 * Version: 2.0, 08.01.2008
--------------------------------------------------------------------*/

jQuery.fn.equalHeights = function(px) {
	jQuery(this).each(function(){
		var currentTallest = 0;
		jQuery(this).children().each(function(i){
			if (jQuery(this).height() > currentTallest) { currentTallest = jQuery(this).height(); }
		});
		if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
		// for ie6, set height since min-height isn't supported
		if (jQuery.browser.msie && jQuery.browser.version == 6.0) { jQuery(this).children().css({'height': currentTallest}); }
		jQuery(this).children().css({'min-height': currentTallest}); 
	});
	return this;
};




/**
 * @author Alexander Farkas
 * v. 1.02
 */
(function(jQuery) {
	jQuery.extend(jQuery.fx.step,{
	    backgroundPosition: function(fx) {
            if (fx.state === 0 && typeof fx.end == 'string') {
                var start = jQuery.curCSS(fx.elem,'backgroundPosition');
                start = toArray(start);
                fx.start = [start[0],start[2]];
                var end = toArray(fx.end);
                fx.end = [end[0],end[2]];
                fx.unit = [end[1],end[3]];
			}
            var nowPosX = [];
            nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
            nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];           
            fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];
            
           function toArray(strg){
               strg = strg.replace(/left|top/g,'0px');
               strg = strg.replace(/right|bottom/g,'100%');
               strg = strg.replace(/([0-9\.]+)(\s|\)|jQuery)/g,"jQuery1pxjQuery2");
               var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
               return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
           }
        }
	});
})(jQuery);