;(function($){$.ui={plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set){return;}
for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args);}}}},cssCache:{},css:function(name){if($.ui.cssCache[name]){return $.ui.cssCache[name];}
var tmp=$('<div class="ui-gen">').addClass(name).css({position:'absolute',top:'-5000px',left:'-5000px',display:'block'}).appendTo('body');$.ui.cssCache[name]=!!((!(/auto|default/).test(tmp.css('cursor'))||(/^[1-9]/).test(tmp.css('height'))||(/^[1-9]/).test(tmp.css('width'))||!(/none/).test(tmp.css('backgroundImage'))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor'))));try{$('body').get(0).removeChild(tmp.get(0));}catch(e){}
return $.ui.cssCache[name];},disableSelection:function(el){$(el).attr('unselectable','on').css('MozUserSelect','none');},enableSelection:function(el){$(el).attr('unselectable','off').css('MozUserSelect','');},hasScroll:function(e,a){var scroll=/top/.test(a||"top")?'scrollTop':'scrollLeft',has=false;if(e[scroll]>0)return true;e[scroll]=1;has=e[scroll]>0?true:false;e[scroll]=0;return has;}};var _remove=$.fn.remove;$.fn.remove=function(){$("*",this).add(this).triggerHandler("remove");return _remove.apply(this,arguments);};function getter(namespace,plugin,method){var methods=$[namespace][plugin].getter||[];methods=(typeof methods=="string"?methods.split(/,?\s+/):methods);return($.inArray(method,methods)!=-1);}
$.widget=function(name,prototype){var namespace=name.split(".")[0];name=name.split(".")[1];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&getter(namespace,name,options)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined);}
return this.each(function(){var instance=$.data(this,name);if(isMethodCall&&instance&&$.isFunction(instance[options])){instance[options].apply(instance,args);}else if(!isMethodCall){$.data(this,name,new $[namespace][name](this,options));}});};$[namespace][name]=function(element,options){var self=this;this.widgetName=name;this.widgetBaseClass=namespace+'-'+name;this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,options);this.element=$(element).bind('setData.'+name,function(e,key,value){return self.setData(key,value);}).bind('getData.'+name,function(e,key){return self.getData(key);}).bind('remove',function(){return self.destroy();});this.init();};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);};$.widget.prototype={init:function(){},destroy:function(){this.element.removeData(this.widgetName);},getData:function(key){return this.options[key];},setData:function(key,value){this.options[key]=value;if(key=='disabled'){this.element[value?'addClass':'removeClass'](this.widgetBaseClass+'-disabled');}},enable:function(){this.setData('disabled',false);},disable:function(){this.setData('disabled',true);}};$.widget.defaults={disabled:false};$.ui.mouse={mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(e){return self.mouseDown(e);});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on');}
this.started=false;},mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable));},mouseDown:function(e){(this._mouseStarted&&this.mouseUp(e));this._mouseDownEvent=e;var self=this,btnIsLeft=(e.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(e.target).parents().add(e.target).filter(this.options.cancel).length:false);if(!btnIsLeft||elIsCancel||!this.mouseCapture(e)){return true;}
this._mouseDelayMet=!this.options.delay;if(!this._mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self._mouseDelayMet=true;},this.options.delay);}
if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){this._mouseStarted=(this.mouseStart(e)!==false);if(!this._mouseStarted){e.preventDefault();return true;}}
this._mouseMoveDelegate=function(e){return self.mouseMove(e);};this._mouseUpDelegate=function(e){return self.mouseUp(e);};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);return false;},mouseMove:function(e){if($.browser.msie&&!e.button){return this.mouseUp(e);}
if(this._mouseStarted){this.mouseDrag(e);return false;}
if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){this._mouseStarted=(this.mouseStart(this._mouseDownEvent,e)!==false);(this._mouseStarted?this.mouseDrag(e):this.mouseUp(e));}
return!this._mouseStarted;},mouseUp:function(e){$(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this.mouseStop(e);}
return false;},mouseDistanceMet:function(e){return(Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance);},mouseDelayMet:function(e){return this._mouseDelayMet;},mouseStart:function(e){},mouseDrag:function(e){},mouseStop:function(e){},mouseCapture:function(e){return true;}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);;(function($){$.effects=$.effects||{};$.extend($.effects,{save:function(el,set){for(var i=0;i<set.length;i++){if(set[i]!==null)$.data(el[0],"ec.storage."+set[i],el[0].style[set[i]]);}},restore:function(el,set){for(var i=0;i<set.length;i++){if(set[i]!==null)el.css(set[i],$.data(el[0],"ec.storage."+set[i]));}},setMode:function(el,mode){if(mode=='toggle')mode=el.is(':hidden')?'show':'hide';return mode;},getBaseline:function(origin,original){var y,x;switch(origin[0]){case'top':y=0;break;case'middle':y=0.5;break;case'bottom':y=1;break;default:y=origin[0]/original.height;};switch(origin[1]){case'left':x=0;break;case'center':x=0.5;break;case'right':x=1;break;default:x=origin[1]/original.width;};return{x:x,y:y};},createWrapper:function(el){if(el.parent().attr('id')=='fxWrapper')
return el;var props={width:el.outerWidth({margin:true}),height:el.outerHeight({margin:true}),'float':el.css('float')};el.wrap('<div id="fxWrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var wrapper=el.parent();if(el.css('position')=='static'){wrapper.css({position:'relative'});el.css({position:'relative'});}else{var top=el.css('top');if(isNaN(parseInt(top)))top='auto';var left=el.css('left');if(isNaN(parseInt(left)))left='auto';wrapper.css({position:el.css('position'),top:top,left:left,zIndex:el.css('z-index')}).show();el.css({position:'relative',top:0,left:0});}
wrapper.css(props);return wrapper;},removeWrapper:function(el){if(el.parent().attr('id')=='fxWrapper')
return el.parent().replaceWith(el);return el;},setTransition:function(el,list,factor,val){val=val||{};$.each(list,function(i,x){unit=el.cssUnit(x);if(unit[0]>0)val[x]=unit[0]*factor+unit[1];});return val;},animateClass:function(value,duration,easing,callback){var cb=(typeof easing=="function"?easing:(callback?callback:null));var ea=(typeof easing=="object"?easing:null);return this.each(function(){var offset={};var that=$(this);var oldStyleAttr=that.attr("style")||'';if(typeof oldStyleAttr=='object')oldStyleAttr=oldStyleAttr["cssText"];if(value.toggle){that.hasClass(value.toggle)?value.remove=value.toggle:value.add=value.toggle;}
var oldStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.addClass(value.add);if(value.remove)that.removeClass(value.remove);var newStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.removeClass(value.add);if(value.remove)that.addClass(value.remove);for(var n in newStyle){if(typeof newStyle[n]!="function"&&newStyle[n]&&n.indexOf("Moz")==-1&&n.indexOf("length")==-1&&newStyle[n]!=oldStyle[n]&&(n.match(/color/i)||(!n.match(/color/i)&&!isNaN(parseInt(newStyle[n],10))))&&(oldStyle.position!="static"||(oldStyle.position=="static"&&!n.match(/left|top|bottom|right/))))offset[n]=newStyle[n];}
that.animate(offset,duration,ea,function(){if(typeof $(this).attr("style")=='object'){$(this).attr("style")["cssText"]="";$(this).attr("style")["cssText"]=oldStyleAttr;}else $(this).attr("style",oldStyleAttr);if(value.add)$(this).addClass(value.add);if(value.remove)$(this).removeClass(value.remove);if(cb)cb.apply(this,arguments);});});}});$.fn.extend({_show:$.fn.show,_hide:$.fn.hide,__toggle:$.fn.toggle,_addClass:$.fn.addClass,_removeClass:$.fn.removeClass,_toggleClass:$.fn.toggleClass,effect:function(fx,o,speed,callback){return $.effects[fx]?$.effects[fx].call(this,{method:fx,options:o||{},duration:speed,callback:callback}):null;},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0])))
return this._show.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='show';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0])))
return this._hide.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='hide';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0]))||(arguments[0].constructor==Function))
return this.__toggle.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='toggle';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},addClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{add:classNames},speed,easing,callback]):this._addClass(classNames);},removeClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{remove:classNames},speed,easing,callback]):this._removeClass(classNames);},toggleClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{toggle:classNames},speed,easing,callback]):this._toggleClass(classNames);},morph:function(remove,add,speed,easing,callback){return $.effects.animateClass.apply(this,[{add:add,remove:remove},speed,easing,callback]);},switchClass:function(){return this.morph.apply(this,arguments);},cssUnit:function(key){var style=this.css(key),val=[];$.each(['em','px','%','pt'],function(i,unit){if(style.indexOf(unit)>0)
val=[parseFloat(style),unit];});return val;}});jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2]),255),0)].join(",")+")";}});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];if(result=/rgba\(0, 0, 0, 0\)/.exec(color))
return colors['transparent']
return colors[jQuery.trim(color).toLowerCase()];}
function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body"))
break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};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;}});})(jQuery);(function($){$.effects.bounce=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'up';var distance=o.options.distance||20;var times=o.options.times||5;var speed=o.duration||250;if(/show|hide/.test(mode))props.push('opacity');$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/3:el.outerWidth({margin:true})/3);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);if(mode=='hide')distance=distance/(times*2);if(mode!='hide')times--;if(mode=='show'){var animation={opacity:1};animation[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation,speed/2,o.options.easing);distance=distance/2;times--;};for(var i=0;i<times;i++){var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing);distance=(mode=='hide')?distance*2:distance/2;};if(mode=='hide'){var animation={opacity:0};animation[ref]=(motion=='pos'?'-=':'+=')+distance;el.animate(animation,speed/2,o.options.easing,function(){el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});}else{var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);;(function($){$.effects.highlight=function(o){return this.queue(function(){var el=$(this),props=['backgroundImage','backgroundColor','opacity'];var mode=$.effects.setMode(el,o.options.mode||'show');var color=o.options.color||"#ffff99";var oldColor=el.css("backgroundColor");$.effects.save(el,props);el.show();el.css({backgroundImage:'none',backgroundColor:color});var animation={backgroundColor:oldColor};if(mode=="hide")animation['opacity']=0;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=="hide")el.hide();$.effects.restore(el,props);if(mode=="show"&&jQuery.browser.msie)this.style.removeAttribute('filter');if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.slide=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'show');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true}):el.outerWidth({margin:true}));if(mode=='show')el.css(ref,motion=='pos'?-distance:distance);var animation={};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);;jQuery.extend({historyCurrentHash:undefined,historyCallback:undefined,historyInit:function(callback){jQuery.historyCallback=callback;var current_hash=location.hash.replace(/\?.*$/,'');jQuery.historyCurrentHash=current_hash;if((jQuery.browser.msie)&&(jQuery.browser.version<8)){if(jQuery.historyCurrentHash==''){jQuery.historyCurrentHash='#';}
jQuery("body").prepend('<iframe id="jQuery_history" style="display: none;"></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.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)&&(jQuery.browser.version<8)){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.dontCheck){var historyDelta=history.length-jQuery.historyBackStack.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=hash.replace(/\?.*$/,'');if(jQuery.browser.safari){newhash=hash;}
else{newhash='#'+hash;location.hash=newhash;}
jQuery.historyCurrentHash=newhash;if((jQuery.browser.msie)&&(jQuery.browser.version<8)){var ihistory=jQuery("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=newhash;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);}}});;jQuery.url=function(){var segments={};var parsed={};var options={url:window.location,strictMode:false,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};var parseUri=function(){str=decodeURI(options.url);var m=options.parser[options.strictMode?"strict":"loose"].exec(str);var uri={};var i=14;while(i--){uri[options.key[i]]=m[i]||""}uri[options.q.name]={};uri[options.key[12]].replace(options.q.parser,function($0,$1,$2){if($1){uri[options.q.name][$1]=$2}});return uri};var key=function(key){if(!parsed.length){setUp()}if(key=="base"){if(parsed.port!==null&&parsed.port!==""){return parsed.protocol+"://"+parsed.host+":"+parsed.port+"/"}else{return parsed.protocol+"://"+parsed.host+"/"}}return(parsed[key]==="")?null:parsed[key]};var param=function(item){if(!parsed.length){setUp()}return(parsed.queryKey[item]===null)?null:parsed.queryKey[item]};var setUp=function(){parsed=parseUri();getSegments()};var getSegments=function(){var p=parsed.path;segments=[];segments=parsed.path.length==1?{}:(p.charAt(p.length-1)=="/"?p.substring(1,p.length-1):path=p.substring(1)).split("/")};return{setMode:function(mode){strictMode=mode=="strict"?true:false;return this},setUrl:function(newUri){options.url=newUri===undefined?window.location:newUri;setUp();return this},segment:function(pos){if(!parsed.length){setUp()}if(pos===undefined){return segments.length}return(segments[pos]===""||segments[pos]===undefined)?null:segments[pos]},attr:key,param:param}}();;jQuery.fn.extend({selectbox:function(options){return this.each(function(){new jQuery.SelectBox(this,options);});}});if(!window.console){var console={log:function(msg){}}}
jQuery.SelectBox=function(selectobj,options){var opt=options||{};opt.inputClass=opt.inputClass||"selectbox";opt.containerClass=opt.containerClass||"selectbox-wrapper";opt.hoverClass=opt.hoverClass||"current";opt.currentClass=opt.selectedClass||"selected"
opt.debug=opt.debug||false;var elm_id=selectobj.id;var active=-1;var inFocus=false;var hasfocus=0;var $select=$(selectobj);var $container=setupContainer(opt);var $input=setupInput(opt);$select.hide().before($input).before($container);init();$input.click(function(){if(!inFocus){$container.toggle();}}).focus(function(){if($container.not(':visible')){inFocus=true;$container.show();}}).keydown(function(event){switch(event.keyCode){case 38:event.preventDefault();moveSelect(-1);break;case 40:event.preventDefault();moveSelect(1);break;case 13:event.preventDefault();$('li.'+opt.hoverClass).trigger('click');break;case 27:hideMe();break;}}).blur(function(){if($container.is(':visible')&&hasfocus>0){if(opt.debug)console.log('container visible and has focus')}else{hideMe();}});function hideMe(){hasfocus=0;$container.hide();}
function init(){$container.append(getSelectOptions($input.attr('id'))).hide();var width=$input.css('width');$container.width(width);}
function setupContainer(options){var container=document.createElement("div");$container=$(container);$container.attr('id',elm_id+'_container');$container.addClass(options.containerClass);return $container;}
function setupInput(options){var input=document.createElement("input");var $input=$(input);$input.attr("id",elm_id+"_input");$input.attr("type","text");$input.addClass(options.inputClass);$input.attr("autocomplete","off");$input.attr("readonly","readonly");$input.attr("tabIndex",$select.attr("tabindex"));return $input;}
function moveSelect(step){var lis=$("li",$container);if(!lis)return;active+=step;if(active<0){active=0;}else if(active>=lis.size()){active=lis.size()-1;}
lis.removeClass(opt.hoverClass);$(lis[active]).addClass(opt.hoverClass);}
function setCurrent(){var li=$("li."+opt.currentClass,$container).get(0);var ar=(''+li.id).split('_');var el=ar[ar.length-1];$select.val(el);$input.val($(li).html());return true;}
function getCurrentSelected(){return $select.val();}
function getCurrentValue(){return $input.val();}
function getSelectOptions(parentid){var select_options=new Array();var ul=document.createElement('ul');$select.children('option').each(function(){var li=document.createElement('li');li.setAttribute('id',parentid+'_'+$(this).val());li.innerHTML=$(this).html();if($(this).is(':selected')){$input.val($(this).html());$(li).addClass(opt.currentClass);}
ul.appendChild(li);$(li).mouseover(function(event){hasfocus=1;if(opt.debug)console.log('over on : '+this.id);jQuery(event.target,$container).addClass(opt.hoverClass);}).mouseout(function(event){hasfocus=-1;if(opt.debug)console.log('out on : '+this.id);jQuery(event.target,$container).removeClass(opt.hoverClass);}).click(function(event){var fl=$('li.'+opt.hoverClass,$container).get(0);if(opt.debug)console.log('click on :'+this.id);$('li.'+opt.currentClass).removeClass(opt.currentClass);$(this).addClass(opt.currentClass);setCurrent();hideMe();});});return ul;}};;jQuery.fn.checkboxToggle=function(opt){var check=jQuery(this).next()[0].checked==true;jQuery(this).attr({src:check?opt.unchecked:opt.checked}).next()[0].checked=!check;}
jQuery.fn.checkbox=function(opt){$("input:checkbox",this).hide().each(function(){jQuery("<img>").attr({src:this.checked?opt.checked:opt.unchecked,alt:""}).click(function(){jQuery(this).checkboxToggle(opt);}).insertBefore(this);});}
jQuery.fn.cssCheckboxToggle=function(){jQuery(this).each(function(){var label=jQuery(this);label.toggleClass("checked");var check=jQuery(":checkbox[@name='"+label.attr("for")+"']")[0];check.checked=!check.checked;});}
jQuery.fn.cssCheckboxCheck=function(){jQuery(this).each(function(){var label=jQuery(this);label.addClass("checked");var check=jQuery(":checkbox[@name='"+label.attr("for")+"']")[0];check.checked=true;});}
jQuery.fn.cssCheckboxUncheck=function(){jQuery(this).each(function(){var label=jQuery(this);label.removeClass("checked");var check=jQuery(":checkbox[@name='"+label.attr("for")+"']")[0];check.checked=false;});}
jQuery.fn.cssCheckbox=function(){jQuery(":checkbox",this).hide().each(function(){var check=this;var jlabel=jQuery("label[@for='"+jQuery(check).attr("name")+"']");if(check.checked){jlabel.addClass("checked");}
jlabel.hover(function(){jQuery(this).addClass("over");},function(){jQuery(this).removeClass("over");}).click(function(){jQuery(this).cssCheckboxToggle();});});};var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};K.VML={parsePath:function(b){var Y=[],a=/([mrvxe])([^a-z]*)/g,Z;while(Z=a.exec(b)){Y.push({type:Z[1],coords:Z[2].split(",")})}return Y}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var a=Y.bbox.split(/\s+/);return{minX:parseInt(a[0],10),minY:parseInt(a[1],10),width:parseInt(a[2],10)-parseInt(a[0],10),height:parseInt(a[3],10)-parseInt(a[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@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:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,I){var N=0,M=0;var G=Cufon.VML.parsePath(O);var H=new Array(G.length-1);generate:for(var K=0,J=G.length;K<J;++K){var L=G[K].coords;switch(G[K].type){case"v":H[K]={m:"bezierCurveTo",a:[N+Number(L[0]),M+Number(L[1]),N+Number(L[2]),M+Number(L[3]),N+=Number(L[4]),M+=Number(L[5])]};break;case"r":H[K]={m:"lineTo",a:[N+=Number(L[0]),M+=Number(L[1])]};break;case"m":H[K]={m:"moveTo",a:[N=Number(L[0]),M=Number(L[1])]};break;case"x":H[K]={m:"closePath"};break;case"e":break generate}I[H[K].m].apply(I,H[K].a)}return H}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(n,T,f,P,W,o,d){var G=(T===null);if(G){T=W.alt}var V=n.viewBox;var H=f.computedFontSize||(f.computedFontSize=new Cufon.CSS.Size(B(o,f.get("fontSize"))+"px",n.baseSize));var c=f.computedLSpacing;if(c==undefined){c=f.get("letterSpacing");f.computedLSpacing=c=(c=="normal")?0:H.convertFrom(A(o,c))}var O,I;if(G){O=W;I=W.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=T;I=document.createElement("cvml:group");O.appendChild(I);if(P.printable){var j=document.createElement("span");j.className="cufon-alt";j.innerText=T;O.appendChild(j)}if(!d){O.appendChild(document.createElement("cvml:group"))}}var u=O.style;var Y=I.style;var F=H.convert(V.height);Y.height=Math.ceil(F);Y.top=Math.round(H.convert(V.minY-n.ascent));Y.left=Math.round(H.convert(V.minX));var b=parseInt(Y.height,10)/F;u.height=H.convert(-n.ascent+n.descent)+"px";var K=P.enableTextDecoration?Cufon.CSS.textDecoration(o,f):{};var S=f.get("color");var s=Cufon.CSS.textTransform(T,f).split("");var E=0,a=0,L=null;var U=P.textShadow;for(var m=0,h=-1,g=s.length;m<g;++m){var Q=n.glyphs[s[m]]||n.missingGlyph,M;if(!Q){continue}if(!Q.typeRef){D(Q,V)}if(G){M=I.childNodes[++h]}else{M=document.createElement("cvml:shape");I.appendChild(M)}M.type=Q.typeRef;var q=M.style;q.width=V.width;q.height=V.height;q.top=0;q.left=a;q.zIndex=1;M.fillcolor=S;if(U){for(var Z=0,e=U.length;Z<e;++Z){var X=U[Z];var t=Cufon.CSS.color(X.color);var J=M.cloneNode(false),R=J.runtimeStyle;R.top=H.convertFrom(parseFloat(X.offY));R.left=a+H.convertFrom(parseFloat(X.offX));R.zIndex=0;J.fillcolor=t.color;if(t.opacity){var r=document.createElement("cvml:fill");r.opacity=t.opacity;J.appendChild(r)}I.appendChild(J)}++h}L=Number(Q.w||n.w)+c;E+=L;a+=L}if(L===null){return null}var N=-V.minX+E+(V.width-L);I.coordsize=N+","+V.height;Y.width=H.convert(N*b);u.width=Math.max(Math.ceil(H.convert(E*b)),0);return O}})());;Cufon.registerFont({"w":184,"face":{"font-family":"Myriad Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-17 -270 302 90","underline-thickness":"18","underline-position":"-36","stemh":"24","stemv":"32","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":76},"!":{"d":"54,-69r-25,0r-5,-174r35,0xm41,4v-12,0,-21,-10,-21,-22v0,-13,9,-23,22,-23v12,0,21,10,21,23v0,12,-9,22,-22,22","w":82},"\"":{"d":"18,-249r32,0r-6,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121},"#":{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-21,0r9,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r21,0r-10,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},"$":{"d":"101,31r-23,0r0,-36v-20,-1,-42,-7,-54,-16r8,-24v25,21,96,23,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-31,-59,-63v0,-30,21,-52,54,-58r0,-36r22,0r0,35v22,1,36,7,47,13r-9,24v-7,-5,-22,-13,-45,-13v-28,0,-38,17,-38,31v0,19,13,28,44,41v73,21,76,112,-1,127r0,38"},"%":{"d":"68,-238v32,0,53,25,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70v0,-47,25,-73,57,-73xm66,-219v-20,0,-30,24,-30,53v-1,30,10,52,30,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v33,0,54,25,54,70v2,97,-111,99,-111,3v0,-47,26,-73,57,-73xm219,-122v-20,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},"&":{"d":"217,0r-38,0r-22,-23v-44,49,-151,26,-146,-41v-1,-34,22,-55,48,-72v-36,-40,-23,-109,41,-111v30,0,54,20,54,52v2,27,-20,44,-54,66r59,67v12,-17,19,-40,24,-71r29,0v-7,38,-17,69,-35,90v13,14,25,28,40,43xm41,-69v-3,53,75,63,100,27r-68,-76v-14,8,-32,23,-32,49xm98,-225v-42,2,-35,59,-12,79v24,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},"(":{"d":"70,-250r25,0v-58,62,-58,232,0,294r-25,0v-22,-30,-47,-76,-47,-147v0,-70,25,-117,47,-147","w":102},")":{"d":"32,44r-25,0v57,-63,59,-232,0,-294r25,0v22,30,47,76,47,147v-1,70,-25,116,-47,147","w":102},"*":{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-23,-50r-23,50r-20,-13v11,-16,25,-28,34,-45r-53,8r0,-25v17,1,38,7,53,6r-34,-44r22,-13v8,16,13,36,23,51","w":149},"+":{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},",":{"d":"28,42r-22,3v8,-22,17,-60,21,-87r36,-3v-9,30,-25,70,-35,87","w":74},"-":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110},".":{"d":"40,4v-13,0,-21,-10,-21,-23v0,-13,9,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74},"\/":{"d":"24,14r-24,0r100,-261r25,0","w":123},"0":{"d":"95,-238v49,0,77,44,77,118v0,80,-30,124,-81,124v-46,0,-77,-43,-78,-120v0,-79,34,-122,82,-122xm93,-213v-28,0,-48,33,-48,97v0,61,19,95,48,95v32,0,47,-37,47,-97v0,-58,-14,-95,-47,-95"},"1":{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0"},"2":{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-14,40,-24,66,-24v51,0,72,35,72,68v5,47,-55,99,-99,144r105,0r0,26"},"3":{"d":"15,-12r9,-24v9,5,29,14,52,14v40,0,53,-25,53,-45v-2,-39,-37,-50,-79,-47r0,-24v35,2,67,-5,70,-39v6,-40,-68,-42,-88,-20r-8,-23v12,-9,36,-18,61,-18v81,-1,88,90,24,111v27,8,53,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16"},"4":{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,42,-51,77,-77,114r77,0"},"5":{"d":"58,-147v56,-6,102,16,103,71v7,69,-92,99,-146,66r8,-25v32,22,110,16,106,-37v7,-42,-52,-59,-100,-50r15,-112r112,0r0,27r-89,0"},"6":{"d":"150,-238r0,26v-62,-1,-101,39,-105,85v35,-49,136,-26,128,48v0,43,-29,83,-78,83v-50,0,-83,-39,-83,-100v2,-89,51,-139,138,-142xm141,-77v6,-65,-92,-70,-97,-11v0,39,18,67,51,67v27,0,46,-22,46,-56"},"7":{"d":"21,-234r147,0r0,21r-102,213r-33,0r102,-208r-114,0r0,-26"},"8":{"d":"60,-122v-65,-28,-40,-120,35,-116v78,2,91,83,29,113v76,24,51,135,-32,129v-91,3,-104,-102,-32,-126xm93,-19v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51v-56,11,-57,91,5,93xm93,-215v-26,0,-41,17,-41,37v0,24,18,36,45,43v42,-8,52,-78,-4,-80"},"9":{"d":"35,4r0,-26v60,3,100,-34,104,-86v-37,49,-131,19,-124,-47v0,-44,32,-83,80,-83v95,-9,90,167,37,208v-27,21,-57,34,-97,34xm46,-157v-6,60,87,66,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57"},":":{"d":"40,-123v-12,0,-21,-10,-21,-22v0,-14,9,-23,21,-23v13,0,22,9,22,23v0,12,-9,22,-22,22xm40,4v-12,0,-21,-10,-21,-22v0,-14,9,-23,21,-23v13,0,22,9,22,23v0,12,-9,22,-22,22","w":74},";":{"d":"28,42r-22,2v8,-21,18,-59,22,-86r35,-4v-9,31,-25,71,-35,88xm42,-123v-12,0,-20,-10,-20,-22v0,-14,9,-23,21,-23v13,0,21,9,21,23v0,12,-8,22,-22,22","w":74},"<":{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},"=":{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},">":{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},"?":{"d":"79,-69r-28,0v-17,-44,47,-86,47,-121v4,-33,-50,-39,-71,-20r-9,-23v13,-8,33,-14,52,-14v77,3,70,79,29,116v-18,21,-24,37,-20,62xm64,4v-12,0,-21,-10,-21,-22v0,-14,9,-23,21,-23v13,0,22,9,22,23v0,12,-9,22,-22,22","w":146},"@":{"d":"117,-43v36,-2,47,-52,52,-89v-40,-13,-76,21,-75,62v0,16,8,27,23,27xm183,8r6,15v-78,41,-175,-3,-174,-98v0,-74,52,-138,132,-138v63,0,104,44,104,104v0,54,-30,86,-63,86v-15,0,-28,-10,-27,-32r-2,0v-20,43,-88,46,-89,-14v-3,-57,63,-104,124,-78r-13,66v-5,27,-1,40,11,40v19,1,39,-24,39,-66v0,-52,-31,-90,-87,-90v-59,0,-108,47,-108,120v-4,82,80,120,147,85","w":265},"A":{"d":"153,-76r-86,0r-26,76r-32,0r83,-243r37,0r83,243r-33,0xm73,-101r74,0r-38,-114v-9,39,-24,77,-36,114","w":220},"B":{"d":"180,-69v3,70,-84,77,-153,68r0,-238v57,-10,148,-10,144,55v1,25,-17,43,-41,54v23,6,50,25,50,61xm59,-218r0,78v42,4,80,-7,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195},"C":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,98,-152,184,-117r-8,26v-66,-29,-143,7,-143,90v0,81,75,116,144,87","w":208},"D":{"d":"227,-127v4,107,-90,142,-200,126r0,-238v103,-18,205,8,200,112xm59,-216r0,192v81,9,138,-25,135,-102v5,-69,-59,-107,-135,-90","w":239},"E":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177},"F":{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175},"G":{"d":"138,3v-73,1,-126,-46,-125,-123v-9,-94,102,-150,192,-114r-8,26v-66,-31,-151,5,-151,87v0,77,68,115,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,6,-42,14,-74,14","w":232},"H":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234},"I":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86},"J":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v40,10,73,5,71,-56","w":133},"K":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195},"L":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169},"M":{"d":"238,0r-11,-211v-19,67,-49,144,-73,210r-24,0r-40,-116r-28,-94r-11,211r-30,0r17,-243r40,0r66,199v18,-64,47,-136,69,-199r40,0r16,243r-31,0","w":289},"N":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,29,31,56,45,79v-6,-62,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236},"O":{"d":"125,-247v67,0,110,51,110,123v0,83,-51,128,-113,128v-64,0,-109,-50,-109,-124v0,-77,47,-127,112,-127xm124,-221v-52,0,-78,48,-78,101v0,52,28,98,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-78,-99","w":248},"P":{"d":"177,-174v0,62,-56,86,-118,77r0,97r-32,0r0,-240v64,-10,155,-6,150,66xm59,-217r0,94v42,11,86,-7,86,-49v0,-43,-48,-55,-86,-45","w":191},"Q":{"d":"228,36r-108,-32v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v1,64,-32,99,-69,118v24,6,50,12,71,15xm124,-22v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,49,-79,101v0,52,28,98,78,98","w":248},"R":{"d":"27,-239v64,-11,155,-9,150,61v1,32,-22,52,-46,62v38,4,42,97,54,116r-32,0v-4,-7,-9,-28,-16,-58v-8,-44,-31,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-42,-50,-51,-86,-42","w":193},"S":{"d":"15,-12r8,-26v30,24,111,23,107,-26v0,-22,-13,-35,-46,-48v-39,-14,-64,-35,-64,-69v-8,-58,86,-82,132,-54r-9,26v-7,-5,-23,-12,-45,-12v-34,0,-46,20,-46,37v0,22,15,34,48,46v89,23,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177},"T":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178},"U":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143","w":232},"V":{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200},"W":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123r17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-57,-17,-80v-12,65,-37,141,-53,206","w":304},"X":{"d":"197,0r-37,0r-60,-102v-13,29,-39,71,-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205},"Y":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117r60,-117r35,0r-81,140r0,103","w":194},"Z":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199},"[":{"d":"95,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19","w":102},"\\":{"d":"123,14r-24,0r-98,-261r24,0","w":122},"]":{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},"^":{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r23,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"82,-178v96,4,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-19,-3,-42,-39,-43v-17,0,-34,4,-46,13r-7,-22v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-34,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"b":{"d":"25,0r1,-256r32,0r0,110v36,-61,143,-29,134,57v1,93,-95,122,-138,61r-2,28r-27,0xm107,-153v-35,-1,-56,36,-49,83v0,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-18,-65,-52,-65","w":204},"c":{"d":"145,-30r5,24v-8,4,-26,10,-50,10v-52,0,-86,-36,-86,-89v-6,-70,74,-113,137,-83r-7,24v-41,-24,-106,5,-98,57v-3,58,55,78,99,57","w":161},"d":{"d":"145,-256r31,0r2,256r-28,0v-2,-9,0,-22,-3,-30v-32,62,-133,31,-133,-55v0,-86,90,-119,131,-67r0,-104xm97,-22v35,1,48,-34,48,-81v0,-30,-19,-48,-47,-50v-33,0,-52,29,-52,67v0,35,17,64,51,64","w":203},"e":{"d":"166,-81r-122,0v-2,63,65,69,108,51r6,23v-11,5,-31,11,-59,11v-53,0,-85,-36,-85,-88v0,-53,31,-94,81,-94v64,3,75,53,71,97xm44,-104r93,0v0,-20,-8,-51,-44,-51v-33,0,-46,29,-49,51","w":180},"f":{"d":"30,-174v-7,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-25,0r0,-24r25,0","w":105},"g":{"d":"175,-26v10,96,-78,119,-146,87r8,-25v43,31,125,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v-7,-90,99,-117,134,-62r1,-26r28,0v-4,41,-1,102,-2,148xm97,-25v37,1,52,-35,47,-80v-1,-29,-18,-46,-46,-48v-31,0,-52,25,-52,66v0,34,17,62,51,62","w":201},"h":{"d":"103,-152v-63,1,-42,91,-45,152r-32,0r0,-256r32,0r1,109v30,-46,114,-49,116,43r0,104r-32,0v-5,-59,21,-148,-40,-152","w":199},"i":{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-11,0,-19,-8,-19,-19v0,-11,8,-20,20,-20","w":84},"j":{"d":"-17,51v42,-8,47,-15,47,-79r0,-146r32,0v-9,98,36,247,-75,250xm46,-243v12,0,20,9,20,20v0,10,-8,19,-21,19v-11,0,-19,-9,-19,-19v0,-11,8,-20,20,-20","w":87},"k":{"d":"58,-256r0,162v21,-28,45,-53,67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168},"l":{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84},"m":{"d":"99,-152v-59,4,-39,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v14,-39,93,-43,105,3v28,-49,115,-58,115,41r0,102r-31,0v-4,-55,18,-151,-37,-152v-60,2,-37,93,-41,152r-31,0v-5,-56,20,-149,-36,-152","w":300},"n":{"d":"103,-152v-63,1,-42,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-54,120,41r0,104r-32,0v-5,-58,21,-149,-40,-152","w":199},"o":{"d":"100,-178v50,0,84,37,84,89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-15,-67,-53,-67","w":197},"p":{"d":"26,71r-1,-245r28,0r2,30v37,-64,144,-32,137,54v3,91,-90,121,-134,67r0,94r-32,0xm108,-153v-36,0,-56,36,-50,82v0,32,23,49,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204},"q":{"d":"145,71r-1,-98v-33,58,-138,28,-130,-57v-2,-95,95,-120,133,-64r1,-26r30,0r-2,245r-31,0xm97,-21v37,1,54,-37,48,-83v0,-30,-19,-47,-47,-49v-32,0,-52,28,-52,67v0,35,16,65,51,65","w":202},"r":{"d":"112,-147v-69,-11,-53,81,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v9,-25,30,-42,57,-37r0,30","w":117},"s":{"d":"14,-8r8,-24v18,15,79,19,76,-14v0,-15,-9,-23,-32,-31v-69,-18,-59,-99,13,-101v18,0,33,5,43,11r-8,23v-12,-12,-68,-16,-64,13v0,15,9,24,32,30v67,19,58,108,-19,105v-19,0,-36,-5,-49,-12","w":142},"t":{"d":"108,0v-40,13,-82,-7,-75,-55r0,-95r-27,0r0,-24r27,0r0,-33r31,-9r0,42r46,0r0,24r-46,0r0,94v-3,30,19,39,43,32","w":119},"u":{"d":"96,-22v64,-1,39,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-16,-60,-76r0,-102r32,0v5,57,-20,150,39,152","w":198},"v":{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173},"w":{"d":"6,-174r33,0r37,144v12,-50,29,-97,44,-144r27,0r43,144v9,-48,25,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-12,50,-29,94,-44,140r-29,0","w":264},"x":{"d":"6,-174r35,0r44,65v12,-23,27,-43,41,-65r35,0r-59,84r60,90r-35,0r-46,-69v-12,23,-29,47,-43,69r-35,0r62,-89","w":166},"y":{"d":"13,53v24,-9,46,-28,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-60,232,-146,253","w":169},"z":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0","w":154},"{":{"d":"33,-9v-2,-33,28,-82,-23,-86r0,-18v51,-3,21,-53,23,-87v0,-35,25,-49,60,-47r0,20v-74,-8,6,110,-56,123v62,8,-20,126,56,125r0,19v-35,1,-59,-10,-60,-49","w":102},"|":{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},"}":{"d":"69,-200v2,35,-28,84,23,87r0,18v-51,4,-21,51,-23,86v-1,39,-25,51,-60,49r0,-19v73,6,-4,-112,56,-125v-60,-8,19,-126,-56,-123r0,-20v35,-1,60,11,60,47","w":102},"~":{"d":"197,-129v-1,98,-91,33,-137,23v-12,0,-20,9,-21,30r-21,0v-1,-36,18,-54,42,-54v24,0,71,32,96,31v13,0,19,-10,20,-30r21,0","w":214},"'":{"d":"18,-249r32,0r-6,86r-20,0","w":67},"`":{"d":"8,-249r34,0r32,51r-22,0","w":108}}});;Cufon.registerFont({"w":114,"face":{"font-family":"Vintage","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 6 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-12 -273 318 86.0506","underline-thickness":"39.6","underline-position":"-38.52","unicode-range":"U+0020-U+007D"},"glyphs":{" ":[],"\u00a0":[],"C":{"d":"92,-129v-10,88,108,95,162,50r-1,59v-56,33,-185,42,-216,-20v-51,-83,-8,-199,84,-202v44,-7,90,-3,133,4r-1,96r-41,0v8,-55,-58,-74,-93,-41v-13,13,-23,31,-27,54","w":258},"D":{"d":"170,-242v65,7,101,52,100,127v0,72,-40,107,-102,115r-126,0r0,-181v0,-22,-18,-26,-38,-25r0,-36r166,0xm207,-118v1,-57,-38,-75,-97,-70r-1,139v58,6,99,-12,98,-69","w":277},"E":{"d":"108,-79v6,41,84,17,127,23r0,55r-188,1r-1,-181v0,-21,-19,-26,-39,-25r0,-36r233,0r0,40r-135,0v-2,24,2,45,26,45r87,-1r0,55v-40,4,-106,-15,-110,24","w":249},"F":{"d":"211,-103v-37,5,-101,-17,-100,26r1,77r-69,0r0,-181v-1,-21,-15,-27,-37,-26r0,-34r218,0r0,42r-124,0v-1,21,1,42,24,41r87,0r0,55","w":233},"G":{"d":"216,-141v4,-53,-61,-77,-95,-41v-61,39,-19,181,62,132v19,-20,3,-58,-30,-45r0,-32r102,0r0,117v-61,24,-174,40,-215,-12v-32,-33,-47,-118,-14,-164v32,-61,135,-72,226,-54r3,99r-39,0","w":260},"H":{"d":"99,-242v4,50,-14,104,47,94r36,0r0,-94r66,0r-2,242r-66,0r0,-100r-74,1r0,99r-62,0r0,-180v0,-22,-15,-26,-36,-26r0,-36r91,0","w":257},"I":{"d":"41,-81v-5,-56,20,-130,-34,-124r0,-36r96,0r0,241r-62,0r0,-81","w":113},"J":{"d":"54,32v41,23,81,-7,77,-58r0,-150v0,-24,-17,-28,-40,-29r0,-36r107,0r1,245v7,106,-180,106,-194,19v-5,-34,15,-56,49,-57v33,0,35,53,12,66v-4,2,-8,2,-12,0","w":213},"K":{"d":"42,-180v-1,-21,-15,-27,-36,-25r0,-36r96,0r2,95r82,-95r70,0r-87,110v29,19,44,51,66,77v7,5,15,10,27,8r0,33v-41,28,-88,0,-99,-36v-14,-22,-30,-49,-59,-39r0,87r-62,1r0,-180","w":267},"L":{"d":"43,-183v-1,-19,-16,-26,-36,-25r0,-34r102,0r0,159v-6,53,57,29,97,35r0,48r-164,0","w":214},"M":{"d":"31,-111v4,-45,31,-101,-25,-97r0,-34r94,0r65,174r53,-174r54,0r32,243r-66,0r-18,-95r-27,93r-54,0r-37,-93r-21,95r-67,0","w":309},"N":{"d":"44,-182v0,-22,-18,-26,-39,-26r0,-34r121,0r74,178r0,-178r67,0r0,242r-92,0r-71,-163r2,163r-62,0r0,-182","w":273},"O":{"d":"4,-121v3,-76,50,-122,125,-127v75,5,122,52,125,127v-4,75,-51,122,-125,126v-75,-3,-121,-51,-125,-126xm129,-199v-70,5,-70,150,0,155v72,-5,71,-150,0,-155","w":261},"P":{"d":"194,-232v61,26,36,141,-35,134r-55,0r0,98r-68,0r0,-182v0,-22,-15,-26,-36,-26r0,-34v64,4,144,-8,194,10xm170,-170v-2,-29,-33,-37,-66,-33r0,69v34,1,65,-3,66,-36","w":243},"Q":{"d":"116,-250v93,-1,138,112,97,193v21,19,37,44,63,57r-84,5r-16,-20v-12,15,-37,21,-60,21v-73,-5,-107,-53,-111,-128v4,-71,40,-124,111,-128xm74,-104v18,-19,61,-19,85,-3v0,-44,-7,-84,-43,-93v-37,6,-47,54,-42,96xm83,-68v5,31,47,43,61,11v-11,-14,-40,-24,-61,-11","w":276},"R":{"d":"8,-242v109,3,251,-26,239,92v-4,22,-14,34,-33,43v20,22,20,76,63,68r0,32v-22,13,-62,24,-78,0v-23,-34,-25,-91,-89,-76r0,83r-67,0r-1,-181v0,-20,-15,-26,-34,-26r0,-35xm110,-133v44,9,82,-23,54,-58v-12,-10,-31,-13,-54,-11r0,69","w":284},"S":{"d":"28,-119v-56,-51,5,-144,89,-127v50,4,94,20,98,71r-48,0v-9,-17,-31,-27,-58,-26v-25,-3,-36,33,-8,38v52,12,115,25,115,84v-3,55,-39,82,-97,83v-45,-2,-81,-20,-111,-38r0,-62r36,0v7,27,32,42,63,45v30,3,45,-29,13,-36v-32,-7,-70,-12,-92,-32","w":223},"T":{"d":"76,-192v-24,-3,-39,6,-37,28r-32,0r0,-78r206,0r0,51r-69,-1r0,193r-70,0","w":221},"U":{"d":"33,-77v-5,-52,17,-121,-32,-119r0,-45r99,0r1,165v0,22,16,32,39,32v20,0,38,-10,39,-32r0,-166r68,0r0,164v-9,61,-51,93,-128,87v-53,-4,-85,-29,-86,-86","w":253},"V":{"d":"68,-82v-23,-42,-16,-115,-71,-119r0,-41r84,0r64,171r64,-171r62,0r-85,243r-89,-2","w":272},"W":{"d":"61,0r-19,-173v-8,-17,-17,-30,-39,-28r0,-40r94,0r13,126r43,-126r45,0r42,126r13,-126r62,0r-26,241r-58,0r-55,-154r-57,154r-58,0","w":318},"X":{"d":"106,-123r-100,-119r79,0r62,72r-7,3r54,-75r72,0r-79,117r0,-4r98,129r-85,0r-60,-87r7,0r-47,87r-89,0r0,-42v65,6,70,-51,95,-87r0,6","w":292},"Y":{"d":"29,-26v48,1,49,-54,71,-79r-96,-137r73,0r57,78r33,-78r77,0r-129,243r-86,0r0,-27","w":243},"Z":{"d":"105,-54v44,3,84,2,69,-49r50,0r0,103r-221,-1r0,-33r110,-151r-110,0r0,-56r218,-1r0,37","w":227},"a":{"d":"132,-19v-22,10,-27,26,-58,25v-82,1,-88,-141,-28,-173v30,-15,64,-2,84,11v11,-12,40,-5,58,-9r-1,106v0,6,2,15,7,15v7,-2,9,-14,9,-25r16,0v9,46,-29,88,-69,61v-6,-4,-12,-7,-18,-11xm98,-43v35,-2,36,-93,0,-95v-35,2,-34,93,0,95","w":225},"&":{"d":"74,-62v-10,55,63,31,107,36r0,46v-13,3,-24,3,-44,3r0,25r-38,0r0,-28v-65,-7,-104,-53,-91,-133v11,-43,47,-62,91,-70r0,-33r40,0r0,30v14,2,29,2,42,5r0,47v-40,7,-112,-22,-107,32r93,0r0,40r-93,0","w":184},"*":{"d":"124,-191v24,-10,86,-26,68,16v-7,16,-36,12,-53,19v10,14,31,22,31,43v0,16,-24,24,-35,12r-28,-34r-38,41v-17,10,-33,-14,-23,-30r26,-32v-21,-8,-56,-4,-58,-32v6,-32,50,-8,72,-3v1,-26,-7,-61,21,-60v24,2,16,35,17,60","w":219},"@":{"d":"200,-20v-69,40,-192,13,-190,-77v6,-68,53,-106,124,-109v59,1,98,27,100,84v-1,47,-41,94,-85,70v-13,8,-22,19,-43,19v-57,0,-64,-102,-19,-124v21,-10,44,-1,60,9v7,-10,28,-5,40,-9r0,83v15,-7,21,-25,21,-47v3,-66,-101,-71,-140,-35v-49,45,-18,143,59,132v28,-2,55,-9,73,-22r0,26xm123,-144v-23,9,-23,71,0,79v26,-4,26,-74,0,-79","w":248},"b":{"d":"3,-30v45,4,19,-62,26,-113v0,-23,1,-49,1,-77r60,-22r0,94v30,-30,107,-25,114,21v20,52,7,132,-54,133v-15,5,-42,-15,-60,-6r-87,0r0,-30xm122,-138v-35,7,-33,82,-11,102v26,14,37,-22,36,-49v-1,-24,-6,-48,-25,-53","w":216},"\\":{"d":"56,-249r79,279r-58,0r-85,-279r64,0","w":127},"|":{"d":"84,-273r0,358r-71,0r0,-358r71,0","w":91},"{":{"d":"62,-181v-3,-53,36,-61,87,-61r0,22v-14,1,-21,-1,-26,6r0,251v6,5,13,3,26,4r0,24v-52,1,-89,-8,-87,-60v4,-52,-5,-84,-56,-80r0,-27v52,4,60,-27,56,-79","w":153},"}":{"d":"32,-184v0,-23,9,-40,-24,-36v1,-7,-3,-19,2,-22v50,1,87,9,85,61r0,32v-2,39,18,46,55,47r0,27v-35,2,-58,8,-55,47r0,33v1,52,-35,61,-87,60r0,-24v15,-1,29,4,25,-14","w":155},"[":{"d":"29,-243r162,0r0,44r-84,0r0,222r84,0r0,44r-162,0r0,-310","w":221},"]":{"d":"115,23r0,-221r-83,0r0,-44r160,0r0,308r-160,0r0,-43r83,0","w":222},"c":{"d":"79,-106v-14,60,58,74,96,48r0,40v-37,26,-114,35,-141,-4v-60,-53,-4,-184,95,-150v32,7,64,78,16,93v-38,11,-42,-43,-20,-60v-21,-13,-41,11,-46,33","w":180},":":{"d":"59,-63v22,0,35,12,36,33v0,22,-15,36,-35,36v-21,0,-34,-14,-34,-36v-1,-18,14,-34,33,-33xm59,-170v22,1,35,13,36,34v-1,20,-15,34,-36,35v-20,-1,-33,-14,-34,-35v0,-19,14,-35,34,-34"},",":{"d":"45,9v-37,-5,-28,-60,7,-60v41,0,36,58,12,77v-13,11,-32,22,-51,27r0,-24v15,-2,26,-9,32,-20"},"d":{"d":"117,-5v-90,52,-144,-70,-90,-145v19,-28,82,-20,101,1r0,-94r61,23r1,171v0,15,10,21,25,18r0,30v-32,-2,-73,5,-98,-4xm96,-139v-34,11,-33,97,0,107v37,-7,37,-100,0,-107","w":225},"$":{"d":"192,-139v-27,-5,-76,-24,-92,0v34,26,111,22,110,85v0,46,-27,62,-65,71r0,23r-59,0v0,-10,2,-25,-9,-23v-18,-5,-39,-8,-56,-15r0,-77r24,0v1,32,28,38,59,39v16,2,33,-12,15,-21v-38,-20,-104,-18,-101,-79v-1,-43,33,-64,71,-71r0,-9r56,-26v3,13,-8,39,9,38r38,9r0,56","w":219},"e":{"d":"64,-76v-3,40,61,55,73,15r49,-3v-6,47,-43,71,-95,71v-51,0,-85,-32,-88,-87v-1,-59,31,-97,89,-97v65,-3,98,34,96,96xm130,-110v0,-32,-43,-45,-55,-15v-2,5,-3,11,-3,17","w":190},"8":{"d":"49,-109v-21,-10,-32,-25,-33,-50v1,-46,36,-69,88,-68v43,1,80,15,80,54v0,24,-15,35,-35,44v26,11,46,28,46,62v0,51,-41,74,-97,73v-52,1,-90,-17,-90,-64v1,-28,18,-42,41,-51xm79,-84v-35,13,-20,56,17,56v35,0,49,-28,22,-40v-8,-4,-22,-9,-39,-16xm117,-139v27,-12,17,-55,-18,-50v-26,-4,-42,26,-18,37","w":207},"=":{"d":"44,-117r0,-53r188,0r23,53r-211,0xm44,-48r0,-52r188,0r23,52r-211,0","w":299},"!":{"d":"82,-75r-61,0r0,-157r61,-19r0,176xm51,-66v27,2,45,19,46,47v-2,26,-19,46,-46,46v-28,0,-47,-18,-48,-46v0,-30,20,-45,48,-47","w":100},"f":{"d":"145,-174v-22,2,-38,-30,-20,-44v-26,4,-32,29,-23,60r57,0r0,49r-57,0r0,108r-84,0r0,-21v43,7,21,-55,26,-99r-38,0r0,-37r38,0v0,-50,17,-90,66,-91v36,1,57,18,62,48v0,13,-13,27,-27,27","w":167},"5":{"d":"118,-71v-1,-25,-36,-36,-58,-24r-47,0r0,-129r162,0r0,55r-108,0r0,28v96,-26,152,71,89,130v-47,41,-182,16,-143,-58v17,-25,66,-13,60,23v-1,8,-5,15,-11,19v35,2,57,-11,56,-44","w":189},"4":{"d":"174,-59v-5,27,5,40,34,33r0,26r-87,-1r-1,-39r-105,-1r0,-38r114,-140r43,0r0,132r34,0r0,28r-32,0xm127,-85r0,-53r-49,52","w":219},"g":{"d":"165,-120v5,59,-33,76,-88,73v-5,0,-14,11,-4,12v57,0,134,-7,122,61v-9,43,-53,49,-102,54v-33,-1,-72,-8,-80,-36v0,-16,4,-22,14,-35v-22,-18,-19,-53,-1,-69v-34,-46,-17,-108,54,-108r119,0r0,48r-34,0xm57,32v11,20,82,20,94,0v-17,-16,-78,-17,-94,0xm86,-60v23,-7,21,-56,13,-79v-3,-9,-7,-14,-13,-14v-28,10,-27,84,0,93","w":208},">":{"d":"6,-215r148,76r0,57r-148,76r0,-58r84,-46r-84,-49r0,-56","w":163},"h":{"d":"135,-98v1,-30,-27,-43,-45,-23r1,121r-85,0r0,-30v46,4,19,-62,26,-112v1,-23,1,-49,1,-77r57,-23r0,93v31,-31,116,-26,105,37v3,33,-1,74,0,111r-60,1r0,-98","w":209},"-":{"d":"14,-112r90,0r10,54r-100,0r0,-54","w":127},"i":{"d":"5,-29v15,0,25,-2,25,-16r0,-123r53,0r0,168r-78,0r0,-29xm57,-242v17,0,31,14,31,31v0,17,-14,31,-31,31v-19,0,-30,-12,-31,-31v-1,-17,16,-31,31,-31","w":95},"j":{"d":"97,-240v17,0,34,13,33,31v1,18,-15,33,-33,32v-16,0,-32,-14,-31,-32v-1,-17,16,-31,31,-31xm55,55v24,-25,8,-89,12,-139r0,-86r62,-1v-9,98,35,249,-72,250v-37,4,-73,-45,-37,-64v22,-12,34,12,31,37v1,2,2,3,4,3","w":138},"k":{"d":"185,-150v5,36,0,69,-30,74r54,75r-72,2v-17,-15,-24,-42,-49,-47v-5,11,-1,32,-2,47r-80,0r0,-31v43,4,25,-65,25,-112r0,-77r55,-23r0,139v23,6,49,-23,16,-24r2,-21","w":212},"l":{"d":"5,-29v45,2,21,-62,27,-110r0,-76r57,-27r0,243r-84,0r0,-30","w":99},"<":{"d":"160,-158r-84,49r84,47r0,58r-148,-77r0,-57r148,-75r0,55","w":172},"m":{"d":"89,-156v29,-19,78,-23,103,3v27,-26,123,-32,118,25r0,129r-59,0v-6,-45,19,-121,-25,-128v-44,3,-18,84,-25,128r-77,0r0,-32v32,5,15,-39,18,-69v1,-24,-35,-38,-47,-16v-11,27,-4,76,-6,117r-85,0r0,-32v47,1,19,-70,28,-124r57,-17r0,16","w":314},"n":{"d":"89,-160v34,-24,114,-22,109,33r1,128r-58,0v-6,-46,20,-120,-26,-131v-47,1,-16,90,-28,131r-83,0r0,-32v47,2,18,-73,27,-126r58,-17r0,14","w":201},"9":{"d":"99,-228v99,-10,111,115,57,170v-19,23,-38,48,-63,64r-80,1v28,-29,64,-50,84,-86v-55,3,-89,-29,-89,-78v3,-40,41,-72,91,-71xm97,-190v-32,3,-33,65,0,68v34,-1,33,-66,0,-68","w":194},"#":{"d":"248,-125r-53,0r0,45r53,0r0,22r-53,0r0,58r-50,0r0,-58r-38,0r0,58r-50,0r0,-58r-49,0r0,-22r49,0r0,-45r-49,0r0,-21r49,0r0,-53r50,0r0,53r38,0r0,-56r50,0r0,56r53,0r0,21xm145,-80r0,-45r-38,0r0,45r38,0","w":253},"o":{"d":"106,-176v58,2,95,35,99,92v-4,56,-41,89,-99,91v-58,-2,-96,-35,-100,-91v3,-57,42,-90,100,-92xm105,-31v45,-7,41,-103,0,-109v-40,7,-41,102,0,109","w":210},"1":{"d":"114,-144v5,49,-17,114,28,111r0,33r-93,0r0,-170r-39,0r0,-50r104,0r0,76","w":151},"p":{"d":"83,-149v22,-39,110,-26,111,20v23,68,-9,165,-87,130v-8,-4,-16,-9,-24,-15r0,-135xm113,-27v36,-10,35,-102,0,-111v-35,9,-34,102,0,111xm0,47v45,2,25,-66,25,-119v0,-24,0,-51,1,-81r57,-24r0,255r-83,0r0,-31","w":213},"(":{"d":"159,-244v-64,41,-123,159,-58,246v17,23,35,42,58,58r-69,0v-41,-36,-77,-80,-80,-152v4,-71,39,-116,80,-152r69,0","w":174},")":{"d":"136,-90v-3,72,-39,115,-79,152r-69,0v44,-35,86,-74,87,-152v0,-79,-47,-113,-87,-152r69,0v40,35,76,82,79,152","w":142},".":{"d":"55,-63v22,0,35,12,36,33v-1,22,-14,36,-35,36v-21,0,-34,-14,-34,-36v-1,-18,15,-34,33,-33","w":113},"+":{"d":"172,-81r0,81r-52,0r0,-81r-74,0r0,-51r74,0r0,-59r52,-22r0,81r62,0r24,51r-86,0","w":299},"q":{"d":"48,7v-70,-29,-56,-203,43,-172v13,2,21,10,30,16r0,137v-18,14,-44,29,-73,19xm91,-130v-33,9,-30,84,-10,105v26,15,35,-25,35,-50v-1,-26,-4,-49,-25,-55xm94,48v46,1,16,-68,25,-122v1,-26,1,-55,2,-85r55,-12r-1,249r-81,0r0,-30","w":182},"?":{"d":"197,-172v7,51,-77,66,-79,87r-69,0v-14,-56,73,-59,79,-87v-3,-15,-12,-20,-33,-20v-20,-1,-34,12,-26,30r-64,0v-11,-60,33,-87,90,-87v58,1,95,23,102,77xm84,-75v29,2,48,18,49,49v-1,31,-18,47,-49,48v-30,-1,-48,-20,-48,-48v0,-29,20,-47,48,-49","w":199},"\"":{"d":"47,-260v41,2,37,60,11,78v-12,13,-31,22,-52,26r0,-23v18,-2,25,-8,32,-20v-11,-3,-23,-14,-23,-29v2,-18,13,-31,32,-32xm113,-260v42,0,36,59,12,78v-14,11,-31,22,-52,26r0,-23v15,-2,27,-9,32,-20v-13,-3,-24,-13,-24,-29v2,-18,14,-30,32,-32","w":155},"'":{"d":"2,-230v-2,-32,47,-44,57,-12v3,31,-10,62,-13,93r-26,0","w":60},"r":{"d":"1,-23v41,6,25,-43,27,-81v0,-16,0,-35,-1,-55r62,-18r0,12v29,-18,77,-6,74,34v0,16,-13,26,-29,26v-26,3,-38,-31,-20,-46v2,1,1,3,1,5v-12,-6,-24,6,-26,12r0,134r-88,-1r0,-22","w":166},"s":{"d":"162,-56v-1,77,-115,71,-158,35r0,-43r27,0v8,18,16,31,40,31v23,2,32,-12,19,-22v-33,-14,-88,-10,-88,-58v0,-73,154,-77,160,-6r-36,0v-5,-17,-53,-29,-59,-4v19,32,99,9,95,67","w":163},";":{"d":"60,-171v21,0,36,12,36,33v-1,22,-14,36,-35,36v-21,0,-34,-14,-34,-36v-1,-18,15,-34,33,-33xm98,-23v0,-18,-17,-30,-33,-30v-35,-4,-40,57,-7,61v-6,11,-16,17,-32,19r0,24v38,-8,70,-31,72,-74"},"7":{"d":"114,-171v-36,-3,-77,-6,-66,33r-40,0r0,-84r188,1r0,33v-33,58,-75,97,-77,187r-57,0v-2,-73,24,-125,52,-170","w":205},"6":{"d":"174,-15v-58,44,-176,24,-162,-65v10,-70,54,-109,98,-145r80,0v-29,28,-65,49,-86,85v74,-8,115,72,70,125xm104,-28v32,-2,35,-67,0,-68v-31,1,-32,66,0,68","w":200},"\/":{"d":"-6,33r79,-281r65,0r-83,281r-61,0","w":129},"B":{"d":"171,-241v54,0,91,84,37,106v43,11,69,95,16,118v-41,25,-119,14,-182,17r-1,-180v0,-20,-15,-26,-35,-26r0,-35r165,0xm116,-141v31,6,60,2,61,-29v-2,-29,-29,-36,-61,-31r0,60xm116,-36v54,20,87,-48,31,-63v-9,-2,-19,-1,-31,0r0,63","w":259},"t":{"d":"170,-99v6,64,-6,108,-63,104v-31,-2,-57,-10,-57,-42r-1,-70r-43,0r0,-49r40,0r0,-63r60,-25r1,88r63,-1r0,34r-64,0v3,26,-7,67,12,77v22,0,13,-32,15,-53r37,0","w":180},"3":{"d":"131,-72v-2,-29,-33,-28,-63,-29r0,-28r36,-40r-86,-1r1,-54r174,0r0,35r-46,45v30,9,46,37,47,75v-1,55,-39,78,-98,78v-47,-2,-84,-18,-86,-65v2,-24,14,-38,39,-39v39,-4,46,58,6,58v25,24,83,8,76,-35","w":205},"2":{"d":"140,5v-35,3,-73,-43,-94,-6r-28,0v-3,-73,43,-96,85,-125v26,-23,30,-40,5,-52v-23,-6,-37,9,-37,31r-56,-2v-8,-78,93,-91,144,-60v24,14,35,58,15,85v-15,23,-50,49,-74,65v24,2,72,24,69,-13r32,0v1,47,-15,77,-61,77","w":214},"u":{"d":"92,-42v44,-6,22,-78,25,-126r59,0r1,116v0,16,10,20,26,20r0,31r-84,0r0,-11v-29,30,-113,27,-112,-28r-1,-128r59,0v7,44,-18,121,27,126","w":212},"_":{"d":"0,52r159,0r21,32r-179,0","w":180},"v":{"d":"144,-140v-1,-8,-8,-10,-18,-9r0,-21r100,0r-77,170r-66,0r-79,-170r70,0r42,108","w":227},"w":{"d":"226,-140v0,-7,-5,-10,-13,-9r0,-21r69,0r-64,171r-41,0r-37,-91r-33,89r-41,0r-67,-169r58,0r36,89r21,-59v0,-7,-4,-9,-12,-9r0,-21r66,0r36,91","w":283},"x":{"d":"120,-114v4,-14,33,-26,24,-40v-3,-1,-6,0,-9,0r0,-16r82,0r-60,83r60,87r-67,0r-38,-53r-44,53r-62,0r0,-27v41,0,45,-41,67,-63r-70,-80r70,0","w":221},"y":{"d":"58,45v24,10,33,-23,29,-47r-82,-168r62,0r50,94v7,-24,18,-46,22,-71v-4,-5,-9,-8,-20,-7r0,-16r88,0r-72,189v-15,29,-39,69,-85,55v-29,-8,-60,-65,-16,-81v26,-7,46,34,24,52","w":212},"z":{"d":"111,-37v17,1,16,-13,18,-28r38,0r-1,65r-160,0r0,-31r90,-96r-90,0r0,-42r158,0r0,34r-86,98r33,0","w":171},"0":{"d":"102,-224v68,3,95,49,96,119v-2,67,-30,113,-95,117v-63,-4,-91,-50,-91,-117v1,-66,25,-116,90,-119xm105,-48v48,0,48,-116,-1,-114v-49,2,-50,112,1,114","w":206},"A":{"d":"207,0r-27,-81r-66,0r-31,81r-78,0r0,-38v16,0,26,-4,32,-13r75,-190r74,0r95,241r-74,0xm146,-182r-21,66r44,0","w":283},"%":{"d":"155,-6r-62,0r65,-233r66,0xm65,-234v37,1,60,26,64,60v-3,35,-28,59,-64,59v-37,0,-66,-22,-66,-59v0,-37,27,-59,66,-60xm63,-141v27,-2,27,-66,0,-68v-24,2,-24,65,0,68xm255,-130v36,2,61,24,63,61v-3,35,-28,58,-63,58v-37,0,-66,-22,-66,-58v0,-38,29,-59,66,-61xm252,-36v28,-2,29,-67,0,-69v-24,4,-22,65,0,69","w":320}}});;var inputs=new Array();var inputID=new Array();var splitHash=new Array();var errorList=new Array();var dimension=new Array();var contentIndent,currentURL,section,server,currentRel,hash,taglineHref,formError,userBrowser;var success,cufonLoaded=false;var currentSection="home";var errorCount=0;var sectionDetails={home:{position:0,url:'home/'},who:{position:1849,url:'who/'},services:{position:3698,url:'services/'},clients:{position:5547,url:'clients/'},news:{position:5547,url:'news/'},testimonials:{position:7396,url:'testimonials/'},contact:{position:9245,url:'contact/'}}
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(){}}
$(document).ready(function(){getServer();$.historyInit(pageload);if(document.location.hash.length==0){if(document.location.pathname.length>1){var pathname=document.location.pathname;document.location.hash=pathname.substr(1);}}
$("a").live("click",function(){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(/^.*#/,''));currentRel=$(this).attr('rel');}}else{window.open(this.href);}
return false;});$('body').addClass('js-enabled');$('a, button').focus(function(){this.blur();});$('.news-items li').hover(function(){$("span.overlay",this).stop().animate({top:'0px'},{queue:false,duration:160});},function(){$("span.overlay",this).stop().animate({top:'180px'},{queue:false,duration:160});});loadCufon();$(window).resize(centerContent);addContactFocus();});function loadPage(url,section,loadAjax){cufonLoaded=false;updateNav(section);if(sectionDetails[section].url!=url){sectionDetails[section].url=url;loadAjax=true;}else{loadAjax=false;}
if(loadAjax==true){stopLoading=false;$("#content-"+currentSection).fadeTo("1000",'0.001',function(){if(userBrowser!="IE7"){$(".loading").fadeIn(1000);}else{$(".loading").show();}
success=false;$("#content-"+currentSection).load(url,{'ajax':["true"],'section':[currentSection]});});$("#content-"+currentSection).ajaxSuccess(function(){if(success==false){}});$("#content-"+currentSection).ajaxStop(function(){if(success==false){$("#content-"+currentSection).fadeTo("1000",'1',function(){if(userBrowser!="IE7"){$(".loading").fadeOut(1000);}else{$(".loading").hide();}});loadCufon();success=true;}});$("#content-"+currentSection).ajaxError(function(){if(errorCount<3){errorCount=errorCount+1;console.log(errorCount);}else{}});}
switchPage(section);pageTracker._trackPageview(url);}
function changeBanner(section,pageID){var newImage='/resources/images/headers/header-'+pageID+'.jpg';if($('#page-'+section+' .banner img').attr('src')!=newImage){$('#page-'+section+' .banner img').fadeOut(500,function(){$(this).attr('src',newImage).load(function(){$(this).fadeIn(500);});});}}
function changeTagline(section,pageID,taglineHref,external){if(!$('#page-'+section+' .tagline').hasClass('tagline-'+pageID)){$('#page-'+section+' .tagline').fadeOut(500,function(){if(taglineHref.length>0){$(this).attr('href',taglineHref);}else{$(this).attr('href','/'+section+'/');}
if(external){$(this).attr('rel','external');}
$('#page-'+section+' .tagline').removeClass().addClass('tagline tagline-'+pageID);$(this).fadeIn(500);});}}
function addContactFocus(){$('select').selectbox({debug:false});$("#contact form").checkbox({checked:"/resources/images/forms/check-on.png",unchecked:"/resources/images/forms/check-off.png"});inputs=$('#contact input[type="text"], #contact .selectbox');textarea=$('#contact textarea');$('#contact form').submit(function(){inputs.each(function(i){checkField(this);});textarea.each(function(i){checkField(this,true);});if(formError==true){return false;}else{$(".sending").fadeIn(1000,function(){});$("#contact form").ajaxSubmit([{target:"#content-contact"}]);}
return false;});$('#contact input[type="text"]').focus(function(){if(this.className.indexOf("error")>0){$(this).removeClass('on error').addClass("error-on");}else if(this.className.indexOf("on")<0){$(this).removeClass('error error-on').addClass("on");}});$('#contact textarea').focus(function(){if($('.textarea').hasClass("on")==0){$(".textarea").removeClass('error error-on').addClass("on");}else if($(".textarea").hasClass("error")){$(".textarea").removeClass('on error').addClass("error-on");}});$('#contact input[type="text"]').blur(function(){checkField(this);});$('#contact textarea').blur(function(){checkField(this,true);});}
function checkField(input,textarea){if($(input).hasClass('required')){if($.trim(input.value)==''){$(input).removeClass('on error-on').addClass("error");if(textarea==true){$('.textarea').removeClass('on error-on').addClass("error");}
addError(input,'email');formError=true;}else if($(input).hasClass('form-email')&&!isValidEmailAddress(input.value)){$(input).removeClass('on error-on').addClass("error");addError(input,'email');formError=true;}else{$(input).removeClass('on error-on error');if(textarea==true){$('.textarea').removeClass('on error-on error');}
formError=false;}}else{$(input).removeClass('on error-on error');if(textarea==true){$('.textarea').removeClass('on error-on error');}
formError=false;}}
function addError(input,type){var id=jQuery.trim($(input).attr('name'));if(type=='email'){errorList[id]="Please enter a valid email address";}
else{errorList[id]="Please enter a valid input";}}
function pageload(hash){var loadAjax=false;console.log("hash is "+hash);if(!hash){hash="home";}
splitHash=hash.split("/");currentSection=splitHash[0];if(window.location.hash.substring(0,20)=="#index.php?mact=News"){currentSection="news";loadAjax=true;}
if(window.location.hash.substring(0,37)=="#index.php?testimonial=true&mact=News"){currentSection="testimonials";loadAjax=true;}
if(splitHash.length>2||currentSection=='clients'||currentSection=='news'||currentSection=='services'||currentSection=='testimonials'||currentSection=='contact'){loadAjax=true;}
console.log("currentSection is "+currentSection);loadPage(hash,currentSection,loadAjax);}
function getServer(){server=window.location.protocol+"//"+window.location.host+"/";return server;}
function switchPage(section){$("#content").animate({marginLeft:"-"+sectionDetails[section].position},500,'easeInOutExpo',function(){document.title=section+" // ewebbed - handcoded by robots";});}
function hideOtherSections(section){$('.page').each(function(i){if(this.id!="page-"+section){}else{}});}
function updateNav(section){$("#header ul li a").removeClass("navOn");$("#nav-"+section+" a").addClass("navOn");currentSection=section;}
function centerContent(){getDimensions();if(dimension['width']>949){contentIndent=(dimension['width']-949)/2;$("#contentIndent, #header").css("margin-left",contentIndent);}
return contentIndent;}
function getDimensions(){dimension['height']=$(window).height();dimension['width']=$(window).width();return dimension;}
function loadCufon(){$('h1, h2, .testimonial-large p').addClass('cufon');Cufon.replace('h1, h2, ul.filter li.filter-txt, .testimonial-item h3, span.overlay strong',{fontFamily:'Myriad Pro'});Cufon.replace('.testimonial-large p, form fieldset label, .testimonial-item p',{fontFamily:'Vintage'});cufonLoaded=true;}
function isValidEmailAddress(emailAddress){var pattern=new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);return pattern.test(emailAddress);};;(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=this.attr('action')||window.location.href;url=(url.match(/^([^#]+)/)||[])[1];url=url||'';options=$.extend({url:url,target:'#content-contact',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);});loadCufon();$(".sending").fadeOut(1000,function(){});}
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;if(options.iframe||found){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=jQuery.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&&jQuery.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 nullCheckFlag=0;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=='')&&!nullCheckFlag){nullCheckFlag=1;cbInvoked--;setTimeout(cb,100);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+'.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 inputs=form.getElementsByTagName("input");for(var i=0,max=inputs.length;i<max;i++){var input=inputs[i];var n=input.name;if(n&&!input.disabled&&input.type=="image"&&form.clk==input)
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);
