// Plugins
/*
 * jQuery EasyTabs plugin 2.2.2
 *
 * Copyright (c) 2010-2011 Steve Schwartz (JangoSteve)
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Date: Sat Apr 05 18:00:00 2011 -0500
 */
(function(b){function a(f,c,e){var d=b.Event(c);f.trigger(d,e);return d.result!==false}b.fn.easyTabs=function(){b.error("easyTabs() is no longer used. Now use easytabs() -- no capitalization.")};b.fn.easytabs=function(d){var c=arguments;return this.each(function(){var f=b(this),e=f.data("easytabs");if(!e){b.fn.easytabs.methods.init.apply(f,[d]);b.fn.easytabs.methods.initHashChange.apply(f);b.fn.easytabs.methods.initCycle.apply(f)}if(b.fn.easytabs.publicMethods[d]){return b.fn.easytabs.publicMethods[d].apply(f,Array.prototype.slice.call(c,1))}})};b.fn.easytabs.defaults={animate:true,panelActiveClass:"active",tabActiveClass:"active",defaultTab:"li:first-child",animationSpeed:"normal",tabs:"> ul > li",updateHash:true,cycle:false,collapsible:false,collapsedClass:"collapsed",collapsedByDefault:true,uiTabs:false,transitionIn:"fadeIn",transitionOut:"fadeOut",transitionCollapse:"slideUp",transitionUncollapse:"slideDown"};b.fn.easytabs.methods={init:function(d){var i=this,h,c,g=b(),f,j,e={fast:200,normal:400,slow:600};if(d&&d.uiTabs){i.addClass("ui-tabs");b.extend(b.fn.easytabs.defaults,{tabActiveClass:"ui-tabs-selected"})}if(d&&d.collapsible&&d.defaultTab){b.fn.easytabs.defaults.collapsedByDefault=false}h=b.extend({},b.fn.easytabs.defaults,d);if(typeof(h.animationSpeed)=="string"){h.animationSpeed=e[h.animationSpeed]}c=i.find(h.tabs);c.each(function(){targetId=b(this).children("a").attr("href").match(/#([^\?]+)/)[0].substr(1);$matchingPanel=i.find("div[id="+targetId+"]");if($matchingPanel.size()>0){$matchingPanel.data("easytabs",{position:$matchingPanel.css("position"),visibility:$matchingPanel.css("visibility")});g=g.add($matchingPanel.hide())}else{c=c.not(b(this))}});b("a.anchor").remove().prependTo("body");i.data("easytabs",{opts:h,skipUpdateToHash:false,tabs:c,panels:g});b.fn.easytabs.methods.setDefaultTab.apply(i);c.children("a").bind("click.easytabs",function(k){i.data("easytabs").opts.cycle=false;i.data("easytabs").skipUpdateToHash=false;$clicked=b(this);b.fn.easytabs.methods.selectTab.apply($clicked,[i]);k.preventDefault()})},loadFromData:function(){return this.data("easytabs")},setDefaultTab:function(){var k=this,h=b.fn.easytabs.methods.loadFromData.apply(k),c=h.opts,j=h.tabs,d=h.panels,g=window.location.hash.match(/^[^\?]*/)[0],i=j.find("a[href='"+g+"']").parent(),e,f;if(i.size()==1){e=i;k.data("easytabs").opts.cycle=false}else{e=j.parent().find(c.defaultTab);if(e.size()==0){b.error("The specified default tab ('"+c.defaultTab+"') could not be found in the tab set.")}}f=e.children("a").first();k.data("easytabs").defaultTab=e;k.data("easytabs").defaultTabLink=f;if(c.collapsible&&i.size()==0&&c.collapsedByDefault){e.addClass(c.collapsedClass).children().addClass(c.collapsedClass)}else{d.filter("#"+f.attr("href").match(/#([^\?]+)/)[0].substr(1)).show().addClass(c.panelActiveClass);e.addClass(c.tabActiveClass).children().addClass(c.tabActiveClass)}},getHeightForHidden:function(){if(this.data("easytabs")&&this.data("easytabs").lastHeight){return this.data("easytabs").lastHeight}var d=this.css("display"),c=this.wrap(b("<div>",{position:"absolute",visibility:"hidden",overflow:"hidden"})).css({position:"relative",visibility:"hidden",display:"block"}).outerHeight();this.unwrap();this.css({position:this.data("easytabs").position,visibility:this.data("easytabs").visibility,display:d});b.extend(this.data("easytabs"),{lastHeight:c});return c},setAndReturnHeight:function(){var c=this.outerHeight(),d={lastHeight:c};if(this.data("easytabs")){b.extend(this.data("easytabs"),d)}else{this.data("easytabs",d)}return c},selectTab:function(q,i){var r=this,h=window.location,e=h.hash.match(/^[^\?]*/)[0],u=b.fn.easytabs.methods.loadFromData.apply(q),n=u.opts,g=u.skipUpdateToHash,d=u.tabs,k=u.panels,f=k.filter(r.attr("href").match(/#([^\?]+)/)[0]),p=u.defaultTabLink,t=(n.animate)?{show:n.transitionIn,hide:n.transitionOut,speed:n.animationSpeed,collapse:n.transitionCollapse,uncollapse:n.transitionUncollapse,halfSpeed:n.animationSpeed/2}:{show:"show",hide:"hide",speed:0,collapse:"hide",uncollapse:"show",halfSpeed:0};if(n.collapsible&&!g&&(r.hasClass(n.tabActiveClass)||r.hasClass(n.collapsedClass))){k.stop(true,true);if(a(q,"easytabs:before",[r,f,u])){d.filter("."+n.tabActiveClass).removeClass(n.tabActiveClass).children().removeClass(n.tabActiveClass);if(r.hasClass(n.collapsedClass)){r.parent().removeClass(n.collapsedClass).addClass(n.tabActiveClass).children().removeClass(n.collapsedClass).addClass(n.tabActiveClass);f.addClass(n.panelActiveClass)[t.uncollapse](t.speed,function(){q.trigger("easytabs:midTransition",[r,f,u]);if(typeof i=="function"){i()}})}else{r.parent().addClass(n.collapsedClass).children().addClass(n.collapsedClass);f.removeClass(n.panelActiveClass)[t.collapse](t.speed,function(){q.trigger("easytabs:midTransition",[r,f,u]);if(typeof i=="function"){i()}})}}}else{if(!r.hasClass(n.tabActiveClass)||!f.hasClass(n.panelActiveClass)){k.stop(true,true);if(a(q,"easytabs:before",[r,f,u])){var l=k.filter(":visible"),o=f.parent(),j=b.fn.easytabs.methods.getHeightForHidden.apply(f),m=l.length?b.fn.easytabs.methods.setAndReturnHeight.apply(l):0,c=j-m,s=function(){q.trigger("easytabs:midTransition",[r,f,u]);if(n.animate&&n.transitionIn=="fadeIn"&&c<0){o.animate({height:o.height()+c},t.halfSpeed).css({"min-height":""})}if(n.updateHash&&!g){window.location.hash=r.attr("href")}else{q.data("easytabs").skipUpdateToHash=false}f[t.show](t.speed,function(){q.data("easytabs").tabs=d;q.data("easytabs").panels=k;o.css({height:"","min-height":""});q.trigger("easytabs:after",[r,f,u]);if(typeof i=="function"){i()}})};if(n.animate&&n.transitionOut=="fadeOut"){if(c>0){o.animate({height:(o.height()+c)},t.halfSpeed)}else{o.css({"min-height":o.height()})}}d.filter("."+n.tabActiveClass).removeClass(n.tabActiveClass).children().removeClass(n.tabActiveClass);d.filter("."+n.collapsedClass).removeClass(n.collapsedClass).children().removeClass(n.collapsedClass);r.parent().addClass(n.tabActiveClass).children().addClass(n.tabActiveClass);k.filter("."+n.panelActiveClass).removeClass(n.panelActiveClass);f.addClass(n.panelActiveClass);if(l.size()>0){l[t.hide](t.speed,s)}else{f[t.uncollapse](t.speed,s)}}}}},selectTabFromHashChange:function(){var i=this,g=b.fn.easytabs.methods.loadFromData.apply(i),e=g.opts,c=g.tabs,d=g.defaultTab,j=g.defaultTabLink,h=window.location.hash.match(/^[^\?]*/)[0],f=c.find("a[href='"+h+"']");if(e.updateHash){if(f.size()>0){i.data("easytabs").skipUpdateToHash=true;b.fn.easytabs.methods.selectTab.apply(f,[i])}else{if(h==""&&!d.hasClass(e.tabActiveClass)&&!e.cycle){i.data("easytabs").skipUpdateToHash=true;b.fn.easytabs.methods.selectTab.apply(j,[i])}}}},cycleTabs:function(d){var g=this,f=b.fn.easytabs.methods.loadFromData.apply(g),e=f.opts,c=f.tabs;if(e.cycle){d=d%c.size();$tab=b(c[d]).children("a").first();g.data("easytabs").skipUpdateToHash=true;b.fn.easytabs.methods.selectTab.apply($tab,[g,function(){setTimeout(function(){b.fn.easytabs.methods.cycleTabs.apply(g,[d+1])},e.cycle)}])}},initHashChange:function(){var c=this;if(typeof b(window).hashchange=="function"){b(window).hashchange(function(){b.fn.easytabs.methods.selectTabFromHashChange.apply(c)})}else{if(b.address&&typeof b.address.change=="function"){b.address.change(function(){b.fn.easytabs.methods.selectTabFromHashChange.apply(c)})}}},initCycle:function(){var h=this,g=b.fn.easytabs.methods.loadFromData.apply(h),f=g.opts,d=g.tabs,e=g.defaultTab,c;if(f.cycle){c=d.index(e);setTimeout(function(){b.fn.easytabs.methods.cycleTabs.apply(h,[c+1])},f.cycle)}}};b.fn.easytabs.publicMethods={select:function(d){var g=this,f=b.fn.easytabs.methods.loadFromData.apply(g),c=f.tabs,e;if((e=c.filter(d)).size()==0){if((e=c.find("a[href='"+d+"']")).size()==0){if((e=c.find("a"+d)).size()==0){b.error("Tab '"+d+"' does not exist in tab set")}}}else{e=e.children("a").first()}b.fn.easytabs.methods.selectTab.apply(e,[g])}}})(jQuery);

/*
 * jQuery hashchange event - v1.3 - 7/21/2010
 * http://benalman.com/projects/jquery-hashchange-plugin/
 * 
 * Copyright (c) 2010 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);

/*
 * 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) Emigre Inc, 2009. Designed by Zuzana Licko. All rights reserved.
 * 
 * Trademark:
 * Mr Eaves OT is a trademark of Emigre, Inc.
 * 
 * Full name:
 * MrEavesModOT-Heavy
 * 
 * Description:
 * Mr Eaves is the sans-serif companion to Mrs Eaves.
 * 
 * Manufacturer:
 * Emigre Inc.
 * 
 * Designer:
 * Zuzana Licko
 * 
 * Vendor URL:
 * http://www.emigre.com
 * 
 * License information:
 * http://www.emigre.com/EUL.html
 */
Cufon.registerFont({"w":182,"face":{"font-family":"medicopy","font-weight":800,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 9 3 6 5 2 2 2 2","ascent":"288","descent":"-72","x-height":"5","bbox":"-21 -253 321 72.594","underline-thickness":"10.8","underline-position":"-25.2","stemh":"46","stemv":"53","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":62},"!":{"d":"87,-216r-19,145r-32,0r-19,-145r70,0xm76,0r-48,0r0,-49r48,0r0,49","w":104},"\"":{"d":"104,-123r-18,-93r53,0r-18,93r-17,0xm35,-123r-18,-93r53,0r-18,93r-17,0","w":155,"k":{"s":14,"q":22,"o":25,"g":22,"e":23,"d":22,"c":23,"a":22,"Y":-7,"X":-7,"W":-11,"V":-11,"T":-14,"Q":9,"O":9,"G":9,"C":9,"A":40,"4":22}},"#":{"d":"25,-34r8,-44r-26,0r4,-27r26,0r7,-40r-26,0r4,-27r27,0r7,-44r25,0r-7,44r34,0r8,-44r25,0r-7,44r26,0r-5,27r-26,0r-7,40r27,0r-5,27r-26,0r-8,44r-25,0r8,-44r-35,0r-8,44r-25,0xm63,-105r34,0r7,-40r-35,0","w":167},"$":{"d":"81,0v-33,-1,-59,-14,-73,-25r12,-40v12,9,35,24,61,26r0,-48v-53,-14,-68,-35,-68,-67v0,-38,27,-59,68,-62r0,-30r17,0r0,30v24,2,46,10,59,19r-11,38v-15,-9,-30,-15,-48,-17r0,36v49,13,70,34,70,71v0,46,-33,65,-70,69r0,32r-17,0r0,-32xm81,-176v-24,2,-25,28,0,32r0,-32xm98,-40v24,-4,29,-37,0,-42r0,42","w":178},"%":{"d":"66,-114v-32,0,-53,-24,-53,-54v0,-30,21,-53,53,-53v32,0,53,23,53,53v0,30,-21,54,-53,54xm66,-139v12,0,19,-8,19,-29v0,-21,-7,-28,-19,-28v-12,0,-18,7,-18,28v0,21,6,29,18,29xm184,4v-32,0,-53,-24,-53,-54v0,-30,21,-53,53,-53v32,0,53,23,53,53v0,30,-21,54,-53,54xm184,-21v12,0,19,-8,19,-29v0,-21,-7,-28,-19,-28v-12,0,-18,7,-18,28v0,21,6,29,18,29xm64,6r-15,-7r138,-221r15,7","w":250},"&":{"d":"93,-138v17,-10,29,-20,29,-35v0,-9,-7,-15,-17,-15v-27,0,-22,33,-12,50xm75,-82v-25,28,11,66,43,47v-14,-13,-30,-29,-43,-47xm148,-9v-43,30,-134,10,-134,-48v0,-27,18,-44,39,-58v-35,-50,-9,-107,54,-107v36,0,61,22,61,49v0,30,-29,46,-56,62v10,14,21,26,30,35v1,-6,3,-31,3,-41r72,0r0,33r-33,0v-1,12,-4,29,-10,42v20,17,35,14,52,-4r18,22v-30,36,-56,37,-96,15","w":242,"k":{"z":-7,"y":11,"w":11,"v":11,"Y":49,"W":22,"V":32,"U":11,"T":31,"Q":8,"O":8,"G":8,"C":8,"A":-7}},"'":{"d":"35,-123r-20,-93r57,0r-20,93r-17,0","w":87,"k":{"s":18,"q":22,"o":25,"g":22,"e":23,"d":22,"c":23,"a":22,"Y":-7,"X":-7,"W":-11,"V":-11,"T":-14,"Q":9,"O":9,"G":9,"C":9,"A":40,"4":22}},"(":{"d":"101,40v-46,-37,-75,-85,-75,-146v0,-61,30,-109,75,-146r14,10v-20,23,-49,68,-49,136v0,68,29,113,49,136","w":125},")":{"d":"24,40r-14,-10v20,-23,50,-68,50,-136v0,-68,-30,-113,-50,-136r15,-10v45,37,75,85,75,146v0,61,-30,109,-76,146","w":125},"*":{"d":"77,-87v-31,-8,-16,-31,-6,-58v-19,19,-28,48,-53,24v-9,-31,17,-29,47,-33v-29,-7,-54,-4,-47,-34v24,-23,35,3,53,24v-4,-19,-13,-28,-13,-38v0,-10,8,-20,19,-20v30,8,16,30,5,57v20,-20,29,-46,53,-23v9,32,-18,28,-48,34v30,5,56,3,48,33v-24,23,-35,-3,-53,-24v4,19,13,28,13,38v0,10,-8,20,-18,20","w":153,"k":{"T":-11,"A":25}},"+":{"d":"70,-18r0,-50r-50,0r0,-28r50,0r0,-51r29,0r0,51r50,0r0,28r-50,0r0,50r-29,0","w":168,"k":{"7":18}},",":{"d":"73,-54v3,52,-2,91,-43,104r-8,-13v17,-9,25,-23,25,-37r-28,0r0,-54r54,0","w":93,"k":{"y":18,"w":18,"v":18,"Y":47,"X":-7,"W":29,"V":40,"U":11,"T":32,"Q":11,"O":11,"J":-12,"G":11,"C":11,"9":11,"7":11,"1":14,"0":7,"'":25,"\"":25}},"-":{"d":"93,-57r-77,0r0,-34r77,0r0,34","w":109,"k":{"Z":11,"Y":40,"X":22,"W":18,"V":22,"T":32,"A":11}},".":{"d":"73,0r-54,0r0,-54r54,0r0,54","w":93,"k":{"y":18,"w":18,"v":18,"Y":35,"X":-7,"W":29,"V":40,"U":11,"T":24,"Q":11,"O":11,"G":11,"C":11,"9":11,"7":11,"1":14,"0":7,"'":25,"\"":25}},"\/":{"d":"24,6r-17,-6r97,-223r18,7","w":128,"k":{"z":14,"u":14,"s":25,"r":11,"q":25,"p":11,"o":25,"n":11,"m":11,"g":25,"f":7,"e":25,"d":25,"c":25,"a":25,"Q":11,"O":11,"G":11,"C":11,"A":32,"8":11,"6":11,"4":29,"0":11}},"0":{"d":"110,6v-54,0,-95,-43,-95,-115v0,-72,41,-114,95,-114v54,0,95,42,95,114v0,72,-41,115,-95,115xm110,-37v23,0,36,-21,36,-72v0,-51,-13,-71,-36,-71v-24,0,-36,20,-36,71v0,51,13,72,36,72","w":220,"k":{"\/":11,".":7,",":7}},"1":{"d":"93,0r-57,0r0,-175r-23,0r0,-34r80,-12r0,221","w":124,"k":{".":11,",":11}},"2":{"d":"8,0r0,-28v28,-35,85,-70,90,-119v-9,-48,-56,-32,-85,-7r0,-46v42,-36,147,-28,144,44v-2,57,-49,81,-80,112r84,0r0,44r-153,0","w":175},"3":{"d":"171,-69v0,77,-110,94,-156,52r0,-44v25,31,96,41,100,-9v3,-33,-42,-36,-58,-20r-22,-26r59,-56r-79,0r0,-44r152,0r0,26r-56,54v34,4,60,27,60,67","w":184},"4":{"d":"107,0r0,-50r-97,0r0,-28r102,-138r51,0r0,127r39,0r0,39r-39,0r0,50r-56,0xm60,-89r47,0r0,-63","w":212,"k":{"7":9,"'":18,"\"":18}},"5":{"d":"170,-71v0,80,-108,96,-155,54r0,-44v24,29,94,42,98,-8v3,-36,-55,-39,-67,-13r-24,-10r0,-124r139,0r0,44r-94,0r0,40v44,-23,103,7,103,61","w":183},"6":{"d":"186,-70v0,45,-35,76,-83,76v-37,0,-87,-17,-87,-102v0,-104,82,-151,157,-112r0,41v-41,-21,-100,-27,-100,44v36,-39,113,-12,113,53xm102,-104v-14,0,-30,8,-30,34v0,24,12,39,29,39v18,0,29,-17,29,-37v0,-21,-10,-36,-28,-36","w":200},"7":{"d":"30,0v14,-67,64,-155,76,-172r-100,0r0,-44r162,0r0,26v-18,27,-68,122,-79,190r-59,0","w":177,"k":{"8":9,"6":7,"4":29,"0":7,"\/":36,".":47,",":47,"+":22,"'":-11,"\"":-11}},"8":{"d":"193,-60v0,41,-40,66,-89,66v-49,0,-89,-25,-89,-66v0,-29,19,-50,46,-60v-62,-28,-27,-103,43,-103v70,0,106,75,43,103v27,10,46,31,46,60xm104,-189v-15,0,-24,11,-24,25v0,12,9,25,24,25v15,0,23,-13,23,-25v0,-14,-8,-25,-23,-25xm136,-64v0,-20,-12,-34,-32,-34v-20,0,-32,14,-32,34v0,19,12,34,32,34v20,0,32,-15,32,-34","w":207},"9":{"d":"15,-147v0,-45,35,-76,83,-76v37,0,87,17,87,102v0,104,-82,151,-157,112r0,-41v41,21,100,27,100,-44v-36,39,-113,13,-113,-53xm99,-113v14,0,30,-8,30,-34v0,-24,-12,-39,-29,-39v-18,0,-29,17,-29,37v0,21,10,36,28,36","w":200,"k":{".":11,",":11}},":":{"d":"22,-70r0,-50r49,0r0,50r-49,0xm22,0r0,-50r49,0r0,50r-49,0","w":93},";":{"d":"71,-70r-49,0r0,-50r49,0r0,50xm71,-50v2,49,0,87,-40,99r-8,-13v17,-9,23,-22,23,-36r-24,0r0,-50r49,0","w":93},"<":{"d":"133,-5r-114,-78r114,-78r15,22r-80,56r80,56","w":166},"=":{"d":"32,-95r0,-28r105,0r0,28r-105,0xm32,-41r0,-28r105,0r0,28r-105,0","w":168},">":{"d":"34,-5r-15,-22r80,-56r-80,-56r15,-22r114,78","w":166},"?":{"d":"89,0r-48,0r0,-49r48,0r0,49xm44,-71r0,-45v21,-9,56,-30,52,-44v-12,-41,-65,-13,-88,7r0,-46v39,-35,147,-35,147,34v0,37,-32,56,-69,73r0,21r-42,0","w":163},"@":{"d":"221,26v-79,62,-207,16,-207,-82v0,-70,58,-127,130,-127v57,0,103,38,103,96v0,49,-38,90,-72,90v-17,0,-23,-7,-27,-16v-31,38,-90,5,-76,-51v11,-44,48,-80,94,-62r29,0r-16,93v-2,12,-1,18,7,18v17,0,41,-28,41,-72v0,-48,-41,-75,-82,-75v-57,0,-102,49,-102,104v0,93,106,119,171,71xm107,-63v-12,54,34,59,42,17r10,-60v-25,-17,-44,7,-52,43","w":259},"A":{"d":"3,0r90,-216r50,0r90,216r-58,0r-18,-46r-80,0r-18,46r-56,0xm91,-84r52,0r-26,-68","w":236,"k":{"y":7,"w":5,"v":7,"t":4,"Y":38,"W":27,"V":31,"U":14,"T":26,"Q":14,"O":14,"G":14,"C":14,"A":-7,"?":11,"-":11,"*":25,"'":40,"\"":40}},"B":{"d":"23,0r0,-216r96,0v73,-3,86,70,44,99v57,27,46,117,-40,117r-100,0xm82,-37v31,2,60,0,60,-29v0,-29,-29,-31,-60,-29r0,58xm82,-132v25,1,49,1,49,-23v0,-24,-24,-26,-49,-24r0,47","w":209,"k":{"Y":14,"X":5,"W":9,"V":12,"T":7}},"C":{"d":"205,-17v-72,50,-192,11,-192,-91v0,-101,119,-142,192,-91r0,50v-39,-41,-130,-36,-130,41v0,76,91,82,130,41r0,50","w":219,"k":{"y":7,"x":7,"w":7,"v":7,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"D":{"d":"23,0r0,-216r85,0v89,0,125,49,125,108v0,59,-36,108,-125,108r-85,0xm82,-45v57,3,92,-12,92,-63v0,-51,-35,-67,-92,-63r0,126","w":245,"k":{"Z":14,"Y":22,"X":13,"W":9,"V":13,"T":10,"A":14,"\/":11,".":11,",":11,"'":9,"&":7,"\"":9}},"E":{"d":"23,0r0,-216r151,0r0,44r-92,0r0,36r74,0r0,44r-74,0r0,48r92,0r0,44r-151,0","w":190,"k":{"y":11,"w":11,"v":11,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"Q":7,"O":7,"G":7,"C":7,"-":7}},"F":{"d":"23,0r0,-216r146,0r0,44r-87,0r0,39r69,0r0,43r-69,0r0,90r-59,0","w":172,"k":{"x":11,"u":14,"t":7,"s":16,"r":14,"q":16,"p":14,"o":16,"n":14,"m":14,"g":16,"e":16,"d":16,"c":16,"a":16,"T":-4,"A":21,"?":-14,"\/":18,".":22,",":22,"*":-11,"'":-11,"&":7,"\"":-11,"!":-11}},"G":{"d":"128,6v-62,0,-115,-44,-115,-114v0,-101,124,-142,198,-91r0,50v-40,-40,-137,-37,-137,45v0,55,45,79,92,63r0,-36r-32,0r0,-40r86,0r0,103v-13,5,-48,20,-92,20","w":243,"k":{"Z":7,"Y":18,"X":7,"W":14,"V":14,"T":12,"S":2,"A":7,"'":7,"\"":7}},"H":{"d":"23,0r0,-216r59,0r0,77r85,0r0,-77r58,0r0,216r-58,0r0,-89r-85,0r0,89r-59,0","w":248},"I":{"d":"23,0r0,-216r59,0r0,216r-59,0","w":105},"J":{"d":"82,8v9,54,-67,81,-103,51r0,-35v17,11,44,18,44,-21r0,-219r59,0r0,224","w":105},"K":{"d":"234,0r-70,0r-82,-98r0,98r-59,0r0,-216r59,0r0,95r75,-95r63,0r-84,103","w":230,"k":{"y":14,"w":14,"v":14,"t":5,"o":4,"e":4,"c":4,"Y":11,"W":7,"V":7,"U":11,"T":4,"S":4,"Q":18,"O":18,"G":18,"C":18,".":-7,"-":26,",":-7,"*":14,"&":4}},"L":{"d":"23,0r0,-216r59,0r0,172r92,0r0,44r-151,0","w":177,"k":{"y":14,"x":-7,"w":14,"v":14,"Y":41,"W":27,"V":37,"U":11,"T":30,"S":-5,"Q":3,"O":3,"G":3,"C":3,".":-11,",":-11,"*":29,"'":40,"\"":40}},"M":{"d":"23,0r0,-216r66,0r58,137r59,-137r64,0r0,216r-52,0r2,-141v-17,49,-38,94,-57,141r-34,0r-57,-141r1,141r-50,0","w":293},"N":{"d":"23,0r0,-216r45,0r98,124r0,-124r51,0r0,216r-44,0r-98,-124r0,124r-52,0","w":240},"O":{"d":"133,6v-66,0,-120,-48,-120,-114v0,-66,54,-114,120,-114v66,0,119,48,119,114v0,66,-53,114,-119,114xm133,-40v36,0,57,-27,57,-68v0,-41,-21,-68,-57,-68v-36,0,-58,27,-58,68v0,41,22,68,58,68","w":265,"k":{"Z":14,"Y":22,"X":13,"W":9,"V":13,"T":9,"A":14,"\/":11,".":11,",":11,"'":9,"&":7,"\"":9}},"P":{"d":"23,0r0,-216r93,0v54,0,79,32,79,72v0,52,-45,81,-113,73r0,71r-59,0xm82,-110v32,3,55,-5,55,-34v0,-29,-23,-36,-55,-33r0,67","w":199,"k":{"y":-5,"w":-5,"v":-5,"s":7,"r":5,"q":7,"p":5,"o":11,"n":5,"m":5,"g":7,"f":-5,"e":11,"d":7,"c":11,"a":7,"Z":5,"Y":9,"X":9,"T":-5,"S":-4,"Q":-5,"O":-5,"G":-5,"C":-5,"A":19,"?":-14,"\/":18,".":22,",":22,"*":-11,"'":-11,"&":9,"\"":-11,"!":-7}},"Q":{"d":"252,-108v0,48,-28,86,-68,103v10,20,23,47,53,36r0,36v-49,19,-91,-13,-107,-61v-65,-1,-117,-48,-117,-114v0,-66,54,-114,120,-114v66,0,119,48,119,114xm133,-40v36,0,57,-27,57,-68v0,-41,-21,-68,-57,-68v-36,0,-58,27,-58,68v0,41,22,68,58,68","w":265,"k":{"Z":14,"Y":22,"X":13,"W":9,"V":13,"T":9,"A":14,"\/":11,".":11,",":11,"'":9,"&":7,"\"":9}},"R":{"d":"97,-83r-15,0r0,83r-59,0r0,-216r99,0v89,-4,97,106,33,127r63,89r-63,0xm82,-120v30,2,57,-1,57,-29v0,-29,-28,-29,-57,-28r0,57","w":214,"k":{"y":7,"w":7,"v":7,"Y":15,"W":6,"V":11,"T":8,".":-7,",":-7}},"S":{"d":"175,-66v0,87,-127,81,-166,42r13,-42v16,14,40,29,68,29v18,0,31,-7,31,-22v0,-14,-9,-21,-40,-27v-98,-18,-84,-137,13,-135v28,0,54,10,71,22r-12,39v-16,-10,-39,-19,-60,-19v-15,0,-25,6,-25,17v0,10,7,16,31,22v54,13,76,35,76,74","w":185,"k":{"x":5,"Z":5,"Y":13,"X":6,"W":7,"V":9,"T":7,"A":6}},"T":{"d":"73,0r0,-172r-70,0r0,-44r198,0r0,44r-70,0r0,172r-58,0","w":204,"k":{"z":32,"y":36,"x":32,"w":36,"v":36,"u":32,"t":22,"s":36,"r":29,"q":36,"p":29,"o":40,"n":29,"m":29,"g":36,"e":40,"d":36,"c":40,"a":36,"T":-4,"S":2,"Q":9,"O":9,"G":9,"C":9,"A":26,"?":-14,";":3,":":3,"\/":22,".":24,"-":32,",":32,"*":-11,"'":-14,"&":11,"\"":-14,"!":-11}},"U":{"d":"128,6v-58,0,-105,-33,-105,-106r0,-116r59,0v5,65,-21,172,47,172v68,0,41,-108,46,-172r57,0r0,116v0,73,-46,106,-104,106","w":255,"k":{"Z":5,"A":14,"\/":11,".":11,",":11,"&":7}},"V":{"d":"93,0r-90,-216r60,0r55,138r54,-138r59,0r-91,216r-47,0","w":233,"k":{"z":25,"y":18,"x":22,"w":18,"v":18,"u":22,"t":14,"s":29,"r":22,"q":29,"p":22,"o":32,"n":22,"m":22,"g":29,"f":7,"e":32,"d":29,"c":32,"a":29,"S":7,"Q":13,"O":13,"G":13,"C":13,"A":31,";":18,":":18,"\/":32,".":40,"-":22,",":40,"'":-11,"&":19,"\"":-11}},"W":{"d":"76,0r-73,-216r57,0r41,139r39,-139r45,0r39,139v9,-46,28,-95,41,-139r56,0r-73,216r-46,0r-40,-132v-10,44,-27,89,-40,132r-46,0","w":323,"k":{"z":18,"y":14,"x":18,"w":14,"v":14,"u":18,"t":7,"s":22,"r":18,"q":25,"p":18,"o":25,"n":18,"m":18,"g":25,"e":25,"d":25,"c":25,"a":25,"S":5,"Q":9,"O":9,"G":9,"C":9,"A":27,";":14,":":14,"\/":25,".":29,"-":18,",":29,"'":-11,"&":14,"\"":-11}},"X":{"d":"-2,0r78,-111r-73,-105r66,0r44,68r46,-68r65,0r-74,105r78,111r-66,0r-49,-74r-50,74r-65,0","w":226,"k":{"y":11,"w":11,"v":11,"u":4,"t":5,"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"a":4,"Q":13,"O":13,"G":13,"C":13,".":-7,"-":22,",":-7,"'":-7,"&":7,"\"":-7}},"Y":{"d":"85,0r0,-86r-85,-130r64,0r51,82r50,-82r63,0r-85,130r0,86r-58,0","w":228,"k":{"z":34,"y":29,"x":32,"w":29,"v":29,"u":34,"t":29,"s":40,"r":31,"q":43,"p":31,"o":43,"n":31,"m":31,"g":43,"f":18,"e":43,"d":43,"c":43,"a":43,"S":11,"Q":22,"O":22,"G":22,"C":22,"A":38,";":29,":":29,"\/":43,".":35,"-":40,",":47,"'":-7,"&":25,"\"":-7}},"Z":{"d":"13,0r0,-26r96,-146r-94,0r0,-44r169,0r0,26r-96,146r95,0r0,44r-170,0","w":196,"k":{"y":14,"w":14,"v":14,"t":4,"q":7,"o":11,"g":7,"e":11,"d":7,"c":11,"a":7,"U":4,"S":2,"Q":11,"O":11,"G":11,"C":11,"-":11,"'":-7,"\"":-7}},"[":{"d":"40,32r0,-276r69,0r0,22r-31,0r0,232r31,0r0,22r-69,0","w":124},"\\":{"d":"104,6r-99,-223r16,-6r100,224","w":125},"]":{"d":"16,32r0,-22r30,0r0,-232r-30,0r0,-22r68,0r0,276r-68,0","w":124},"^":{"d":"30,-92r-21,-15r79,-115r80,115r-21,15r-59,-83","w":176},"_":{"d":"-2,16r0,-16r129,0r0,16r-129,0","w":125},"`":{"d":"86,-145r-68,-32r19,-28r57,48","w":111},"a":{"d":"13,-61v0,-61,63,-88,99,-47r3,-15r47,0r0,123r-47,0r-3,-15v-34,42,-99,14,-99,-46xm88,-89v-13,0,-23,10,-23,28v0,18,10,27,23,27v13,0,23,-9,23,-27v0,-18,-10,-28,-23,-28","k":{"'":7,"\"":7}},"b":{"d":"170,-62v0,61,-64,89,-100,47r-3,15r-47,0r0,-216r52,0r0,105v38,-36,98,-9,98,49xm94,-34v13,0,23,-10,23,-28v0,-18,-10,-27,-23,-27v-13,0,-23,9,-23,27v0,18,10,28,23,28","k":{"x":7,"'":22,"\"":22}},"c":{"d":"127,-8v-40,28,-120,4,-114,-54v-5,-58,75,-81,114,-52r0,37v-19,-16,-61,-16,-61,15v0,33,42,32,61,16r0,38","w":141,"k":{"y":-4,"w":-4,"v":-4,"f":-4}},"d":{"d":"112,-15v-35,42,-99,14,-99,-47v0,-58,59,-85,97,-49r0,-105r52,0r0,216r-47,0xm88,-34v13,0,23,-10,23,-28v0,-18,-10,-27,-23,-27v-13,0,-23,9,-23,27v0,18,10,28,23,28"},"e":{"d":"82,5v-42,0,-69,-29,-69,-68v0,-76,124,-87,127,-13v0,8,-1,16,-2,20r-73,0v-1,33,54,29,73,14r0,32v-12,9,-30,15,-56,15xm65,-77r29,0v1,-12,-2,-23,-13,-22v-7,0,-14,5,-16,22","w":156,"k":{"y":4,"w":4,"v":4,"'":23,"\"":23}},"f":{"d":"26,0r0,-89r-20,0r0,-34r20,0v-8,-65,14,-112,80,-95r0,34v-12,-5,-28,0,-28,19r0,42r29,0r0,34r-29,0r0,89r-52,0","w":113,"k":{"m":2,"f":-4,"\/":11,".":14,",":14,"*":-11,"'":-14,"\"":-14}},"g":{"d":"88,-89v-13,0,-23,10,-23,28v0,18,10,27,23,27v13,0,23,-9,23,-27v0,-18,-10,-28,-23,-28xm162,-1v-4,88,-85,83,-138,57r0,-38v33,22,94,28,86,-30v-37,37,-97,10,-97,-49v0,-61,63,-88,99,-47r3,-15r47,0r0,122","k":{"'":7,"\"":7}},"h":{"d":"20,0r0,-216r52,0r0,113v24,-42,90,-26,90,29r0,74r-53,0v-3,-28,11,-85,-16,-85v-32,0,-18,53,-21,85r-52,0","w":181,"k":{"y":5,"w":5,"v":5,"'":18,"\"":18}},"i":{"d":"20,0r0,-123r52,0r0,123r-52,0xm20,-156r0,-46r52,0r0,46r-52,0","w":92},"j":{"d":"72,18v8,48,-57,67,-87,43r0,-30v15,9,35,12,35,-18r0,-136r52,0r0,141xm20,-156r0,-46r52,0r0,46r-52,0","w":92},"k":{"d":"20,0r0,-216r52,0r0,146r37,-53r55,0r-40,55r43,68r-58,0r-37,-63r0,63r-52,0","w":169,"k":{"q":4,"o":5,"g":4,"e":5,"d":4,"c":5,"a":4,"-":11}},"l":{"d":"20,0r0,-216r54,0r0,216r-54,0","w":93},"m":{"d":"152,-103v31,-45,90,-26,90,29r0,74r-52,0r0,-62v0,-17,-4,-23,-14,-23v-31,0,-16,54,-19,85r-52,0v-3,-27,11,-83,-15,-85v-30,4,-14,55,-18,85r-52,0r0,-123r50,0r2,20v15,-34,72,-29,80,0","w":261,"k":{"y":5,"w":5,"v":5,"'":18,"\"":18}},"n":{"d":"20,0r0,-123r51,0r1,20v24,-42,90,-26,90,29r0,74r-53,0v-3,-28,11,-85,-16,-85v-32,0,-18,53,-21,85r-52,0","w":181,"k":{"y":5,"w":5,"v":5,"'":18,"\"":18}},"o":{"d":"85,5v-40,0,-74,-27,-74,-67v0,-40,34,-66,74,-66v40,0,74,26,74,66v0,40,-34,67,-74,67xm85,-33v13,0,22,-11,22,-29v0,-18,-9,-27,-22,-27v-13,0,-22,9,-22,27v0,18,9,29,22,29","w":169,"k":{"z":5,"y":4,"x":7,"w":4,"v":4,"'":25,"\"":25}},"p":{"d":"70,-108v35,-41,100,-13,100,47v0,58,-60,87,-98,49r0,82r-52,0r0,-193r47,0xm94,-89v-13,0,-23,10,-23,28v0,18,10,27,23,27v13,0,23,-9,23,-27v0,-18,-10,-28,-23,-28","k":{"x":5,"'":22,"\"":22}},"q":{"d":"13,-61v0,-61,63,-88,99,-47r3,-15r47,0r0,193r-52,0r0,-82v-37,37,-97,10,-97,-49xm88,-89v-13,0,-23,10,-23,28v0,18,10,27,23,27v13,0,23,-9,23,-27v0,-18,-10,-28,-23,-28","k":{"'":7,"\"":7}},"r":{"d":"20,0r0,-123r49,0r2,23v7,-15,22,-27,43,-27r0,51v-21,-8,-42,-1,-42,21r0,55r-52,0","w":120,"k":{"y":-7,"x":-4,"w":-7,"v":-7,"t":-4,"f":-9,".":14,"-":-7,",":14,"*":-11,"'":-7,"\"":-7}},"s":{"d":"123,-42v0,52,-80,58,-111,31r7,-31v13,8,26,16,46,16v9,0,13,-3,13,-7v0,-5,-5,-6,-15,-8v-38,-6,-49,-25,-49,-45v0,-20,15,-41,54,-41v20,0,37,6,49,12r-8,29v-17,-9,-39,-18,-49,-5v0,4,4,6,10,7v41,7,53,25,53,42","w":134,"k":{"'":11,"\"":11}},"t":{"d":"31,0r0,-89r-22,0r0,-34r22,0r0,-41r53,0r0,41r23,0r0,34r-23,0r0,89r-53,0","w":115},"u":{"d":"162,-123r0,123r-51,0r-2,-20v-24,44,-90,26,-90,-29r0,-74r53,0v3,28,-11,85,17,85v31,0,17,-54,20,-85r53,0","w":181,"k":{"'":7,"\"":7}},"v":{"d":"56,0r-54,-123r51,0r24,68r25,-68r50,0r-55,123r-41,0","w":153,"k":{"o":4,"e":4,"c":4,"\/":14,".":18,",":18,"&":7}},"w":{"d":"56,0r-52,-123r49,0r22,61r21,-61r38,0r21,61r22,-61r45,0r-52,123r-36,0r-21,-62r-21,62r-36,0","w":226,"k":{"o":4,"e":4,"c":4,"\/":14,".":18,",":18,"&":7}},"x":{"d":"3,0r48,-62r-46,-61r54,0r20,30r20,-30r53,0r-46,60r48,63r-55,0r-21,-32r-21,32r-54,0","w":156,"k":{"q":5,"o":7,"g":5,"e":7,"d":5,"c":7,"a":5,"\/":-7}},"y":{"d":"22,70r31,-71r-51,-122r50,0r25,70r26,-70r49,0r-81,193r-49,0","w":153,"k":{"o":4,"e":4,"c":4,"\/":14,".":18,",":18,"&":7}},"z":{"d":"11,0r0,-16r51,-70r-48,0r0,-37r116,0r0,16r-51,71r52,0r0,36r-120,0","w":144,"k":{"o":5,"e":4,"c":4}},"{":{"d":"96,40v-31,-18,-48,-26,-48,-77v0,-51,-6,-56,-27,-63r0,-13v21,-7,27,-12,27,-63v0,-50,17,-59,48,-77r11,13v-18,14,-18,26,-18,67v0,52,-18,60,-44,66v26,6,44,15,44,67v0,41,0,53,18,67","w":124},"|":{"d":"55,35r-20,0r0,-282r20,0r0,282","w":90},"}":{"d":"28,40r-10,-13v18,-14,17,-26,17,-67v0,-52,19,-61,45,-67v-26,-6,-45,-14,-45,-66v0,-41,1,-53,-17,-67r10,-13v31,18,48,27,48,77v0,51,7,56,28,63r0,13v-21,7,-28,12,-28,63v0,51,-17,59,-48,77","w":124},"~":{"d":"104,-47v-21,0,-56,-44,-64,-2r-18,0v0,-37,12,-52,33,-52v22,-1,57,44,65,2r19,0v0,37,-14,52,-35,52","w":160},"\u00a0":{"w":62}}});


// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
log.history = log.history || [];   // store logs to an array for reference
log.history.push(arguments);
arguments.callee = arguments.callee.caller; 
if(this.console) console.log( Array.prototype.slice.call(arguments) );
};

// make it safe to use console.log always
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info, log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});

// jQuery/helper plugins

/*!
 * HTML5 Placeholder jQuery Plugin v1.8.2
 * @link http://github.com/mathiasbynens/Placeholder-jQuery-Plugin
 * @author Mathias Bynens <http://mathiasbynens.be/>
 */
 
;(function($) {

	var isInputSupported = 'placeholder' in document.createElement('input'),
	    isTextareaSupported = 'placeholder' in document.createElement('textarea');
	if (isInputSupported && isTextareaSupported) {
		$.fn.placeholder = function() {
			return this;
		};
		$.fn.placeholder.input = $.fn.placeholder.textarea = true;
	} else {
		$.fn.placeholder = function() {
			return this.filter((isInputSupported ? 'textarea' : ':input') + '[placeholder]')
				.bind('focus.placeholder', clearPlaceholder)
				.bind('blur.placeholder', setPlaceholder)
			.trigger('blur.placeholder').end();
		};
		$.fn.placeholder.input = isInputSupported;
		$.fn.placeholder.textarea = isTextareaSupported;
	}

	function args(elem) {
		// Return an object of element attributes
		var newAttrs = {},
		    rinlinejQuery = /^jQuery\d+$/;
		$.each(elem.attributes, function(i, attr) {
			if (attr.specified && !rinlinejQuery.test(attr.name)) {
				newAttrs[attr.name] = attr.value;
			}
		});
		return newAttrs;
	}

	function clearPlaceholder() {
		var $input = $(this);
		if ($input.val() === $input.attr('placeholder') && $input.hasClass('placeholder')) {
			if ($input.data('placeholder-password')) {
				$input.hide().next().attr('id', $input.removeAttr('id').data('placeholder-id')).show().focus();
			} else {
				$input.val('').removeClass('placeholder');
			}
		}
	}

	function setPlaceholder(elem) {
		var $replacement,
		    $input = $(this),
		    $origInput = $input,
		    id = this.id;
		if ($input.val() === '') {
			if ($input.is(':password')) {
				if (!$input.data('placeholder-textinput')) {
					try {
						$replacement = $input.clone().attr({ type: 'text' });
					} catch(e) {
						$replacement = $('<input>').attr($.extend(args(this), { type: 'text' }));
					}
					$replacement
						.removeAttr('name')
						// We could just use the `.data(obj)` syntax here, but that wouldn’t work in pre-1.4.3 jQueries
						.data('placeholder-password', true)
						.data('placeholder-id', id)
						.bind('focus.placeholder', clearPlaceholder);
					$input
						.data('placeholder-textinput', $replacement)
						.data('placeholder-id', id)
						.before($replacement);
				}
				$input = $input.removeAttr('id').hide().prev().attr('id', id).show();
			}
			$input.addClass('placeholder').val($input.attr('placeholder'));
		} else {
			$input.removeClass('placeholder');
		}
	}

	$(function() {
		// Look for forms
		$('form').bind('submit.placeholder', function() {
			// Clear the placeholder values so they don’t get submitted
			var $inputs = $('.placeholder', this).each(clearPlaceholder);
			setTimeout(function() {
				$inputs.each(setPlaceholder);
			}, 10);
		});
	});

	// Clear placeholder values upon page reload
	$(window).bind('unload.placeholder', function() {
		$('.placeholder').val('');
	});



}(jQuery));
