jQuery.extend({historyCurrentHash:undefined,historyCallback:undefined,historyIframeSrc:undefined,historyInit:function(callback,src){jQuery.historyCallback=callback;if(src)jQuery.historyIframeSrc=src;var current_hash=location.hash.replace(/\?.*$/,'');jQuery.historyCurrentHash=current_hash;if(jQuery.browser.msie){if(jQuery.historyCurrentHash==''){jQuery.historyCurrentHash='#';}
jQuery("body").prepend('<iframe id="jQuery_history" style="display: none;"'+
(jQuery.historyIframeSrc?' src="'+jQuery.historyIframeSrc+'"':'')
+'></iframe>');var ihistory=jQuery("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=current_hash;}
else if(jQuery.browser.safari){jQuery.historyBackStack=[];jQuery.historyBackStack.length=history.length;jQuery.historyForwardStack=[];jQuery.lastHistoryLength=history.length;jQuery.isFirst=true;}
jQuery.historyCallback(current_hash.replace(/^#/,''));setInterval(jQuery.historyCheck,100);},historyAddHistory:function(hash){jQuery.historyBackStack.push(hash);jQuery.historyForwardStack.length=0;this.isFirst=true;},historyCheck:function(){if(jQuery.browser.msie){var ihistory=jQuery("#jQuery_history")[0];var iframe=ihistory.contentDocument||ihistory.contentWindow.document;var current_hash=iframe.location.hash.replace(/\?.*$/,'');if(current_hash!=jQuery.historyCurrentHash){location.hash=current_hash;jQuery.historyCurrentHash=current_hash;jQuery.historyCallback(current_hash.replace(/^#/,''));}}else if(jQuery.browser.safari){if(jQuery.lastHistoryLength==history.length&&jQuery.historyBackStack.length>jQuery.lastHistoryLength){jQuery.historyBackStack.shift();}
if(!jQuery.dontCheck){var historyDelta=history.length-jQuery.historyBackStack.length;jQuery.lastHistoryLength=history.length;if(historyDelta){jQuery.isFirst=false;if(historyDelta<0){for(var i=0;i<Math.abs(historyDelta);i++)jQuery.historyForwardStack.unshift(jQuery.historyBackStack.pop());}else{for(var i=0;i<historyDelta;i++)jQuery.historyBackStack.push(jQuery.historyForwardStack.shift());}
var cachedHash=jQuery.historyBackStack[jQuery.historyBackStack.length-1];if(cachedHash!=undefined){jQuery.historyCurrentHash=location.hash.replace(/\?.*$/,'');jQuery.historyCallback(cachedHash);}}else if(jQuery.historyBackStack[jQuery.historyBackStack.length-1]==undefined&&!jQuery.isFirst){if(document.URL.indexOf('#')>=0){jQuery.historyCallback(document.URL.split('#')[1]);}else{var current_hash=location.hash;jQuery.historyCallback('');}
jQuery.isFirst=true;}}}else{var current_hash=location.hash.replace(/\?.*$/,'');if(current_hash!=jQuery.historyCurrentHash){jQuery.historyCurrentHash=current_hash;jQuery.historyCallback(current_hash.replace(/^#/,''));}}},historyLoad:function(hash){var newhash;hash=decodeURIComponent(hash.replace(/\?.*$/,''));if(jQuery.browser.safari){newhash=hash;}
else{newhash='#'+hash;location.hash=newhash;}
jQuery.historyCurrentHash=newhash;if(jQuery.browser.msie){var ihistory=jQuery("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=newhash;jQuery.lastHistoryLength=history.length;jQuery.historyCallback(hash);}
else if(jQuery.browser.safari){jQuery.dontCheck=true;this.historyAddHistory(hash);var fn=function(){jQuery.dontCheck=false;};window.setTimeout(fn,200);jQuery.historyCallback(hash);location.hash=newhash;}
else{jQuery.historyCallback(hash);}}});;(function($){$.manageAjax=(function(){var cache={},queues={},presets={},activeRequest={},allRequests={},triggerEndCache={},defaults={queue:true,maxRequests:1,abortOld:false,preventDoubbleRequests:true,cacheResponse:false,complete:function(){},error:function(ahr,status){var opts=this;if(status&&status.indexOf('error')!=-1){setTimeout(function(){var errStr=status+': ';if(ahr.status){errStr+='status: '+ahr.status+' | ';}
errStr+='URL: '+opts.url;throw new Error(errStr);},1);}},success:function(){},abort:function(){}};function create(name,settings){var publicMethods={};presets[name]=presets[name]||{};$.extend(true,presets[name],$.ajaxSettings,defaults,settings);if(!allRequests[name]){allRequests[name]={};activeRequest[name]={};activeRequest[name].queue=[];queues[name]=[];triggerEndCache[name]=[];}
$.each($.manageAjax,function(fnName,fn){if($.isFunction(fn)&&fnName.indexOf('_')!==0){publicMethods[fnName]=function(param,param2){if(param2&&typeof param==='string'){param=param2;}
fn(name,param);};}});return publicMethods;}
function complete(opts,args){if(args[1]=='success'||args[1]=='notmodified'){opts.success.apply(opts,[args[0].successData,args[1]]);if(opts.global){$.event.trigger("ajaxSuccess",args);}}
if(args[1]==='abort'){opts.abort.apply(opts,args);if(opts.global){$.active--;$.event.trigger("ajaxAbort",args);}}
opts.complete.apply(opts,args);if(opts.global){$.event.trigger("ajaxComplete",args);}
if(opts.global&&!$.active){$.event.trigger("ajaxStop");}}
function proxy(oldFn,fn){return function(xhr,s,e){fn.call(this,xhr,s,e);oldFn.call(this,xhr,s,e);xhr=null;e=null;};}
function callQueueFn(name){var q=queues[name];if(q&&q.length){var fn=q.shift();if(fn){fn();}}}
function add(name,opts){if(!presets[name]){create(name,opts);}
opts=$.extend({},presets[name],opts);var allR=allRequests[name],activeR=activeRequest[name],queue=queues[name];var id=opts.type+'_'+opts.url.replace(/\./g,'_'),triggerStart=true,oldComplete=opts.complete,ajaxFn=function(){activeR[id]={xhr:$.ajax(opts),ajaxManagerOpts:opts};activeR.queue.push(id);return id;};if(opts.data){id+=(typeof opts.data=='string')?opts.data:$.param(opts.data);}
if(opts.preventDoubbleRequests&&allRequests[name][id]){return false;}
allR[id]=true;opts.complete=function(xhr,s,e){var triggerEnd=true;if(opts.abortOld){$.each(activeR.queue,function(i,activeID){if(activeID==id){return false;}
abort(name,activeID);return activeID;});}
oldComplete.call(this,xhr,s,e);if(activeRequest[name][id]){if(activeRequest[name][id]&&activeRequest[name][id].xhr){activeRequest[name][id].xhr=null;}
activeRequest[name][id]=null;}
triggerEndCache[name].push({xhr:xhr,status:s});xhr=null;activeRequest[name].queue=$.grep(activeRequest[name].queue,function(qid){return(qid!==id);});allR[id]=false;e=null;delete activeRequest[name][id];$.each(activeR,function(id,queueRunning){if(id!=='queue'||queueRunning.length){triggerEnd=false;return false;}});if(triggerEnd){$.event.trigger(name+'End',[triggerEndCache[name]]);$.each(triggerEndCache[name],function(i,cached){cached.xhr=null;});triggerEndCache[name]=[];}};if(cache[id]){ajaxFn=function(){activeR.queue.push(id);complete(opts,cache[id]);return id;};}else if(opts.cacheResponse){opts.complete=proxy(opts.complete,function(xhr,s){if(s!=="success"&&s!=="notmodified"){return false;}
cache[id][0].responseXML=xhr.responseXML;cache[id][0].responseText=xhr.responseText;cache[id][1]=s;xhr=null;return id;});opts.success=proxy(opts.success,function(data,s){cache[id]=[{successData:data,ajaxManagerOpts:opts},s];data=null;});}
ajaxFn.ajaxID=id;$.each(activeR,function(id,queueRunning){if(id!=='queue'||queueRunning.length){triggerStart=false;return false;}});if(triggerStart){$.event.trigger(name+'Start');}
if(opts.queue){opts.complete=proxy(opts.complete,function(){callQueueFn(name);});if(opts.queue==='clear'){queue=clear(name);}
queue.push(ajaxFn);if(activeR.queue.length<opts.maxRequests){callQueueFn(name);}
return id;}
return ajaxFn();}
function clear(name,shouldAbort){$.each(queues[name],function(i,fn){allRequests[name][fn.ajaxID]=false;});queues[name]=[];if(shouldAbort){abort(name);}
return queues[name];}
function getXHR(name,id){var ar=activeRequest[name];if(!ar||!allRequests[name][id]){return false;}
if(ar[id]){return ar[id].xhr;}
var queue=queues[name],xhrFn;$.each(queue,function(i,fn){if(fn.ajaxID==id){xhrFn=[fn,i];return false;}
return xhrFn;});return xhrFn;}
function abort(name,id){var ar=activeRequest[name];if(!ar){return false;}
function abortID(qid){if(qid!=='queue'&&ar[qid]&&typeof ar[qid].xhr!=='unedfiend'&&typeof ar[qid].xhr.abort!=='unedfiend'){ar[qid].xhr.abort();complete(ar[qid].ajaxManagerOpts,[ar[qid].xhr,'abort']);}
return null;}
if(id){return abortID(id);}
return $.each(ar,abortID);}
function unload(){$.each(presets,function(name){clear(name,true);});cache={};}
return{defaults:defaults,add:add,create:create,cache:cache,abort:abort,clear:clear,getXHR:getXHR,_activeRequest:activeRequest,_complete:complete,_allRequests:allRequests,_unload:unload};})();$(window).unload($.manageAjax._unload);})(jQuery);;jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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 g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());;Cufon.registerFont({"w":197,"face":{"font-family":"serif","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 9 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-24.1339 -283 294.029 81","underline-thickness":"16.56","underline-position":"-25.2","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":85},"!":{"d":"86,-230r-12,161r-30,0r-9,-161r51,0xm59,-57v16,0,31,14,31,30v0,16,-15,31,-31,31v-16,0,-30,-15,-30,-31v0,-15,15,-30,30,-30","w":101},"\"":{"d":"106,-233v15,0,31,15,30,30v0,13,-11,37,-34,71r-22,0r22,-41v-14,-1,-26,-15,-26,-30v0,-15,15,-30,30,-30xm43,-233v16,0,32,14,31,30v0,13,-12,37,-35,71r-22,0r22,-41v-34,-3,-33,-60,4,-60","w":148},"#":{"d":"179,-145r-7,25r-27,0r-7,29r27,0r-7,24r-27,0r-17,67r-33,0r18,-67r-22,0r-17,67r-32,0r17,-67r-27,0r6,-24r28,0r7,-29r-27,0r7,-25r27,0r18,-67r32,0r-18,67r22,0r18,-67r32,0r-18,67r27,0xm113,-120r-21,0r-8,29r21,0"},"$":{"d":"114,-124v25,6,77,28,77,66v0,38,-26,59,-77,63r0,30r-29,0r0,-30v-38,-2,-82,-17,-80,-54r52,0v4,22,7,28,28,32r0,-93v-44,-13,-74,-22,-74,-61v0,-38,35,-57,74,-62r0,-25r29,0r0,25v43,5,71,17,76,54r-52,0v-3,-20,-6,-28,-24,-31r0,86xm85,-133r0,-77v-27,4,-27,72,0,77xm114,-17v33,-6,29,-77,0,-85r0,85"},"&":{"d":"90,-172v-1,22,22,36,45,36r13,27v-45,-1,-71,11,-71,38v0,48,74,58,107,23r-59,-118r29,0r49,100v11,-12,23,-26,34,-42r0,38v-6,8,-13,17,-22,26r21,44r-29,0r-14,-28v-48,56,-172,34,-172,-39v0,-28,16,-47,48,-56v-23,-11,-34,-28,-34,-52v-1,-36,43,-60,81,-59v56,1,84,16,83,53r-53,0v1,-18,-12,-30,-30,-29v-23,1,-26,10,-26,38","w":259},"'":{"d":"43,-233v16,0,32,14,31,30v0,13,-12,37,-35,71r-22,0r22,-41v-34,-3,-33,-60,4,-60","w":86},"(":{"d":"99,46v-70,-13,-78,-57,-78,-151v0,-94,8,-134,78,-150r0,19v-39,6,-38,102,-38,166v0,55,13,88,38,98r0,18","w":105},")":{"d":"7,-255v69,16,78,58,78,150v0,95,-8,137,-78,151r0,-18v38,-9,37,-94,37,-158v0,-62,-12,-97,-37,-106r0,-19","w":105},"*":{"d":"78,-228r-45,29r30,-45xm52,-248r-11,52r-11,-52r22,0xm83,-195r-52,-11r52,-11r0,22xm78,-184r-15,16r-29,-45xm48,-199r-45,-29r16,-16xm51,-206r-52,11r0,-22xm52,-165r-22,0r11,-51xm48,-213r-29,45r-16,-17","w":96},"+":{"d":"183,-100r-61,0r0,62r-37,0r0,-62r-62,0r0,-34r62,0r0,-59r37,0r0,59r61,0r0,34","w":195},",":{"d":"36,-57v16,0,31,15,31,30v0,13,-12,38,-35,72r-22,0r21,-41v-33,-3,-32,-61,5,-61","w":79},"-":{"d":"140,-69r-120,0r0,-34r120,0r0,34","w":154},".":{"d":"43,-57v16,0,31,14,31,30v0,16,-15,31,-31,31v-16,0,-30,-15,-30,-31v0,-15,15,-30,30,-30","w":74},"\/":{"d":"110,-253r-74,297r-32,0r74,-297r32,0","w":117},"0":{"d":"97,-234v58,0,95,55,95,117v0,65,-34,121,-95,121v-61,0,-96,-57,-96,-121v0,-57,41,-117,96,-117xm137,-117v0,-65,-13,-98,-40,-98v-27,0,-40,33,-40,98v0,67,13,101,40,101v27,0,40,-34,40,-101","w":189,"k":{"?":5}},"1":{"d":"22,-175v-1,-20,-7,-21,-31,-20v-7,-1,-7,-15,1,-14v28,-8,47,-24,85,-21r0,230r-55,0r0,-175","w":90,"k":{"3":5}},"2":{"d":"64,-234v45,0,77,20,78,61v0,35,-34,82,-102,141v32,-5,90,16,87,-24v1,-4,3,-6,7,-6v5,0,7,2,7,7r0,55r-145,0r0,-27v29,-22,90,-109,90,-150v0,-22,-9,-33,-28,-33v-17,0,-31,10,-30,29r-25,0v0,-31,29,-53,61,-53","w":137},"3":{"d":"72,-234v38,0,82,23,81,59v0,24,-11,41,-34,52v32,9,48,28,48,56v-2,66,-95,87,-160,59r0,-28v42,29,105,17,105,-35v0,-34,-30,-41,-68,-38r0,-27v33,2,55,-2,55,-36v0,-47,-62,-51,-63,-12r0,3r-25,0v-1,-31,30,-53,61,-53","w":159},"4":{"d":"173,-58r-27,0r0,58r-54,0r0,-58r-95,0r0,-21r107,-151r42,0r0,143r27,0r0,29xm92,-87r0,-80r-60,80r60,0","w":167},"5":{"d":"59,-148v54,-8,88,22,87,73v-2,66,-84,99,-149,67r0,-28v46,27,93,19,94,-38v1,-25,-10,-49,-32,-49v-20,0,-36,8,-46,23r-21,0r33,-130r114,0r-7,25r-58,0","w":145,"k":{"6":-3}},"6":{"d":"53,-153v48,-34,114,11,114,72v0,53,-32,85,-85,85v-53,0,-89,-31,-85,-85v4,-53,-4,-104,33,-131v33,-24,77,-28,120,-10r0,28v-48,-30,-93,-18,-97,41xm82,-13v27,-3,31,-29,30,-68v0,-38,-2,-64,-30,-67v-26,2,-29,30,-29,67v0,40,2,65,29,68","w":167},"7":{"d":"11,-184v0,8,-14,10,-14,0r0,-46r143,0r0,21r-76,209r-56,0r75,-207v-29,3,-72,-12,-72,23","w":131},"8":{"d":"79,-234v43,0,74,18,74,59v0,26,-12,44,-37,54v30,9,45,30,45,61v0,42,-36,64,-82,64v-45,0,-82,-22,-82,-64v0,-31,15,-52,45,-61v-25,-10,-37,-28,-37,-54v0,-41,31,-59,74,-59xm79,-130v22,0,26,-17,25,-45v-1,-28,-2,-44,-25,-44v-22,0,-25,15,-25,44v0,28,2,45,25,45xm79,-12v24,0,28,-18,28,-48v0,-32,-3,-52,-28,-52v-25,0,-28,20,-28,52v0,30,4,48,28,48","w":159},"9":{"d":"82,-234v53,0,89,31,85,85v-4,53,4,104,-33,131v-34,25,-76,28,-120,10r0,-28v49,28,93,18,97,-41v-50,33,-114,-11,-114,-72v0,-53,32,-85,85,-85xm82,-83v26,0,30,-30,30,-66v0,-40,-2,-68,-30,-68v-27,0,-30,28,-29,68v1,37,1,66,29,66","w":167},":":{"d":"49,-147v16,0,31,15,31,30v0,16,-16,31,-32,31v-16,0,-29,-15,-29,-31v0,-16,14,-30,30,-30xm49,-57v16,0,31,15,31,30v0,16,-16,31,-32,31v-16,0,-29,-15,-29,-31v0,-16,14,-30,30,-30","w":87},";":{"d":"45,-147v16,0,31,14,31,30v0,16,-15,31,-31,31v-16,0,-30,-15,-30,-31v0,-15,15,-30,30,-30xm45,-57v16,0,32,14,31,30v0,13,-12,38,-35,72r-21,0r21,-41v-33,-4,-33,-61,4,-61","w":83},"<":{"d":"138,1r-127,-55r0,-19r127,-56r0,30r-86,35r86,36r0,29","w":148},"=":{"d":"180,-92r-162,0r0,-27r162,0r0,27xm180,-48r-162,0r0,-28r162,0r0,28"},">":{"d":"138,-54r-127,55r0,-29r84,-36r-84,-35r0,-30r127,55r0,20","w":148},"?":{"d":"77,-234v64,0,90,67,41,104v-15,19,-45,25,-41,63r-28,0r0,-24v-7,-49,48,-52,50,-93v1,-14,-9,-29,-22,-28v-14,0,-22,11,-23,33r-44,0v2,-36,24,-55,67,-55xm63,-57v16,0,31,15,31,30v0,16,-16,31,-32,31v-16,0,-29,-15,-29,-31v0,-16,14,-30,30,-30","w":154},"@":{"d":"153,-256v65,0,122,42,122,106v0,51,-45,99,-91,100v-14,1,-17,-8,-20,-18v-32,39,-92,8,-92,-41v0,-68,74,-118,116,-64v3,-14,23,-11,34,-17r-22,100v0,4,1,5,5,5v27,-2,42,-32,41,-64v0,-50,-39,-73,-93,-73v-56,0,-102,43,-102,96v0,55,39,98,93,97v37,0,65,-7,83,-22r31,0v-25,37,-63,55,-114,55v-73,1,-131,-55,-131,-130v0,-73,65,-130,140,-130xm134,-78v21,0,36,-25,37,-57v0,-17,-6,-26,-20,-26v-20,0,-34,28,-34,56v0,18,6,27,17,27","w":288},"A":{"d":"201,0r-58,0r-25,-70r-76,0r-25,70r-27,0r65,-176v4,-15,2,-26,-16,-26v-9,0,-7,-14,1,-14r78,-14xm111,-91r-31,-83r-30,83r61,0","w":182,"k":{"w":19,"v":21,"u":9,"t":3,"q":-6,"o":-5,"e":-3}},"B":{"d":"-3,-230v80,2,194,-17,197,57v0,22,-16,39,-46,50v38,10,58,30,58,60v0,65,-107,66,-187,63r0,-189v0,-21,-3,-27,-23,-27v-4,-1,-6,-3,-6,-7v0,-5,2,-7,7,-7xm139,-172v0,-35,-27,-39,-64,-37r0,77v38,3,64,-8,64,-40xm75,-24v43,2,75,-1,75,-45v0,-37,-33,-45,-75,-42r0,87","w":200,"k":{"y":8,"o":-10,"l":5,"e":-8,"a":-6}},"C":{"d":"1,-118v0,-71,36,-116,105,-116v58,1,87,18,86,55v-17,-2,-40,4,-53,-2v0,-21,-12,-32,-36,-32v-31,0,-47,29,-47,87v-1,62,11,105,62,105v25,0,45,-6,61,-17r0,28v-22,9,-46,14,-71,14v-72,0,-107,-48,-107,-122","w":161,"k":{"u":5,"r":-3,"l":-22,"i":-12,"h":-27}},"D":{"d":"96,-230v81,0,112,33,112,114v0,88,-30,117,-123,116r-66,0r0,-189v0,-21,-3,-27,-23,-27v-4,-1,-6,-3,-6,-7v0,-5,2,-7,7,-7r99,0xm75,-24v62,2,78,-27,78,-91v0,-69,-12,-96,-78,-94r0,185","w":200,"k":{"r":-5,"o":-9,"e":-9,"a":-9}},"E":{"d":"147,-186v3,-35,-43,-20,-72,-23r0,78r67,0r0,21r-67,0r0,86r86,0r0,24r-142,0r0,-189v0,-21,-3,-27,-23,-27v-4,-1,-6,-3,-6,-7v0,-5,2,-7,7,-7r164,0v-1,14,2,32,-1,45v0,4,-2,5,-6,5v-5,0,-7,-2,-7,-6","w":150,"k":{"y":12,"v":10,"u":7,"t":6,"l":-12,"g":4,"d":6,"c":9,"b":-13}},"F":{"d":"31,-189v-1,-21,-3,-27,-24,-27v-8,-1,-6,-14,1,-14r164,0r0,45v0,4,-3,5,-7,5v-5,0,-7,-2,-7,-6v4,-36,-43,-19,-72,-23r0,78r67,0r0,21r-67,0r0,110r-55,0r0,-189","w":150,"k":{"l":-13,"i":-12}},"G":{"d":"132,-32v-4,-32,14,-86,-24,-84v-4,-1,-5,-2,-5,-6v0,-5,2,-8,6,-8r79,0r0,132v-5,0,-34,-14,-43,-14v-13,0,-38,15,-52,15v-60,0,-96,-55,-96,-120v0,-58,41,-119,96,-117v43,1,85,16,84,55v-16,-2,-39,4,-51,-2v0,-16,-18,-33,-34,-32v-34,2,-40,47,-39,96v1,88,23,115,79,85","w":182,"k":{"r":-5,"o":-12,"i":-6,"e":-9,"a":-9}},"H":{"d":"210,0r-56,0r0,-110r-79,0r0,110r-56,0r0,-178v1,-20,-9,-26,-23,-28v-4,0,-6,-2,-6,-6v0,-4,2,-6,6,-7r79,-14r0,102r79,0r0,-99r56,0r0,230","w":209,"k":{"u":-9,"o":-6,"e":-4,"a":-3}},"I":{"d":"84,-232r0,232r-56,0r0,-177v0,-19,-8,-28,-24,-28v-8,0,-6,-14,1,-14","w":83,"k":{"t":-6,"r":-10,"n":-10,"m":-10,"l":-10,"g":-1}},"J":{"d":"82,-3v-1,49,-36,82,-93,74r0,-21v38,3,38,0,38,-53r0,-174v0,-19,-8,-28,-24,-28v-9,-1,-7,-14,1,-14r78,-14r0,230","w":82,"k":{"u":-10,"o":-6,"e":-4,"a":-4}},"K":{"d":"212,0r-68,0r-63,-91r0,91r-56,0r0,-177v0,-20,-7,-28,-24,-28v-8,0,-6,-14,1,-14r78,-14r1,104r93,-101r32,0r-88,95","w":180,"k":{"w":16,"i":-4}},"L":{"d":"160,0r-141,0r0,-175v0,-18,-8,-27,-24,-27v-8,0,-6,-14,1,-14r79,-14r0,206r85,0r0,24","w":122,"k":{"a":12}},"M":{"d":"19,-177v0,-21,-4,-27,-22,-28v-4,0,-5,-3,-5,-7v0,-4,2,-6,6,-7r78,-14r73,171r59,-168r56,0r0,230r-55,0r0,-162r-57,162r-32,0r-78,-182r0,182r-23,0r0,-177","w":264,"k":{"s":-7,"r":-10,"o":-6,"i":-12,"e":-6,"a":-4}},"N":{"d":"204,0r-40,0r-115,-187r0,187r-22,0r0,-177v0,-19,-8,-28,-24,-28v-8,0,-6,-14,1,-14r78,-14r100,154r0,-151r22,0r0,230","w":204,"k":{"o":-7,"i":-12,"e":-4,"a":-6}},"O":{"d":"97,-234v58,0,95,55,95,117v0,65,-34,121,-95,121v-61,0,-96,-57,-96,-121v0,-57,41,-117,96,-117xm137,-117v0,-65,-13,-98,-40,-98v-27,0,-40,33,-40,98v0,63,13,95,40,95v27,0,40,-32,40,-95","w":178,"k":{"u":-6,"r":-12,"p":-10,"n":-19,"m":-12,"l":-6,"i":-7,"f":-7,"d":-12,"c":-9,"b":-7,"a":-14}},"P":{"d":"-6,-230v83,0,194,-12,197,63v2,56,-55,74,-119,69r0,98r-55,0r0,-189v-1,-21,-3,-27,-24,-27v-4,-1,-6,-3,-6,-7v0,-5,2,-7,7,-7xm136,-165v0,-36,-25,-47,-64,-44r0,90v40,3,64,-9,64,-46","w":164,"k":{"u":-10,"r":-13,"o":-7,"l":-12,"i":-16,"h":-17}},"Q":{"d":"97,-234v112,0,124,199,34,231v9,17,35,22,62,15r0,24v-51,11,-103,6,-115,-34v-48,-9,-77,-59,-77,-119v0,-57,41,-117,96,-117xm137,-117v0,-65,-13,-98,-40,-98v-27,0,-40,33,-40,98v0,63,13,95,40,95v27,0,40,-32,40,-95","w":189},"R":{"d":"-6,-230v83,0,197,-12,197,63v0,35,-18,56,-56,65r62,102r-59,0r-62,-98r-4,0r0,98r-55,0r0,-189v0,-21,-4,-28,-25,-27v-7,-1,-7,-14,2,-14xm136,-165v0,-36,-25,-47,-64,-44r0,90v40,3,64,-9,64,-46","w":177,"k":{"i":-12}},"S":{"d":"141,-227r0,25v-40,-7,-80,-21,-85,19v-3,25,78,55,83,65v17,14,25,32,25,53v-1,68,-88,81,-154,59r0,-28v36,11,95,26,99,-20v2,-26,-78,-57,-84,-67v-72,-80,25,-134,116,-106","w":147,"k":{"y":7,"w":6,"q":-18,"p":-6,"o":-17,"h":-9,"c":-9,"a":-14}},"T":{"d":"59,-209v-25,0,-48,-4,-48,24v0,8,-14,6,-14,-1r0,-44r179,0r0,45v0,4,-3,5,-7,5v-5,0,-7,-2,-7,-6v4,-28,-23,-22,-48,-23r0,209r-55,0r0,-209","w":140,"k":{"i":-10,"h":-12,"e":10,"a":12}},"U":{"d":"122,-22v42,0,54,-20,54,-64r0,-144r24,0v-7,100,33,234,-82,234v-60,0,-90,-27,-90,-81r0,-101v0,-18,-8,-27,-24,-27v-8,0,-6,-14,1,-14r79,-14r0,140v-1,48,2,71,38,71","w":200,"k":{"s":-6,"p":-12,"n":-10,"m":-10,"h":-17,"g":-3}},"V":{"d":"213,-230r-85,230r-26,0r-84,-202v-5,-3,-37,-7,-16,-18r71,-13r61,151r54,-148r25,0","w":175,"k":{"i":-19}},"W":{"d":"292,-230r-84,230r-26,0r-39,-95r-35,95r-26,0r-83,-201v-4,-5,-25,1,-23,-11v0,-4,2,-5,6,-6r71,-13r61,149r16,-45v-11,-24,-18,-54,-32,-75v-5,-3,-35,-6,-16,-18r71,-13r8,22r7,-19r25,0r-19,50r40,97r53,-147r25,0","w":248,"k":{"i":-25,"h":-17}},"X":{"d":"208,0r-65,0r-50,-84r-49,84r-27,0r62,-107r-58,-95v-4,-9,-24,-1,-25,-13v0,-4,3,-6,7,-7r62,-11r53,85r48,-82r26,0r-60,105","w":182},"Y":{"d":"192,-230r-61,106r0,124r-56,0r0,-106r-58,-95v-4,-9,-26,-1,-25,-14v0,-4,2,-5,6,-6r63,-11r56,85r48,-83r27,0","w":155,"k":{"i":-14}},"Z":{"d":"106,-209v-33,4,-86,-14,-85,24v-1,7,-14,7,-13,-1r0,-44r156,0r0,21r-110,185v34,-5,95,17,93,-24v1,-4,3,-6,7,-6v16,5,3,37,7,54r-165,0r0,-23","w":146,"k":{"i":-4}},"[":{"d":"71,-5v-5,33,10,29,38,29r0,20r-78,0r0,-297r78,0r0,21v-24,0,-38,-6,-38,28r0,199","w":111},"\\":{"d":"113,44r-35,0r-71,-297r34,0","w":117},"]":{"d":"51,-204v4,-31,-13,-28,-38,-28r0,-21r77,0r0,297r-77,0r0,-20v24,-1,38,7,38,-29r0,-199","w":111},"^":{"d":"120,-171r-31,0r-21,-29r-21,29r-31,0r40,-59r24,0","w":136},"_":{"d":"170,38r-173,0r0,-22r173,0r0,22","w":166},"`":{"d":"74,-182r-25,0r-31,-62r45,0","w":105},"a":{"d":"0,-83v0,-54,59,-107,103,-69r0,-8r56,-10r0,170r-56,0r0,-5v-49,30,-103,-22,-103,-78xm85,-22v15,3,18,-32,18,-61v0,-39,-6,-58,-18,-58v-20,0,-30,19,-30,58v0,41,10,61,30,61","w":156,"k":{"z":-9,"v":4,"u":-11,"t":-9,"s":-9,"r":-14,"p":-14,"n":-16,"m":-14,"l":-3,"k":3,"i":-17,"g":-5,"d":-1,"b":-6,"a":-5}},"b":{"d":"68,-152v43,-38,103,15,103,69v0,59,-61,113,-107,73r-52,14r0,-193v0,-22,-3,-27,-24,-27v-8,0,-6,-14,1,-14r79,-14r0,92xm116,-83v0,-39,-10,-58,-30,-58v-12,0,-18,19,-18,58v0,29,3,65,18,61v20,0,30,-20,30,-61","w":155,"k":{"y":6,"s":-15,"r":-5,"p":-5,"o":-21,"l":-4,"i":-4,"h":-7,"f":-5,"e":-17,"c":-14,"b":-9,"a":-18}},"c":{"d":"89,-168v34,0,69,21,67,55r-41,0v1,-20,-8,-38,-26,-38v-19,0,-28,18,-30,55v-4,61,52,96,91,48r0,31v-50,44,-146,16,-146,-63v0,-55,33,-88,85,-88","w":133,"k":{"y":-10,"u":-14,"t":-13,"s":-22,"q":-15,"o":-16,"l":-6,"k":-8,"i":-17,"h":-14,"e":-19,"c":-7,"a":-18}},"d":{"d":"106,-152v-3,-27,12,-70,-24,-64v-8,-1,-6,-14,1,-14r79,-14r0,244r-56,0r0,-5v-49,30,-103,-22,-103,-78v0,-54,59,-107,103,-69xm87,-22v15,3,19,-31,19,-61v0,-39,-7,-58,-19,-58v-20,0,-29,19,-29,58v0,41,9,61,29,61","w":162,"k":{"v":13,"r":-9,"p":-10,"o":3,"m":-12,"l":-9,"j":-9,"i":-12,"g":-4,"e":-3,"b":-16,"a":-4}},"e":{"d":"0,-80v-9,-74,84,-116,132,-68v12,11,18,29,20,48r-97,20v-2,51,58,76,90,32r1,31v-49,44,-156,16,-146,-63xm112,-111v-3,-27,-12,-40,-28,-40v-18,0,-27,17,-29,52","w":144,"k":{"z":-8,"y":3,"x":12,"v":5,"s":-12,"p":-2,"o":-9,"n":-3,"l":4,"k":7,"g":-6,"e":-5,"d":-2,"c":-1,"a":-7}},"f":{"d":"19,-165v-10,-62,61,-91,111,-65v12,6,17,19,20,36r-42,0v-1,-19,-7,-28,-19,-28v-14,-3,-15,36,-14,57r40,0r0,22r-40,0r0,143r-56,0r0,-143r-22,0r0,-22r22,0","w":103,"k":{"y":7,"w":6,"o":7,"i":-4,"h":-4,"f":9,"e":6,"b":-9,"a":12}},"g":{"d":"1,-83v-5,-55,59,-107,103,-69r0,-13r79,-13v4,0,6,2,6,6v0,5,-2,7,-7,7v-19,1,-22,7,-22,28r0,134v1,40,-29,74,-68,74r-58,0r0,-21r59,0v8,0,11,-18,11,-53r0,-3v-47,32,-109,-20,-103,-77xm86,-22v15,3,18,-32,18,-61v0,-39,-6,-58,-18,-58v-20,0,-30,19,-30,58v0,41,10,61,30,61","w":159,"k":{"z":-13,"y":-10,"t":-13,"s":-10,"r":-14,"o":-8,"n":-12,"m":-13,"l":-12,"k":-9,"j":-13,"i":-14,"h":-19,"g":-3,"e":-6,"a":-5}},"h":{"d":"116,-165v34,0,62,32,61,66r0,99r-55,0r0,-94v0,-25,-2,-42,-20,-42v-52,0,-29,84,-34,136r-56,0r0,-189v0,-22,-3,-27,-24,-27v-8,0,-6,-14,1,-14r79,-14r0,96v11,-11,27,-17,48,-17","w":184,"k":{"y":13,"w":9,"u":11,"t":9,"p":6,"j":7,"i":7,"f":6,"c":7}},"i":{"d":"41,-231v16,0,31,14,31,30v0,16,-15,30,-31,30v-15,0,-29,-14,-29,-30v0,-16,14,-30,29,-30xm18,-115v-1,-21,-3,-29,-24,-28v-8,-1,-8,-14,1,-13r78,-14r0,170r-55,0r0,-115","w":79,"k":{"t":-2,"s":-3,"r":-5,"p":-7,"o":-1,"n":-6,"m":-5,"d":3,"c":6}},"j":{"d":"46,-231v16,0,31,14,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30xm22,-115v0,-21,-2,-29,-23,-28v-8,0,-8,-13,0,-13r79,-14r0,167v-1,48,-36,82,-93,74r0,-21v37,3,37,-1,37,-53r0,-112","w":81,"k":{"u":-6}},"k":{"d":"19,-189v0,-21,-3,-27,-23,-27v-8,0,-8,-13,0,-14r79,-14r0,139r71,-60r35,0r-58,48r70,117r-64,0r-54,-90r0,90r-56,0r0,-189","w":160,"k":{"w":4,"t":-3,"s":-16,"p":-15,"o":-8,"m":-7,"j":-9,"g":-3,"f":-8,"e":-6,"c":-3,"a":-4}},"l":{"d":"19,-189v0,-21,-3,-27,-23,-27v-8,0,-8,-13,0,-14r79,-14r0,244r-56,0r0,-189","w":81,"k":{"y":4,"u":-3,"p":-5,"l":-4,"k":-4,"i":-7,"h":-12,"b":-12}},"m":{"d":"232,-165v38,-1,63,27,62,66r0,99r-55,0r0,-100v0,-26,-2,-43,-20,-43v-54,0,-29,90,-34,143r-56,0r0,-100v0,-26,-2,-43,-20,-43v-54,0,-29,90,-34,143r-56,0r0,-115v0,-21,-2,-29,-23,-28v-8,0,-8,-13,0,-13r79,-14r0,18v26,-20,85,-18,99,13v9,-17,28,-26,58,-26","w":289,"k":{"y":3,"s":-10,"q":-10,"p":-6,"o":-12,"n":-4,"m":-3,"i":-9,"f":-3,"e":-11,"b":-8,"a":-10}},"n":{"d":"75,-152v43,-32,110,-1,110,53r0,99r-56,0r0,-100v0,-26,-2,-43,-20,-43v-54,0,-29,90,-34,143r-56,0r0,-115v0,-21,-2,-29,-23,-28v-8,0,-8,-13,0,-13r79,-14r0,18","w":179,"k":{"y":4,"u":3,"t":-1,"s":-10,"q":-14,"o":-13,"n":-6,"i":-6,"g":-9,"e":-10,"d":-6,"c":-4,"a":-9}},"o":{"d":"82,-168v51,0,85,33,85,88v0,52,-34,84,-85,84v-51,0,-85,-32,-85,-84v0,-54,34,-88,85,-88xm82,-22v28,0,30,-23,30,-58v0,-39,-3,-69,-30,-69v-27,0,-31,30,-29,69v1,35,1,58,29,58","w":158,"k":{"z":-6,"y":4,"x":7,"w":3,"v":8,"u":3,"s":-10,"q":-12,"o":-15,"n":-2,"l":6,"k":6,"g":-12,"e":-12,"d":-9,"c":-9,"a":-10}},"p":{"d":"74,-152v43,-38,103,14,103,69v0,56,-52,108,-103,78r0,73r-56,0r0,-183v0,-21,-2,-29,-23,-28v-8,0,-8,-13,0,-13r79,-14r0,18xm122,-83v0,-39,-9,-58,-29,-58v-12,0,-19,19,-19,58v0,29,4,65,19,61v20,0,29,-20,29,-61","w":166,"k":{"t":1,"s":-14,"r":-3,"o":-16,"i":-3,"h":-1,"e":-15,"c":-8,"b":-2,"a":-14}},"q":{"d":"-3,-83v0,-55,60,-107,105,-69r0,-8r55,-10r0,238r-55,0r0,-75v-49,35,-105,-20,-105,-76xm83,-22v15,3,19,-31,19,-61v0,-39,-7,-58,-19,-58v-20,0,-30,19,-30,58v0,41,10,61,30,61","w":160,"k":{"u":-8}},"r":{"d":"19,-115v0,-21,-2,-29,-23,-28v-8,0,-8,-13,0,-13r79,-14r0,19v10,-15,31,-23,52,-15r0,45v-21,-22,-52,-7,-52,28r0,93r-56,0r0,-115","w":123,"k":{"v":8,"u":9,"r":-4,"o":7,"l":6,"k":9,"i":-3,"g":6,"e":3,"d":13,"c":12,"b":3,"a":6}},"s":{"d":"47,-131v21,24,92,44,92,79v0,59,-79,64,-141,49r0,-27v26,6,46,9,61,9v20,0,30,-4,30,-11v-19,-27,-93,-41,-92,-78v2,-58,70,-62,129,-49r0,26v-23,-6,-41,-9,-56,-9v-9,0,-23,3,-23,11","w":128,"k":{"y":7,"t":-4,"s":-3,"q":-9,"o":-13,"m":-5,"i":-5,"h":-3,"e":-13,"c":-5,"a":-7}},"t":{"d":"77,-53v-2,31,10,33,40,30r0,23v-47,12,-95,-5,-95,-42r0,-101r-26,0r0,-22r26,0r0,-30r55,-11r0,41r35,0r0,22r-35,0r0,90","w":97,"k":{"z":-25,"u":1,"s":-25,"r":-13,"p":-7,"o":-5,"n":-7,"l":-4,"i":-14,"h":-10,"e":-5,"b":-11,"a":-3}},"u":{"d":"134,-64v-3,-31,15,-84,-25,-79v-7,-1,-7,-14,1,-13r79,-14r0,170r-55,0r0,-9v-12,8,-28,12,-49,12v-54,1,-61,-56,-61,-118v0,-21,-3,-29,-24,-28v-8,-1,-8,-14,1,-13r78,-14r0,107v0,26,2,42,20,42v22,0,37,-20,35,-43","w":178,"k":{"x":-12,"v":-10,"t":-23,"s":-21,"r":-26,"p":-26,"n":-26,"m":-24,"l":-13,"k":-10,"i":-25,"g":-15,"f":-19,"e":-18,"d":-15,"c":-13,"b":-19,"a":-19}},"v":{"d":"149,-165r-60,165r-17,0r-56,-134v-4,-11,-24,-4,-26,-16v0,-4,2,-5,6,-6r77,-14r27,78r29,-73r20,0","w":124,"k":{"y":-9,"o":-11,"i":-12,"e":-7,"a":-5}},"w":{"d":"243,-165r-61,165r-17,0r-42,-103r-37,103r-17,0r-56,-134v-4,-11,-24,-4,-26,-16v0,-4,3,-5,7,-6r77,-14r26,78r15,-38v-4,-14,-25,-7,-28,-20v0,-4,2,-5,6,-6r77,-14r27,78r28,-73r21,0","w":219,"k":{"s":-16,"o":-9,"n":-13,"m":-13,"l":-7,"k":-8,"i":-14,"g":-9,"f":-10,"e":-7,"d":-6,"a":-6}},"x":{"d":"140,-165r-38,75r37,90r-56,0r-26,-64r-32,64r-22,0r44,-88v-12,-19,-11,-54,-40,-55v-7,-1,-7,-14,1,-13r62,-14r22,56r26,-51r22,0","w":128,"k":{"t":-6,"p":-3,"i":-6,"h":-6,"c":6}},"y":{"d":"151,-165v-28,67,-47,153,-84,210v-16,25,-38,24,-74,23r17,-29v42,3,46,-8,59,-48r-52,-125v-4,-11,-24,-4,-25,-16v0,-4,2,-5,6,-6r72,-14r32,79r28,-74r21,0","w":119,"k":{"z":-5,"x":-4,"t":-9,"s":-24,"p":-16,"n":-18,"m":-18,"g":-11,"e":-12,"d":-9,"b":-13}},"z":{"d":"15,-122v-1,8,-13,10,-14,0r0,-43r137,0r0,19r-81,122r81,0r0,24r-141,0r0,-19r83,-125v-27,3,-70,-11,-65,22","w":134,"k":{"z":-7,"o":5,"e":8,"a":9}},"{":{"d":"74,-88v50,23,39,56,39,111v0,23,12,37,35,42r0,16v-35,-1,-78,-26,-77,-60v-1,-4,9,-44,9,-63v0,-18,-11,-32,-35,-39r0,-14v78,-16,-12,-112,53,-147v16,-8,32,-14,50,-15r0,16v-45,8,-30,54,-30,96v0,25,-15,44,-44,57","w":185},"|":{"d":"67,61r-22,0r0,-344r22,0r0,344","w":110},"}":{"d":"116,-197v1,4,-8,42,-9,63v0,18,11,31,35,39r0,14v-78,15,12,112,-53,146v-16,8,-32,15,-50,16r0,-16v44,-3,30,-61,30,-96v0,-24,15,-42,44,-57v-51,-21,-40,-54,-40,-112v0,-22,-11,-35,-34,-41r0,-16v36,0,79,26,77,60","w":185},"~":{"d":"54,-117v36,8,46,25,92,44v5,0,8,-10,8,-32r0,-3r33,0v5,54,-26,78,-70,54r-58,-32v-9,0,-10,21,-9,34v-10,-2,-27,3,-33,-2v0,-42,12,-63,37,-63"},"\u00a0":{"w":85}}});;Cufon.registerFont({"w":174,"face":{"font-family":"alex","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","cap-height":"1","bbox":"-18 -289 284 103","underline-thickness":"8.64","underline-position":"-52.56","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":82},"!":{"d":"30,-233r34,0r0,175v-21,1,-35,-5,-34,-24r0,-151xm69,-18v0,-13,-9,-23,-22,-23v-12,0,-22,9,-22,22v0,13,10,22,22,22v13,0,22,-8,22,-21","w":93},"\"":{"d":"112,-260r0,80r-25,0r-9,-80r34,0xm63,-260r0,80r-23,0r-11,-80r34,0","w":141},"#":{"d":"180,-148r0,29r-34,0r-6,37r31,0r0,28r-35,0r-7,54r-30,0r7,-54r-31,0r-8,54r-29,0r7,-54r-30,0r0,-28r34,0r6,-37r-31,0r0,-29r35,0r11,-63r28,0r-9,63r31,0r9,-63r30,0r-9,63r30,0xm111,-82r5,-37r-31,0r-5,37r31,0","w":194},"$":{"d":"99,-139v39,13,63,27,65,70v2,34,-30,64,-65,70r0,34r-25,0r0,-32v-25,-1,-48,-12,-68,-31r15,-25v18,15,35,23,53,25r0,-78v-39,-13,-62,-22,-62,-63v0,-38,23,-62,62,-63r0,-31r25,0r0,31r47,0r6,50r-3,2v-12,-17,-29,-26,-50,-27r0,68xm74,-147r0,-59v-32,9,-35,49,0,59xm99,-30v35,-11,37,-55,0,-67r0,67","w":178},"%":{"d":"201,-120v31,0,53,27,52,61v0,33,-18,63,-52,63v-33,0,-52,-29,-52,-63v0,-34,20,-61,52,-61xm178,-251r29,0r-123,251r-29,0xm63,-253v31,0,52,28,52,60v0,35,-19,64,-53,64v-33,1,-51,-30,-51,-64v0,-33,19,-60,52,-60xm226,-59v0,-27,-9,-41,-26,-41v-18,0,-26,14,-26,41v0,30,8,44,26,44v17,0,26,-14,26,-44xm88,-193v0,-25,-8,-40,-25,-40v-18,0,-27,14,-27,40v0,30,8,45,26,45v17,0,26,-15,26,-45","w":262},"&":{"d":"69,-130v-39,-47,-40,-102,25,-104v75,-2,69,81,16,111r43,58r19,-15r15,20r-17,15r31,45r-36,0r-20,-27v-34,36,-139,51,-136,-20v2,-47,19,-53,60,-83xm94,-147v19,-15,22,-13,24,-36v4,-34,-41,-33,-44,-7v0,9,7,23,20,43xm85,-106v-28,25,-43,21,-43,55v0,48,68,28,88,5","w":209},"'":{"d":"64,-260r1,81r-26,-1r-6,-80r31,0","w":98},"(":{"d":"45,-108v0,80,9,108,60,152r-18,17v-53,-40,-76,-81,-76,-170v0,-87,26,-131,76,-169r18,17v-52,50,-60,67,-60,153","w":115},")":{"d":"24,-278v85,46,100,214,40,300v-10,13,-23,25,-40,38r-18,-16v50,-45,60,-73,60,-153v0,-78,-11,-108,-60,-152","w":105},"*":{"d":"112,-215r15,25r-33,18r32,18r-14,25r-32,-19r0,37r-27,0r0,-37r-30,19r-15,-25r32,-18r-32,-16r14,-25r32,18r0,-37r26,0r0,37","w":135},"+":{"d":"147,-80r-55,0r0,62r-26,0r0,-62r-54,0r0,-26r54,0r0,-61r26,0r0,61r55,0r0,26","w":158},",":{"d":"42,-42v44,0,14,71,-12,79r-9,-13v8,-6,14,-14,17,-22v-12,-2,-17,-9,-17,-21v0,-13,8,-23,21,-23","w":84},"-":{"d":"86,-112r0,30r-73,0r0,-30r73,0","w":101},"\u2010":{"d":"86,-112r0,30r-73,0r0,-30r73,0","w":101},".":{"d":"63,-19v0,13,-10,21,-22,21v-13,0,-22,-9,-22,-22v0,-13,9,-21,22,-21v12,0,22,9,22,22","w":82},"\/":{"d":"157,-274r26,15r-148,269r-27,-16","w":191},"0":{"d":"100,-212v54,0,83,50,83,107v0,57,-30,109,-83,109v-53,0,-83,-51,-83,-109v0,-57,30,-107,83,-107xm100,-19v31,0,48,-48,48,-86v0,-35,-17,-85,-48,-85v-31,0,-49,51,-49,85v0,35,18,86,49,86","w":199},"1":{"d":"104,-3r0,3r-53,0r0,-185r-39,29r0,-27r37,-28r36,0r0,181v0,15,6,24,19,27","w":115},"2":{"d":"147,-158v-2,47,-54,96,-86,136r92,1r0,21r-141,0r0,-20v37,-42,64,-77,85,-102v24,-28,24,-68,-18,-69v-31,0,-51,8,-62,23r-4,-2r7,-41v60,-1,130,-6,127,53","w":165},"3":{"d":"117,-126v25,6,49,32,48,63v-2,75,-129,92,-156,22r27,-11v17,46,90,38,90,-10v0,-37,-25,-44,-67,-45r0,-21v53,10,79,-62,13,-60r-45,0r0,-24v56,0,123,-2,123,50v0,17,-11,29,-33,36","w":177},"4":{"d":"149,-91r0,22r-24,0r0,70r-50,0r0,-4v28,-5,15,-38,18,-66r-83,0r0,-21r88,-116v7,-6,15,-6,27,-6r0,121r24,0xm41,-91r52,0r0,-69","w":158},"5":{"d":"55,-130v60,-5,107,7,107,62v0,86,-106,85,-150,41r13,-21v23,17,44,25,64,25v28,0,42,-15,42,-46v-1,-44,-58,-39,-105,-38r11,-104r111,0r5,50r-4,2v-18,-32,-45,-30,-88,-29","w":175},"6":{"d":"93,-22v22,0,41,-22,42,-44v3,-47,-56,-50,-84,-27v-1,35,12,71,42,71xm15,-103v1,-75,45,-120,130,-109v-1,15,8,36,1,46v-24,-32,-63,-31,-82,6v-7,14,-11,28,-11,44v45,-33,110,-10,110,53v0,37,-30,63,-69,63v-53,0,-80,-45,-79,-103","w":178},"7":{"d":"148,-211r0,20r-88,196v-22,-2,-27,-19,-18,-37r69,-156v-36,4,-92,-14,-101,19r-4,0r0,-42r142,0","w":154},"8":{"d":"89,-213v58,-6,94,69,44,99v54,31,25,117,-44,117v-40,0,-75,-25,-74,-63v0,-25,11,-42,30,-53v-51,-30,-16,-108,44,-100xm51,-158v0,20,18,34,38,34v20,0,37,-13,37,-34v0,-20,-17,-32,-37,-32v-19,0,-38,13,-38,32xm89,-21v21,0,41,-21,41,-42v0,-21,-20,-41,-41,-41v-20,-1,-41,19,-41,40v0,23,19,43,41,43","w":175},"9":{"d":"85,-190v-21,0,-43,20,-43,42v0,50,55,52,84,29v1,-44,-12,-71,-41,-71xm162,-109v-1,75,-45,120,-130,109v1,-15,-8,-36,-1,-46v22,31,61,30,80,-2v9,-14,13,-30,13,-48v-44,33,-111,11,-111,-52v0,-37,34,-65,72,-64v53,1,77,45,77,103"},":":{"d":"63,-124v0,13,-9,22,-22,22v-12,0,-22,-10,-22,-22v0,-13,10,-22,22,-22v13,0,22,9,22,22xm63,-19v0,13,-9,22,-22,22v-12,0,-22,-10,-22,-22v0,-13,10,-22,22,-22v13,0,22,9,22,22","w":83},";":{"d":"65,-127v0,13,-10,22,-22,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v12,0,22,9,22,22xm64,-17v0,21,-12,39,-34,54r-9,-13v8,-6,14,-14,17,-22v-24,-3,-22,-45,4,-44v15,0,22,8,22,25","w":84},"<":{"d":"49,-111r60,79r-39,0r-60,-79r61,-78r38,0","w":118},"=":{"d":"152,-143r0,30r-133,0r0,-30r133,0xm152,-79r0,30r-132,0r0,-30r132,0"},">":{"d":"49,-189r59,78r-59,79r-40,0r60,-79r-60,-78r40,0","w":116},"?":{"d":"80,-19v0,13,-10,22,-22,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,22,9,22,22xm25,-233v67,-5,129,8,129,67v0,39,-35,65,-79,62r0,45v-42,6,-34,-33,-34,-69v47,1,73,-4,75,-40v2,-44,-45,-44,-91,-42r0,-23","w":171},"@":{"d":"40,-216v72,-84,220,-21,220,89v0,70,-59,129,-129,129v-62,0,-118,-48,-118,-109v0,-61,47,-94,109,-94v87,0,64,53,67,119v2,31,-30,31,-63,31v-30,0,-52,-18,-52,-48v0,-35,38,-54,87,-47v1,-25,-6,-31,-39,-31v-43,0,-80,27,-80,68v0,47,42,83,89,83v55,0,100,-46,100,-100v0,-86,-111,-136,-172,-72xm160,-123v-29,-3,-55,-3,-55,23v0,22,20,32,45,29v18,-3,7,-34,10,-52","w":272},"A":{"d":"114,-232r78,232r-64,0r0,-3v35,-8,11,-46,4,-67r-81,0r-27,75v-14,-2,-23,-15,-17,-30r78,-207r29,0xm60,-91r66,0r-32,-94","w":198,"k":{"w":19,"v":23,"Y":42,"W":33,"V":34,"U":14,"T":37,"R":9,"Q":12,"O":12,"G":10}},"B":{"d":"104,-232v30,-1,64,29,64,58v0,23,-11,44,-30,50v27,9,45,32,45,58v0,62,-62,66,-132,66v-17,0,-25,-8,-25,-26r0,-181v0,-12,-5,-19,-18,-22r0,-3r96,0xm130,-170v-1,-34,-32,-46,-71,-41r0,83v40,3,73,-3,71,-42xm143,-64v0,-43,-40,-46,-84,-43r0,76v0,15,26,10,40,10v30,0,44,-15,44,-43","w":195,"k":{"Z":9,"Y":19,"W":10,"V":11,"T":9}},"C":{"d":"6,-113v0,-61,37,-119,96,-119r68,0r6,50r-3,2v-13,-19,-31,-29,-53,-29v-51,0,-73,39,-73,93v-1,44,19,90,57,90v28,-1,38,-8,58,-22r13,21v-23,19,-49,29,-77,29v-52,2,-92,-61,-92,-115","w":187,"k":{"z":12,"y":8,"x":8,"w":29,"v":41,"q":8,"o":8,"n":9,"m":10,"g":13,"e":8,"c":8,"Z":8,"Q":8,"G":10}},"D":{"d":"98,-232v58,-1,95,51,95,113v0,67,-29,121,-90,119v-31,-1,-77,10,-77,-24r0,-181v0,-13,-5,-21,-18,-24r0,-3r90,0xm156,-117v-1,-74,-29,-100,-96,-94r0,180v0,13,24,9,38,9v39,0,58,-32,58,-95","w":204,"k":{"Z":19,"Y":18,"X":17,"T":9,"J":12,"A":5}},"E":{"d":"158,-21r0,21r-106,0v-16,0,-24,-8,-24,-23r0,-183v0,-12,-6,-19,-19,-23r0,-4r149,0v-2,13,4,32,-2,41v-8,-33,-59,-14,-94,-19r0,83r72,0r0,21r-72,0r0,76v0,6,3,10,10,10r86,0","w":173,"k":{"y":13,"w":17,"v":20,"u":10,"t":6,"s":1,"q":14,"o":13,"n":10,"m":12,"g":19,"e":10,"d":14,"c":14,"a":8,"S":8,"Q":17,"O":16,"G":19,"C":13}},"F":{"d":"159,-233r0,41r-3,0v-8,-33,-59,-14,-94,-19r0,83r73,0r0,21r-73,0r0,107v-20,2,-34,-3,-33,-23r0,-183v0,-12,-6,-19,-19,-23r0,-4r149,0","w":168,"k":{"z":24,"y":22,"x":30,"w":15,"v":26,"u":21,"t":-1,"s":21,"r":18,"q":20,"p":17,"o":16,"n":26,"m":27,"g":25,"e":19,"d":16,"c":18,"a":23,"Q":12,"O":11,"J":24,"G":14,"C":8,"A":31}},"G":{"d":"53,-116v0,53,26,104,81,95v12,-1,18,-3,18,-8v-5,-35,14,-89,-19,-96r0,-3r53,0r0,100v5,43,-47,27,-82,29v-59,3,-92,-55,-92,-117v0,-60,39,-116,97,-116r64,0r0,21v-79,-7,-120,15,-120,95","w":202},"H":{"d":"185,-232r0,232r-33,0r0,-106r-99,-1r0,107r-34,0r0,-232v20,-1,34,3,34,22r0,82r99,0v-5,-36,14,-92,-18,-101r0,-3r51,0","w":204},"I":{"d":"59,-232r0,233v-21,2,-34,-4,-33,-25r0,-183v0,-13,-7,-20,-19,-22r0,-3r52,0","w":87},"J":{"d":"94,-232v-8,98,37,250,-88,233r0,-23v83,15,54,-113,54,-182v0,-15,-6,-23,-18,-25r0,-3r52,0","w":122},"K":{"d":"91,-138r92,138r-41,0r-74,-112r-13,13r0,99v-21,2,-33,-4,-33,-25r0,-179v0,-13,-6,-22,-19,-25r0,-3r52,0r0,94r86,-94r35,0","w":186,"k":{"w":22,"v":35,"q":8,"o":8,"g":13,"e":8,"d":8,"c":8,"Q":23,"O":22,"G":20,"C":17}},"L":{"d":"52,-26v36,-4,89,13,96,-20r4,0r0,46r-134,0r0,-232v21,-2,34,5,34,24r0,182","w":156,"k":{"w":15,"v":26,"Y":43,"W":33,"V":42,"U":8,"T":36,"Q":8,"F":7}},"M":{"d":"244,-232r0,209v1,21,-12,26,-33,24r0,-170r-66,169r-28,0r-64,-163r0,163r-45,0r0,-3v14,-5,19,-10,19,-25r0,-177v0,-13,-6,-21,-19,-24r0,-4r51,0r78,182r71,-181r36,0","w":265},"N":{"d":"185,-232r0,232v-25,2,-33,-2,-45,-24r-87,-151r0,175r-45,0r0,-3v13,-3,19,-13,19,-28r0,-172v0,-15,-6,-23,-19,-26r0,-3r47,0r105,178r0,-178r25,0","w":204},"O":{"d":"111,-237v61,0,101,56,101,117v0,63,-40,123,-101,123v-60,0,-100,-60,-100,-123v0,-60,41,-117,100,-117xm112,-22v79,-5,84,-187,-1,-189v-84,4,-79,186,1,189","w":224,"k":{"Z":21,"Y":20,"X":22,"V":9,"T":11,"J":19,"A":6}},"P":{"d":"97,-233v35,0,68,28,67,65v0,52,-47,70,-107,63r0,106v-21,2,-35,-5,-34,-25r0,-180v0,-14,-6,-22,-19,-25r0,-4r93,0xm131,-169v0,-33,-35,-41,-74,-37r0,75v39,3,74,0,74,-38","w":171,"k":{"q":9,"o":6,"g":15,"e":6,"c":8,"a":9,"Z":8,"Y":8,"X":12,"J":34,"A":27}},"Q":{"d":"112,-237v104,0,129,160,61,216r38,0r0,22r-110,0v-54,-5,-89,-61,-89,-121v0,-60,41,-117,100,-117xm112,-26v86,-2,82,-183,0,-184v-82,0,-86,182,0,184","w":227,"k":{"Y":20,"V":9,"T":11}},"R":{"d":"167,-168v0,33,-24,61,-56,63r60,105r-40,0r-59,-105r-16,0r0,106v-21,2,-33,-5,-33,-26r0,-181v0,-13,-7,-20,-19,-23r0,-4r96,0v36,-1,68,29,67,65xm56,-131v46,4,78,1,78,-38v0,-34,-38,-41,-78,-37r0,75","w":181,"k":{"g":12,"Y":9}},"S":{"d":"84,-27v45,0,67,-54,17,-71v-36,-12,-85,-23,-85,-71v0,-67,67,-66,134,-63r6,50r-3,2v-15,-33,-100,-43,-100,5v-8,28,85,46,85,51v62,38,20,127,-54,127v-27,0,-52,-10,-74,-31r15,-25v20,17,40,26,59,26","w":178,"k":{"z":9,"v":9,"Z":9}},"T":{"d":"166,-232r0,25r-66,0r0,178v0,15,6,23,19,26r0,3r-52,0r0,-207r-63,0r0,-25r162,0","k":{"z":28,"y":41,"x":22,"w":30,"v":35,"u":41,"s":29,"r":29,"q":37,"p":32,"o":33,"n":37,"m":37,"g":40,"e":38,"d":33,"c":33,"a":36,"Q":14,"O":14,"J":21,"G":17,"C":11,"A":28}},"U":{"d":"108,3v-47,0,-84,-36,-83,-83r0,-127v0,-12,-6,-19,-18,-22r0,-3r52,0r0,148v0,39,17,58,52,58v85,0,47,-128,55,-206r28,0r0,152v1,50,-37,83,-86,83","w":213},"V":{"d":"111,0r-25,0r-82,-232r65,0r0,3v-15,2,-21,15,-16,29r50,141r62,-173r27,0","w":198,"k":{"z":12,"y":12,"u":11,"s":20,"r":17,"q":24,"p":16,"o":21,"g":30,"e":23,"d":21,"c":23,"a":24,"Q":11,"O":10,"J":16,"G":13,"A":42}},"W":{"d":"259,-233r25,0r-62,233r-25,0r-52,-180r-47,180r-26,0r-65,-232r62,0r0,3v-16,3,-22,15,-17,31r37,132r37,-137v8,-28,15,-30,40,-29r47,166","w":291,"k":{"s":12,"r":9,"q":15,"p":9,"o":12,"g":20,"e":14,"d":12,"c":13,"a":18,"J":15,"A":28}},"X":{"d":"118,-125r79,125v-31,1,-42,-2,-56,-25r-43,-69v-14,24,-34,44,-44,72v0,10,9,17,18,19r0,3r-67,0r77,-118r-72,-114r41,0r52,83r55,-83r31,0","w":201,"k":{"w":21,"v":24,"q":7,"o":7,"g":13,"e":7,"d":8,"c":7,"Q":23,"O":22,"G":20,"C":16}},"Y":{"d":"149,-232r30,0r-71,128v5,37,-14,91,19,101r0,3r-52,0r0,-107r-70,-125v30,-1,41,2,53,25r38,71","w":185,"k":{"z":25,"y":24,"x":13,"w":13,"v":16,"u":23,"s":36,"r":32,"q":42,"p":30,"o":34,"n":12,"m":13,"g":48,"e":31,"d":38,"c":41,"a":33,"S":12,"Q":20,"O":20,"J":18,"G":23,"C":16,"A":36}},"Z":{"d":"192,-45r0,45r-187,0r124,-206r-112,0r0,-26r167,0r-124,206r102,0v14,0,24,-6,27,-19r3,0","w":197,"k":{"w":15,"v":24,"a":-5}},"[":{"d":"68,24r0,26r-64,0r0,-325r64,1r0,25r-32,0r0,273r32,0","w":72},"\\":{"d":"25,-275r144,262r-28,18r-145,-264","w":165},"]":{"d":"83,-275r0,325r-64,0r0,-26r32,0r0,-273r-32,0r0,-25","w":102},"^":{"d":"122,-262r80,128r-36,0r-57,-87r-55,87r-37,0r79,-128r26,0","w":218},"_":{"d":"172,22r0,23r-180,0r0,-23r180,0","w":164},"`":{"d":"18,-245r72,43r-12,20r-73,-35","w":94},"a":{"d":"33,-165v52,-4,104,2,104,48v0,49,20,118,-40,118v-49,0,-86,-9,-88,-53v-2,-38,43,-60,96,-52v8,-46,-56,-53,-76,-17r-4,-1xm75,-22v42,11,26,-31,29,-58v-29,-1,-61,-1,-60,27v0,17,14,31,31,31","w":154,"k":{"h":5}},"b":{"d":"68,-21v46,0,59,-21,59,-63v0,-60,-34,-67,-73,-47r0,95v0,12,1,15,14,15xm54,-157v54,-32,109,9,109,71v0,62,-33,88,-105,88v-24,0,-36,-12,-36,-35r0,-192v0,-13,-6,-21,-19,-24r0,-3r51,0r0,95"},"c":{"d":"85,-142v-53,0,-55,120,-1,120v11,0,25,-5,44,-14r10,21v-20,13,-41,18,-62,18v-40,1,-66,-42,-66,-83v0,-67,46,-92,120,-83r0,43r-3,0v-3,-14,-25,-21,-42,-22","w":144,"k":{"h":8}},"d":{"d":"9,-86v0,-62,55,-103,109,-71r0,-95r52,0r0,3v-13,3,-19,11,-19,24r0,192v2,38,-38,35,-76,35v-43,0,-66,-42,-66,-88xm45,-84v1,41,13,63,59,63v12,0,14,-3,14,-15r0,-95v-38,-20,-75,-13,-73,47","w":173},"e":{"d":"11,-78v0,-47,23,-88,66,-87v41,0,62,28,63,85r-95,0v-6,54,55,87,83,36r4,2r-8,42v-69,6,-113,-12,-113,-78xm106,-103v0,-18,-10,-40,-28,-39v-17,0,-28,13,-31,39r59,0","w":152,"k":{"h":3}},"f":{"d":"112,-252r0,21v-48,-4,-62,13,-58,68r35,0r0,25r-35,0r0,108v0,15,5,22,19,27r0,3r-53,0r0,-138r-16,0r0,-25r16,0v-4,-63,26,-95,92,-89","w":106,"k":{"q":8,"k":-10,"h":-6,"g":14,"b":-8,"a":9}},"g":{"d":"16,-80v0,-41,29,-85,69,-85v36,0,77,-3,75,33v-6,83,25,194,-55,208v-8,2,-27,5,-57,9r-6,-43r3,-1v4,10,11,16,23,16v39,-3,65,-16,58,-66v-53,36,-110,-7,-110,-71xm90,-141v-50,-1,-51,118,-1,119v9,0,21,-5,37,-14r0,-93v1,-17,-21,-12,-36,-12","w":177,"k":{"h":4,"b":5}},"h":{"d":"122,-24v0,-42,15,-111,-26,-115v-11,0,-25,6,-40,17r0,122r-34,0r0,-225v0,-14,-5,-20,-18,-24r0,-3r51,0r0,102v37,-28,101,-15,101,38r0,112v-21,2,-34,-3,-34,-24","w":171},"i":{"d":"60,-164r0,164v-21,2,-35,-3,-34,-24r0,-111v0,-13,-6,-21,-19,-25r0,-4r53,0xm20,-214v0,-12,9,-22,22,-22v12,0,22,10,22,22v0,13,-10,22,-22,22v-13,0,-22,-9,-22,-22","w":86},"j":{"d":"63,-214v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v13,0,22,9,22,22xm-18,68v71,-8,43,-131,43,-204v0,-13,-6,-21,-19,-24r0,-3r52,0r0,173v1,52,-26,81,-76,81r0,-23","w":87,"k":{"y":9}},"k":{"d":"87,-105r67,105r-40,0r-52,-82r-10,9r0,73v-21,2,-34,-3,-33,-24r0,-201v0,-13,-6,-21,-19,-24r0,-3r52,0r0,145r69,-63r18,17","w":156,"k":{"y":6,"u":4,"o":8,"h":6,"g":8,"e":6,"d":10,"c":1,"b":4,"a":3}},"l":{"d":"72,-3r0,3v-26,0,-51,3,-51,-25r0,-227r32,0r0,226v0,13,6,20,19,23","w":78},"m":{"d":"132,-153v37,-25,102,-16,102,32r0,121v-54,8,-33,-67,-33,-109v0,-37,-34,-40,-56,-23v3,41,0,89,1,132r-34,0r0,-109v2,-32,-23,-35,-54,-33r0,142r-34,0r0,-139v0,-12,-6,-20,-19,-24r0,-3v44,4,102,-11,127,13","w":255},"n":{"d":"4,-165v60,2,146,-15,146,44r0,121v-53,8,-27,-66,-33,-108v2,-33,-28,-33,-60,-32r0,140r-34,0r0,-139v0,-12,-6,-19,-19,-23r0,-3","w":172,"k":{"h":10}},"o":{"d":"85,-167v44,0,75,37,75,82v0,49,-28,88,-75,88v-45,0,-76,-40,-75,-88v0,-44,30,-82,75,-82xm124,-84v0,-37,-13,-57,-39,-57v-26,0,-39,20,-39,56v0,42,13,64,39,64v26,0,39,-21,39,-63","w":172,"k":{"h":5}},"p":{"d":"51,-165v72,0,108,26,110,87v2,61,-55,103,-111,72v4,32,-13,80,18,87r0,3r-51,0r0,-217v0,-20,13,-32,34,-32xm123,-79v-1,-54,-14,-65,-58,-62v-10,0,-15,4,-15,11r0,97v38,24,75,13,73,-46","w":171},"q":{"d":"11,-78v0,-43,27,-87,68,-87v36,0,76,-4,76,32r0,191v0,12,6,20,19,23r0,3r-52,0r0,-90v-55,31,-111,-10,-111,-72xm122,-33r0,-97v1,-13,-27,-13,-39,-10v-23,0,-35,20,-35,61v0,58,36,71,74,46","w":170},"r":{"d":"110,-165r8,42r-4,1v-14,-35,-65,-33,-66,5r0,117r-34,0v6,-67,-26,-169,53,-165r43,0","w":124},"s":{"d":"35,-83v-42,-25,-16,-88,36,-82r42,0r8,42r-4,1v-13,-19,-23,-23,-45,-23v-29,-1,-36,31,-5,42v46,17,53,18,62,55v-1,54,-81,68,-120,32r13,-21v13,10,28,15,42,15v32,1,46,-32,11,-44v-25,-8,-37,-15,-40,-17","w":140},"t":{"d":"89,-164r0,25r-28,0r0,113v0,13,6,20,19,23r0,3v-25,0,-52,5,-52,-23r0,-116r-18,0r0,-25r18,0r0,-47r33,0r0,47r28,0","w":100},"u":{"d":"51,-163v6,54,-23,141,39,140r29,0r0,-140r33,0r0,138v0,12,6,19,19,23r0,3v-62,-3,-153,17,-153,-44r0,-120r33,0","w":173},"v":{"d":"135,-163r26,0r-61,163r-28,0r-67,-163r66,0r0,3v-13,1,-26,15,-17,28r35,86","w":165,"k":{"q":5}},"w":{"d":"200,-163r25,0r-46,163r-27,0r-37,-112r-31,112r-27,0r-54,-163v19,2,47,-4,62,2v-45,13,4,73,8,106r25,-89v7,-17,9,-20,35,-19r36,108","w":230},"x":{"d":"95,-84r57,84v-22,0,-39,1,-49,-13r-28,-42v-10,14,-38,45,-3,52r0,3r-67,0r54,-80r-56,-83r38,0r38,55r38,-55r33,0","w":155,"k":{"g":9}},"y":{"d":"125,-5v-40,16,-107,10,-106,-41r0,-117v21,-1,34,2,34,24v0,47,-20,120,36,117v10,0,21,-4,34,-12r0,-129r34,0v-10,94,35,230,-63,241v-15,2,-18,16,-23,25r-12,-45v48,-10,67,-5,66,-63","w":176},"z":{"d":"145,-44r0,44r-136,0r81,-138r-77,0r0,-25r129,0r-80,137v34,-1,72,8,83,-18","w":155},"{":{"d":"66,-10v-1,24,22,42,43,49r-11,24v-48,-14,-66,-51,-66,-120v0,-21,-11,-35,-35,-41r0,-30v61,-6,17,-90,49,-126v14,-15,31,-28,52,-35r11,24v-50,16,-44,48,-43,102v0,22,-9,38,-30,50v35,18,31,55,30,103","w":106},"|":{"d":"55,-275r0,279r-31,11r0,-278","w":79},"}":{"d":"7,-289v48,14,65,52,65,121v0,21,12,35,36,41r0,29v-60,6,-19,91,-49,127v-13,16,-30,28,-52,34r-12,-24v22,-8,45,-24,44,-49v-1,-47,-6,-85,30,-103v-36,-18,-30,-55,-30,-102v0,-22,-14,-38,-44,-50","w":103},"~":{"d":"121,-119r14,18v-25,25,-50,23,-83,9v-6,0,-14,4,-24,12r-14,-19v25,-25,51,-21,83,-8v6,0,14,-4,24,-12","w":148},"\u00a0":{"w":82}}});;;(function($){$.fn.ajaxSubmit=function(options){if(!this.length){log('ajaxSubmit: skipping submit process - no element selected');return this;}
if(typeof options=='function')
options={success:options};var url=$.trim(this.attr('action'));if(url){url=(url.match(/^([^#]+)/)||[])[1];}
url=url||window.location.href||'';options=$.extend({url:url,type:this.attr('method')||'GET'},options||{});var veto={};this.trigger('form-pre-serialize',[this,options,veto]);if(veto.veto){log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');return this;}
if(options.beforeSerialize&&options.beforeSerialize(this,options)===false){log('ajaxSubmit: submit aborted via beforeSerialize callback');return this;}
var a=this.formToArray(options.semantic);if(options.data){options.extraData=options.data;for(var n in options.data){if(options.data[n]instanceof Array){for(var k in options.data[n])
a.push({name:n,value:options.data[n][k]});}
else
a.push({name:n,value:options.data[n]});}}
if(options.beforeSubmit&&options.beforeSubmit(a,this,options)===false){log('ajaxSubmit: submit aborted via beforeSubmit callback');return this;}
this.trigger('form-submit-validate',[a,this,options,veto]);if(veto.veto){log('ajaxSubmit: submit vetoed via form-submit-validate trigger');return this;}
var q=$.param(a);if(options.type.toUpperCase()=='GET'){options.url+=(options.url.indexOf('?')>=0?'&':'?')+q;options.data=null;}
else
options.data=q;var $form=this,callbacks=[];if(options.resetForm)callbacks.push(function(){$form.resetForm();});if(options.clearForm)callbacks.push(function(){$form.clearForm();});if(!options.dataType&&options.target){var oldSuccess=options.success||function(){};callbacks.push(function(data){$(options.target).html(data).each(oldSuccess,arguments);});}
else if(options.success)
callbacks.push(options.success);options.success=function(data,status){for(var i=0,max=callbacks.length;i<max;i++)
callbacks[i].apply(options,[data,status,$form]);};var files=$('input:file',this).fieldValue();var found=false;for(var j=0;j<files.length;j++)
if(files[j])
found=true;var multipart=false;if(options.iframe||found||multipart){if(options.closeKeepAlive)
$.get(options.closeKeepAlive,fileUpload);else
fileUpload();}
else
$.ajax(options);this.trigger('form-submit-notify',[this,options]);return this;function fileUpload(){var form=$form[0];if($(':input[name=submit]',form).length){alert('Error: Form elements must not be named "submit".');return;}
var opts=$.extend({},$.ajaxSettings,options);var s=$.extend(true,{},$.extend(true,{},$.ajaxSettings),opts);var id='jqFormIO'+(new Date().getTime());var $io=$('<iframe id="'+id+'" name="'+id+'" src="about:blank" />');var io=$io[0];$io.css({position:'absolute',top:'-1000px',left:'-1000px'});var xhr={aborted:0,responseText:null,responseXML:null,status:0,statusText:'n/a',getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(){this.aborted=1;$io.attr('src','about:blank');}};var g=opts.global;if(g&&!$.active++)$.event.trigger("ajaxStart");if(g)$.event.trigger("ajaxSend",[xhr,opts]);if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&$.active--;return;}
if(xhr.aborted)
return;var cbInvoked=0;var timedOut=0;var sub=form.clk;if(sub){var n=sub.name;if(n&&!sub.disabled){options.extraData=options.extraData||{};options.extraData[n]=sub.value;if(sub.type=="image"){options.extraData[name+'.x']=form.clk_x;options.extraData[name+'.y']=form.clk_y;}}}
setTimeout(function(){var t=$form.attr('target'),a=$form.attr('action');form.setAttribute('target',id);if(form.getAttribute('method')!='POST')
form.setAttribute('method','POST');if(form.getAttribute('action')!=opts.url)
form.setAttribute('action',opts.url);if(!options.skipEncodingOverride){$form.attr({encoding:'multipart/form-data',enctype:'multipart/form-data'});}
if(opts.timeout)
setTimeout(function(){timedOut=true;cb();},opts.timeout);var extraInputs=[];try{if(options.extraData)
for(var n in options.extraData)
extraInputs.push($('<input type="hidden" name="'+n+'" value="'+options.extraData[n]+'" />').appendTo(form)[0]);$io.appendTo('body');io.attachEvent?io.attachEvent('onload',cb):io.addEventListener('load',cb,false);form.submit();}
finally{form.setAttribute('action',a);t?form.setAttribute('target',t):$form.removeAttr('target');$(extraInputs).remove();}},10);var domCheckCount=50;function cb(){if(cbInvoked++)return;io.detachEvent?io.detachEvent('onload',cb):io.removeEventListener('load',cb,false);var ok=true;try{if(timedOut)throw'timeout';var data,doc;doc=io.contentWindow?io.contentWindow.document:io.contentDocument?io.contentDocument:io.document;if(doc.body==null||doc.body.innerHTML==''){if(--domCheckCount){cbInvoked=0;setTimeout(cb,100);return;}
log('Could not access iframe DOM after 50 tries.');return;}
xhr.responseText=doc.body?doc.body.innerHTML:null;xhr.responseXML=doc.XMLDocument?doc.XMLDocument:doc;xhr.getResponseHeader=function(header){var headers={'content-type':opts.dataType};return headers[header];};if(opts.dataType=='json'||opts.dataType=='script'){var ta=doc.getElementsByTagName('textarea')[0];xhr.responseText=ta?ta.value:xhr.responseText;}
else if(opts.dataType=='xml'&&!xhr.responseXML&&xhr.responseText!=null){xhr.responseXML=toXml(xhr.responseText);}
data=$.httpData(xhr,opts.dataType);}
catch(e){ok=false;$.handleError(opts,xhr,'error',e);}
if(ok){opts.success(data,'success');if(g)$.event.trigger("ajaxSuccess",[xhr,opts]);}
if(g)$.event.trigger("ajaxComplete",[xhr,opts]);if(g&&!--$.active)$.event.trigger("ajaxStop");if(opts.complete)opts.complete(xhr,ok?'success':'error');setTimeout(function(){$io.remove();xhr.responseXML=null;},100);};function toXml(s,doc){if(window.ActiveXObject){doc=new ActiveXObject('Microsoft.XMLDOM');doc.async='false';doc.loadXML(s);}
else
doc=(new DOMParser()).parseFromString(s,'text/xml');return(doc&&doc.documentElement&&doc.documentElement.tagName!='parsererror')?doc:null;};};};$.fn.ajaxForm=function(options){return this.ajaxFormUnbind().bind('submit.form-plugin',function(){$(this).ajaxSubmit(options);return false;}).each(function(){$(":submit,input:image",this).bind('click.form-plugin',function(e){var form=this.form;form.clk=this;if(this.type=='image'){if(e.offsetX!=undefined){form.clk_x=e.offsetX;form.clk_y=e.offsetY;}else if(typeof $.fn.offset=='function'){var offset=$(this).offset();form.clk_x=e.pageX-offset.left;form.clk_y=e.pageY-offset.top;}else{form.clk_x=e.pageX-this.offsetLeft;form.clk_y=e.pageY-this.offsetTop;}}
setTimeout(function(){form.clk=form.clk_x=form.clk_y=null;},10);});});};$.fn.ajaxFormUnbind=function(){this.unbind('submit.form-plugin');return this.each(function(){$(":submit,input:image",this).unbind('click.form-plugin');});};$.fn.formToArray=function(semantic){var a=[];if(this.length==0)return a;var form=this[0];var els=semantic?form.getElementsByTagName('*'):form.elements;if(!els)return a;for(var i=0,max=els.length;i<max;i++){var el=els[i];var n=el.name;if(!n)continue;if(semantic&&form.clk&&el.type=="image"){if(!el.disabled&&form.clk==el){a.push({name:n,value:$(el).val()});a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}
continue;}
var v=$.fieldValue(el,true);if(v&&v.constructor==Array){for(var j=0,jmax=v.length;j<jmax;j++)
a.push({name:n,value:v[j]});}
else if(v!==null&&typeof v!='undefined')
a.push({name:n,value:v});}
if(!semantic&&form.clk){var $input=$(form.clk),input=$input[0],n=input.name;if(n&&!input.disabled&&input.type=='image'){a.push({name:n,value:$input.val()});a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}}
return a;};$.fn.formSerialize=function(semantic){return $.param(this.formToArray(semantic));};$.fn.fieldSerialize=function(successful){var a=[];this.each(function(){var n=this.name;if(!n)return;var v=$.fieldValue(this,successful);if(v&&v.constructor==Array){for(var i=0,max=v.length;i<max;i++)
a.push({name:n,value:v[i]});}
else if(v!==null&&typeof v!='undefined')
a.push({name:this.name,value:v});});return $.param(a);};$.fn.fieldValue=function(successful){for(var val=[],i=0,max=this.length;i<max;i++){var el=this[i];var v=$.fieldValue(el,successful);if(v===null||typeof v=='undefined'||(v.constructor==Array&&!v.length))
continue;v.constructor==Array?$.merge(val,v):val.push(v);}
return val;};$.fieldValue=function(el,successful){var n=el.name,t=el.type,tag=el.tagName.toLowerCase();if(typeof successful=='undefined')successful=true;if(successful&&(!n||el.disabled||t=='reset'||t=='button'||(t=='checkbox'||t=='radio')&&!el.checked||(t=='submit'||t=='image')&&el.form&&el.form.clk!=el||tag=='select'&&el.selectedIndex==-1))
return null;if(tag=='select'){var index=el.selectedIndex;if(index<0)return null;var a=[],ops=el.options;var one=(t=='select-one');var max=(one?index+1:ops.length);for(var i=(one?index:0);i<max;i++){var op=ops[i];if(op.selected){var v=op.value;if(!v)
v=(op.attributes&&op.attributes['value']&&!(op.attributes['value'].specified))?op.text:op.value;if(one)return v;a.push(v);}}
return a;}
return el.value;};$.fn.clearForm=function(){return this.each(function(){$('input,select,textarea',this).clearFields();});};$.fn.clearFields=$.fn.clearInputs=function(){return this.each(function(){var t=this.type,tag=this.tagName.toLowerCase();if(t=='text'||t=='password'||tag=='textarea')
this.value='';else if(t=='checkbox'||t=='radio')
this.checked=false;else if(tag=='select')
this.selectedIndex=-1;});};$.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=='function'||(typeof this.reset=='object'&&!this.reset.nodeType))
this.reset();});};$.fn.enable=function(b){if(b==undefined)b=true;return this.each(function(){this.disabled=!b;});};$.fn.selected=function(select){if(select==undefined)select=true;return this.each(function(){var t=this.type;if(t=='checkbox'||t=='radio')
this.checked=select;else if(this.tagName.toLowerCase()=='option'){var $sel=$(this).parent('select');if(select&&$sel[0]&&$sel[0].type=='select-one'){$sel.find('option').selected(false);}
this.selected=select;}});};function log(){if($.fn.ajaxSubmit.debug&&window.console&&window.console.log)
window.console.log('[jquery.form] '+Array.prototype.join.call(arguments,''));};})(jQuery);;(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}
var validator=$.data(this[0],'validator');if(validator){return validator;}
validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});if(validator.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){validator.submitButton=this;});}
this.submit(function(event){if(validator.settings.debug)
event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);}
validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove();}
return false;}
return true;}
if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}
if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}
return handle();}else{validator.focusInvalid();return false;}});}
return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)
settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}
var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}
var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}
return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(a.value);},filled:function(a){return!!$.trim(a.value);},unchecked:function(a){return!a.checked;}});$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init();};$.validator.format=function(source,params){if(arguments.length==1)
return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}
if(params.constructor!=Array){params=[params];}
$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.errorsFor(element).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)
this.element(element);},highlight:function(element,errorClass,validClass){$(element).addClass(errorClass).removeClass(validClass);$(element).closest('li').addClass(errorClass).removeClass(validClass);},unhighlight:function(element,errorClass,validClass){$(element).removeClass(errorClass).addClass(validClass);$(element).closest('li').removeClass(errorClass).addClass(validClass);}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"Required field",remote:"Please fix this field.",email:"Please enter a valid email.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",dateDE:"Bitte geben Sie ein gültiges Datum ein.",number:"Please enter a valid number.",numberDE:"Bitte geben Sie eine Nummer ein.",digits:"Please enter only digits",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0]);}
$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox",delegate);if(this.settings.invalidHandler)
$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())
$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}
return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}
if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}
this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}
this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}
this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)
$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)
count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus();}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))
return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.formSubmitted=false;this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0];}
var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}
dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}
if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method");throw e;}}
if(dependencyMismatch)
return;if(this.objectLength(rules))
this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)
return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)
return arguments[i];}
return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method);if(typeof message=="function")
message=message.call(this,rule.parameters,element);this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)
toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message);}
if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}
if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}
if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass,this.settings.validClass);}}
this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}
if(!this.labelContainer.append(label).length)
this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}
if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}
this.toShow=this.toShow.add(label);},errorsFor:function(element){return this.errors().filter("[for='"+this.idOrName(element)+"']");},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return /radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))
return this.findByName(element.name).filter(':checked').length;}
return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)
this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",previous={old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}
if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}
return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}
return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}
if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}
if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}
if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}
if(rules.messages){delete rules.messages}
return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}
return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))
return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var options=$("option:selected",element);return options.length>0&&(element.type=="select-multiple"||($.browser.msie&&!(options[0].attributes['value'].specified)?options[0].text:options[0].value).length>0);case'input':if(this.checkable(element))
return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))
return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])
this.settings.messages[element.name]={};this.settings.messages[element.name].remote=typeof previous.message=="function"?previous.message(value):previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};errors[element.name]=previous.message=response||validator.defaultMessage(element,"remote");validator.showErrors(errors);}
previous.valid=valid;validator.stopRequest(element,valid);}},param));return"pending";}else if(this.pending[element.name]){return"pending";}
return previous.valid;},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},dateDE:function(value,element){return this.optional(element)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},numberDE:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))
return"dependency-mismatch";if(/[^0-9-]+/.test(value))
return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)
nDigit-=9;}
nCheck+=nDigit;bEven=!bEven;}
return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){return value==$(param).val();}}});$.format=$.validator.format;})(jQuery);;(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
return(pendingRequests[port]=ajax.apply(this,arguments));}
return ajax.apply(this,arguments);};})(jQuery);;(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true);},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})]);}})})(jQuery);;(function(C){var I,X,Y,d,A,k,b,H,c,T,F,f,s,j,m,R,l,J,t,E,Z,i,g,a,w,S,p,B,V,x,K,q="colorbox",o="hover",z,e,U,N,M,L,r,O,y="cbox_open",Q="cbox_load",u="cbox_complete",h="cbox_close",n="cbox_closed",D={transition:"elastic",speed:350,width:false,height:false,initialWidth:"400",initialHeight:"400",maxWidth:false,maxHeight:false,resize:true,inline:false,html:false,iframe:false,photo:false,href:false,title:false,rel:false,opacity:0.9,preloading:true,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:false,overlayClose:true,slideshow:false,slideshowAuto:true,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow"};function P(aa){if(aa.keyCode===37){aa.preventDefault();J.click()}else{if(aa.keyCode===39){aa.preventDefault();l.click()}}}function G(aa,ab){ab=ab==="x"?document.documentElement.clientWidth:document.documentElement.clientHeight;return(typeof aa==="string")?(aa.match(/%/)?(ab/100)*parseInt(aa,10):parseInt(aa,10)):aa}function v(aa){return V.photo?true:aa.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)}function W(){for(var aa in V){if(typeof(V[aa])==="function"){V[aa]=V[aa].call(p)}}}C.fn.colorbox=function(ab,aa){if(this.length){this.each(function(){var ac=C(this).data(q)?C.extend({},C(this).data(q),ab):C.extend({},D,ab);C(this).data(q,ac).addClass("cboxelement")})}else{C(this).data(q,C.extend({},D,ab))}C(this).unbind("click.colorbox").bind("click.colorbox",function(ad){p=this;V=C(p).data(q);W();C().bind("keydown.cbox_close",function(ae){if(ae.keyCode===27){ae.preventDefault();t.click()}});if(V.overlayClose===true){I.css({cursor:"pointer"}).one("click",O)}p.blur();K=aa||false;var ac=V.rel||p.rel;if(ac&&ac!=="nofollow"){c=C(".cboxelement").filter(function(){var ae=C(this).data(q).rel||this.rel;return(ae===ac)});B=c.index(p);if(B<0){c=c.add(p);B=c.length-1}}else{c=C(p);B=0}if(!x){C.event.trigger(y);t.html(V.close);I.css({opacity:V.opacity}).show();x=true;M(G(V.initialWidth,"x"),G(V.initialHeight,"y"),0);if(C.browser.msie&&C.browser.version<7){T.bind("resize.cboxie6 scroll.cboxie6",function(){I.css({width:T.width(),height:T.height(),top:T.scrollTop(),left:T.scrollLeft()})}).trigger("scroll.cboxie6")}}r();N();ad.preventDefault()});if(ab&&ab.open){C(this).triggerHandler("click.colorbox")}return this};U=function(){function aa(ab){return C('<div id="cbox'+ab+'"/>')}T=C(window);X=C('<div id="colorbox"/>');I=aa("Overlay").hide();Y=aa("Wrapper");d=aa("Content").append(F=aa("LoadedContent").css({width:0,height:0}),f=aa("LoadingOverlay"),s=aa("LoadingGraphic"),j=aa("Title"),m=aa("Current"),R=aa("Slideshow"),l=aa("Next"),J=aa("Previous"),t=aa("Close"));Y.append(C("<div/>").append(aa("TopLeft"),A=aa("TopCenter"),aa("TopRight")),C("<div/>").append(k=aa("MiddleLeft"),d,b=aa("MiddleRight")),C("<div/>").append(aa("BottomLeft"),H=aa("BottomCenter"),aa("BottomRight"))).children().children().css({"float":"left"});C("body").prepend(I,X.append(Y));if(C.browser.msie&&C.browser.version<7){I.css("position","absolute")}d.children().addClass(o).mouseover(function(){C(this).addClass(o)}).mouseout(function(){C(this).removeClass(o)}).hide();Z=A.height()+H.height()+d.outerHeight(true)-d.height();i=k.width()+b.width()+d.outerWidth(true)-d.width();g=F.outerHeight(true);a=F.outerWidth(true);X.css({"padding-bottom":Z,"padding-right":i}).hide();l.click(e);J.click(z);t.click(O);d.children().removeClass(o)};M=function(ad,ac,ab,ae){var af=document.documentElement.clientHeight,ah=af/2-ac/2,ag=document.documentElement.clientWidth/2-ad/2,aa;if(ac>af){ah-=(ac-af)}if(ah<0){ah=0}if(ag<0){ag=0}ah+=T.scrollTop();ag+=T.scrollLeft();ad=ad-i;ac=ac-Z;aa=(X.width()===ad&&X.height()===ac)?0:ab;Y[0].style.width=Y[0].style.height="9999px";function ai(aj){A[0].style.width=H[0].style.width=d[0].style.width=aj.style.width;s[0].style.height=f[0].style.height=d[0].style.height=k[0].style.height=b[0].style.height=aj.style.height}X.dequeue().animate({height:ac,width:ad,top:ah,left:ag},{duration:aa,complete:function(){ai(this);Y[0].style.width=(ad+i)+"px";Y[0].style.height=(ac+Z)+"px";if(ae){ae()}},step:function(){ai(this)}})};L=function(af){if(!x){return}T.unbind("resize.cbox_resize");var ab,al,ag,ae,ac,ai,am,aa,ad=V.transition==="none"?0:V.speed;F.remove();F=C(af);function aj(){if(V.width){ab=w}else{ab=w&&w<F.width()?w:F.width()}return ab}function ah(){if(V.height){al=S}else{al=S&&S<F.height()?S:F.height()}return al}F.hide().appendTo("body").attr({id:"cboxLoadedContent"}).css({width:aj()}).css({height:ah()}).prependTo(d);if(C.browser.msie&&C.browser.version<7){C("select:not(#colorbox select)").filter(function(){return C(this).css("visibility")!=="hidden"}).css({visibility:"hidden"}).one(h,function(){C(this).css({visibility:"inherit"})})}aa=C("#cboxPhoto")[0];if(aa&&V.height){ag=(al-parseInt(aa.style.height,10))/2;aa.style.marginTop=(ag>0?ag:0)+"px"}function ak(ao){var an=ab+a+i,ap=al+g+Z;M(an,ap,ao,function(){if(!x){return}if(C.browser.msie){if(aa){F.fadeIn(100)}X.css("filter","")}d.children().show();C("#cboxIframeTemp").after("<iframe id='cboxIframe' name='iframe_"+new Date().getTime()+"' frameborder=0 src='"+(V.href||p.href)+"' />").remove();f.hide();s.hide();R.hide();if(c.length>1){m.html(V.current.replace(/\{current\}/,B+1).replace(/\{total\}/,c.length));l.html(V.next);J.html(V.previous);C().unbind("keydown",P).bind("keydown",P);if(V.slideshow){R.show()}}else{m.hide();l.hide();J.hide()}j.html(V.title||p.title);C.event.trigger(u);if(K){K.call(p)}if(V.transition==="fade"){X.fadeTo(ad,1,function(){if(C.browser.msie){d.css("filter","")}})}T.bind("resize.cbox_resize",function(){M(an,ap,0)})})}if(V.transition==="fade"){X.fadeTo(ad,0,function(){ak(0)})}else{ak(ad)}if(V.preloading&&c.length>1){ae=B>0?c[B-1]:c[c.length-1];ai=B<c.length-1?c[B+1]:c[0];am=C(ai).data(q).href||ai.href;ac=C(ae).data(q).href||ae.href;if(v(am)){C("<img />").attr("src",am)}if(v(ac)){C("<img />").attr("src",ac)}}};N=function(){var aa,ad,ab,ac;p=c[B];V=C(p).data(q);W();C.event.trigger(Q);aa=V.height?G(V.height,"y")-g-Z:false;ad=V.width?G(V.width,"x")-a-i:false;ab=V.href||p.href;f.show();s.show();t.show();if(V.maxHeight){S=V.maxHeight?G(V.maxHeight,"y")-g-Z:false;aa=aa&&aa<S?aa:S}if(V.maxWidth){w=V.maxWidth?G(V.maxWidth,"x")-a-i:false;ad=ad&&ad<w?ad:w}S=aa;w=ad;if(V.inline){C('<div id="cboxInlineTemp" />').hide().insertBefore(C(ab)[0]).bind(Q+" "+h,function(){F.children().insertBefore(this);C(this).remove()});L(C(ab).wrapAll("<div/>").parent())}else{if(V.iframe){L(C("<div><div id='cboxIframeTemp' /></div>"))}else{if(V.html){L(C("<div/>").html(V.html))}else{if(v(ab)){ac=new Image();ac.onload=function(){ac.onload=null;if((S||w)&&V.resize){var ag=this.width,ae=this.height,ai=0,ah=this,af=function(){ae+=ae*ai;ag+=ag*ai;ah.height=ae;ah.width=ag};if(w&&ag>w){ai=(w-ag)/ag;af()}if(S&&ae>S){ai=(S-ae)/ae;af()}}L(C("<div />").css({width:this.width,height:this.height}).append(C(this).css({width:this.width,height:this.height,display:"block",margin:"auto",border:0}).attr("id","cboxPhoto")));if(c.length>1){C(this).css({cursor:"pointer"}).click(e)}if(C.browser.msie&&C.browser.version==7){this.style.msInterpolationMode="bicubic"}};ac.src=ab}else{C("<div />").load(ab,function(ae,af){if(af==="success"){L(C(this))}else{L(C("<p>Request unsuccessful.</p>"))}})}}}}};e=function(){B=B<c.length-1?B+1:0;N()};z=function(){B=B>0?B-1:c.length-1;N()};r=function(){var ab,aa,ac="cboxSlideshow_";R.bind(h,function(){clearTimeout(aa);R.unbind()});function ad(){R.text(V.slideshowStop).bind(u,function(){aa=setTimeout(e,V.slideshowSpeed)}).bind(Q,function(){clearTimeout(aa)}).one("click",function(){ab();C(this).removeClass(o)});X.removeClass(ac+"off").addClass(ac+"on")}ab=function(){clearTimeout(aa);R.text(V.slideshowStart).unbind(u+" "+Q).one("click",function(){ad();aa=setTimeout(e,V.slideshowSpeed);C(this).removeClass(o)});X.removeClass(ac+"on").addClass(ac+"off")};if(V.slideshow&&c.length>1){if(V.slideshowAuto){ad()}else{ab()}}};O=function(){C.event.trigger(h);x=false;C().unbind("keydown",P).unbind("keydown.cbox_close");T.unbind("resize.cbox_resize resize.cboxie6 scroll.cboxie6");I.css({cursor:"auto"}).fadeOut("fast");d.children().hide();X.stop(true,false).removeClass().fadeOut("fast",function(){F.remove();X.css({opacity:1});C.event.trigger(n)})};E=C.fn.colorbox;E.init=U;E.next=e;E.prev=z;E.close=O;E.load=N;E.position=M;E.dimensions=L;E.element=function(){return p};E.settings=D;C(function(){U()})}(jQuery));;;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);;(function($){$.fn.tipTip=function(options){var defaults={activation:"hover",keepAlive:false,maxWidth:"200px",edgeOffset:3,defaultPosition:"bottom",delay:400,fadeIn:200,fadeOut:200,attribute:"title",content:false,enter:function(){},exit:function(){}};var opts=$.extend(defaults,options);if($("#tiptip_holder").length<=0){var tiptip_holder=$('<div id="tiptip_holder" style="max-width:'+opts.maxWidth+';"></div>');var tiptip_content=$('<div id="tiptip_content"></div>');var tiptip_arrow=$('<div id="tiptip_arrow"></div>');$("body").append(tiptip_holder.html(tiptip_content).prepend(tiptip_arrow.html('<div id="tiptip_arrow_inner"></div>')))}else{var tiptip_holder=$("#tiptip_holder");var tiptip_content=$("#tiptip_content");var tiptip_arrow=$("#tiptip_arrow")}return this.each(function(){var org_elem=$(this);if(opts.content){var org_title=opts.content}else{var org_title=org_elem.attr(opts.attribute)}if(org_title!=""){if(!opts.content){org_elem.removeAttr(opts.attribute)}var timeout=false;if(opts.activation=="hover"){org_elem.hover(function(){active_tiptip()},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}else if(opts.activation=="focus"){org_elem.focus(function(){active_tiptip()}).blur(function(){deactive_tiptip()})}else if(opts.activation=="click"){org_elem.click(function(){active_tiptip();return false}).hover(function(){},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}function active_tiptip(){opts.enter.call(this);tiptip_content.html(org_title);tiptip_holder.hide().removeAttr("class").css("margin","0");tiptip_arrow.removeAttr("style");var top=parseInt(org_elem.offset()['top']);var left=parseInt(org_elem.offset()['left']);var org_width=parseInt(org_elem.outerWidth());var org_height=parseInt(org_elem.outerHeight());var tip_w=tiptip_holder.outerWidth();var tip_h=tiptip_holder.outerHeight();var w_compare=Math.round((org_width-tip_w)/2);var h_compare=Math.round((org_height-tip_h)/2);var marg_left=Math.round(left+w_compare);var marg_top=Math.round(top+org_height+opts.edgeOffset);var t_class="";var arrow_top="";var arrow_left=Math.round(tip_w-12)/2;if(opts.defaultPosition=="bottom"){t_class="_bottom"}else if(opts.defaultPosition=="top"){t_class="_top"}else if(opts.defaultPosition=="left"){t_class="_left"}else if(opts.defaultPosition=="right"){t_class="_right"}var right_compare=(w_compare+left)<parseInt($(window).scrollLeft());var left_compare=(tip_w+left)>parseInt($(window).width());if((right_compare&&w_compare<0)||(t_class=="_right"&&!left_compare)||(t_class=="_left"&&left<(tip_w+opts.edgeOffset+5))){t_class="_right";arrow_top=Math.round(tip_h-13)/2;arrow_left=-12;marg_left=Math.round(left+org_width+opts.edgeOffset);marg_top=Math.round(top+h_compare)}else if((left_compare&&w_compare<0)||(t_class=="_left"&&!right_compare)){t_class="_left";arrow_top=Math.round(tip_h-13)/2;arrow_left=Math.round(tip_w);marg_left=Math.round(left-(tip_w+opts.edgeOffset+5));marg_top=Math.round(top+h_compare)}var top_compare=(top+org_height+opts.edgeOffset+tip_h+8)>parseInt($(window).height()+$(window).scrollTop());var bottom_compare=((top+org_height)-(opts.edgeOffset+tip_h+8))<0;if(top_compare||(t_class=="_bottom"&&top_compare)||(t_class=="_top"&&!bottom_compare)){if(t_class=="_top"||t_class=="_bottom"){t_class="_top"}else{t_class=t_class+"_top"}arrow_top=tip_h;marg_top=Math.round(top-(tip_h+5+opts.edgeOffset))}else if(bottom_compare|(t_class=="_top"&&bottom_compare)||(t_class=="_bottom"&&!top_compare)){if(t_class=="_top"||t_class=="_bottom"){t_class="_bottom"}else{t_class=t_class+"_bottom"}arrow_top=-12;marg_top=Math.round(top+org_height+opts.edgeOffset)}if(t_class=="_right_top"||t_class=="_left_top"){marg_top=marg_top+5}else if(t_class=="_right_bottom"||t_class=="_left_bottom"){marg_top=marg_top-5}if(t_class=="_left_top"||t_class=="_left_bottom"){marg_left=marg_left+5}tiptip_arrow.css({"margin-left":arrow_left+"px","margin-top":arrow_top+"px"});tiptip_holder.css({"margin-left":marg_left+"px","margin-top":marg_top+"px"}).attr("class","tip"+t_class);if(timeout){clearTimeout(timeout)}timeout=setTimeout(function(){tiptip_holder.stop(true,true).fadeIn(opts.fadeIn)},opts.delay)}function deactive_tiptip(){opts.exit.call(this);if(timeout){clearTimeout(timeout)}tiptip_holder.fadeOut(opts.fadeOut)}}})}})(jQuery);;(function($){$.fn.innerfade=function(options){return this.each(function(){$.innerfade(this,options);});};$.innerfade=function(container,options){var settings={'animationtype':'fade','speed':'normal','type':'sequence','timeout':2000,'containerheight':'auto','runningclass':'innerfade','children':null};if(options)
$.extend(settings,options);if(settings.children===null)
var elements=$(container).children();else
var elements=$(container).children(settings.children);if(elements.length>1){$(container).css('position','relative').css('height',settings.containerheight).addClass(settings.runningclass);for(var i=0;i<elements.length;i++){$(elements[i]).css('z-index',String(elements.length-i)).css('position','absolute').hide();};if(settings.type=="sequence"){setTimeout(function(){$.innerfade.next(elements,settings,1,0);},settings.timeout);$(elements[0]).show();}else if(settings.type=="random"){var last=Math.floor(Math.random()*(elements.length));setTimeout(function(){do{current=Math.floor(Math.random()*(elements.length));}while(last==current);$.innerfade.next(elements,settings,current,last);},settings.timeout);$(elements[last]).show();}else if(settings.type=='random_start'){settings.type='sequence';var current=Math.floor(Math.random()*(elements.length));setTimeout(function(){$.innerfade.next(elements,settings,(current+1)%elements.length,current);},settings.timeout);$(elements[current]).show();}else{alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');}}};$.innerfade.next=function(elements,settings,current,last){if(settings.animationtype=='slide'){$(elements[last]).slideUp(settings.speed);$(elements[current]).slideDown(settings.speed);}else if(settings.animationtype=='fade'){$(elements[last]).fadeOut(settings.speed);$(elements[current]).fadeIn(settings.speed,function(){removeFilter($(this)[0]);});}else
alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');if(settings.type=="sequence"){if((current+1)<elements.length){current=current+1;last=current-1;}else{current=0;last=elements.length-1;}}else if(settings.type=="random"){last=current;while(current==last)
current=Math.floor(Math.random()*elements.length);}else
alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');setTimeout((function(){$.innerfade.next(elements,settings,current,last);}),settings.timeout);};})(jQuery);function removeFilter(element){if(element.style.removeAttribute){element.style.removeAttribute('filter');}};var currentURL,section,server,currentRel,hash,taglineHref,userBrowser,errorCount,timer,userBrowser,qtiprun;var firstRun=true;var otherPages=false;var sectionDetails={home:{currentURL:'/',position:''},about:{currentURL:'',position:''},services:{currentURL:'',position:''},clients:{currentURL:'',position:''},contact:{currentURL:'',position:''},news:{currentURL:'',position:''}}
$(window).resize(function(){setupContent('resize')});$(window).load(function(){setTimeout('loadOtherPages()','2000');});$(document).ready(function(){getServer();setupContent();$.historyInit(pageload);if(document.location.hash.length==0){if(document.location.pathname.length>1){var pathname=document.location.pathname;$.historyLoad(pathname.substr(1).replace(/^.*#/,''));}}
setupLinks();updateScripts('page-home');firstRun=false;});if(!window.console||!console.firebug){var names=["log","debug","info","warn","error","assert","dir","dirxml","group","groupEnd","time","timeEnd","count","trace","profile","profileEnd"];window.console={};for(var i=0;i<names.length;++i)
window.console[names[i]]=function(){}}
function pageload(hash){var loadAjax=false;if(!hash){hash="home";section="home";}
splitHash=hash.split("/");currentSection=splitHash[0];if(hash=='news'||splitHash[0]=='news'){currentSection='clients';}
loadPage(hash,currentSection,loadAjax);}
function loadPage(url,section,loadAjax){updateNav(section);if(url!="home"){if(sectionDetails[section].currentURL!=url){sectionDetails[section].currentURL=url;loadAjax=true;}else{loadAjax=false;}}
if(loadAjax==true){$("#container").scrollTo('.header',600,{axis:'y'});stopLoading=false;$('html, body').animate({scrollTop:$("#container").offset().top},2000);if(userBrowser!="IE7"){$("#page-"+currentSection).addClass("loading");$("#page-"+currentSection+" .page-center").fadeTo("1000",'0.001',function(){$(".loading").fadeIn(400);success=false;$("#page-"+currentSection+" .page-center").load(url,{'ajax':["true"],'section':[currentSection]});});}else{$("#page-"+currentSection+" .page-center").hide();$(".loading").show();success=false;$("#page-"+currentSection+" .page-center").load(url,{'ajax':["true"],'section':[currentSection]});}
$("#page-"+currentSection+" .page-center").ajaxSuccess(function(){if(success==false){}});$("#page-"+currentSection+" .page-center").ajaxStop(function(){if(success==false){if(userBrowser!="IE7"){$("#page-"+currentSection+" .page-center").fadeTo("1000",'1',function(){$(".loading").fadeOut(400);});}else{$("#page-"+currentSection+" .page-center").show();$(".loading").hide();}
$("#page-"+currentSection).removeClass("loading");updateScripts("page-"+currentSection);$("#tiptip_holder").hide();success=true;}});$("#page-"+currentSection+" .page-center").ajaxError(function(){if(errorCount<3){errorCount=errorCount+1;}else{}});}
if(!firstRun||(firstRun&&section!="home")){switchPage(section);}}
function updateTitle(title){document.title=title;}
function loadOtherPages(){if(otherPages==false){$(".page").each(function(){var divID=$(this).attr('id');if(divID!="page-"+currentSection){divURL=window.location.protocol+"//"+window.location.host+"/"+divID.substr(5);$.manageAjax.create('loadQueue',{queue:'true',preventDoubbleRequests:'true'});$.manageAjax.add('loadQueue',{type:"POST",data:({'ajax':'true'}),success:function(html){$("#"+divID+" .page-center").html(html);updateScripts(divID);},url:divURL});sectionDetails[divID.substr(5)].currentURL=divURL.replace(new RegExp(server),"")+"/";}});otherPages=true;}}
function updateNav(section){$('.right-navigation li a').removeClass("on");$('.right-navigation li.'+section+' a').addClass("on");}
function getServer(){server=window.location.protocol+"//"+window.location.host+"/";return server;}
function switchPage(section){$("#container").animate({marginLeft:"-"+sectionDetails[section].position+"px"},800,'easeInOutExpo',function(){});}
function showLoading(){$("#page-contact").addClass("loading")}
function hideLoading(){$("#page-contact").removeClass("loading")}
function setupContact(){$("#contact-form li.required").children("input, select, textarea").addClass('required');$("#contact-form li.email").children("input").addClass('email');$("#contact-form li.required .textarea").children("textarea").addClass('required');var formOptions={beforeSubmit:showLoading,target:'#contact-form',success:hideLoading}
$("#contact-form form").validate({meta:"validate",errorElement:"span",submitHandler:function(form){$("#contact-form button").attr("disabled","true");$(form).ajaxSubmit(formOptions);}});}
function setupLinks(){$('a[rel*=external]').live("click",function(){window.open(this.href);return false;});$("a:not(.external, .noajax, .popup, .google-doc, .sitemap, .lightwindow, href$='.pdf', href$='.jpg')").live("click",function(){firstRun=false;$.fn.colorbox.close();if($(this).attr('rel')!='external'&&$(this).attr('rel')!='refresh'){if($(this).attr('href').length>1){hash=this.href.replace(new RegExp(server),"");$.historyLoad(hash.replace(/^.*#/,''));splitHash=hash.split("/");section=splitHash[0];}}
return false;});}
function updateScripts(div){setupTooltips();$('a.sitemap').colorbox({transition:'elastic',width:400,height:380,speed:500});$("a.lightwindow:not(.view-map, href$='.pdf'), .the-final-product a:not(href$='.pdf')").colorbox({transition:'elastic',speed:500});$("a.iframe").colorbox({transition:'elastic',width:"100%",height:"100%",speed:500,iframe:true});$("a.view-map").colorbox({transition:'elastic',width:600,height:600,speed:500,iframe:true});$('.item-section').each(function(){if(!$(this).hasClass('height-set')){var itemHeight=$(this).children('.item').height()-60;var listHeight=$(this).children('ul').height()+$(this).children('p').height()+$(this).children('h2').height();if(listHeight<itemHeight){$(this).children('h2').css({'padding-top':(itemHeight-listHeight)/2+'px'});$(this).addClass('height-set')}}});if(firstRun==true){Cufon.replace('.headline h1',{fontFamily:'serif',textShadow:'#666 1px 2px'});Cufon.replace('.testimonial h4',{fontFamily:'serif'});Cufon.replace('.content h1, .contact-options li dl dd, .contact-options li dl dt, #contact-form label, .case-study-info h4, .case-study-info p, .example-title',{fontFamily:'alex'});Cufon.replace('h3:not(.tooltip-content h3), .row ul li a.more, .content h2',{fontFamily:'alex',hover:true});}else{Cufon.refresh();}
$("a[href$='.pdf'].item").append("<strong class=\"item-overlay item-pdf\">view pdf</strong>");if($("#contact-form").length>0){setupContact();}
$('.bannerslider').innerfade({speed:'slow',timeout:6000,type:'sequence',containerheight:'245px'});}
function setupTooltips(){$(".polaroids li, li.tooltip").each(function(){if($(this).hasClass("tooltipactive")){}else{$(this).addClass("tooltipactive");if($(this).hasClass("tooltip")){var yAdjust=0;}else{var yAdjust=-16;}
var toolcontent=$(".tooltip-content",this).html();$(this).tipTip({content:toolcontent,defaultPosition:"top",edgeOffset:yAdjust});}});}
function setupContent(resize){$(".page").css("width",$(window).width());$("#container").css("height",$(window).height());if(!resize){$(".page-no-js").removeClass("page-no-js");}
$('.page-gap').css({'margin-left':'-'+($('.page').width()-977)/2-48+'px','margin-right':'-'+($('.page').width()-977)/2-48+'px'});$('.page').each(function(){var pagePosition=$(this).position();sectionDetails[$(this).attr('id').substr(5)].position=pagePosition.left;});}
function supersize(){$(function(){$.fn.supersized.options={startwidth:640,startheight:480,vertical_center:1,slideshow:0,navigation:0,transition:1,pause_hover:0,slide_counter:0,slide_captions:0,slide_interval:5000};$('#supersize').supersized();});}
