/*================================ 
 Hygenic
 
 Last Updated By: Ryan Perry
 Last Updated: 12/19/2011
================================*/


/*================================================
 jQuery RoundAbout Carousel
================================================*/
/**
 * jQuery Roundabout - v2.0
 * http://fredhq.com/projects/roundabout
 *
 * Moves list-items of enabled ordered and unordered lists long
 * a chosen path. Includes the default "lazySusan" path, that
 * moves items long a spinning turntable.
 *
 * Terms of Use // jQuery Roundabout
 * 
 * Open source under the BSD license
 *
 * Copyright (c) 2011, Fred LeBlanc
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without 
 * modification, are permitted provided that the following conditions are met:
 * 
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *   - Redistributions in binary form must reproduce the above 
 *     copyright notice, this list of conditions and the following 
 *     disclaimer in the documentation and/or other materials provided 
 *     with the distribution.
 *   - Neither the name of the author nor the names of its contributors 
 *     may be used to endorse or promote products derived from this 
 *     software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
 * POSSIBILITY OF SUCH DAMAGE.
 */
(function($){"use strict";var defaults,internalData,methods;$.extend({roundaboutShapes:{def:"lazySusan",lazySusan:function(r,a,t){return{x:Math.sin(r+a),y:(Math.sin(r+3*Math.PI/2+a)/8)*t,z:(Math.cos(r+a)+1)/2,scale:(Math.sin(r+Math.PI/2+a)/2)+0.5};}}});defaults={bearing:0.0,tilt:0.0,minZ:100,maxZ:280,minOpacity:0.4,maxOpacity:1.0,minScale:0.4,maxScale:1.0,duration:600,btnNext:null,btnNextCallback:function(){},btnPrev:null,btnPrevCallback:function(){},btnToggleAutoplay:null,btnStartAutoplay:null,btnStopAutoplay:null,easing:"swing",clickToFocus:true,clickToFocusCallback:function(){},focusBearing:0.0,shape:"lazySusan",debug:false,childSelector:"li",startingChild:null,reflect:false,floatComparisonThreshold:0.001,autoplay:false,autoplayDuration:1000,autoplayPauseOnHover:false,autoplayCallback:function(){},enableDrag:false,dropDuration:600,dropEasing:"swing",dropAnimateTo:"nearest",dropCallback:function(){},dragAxis:"x",dragFactor:4,triggerFocusEvents:true,triggerBlurEvents:true};internalData={autoplayInterval:null,autoplayIsRunning:false,animating:false,childInFocus:-1,touchMoveStartPosition:null,stopAnimation:false,lastAnimationStep:false};methods={init:function(options,callback){var settings,now=(new Date()).getTime();options=(typeof options==="object")?options:{};callback=($.isFunction(callback))?callback:function(){};callback=($.isFunction(options))?options:callback;settings=$.extend({},defaults,options,internalData);return this.each(function(){var self=$(this),childCount=self.children(settings.childSelector).length,period=360.0/childCount,startingChild=(settings.startingChild&&settings.startingChild>(childCount-1))?(childCount-1):settings.startingChild,startBearing=(settings.startingChild===null)?settings.bearing:360-(startingChild*period),holderCSSPosition=(self.css("position")!=="static")?self.css("position"):"relative";self.css({padding:0,position:holderCSSPosition}).addClass("roundabout-holder").data("roundabout",$.extend({},settings,{startingChild:startingChild,bearing:startBearing,oppositeOfFocusBearing:methods.normalize.apply(null,[settings.focusBearing-180]),dragBearing:startBearing,period:period}));if(settings.clickToFocus){self.children(settings.childSelector).each(function(i){$(this).bind("click",function(){var degrees=methods.getPlacement.apply(self,[i]);if(!methods.isInFocus.apply(self,[degrees])){methods.stopAnimation.apply($(this));if(!self.data("roundabout").animating){methods.animateBearingToFocus.apply(self,[degrees,self.data("roundabout").clickToFocusCallback]);}
return false;}});});}
if(settings.btnNext){$(settings.btnNext).bind("click",function(){if(!self.data("roundabout").animating){methods.animateToNextChild.apply(self,[self.data("roundabout").btnNextCallback]);}
return false;});}
if(settings.btnPrev){$(settings.btnPrev).bind("click",function(){methods.animateToPreviousChild.apply(self,[self.data("roundabout").btnPrevCallback]);return false;});}
if(settings.btnToggleAutoplay){$(settings.btnToggleAutoplay).bind("click",function(){methods.toggleAutoplay.apply(self);return false;});}
if(settings.btnStartAutoplay){$(settings.btnStartAutoplay).bind("click",function(){methods.startAutoplay.apply(self);return false;});}
if(settings.btnStopAutoplay){$(settings.btnStopAutoplay).bind("click",function(){methods.stopAutoplay.apply(self);return false;});}
if(settings.autoplayPauseOnHover){self.bind("mouseenter",function(){methods.stopAutoplay.apply(self);}).bind("mouseleave",function(){methods.startAutoplay.apply(self);});}
if(settings.enableDrag){if(!$.isFunction(self.drag)){if(settings.debug){alert("You do not have the drag plugin loaded.");}}else if(!$.isFunction(self.drop)){if(settings.debug){alert("You do not have the drop plugin loaded.");}}else{self.drag(function(e,properties){var data=self.data("roundabout"),delta=(data.dragAxis.toLowerCase()==="x")?"deltaX":"deltaY";methods.stopAnimation.apply(self);methods.setBearing.apply(self,[data.dragBearing+properties[delta]/data.dragFactor]);}).drop(function(e){var data=self.data("roundabout"),method=methods.getAnimateToMethod(data.dropAnimateTo);methods.allowAnimation.apply(self);methods[method].apply(self,[data.dropDuration,data.dropEasing,data.dropCallback]);data.dragBearing=data.period*methods.getNearestChild.apply(self);});}
self.each(function(){var element=$(this).get(0),data=$(this).data("roundabout"),page=(data.dragAxis.toLowerCase()==="x")?"pageX":"pageY",method=methods.getAnimateToMethod(data.dropAnimateTo);if(element.addEventListener){element.addEventListener("touchstart",function(e){data.touchMoveStartPosition=e.touches[0][page];},false);element.addEventListener("touchmove",function(e){var delta=(e.touches[0][page]-data.touchMoveStartPosition)/data.dragFactor;e.preventDefault();methods.stopAnimation.apply($(this));methods.setBearing.apply($(this),[data.dragBearing+delta]);},false);element.addEventListener("touchend",function(e){e.preventDefault();methods.allowAnimation.apply($(this));method=methods.getAnimateToMethod(data.dropAnimateTo);methods[method].apply($(this),[data.dropDuration,data.dropEasing,data.dropCallback]);data.dragBearing=data.period*methods.getNearestChild.apply($(this));},false);}});}
methods.initChildren.apply(self,[callback]);});},initChildren:function(callback){var self=$(this),data=self.data("roundabout");callback=callback||function(){};self.children(data.childSelector).each(function(i){var startWidth,startHeight,startFontSize,degrees=methods.getPlacement.apply(self,[i]);if(typeof $(this).data("roundabout")==="object"){startWidth=$(this).data("roundabout").startWidth;startHeight=$(this).data("roundabout").startHeight;startFontSize=$(this).data("roundabout").startFontSize;}
$(this).addClass("roundabout-moveable-item").css("position","absolute");$(this).data("roundabout",{startWidth:startWidth||$(this).width(),startHeight:startHeight||$(this).height(),startFontSize:startFontSize||parseInt($(this).css("font-size"),10),degrees:degrees,backDegrees:methods.normalize.apply(null,[degrees-180]),childNumber:i,currentScale:1,parent:self});});methods.updateChildren.apply(self);if(data.autoplay){methods.startAutoplay.apply(self);}
self.trigger('ready');callback.apply(self);return self;},updateChildren:function(){return this.each(function(){var self=$(this),data=self.data("roundabout"),inFocus=-1,info={bearing:data.bearing,tilt:data.tilt,stage:{width:Math.floor($(this).width()*0.9),height:Math.floor($(this).height()*0.9)},animating:data.animating,inFocus:data.childInFocus,focusBearingRadian:methods.degToRad.apply(null,[data.focusBearing]),shape:$.roundaboutShapes[data.shape]||$.roundaboutShapes[$.roundaboutShapes.def]};info.midStage={width:info.stage.width/2,height:info.stage.height/2};info.nudge={width:info.midStage.width+(info.stage.width*0.05),height:info.midStage.height+(info.stage.height*0.05)};info.zValues={min:data.minZ,max:data.maxZ,diff:data.maxZ-data.minZ};info.opacity={min:data.minOpacity,max:data.maxOpacity,diff:data.maxOpacity-data.minOpacity};info.scale={min:data.minScale,max:data.maxScale,diff:data.maxScale-data.minScale};self.children(data.childSelector).each(function(i){if(methods.updateChild.apply(self,[$(this),info,i,function(){$(this).trigger('ready');}])&&(!info.animating||data.lastAnimationStep)){inFocus=i;$(this).addClass("roundabout-in-focus");}else{$(this).removeClass("roundabout-in-focus");}});if(inFocus!==info.inFocus){if(data.triggerBlurEvents){self.children(data.childSelector).eq(info.inFocus).trigger("blur");}
data.childInFocus=inFocus;if(data.triggerFocusEvents&&inFocus!==-1){self.children(data.childSelector).eq(inFocus).trigger("focus");}}
self.trigger("childrenUpdated");});},updateChild:function(childElement,info,childPos,callback){var factors,self=this,child=$(childElement),data=child.data("roundabout"),out=[],rad=methods.degToRad.apply(null,[(360.0-data.degrees)+info.bearing]);callback=callback||function(){};rad=methods.normalizeRad.apply(null,[rad]);factors=info.shape(rad,info.focusBearingRadian,info.tilt);factors.scale=(factors.scale>1)?1:factors.scale;factors.adjustedScale=(info.scale.min+(info.scale.diff*factors.scale)).toFixed(4);factors.width=(factors.adjustedScale*data.startWidth).toFixed(4);factors.height=(factors.adjustedScale*data.startHeight).toFixed(4);child.css({left:((factors.x*info.midStage.width+info.nudge.width)-factors.width/2.0).toFixed(0)+"px",top:((factors.y*info.midStage.height+info.nudge.height)-factors.height/2.0).toFixed(0)+"px",width:factors.width+"px",height:factors.height+"px",opacity:(info.opacity.min+(info.opacity.diff*factors.scale)).toFixed(2),zIndex:Math.round(info.zValues.min+(info.zValues.diff*factors.z)),fontSize:(factors.adjustedScale*data.startFontSize).toFixed(1)+"px"});data.currentScale=factors.adjustedScale;if(self.data("roundabout").debug){out.push("<div style=\"font-weight: normal; font-size: 10px; padding: 2px; width: "+child.css("width")+"; background-color: #ffc;\">");out.push("<strong style=\"font-size: 12px; white-space: nowrap;\">Child "+childPos+"</strong><br />");out.push("<strong>left:</strong> "+child.css("left")+"<br />");out.push("<strong>top:</strong> "+child.css("top")+"<br />");out.push("<strong>width:</strong> "+child.css("width")+"<br />");out.push("<strong>opacity:</strong> "+child.css("opacity")+"<br />");out.push("<strong>height:</strong> "+child.css("height")+"<br />");out.push("<strong>z-index:</strong> "+child.css("z-index")+"<br />");out.push("<strong>font-size:</strong> "+child.css("font-size")+"<br />");out.push("<strong>scale:</strong> "+child.data("roundabout").currentScale);out.push("</div>");child.html(out.join(""));}
child.trigger("reposition");callback.apply(self);return methods.isInFocus.apply(self,[data.degrees]);},setBearing:function(bearing,callback){callback=callback||function(){};bearing=methods.normalize.apply(null,[bearing]);this.each(function(){var diff,lowerValue,higherValue,self=$(this),data=self.data("roundabout"),oldBearing=data.bearing;data.bearing=bearing;self.trigger("bearingSet");methods.updateChildren.apply(self);diff=Math.abs(oldBearing-bearing);if(!data.animating||diff>180){return;}
diff=Math.abs(oldBearing-bearing);self.children(data.childSelector).each(function(i){var eventType;if(methods.isChildBackDegreesBetween.apply($(this),[bearing,oldBearing])){eventType=(oldBearing>bearing)?"Clockwise":"Counterclockwise";$(this).trigger("move"+eventType+"ThroughBack");}});});callback.apply(this);return this;},adjustBearing:function(delta,callback){callback=callback||function(){};if(delta===0){return this;}
this.each(function(){methods.setBearing.apply($(this),[$(this).data("roundabout").bearing+delta]);});callback.apply(this);return this;},setTilt:function(tilt,callback){callback=callback||function(){};this.each(function(){$(this).data("roundabout").tilt=tilt;methods.updateChildren.apply($(this));});callback.apply(this);return this;},adjustTilt:function(delta,callback){callback=callback||function(){};this.each(function(){methods.setTilt.apply($(this),[$(this).data("roundabout").tilt+delta]);});callback.apply(this);return this;},animateToBearing:function(bearing,duration,easing,passedData,callback){var now=(new Date()).getTime();callback=callback||function(){};if($.isFunction(passedData)){callback=passedData;passedData=null;}else if($.isFunction(easing)){callback=easing;easing=null;}else if($.isFunction(duration)){callback=duration;duration=null;}
this.each(function(){var timer,easingFn,newBearing,self=$(this),data=self.data("roundabout"),thisDuration=(!duration)?data.duration:duration,thisEasingType=(easing)?easing:data.easing||"swing";if(!passedData){passedData={timerStart:now,start:data.bearing,totalTime:thisDuration};}
timer=now-passedData.timerStart;if(data.stopAnimation){methods.allowAnimation.apply(self);data.animating=false;return;}
if(timer<thisDuration){if(!data.animating){self.trigger("animationStart");}
data.animating=true;if(typeof $.easing.def==="string"){easingFn=$.easing[thisEasingType]||$.easing[$.easing.def];newBearing=easingFn(null,timer,passedData.start,bearing-passedData.start,passedData.totalTime);}else{newBearing=$.easing[thisEasingType]((timer/passedData.totalTime),timer,passedData.start,bearing-passedData.start,passedData.totalTime);}
newBearing=methods.normalize.apply(null,[newBearing]);data.dragBearing=newBearing;methods.setBearing.apply(self,[newBearing,function(){setTimeout(function(){methods.animateToBearing.apply(self,[bearing,thisDuration,thisEasingType,passedData,callback]);},0);}]);}else{if(data.animating){self.trigger("animationEnd");}
data.lastAnimationStep=true;bearing=methods.normalize.apply(null,[bearing]);methods.setBearing.apply(self,[bearing]);data.animating=false;data.lastAnimationStep=false;data.dragBearing=bearing;callback.apply(self);}});return this;},animateToNearbyChild:function(passedArgs,which){var duration=passedArgs[0],easing=passedArgs[1],callback=passedArgs[2]||function(){};if($.isFunction(easing)){callback=easing;easing=null;}else if($.isFunction(duration)){callback=duration;duration=null;}
return this.each(function(){var j,range,self=$(this),data=self.data("roundabout"),bearing=(!data.reflect)?data.bearing%360:data.bearing,length=self.children(data.childSelector).length;if(!data.animating){if((data.reflect&&which==="previous")||(!data.reflect&&which==="next")){bearing=(Math.abs(bearing)<data.floatComparisonThreshold)?360:bearing;for(j=0;j<length;j+=1){range={lower:(data.period*j),upper:(data.period*(j+1))};range.upper=(j===length-1)?360:range.upper;if(bearing<=Math.ceil(range.upper)&&bearing>=Math.floor(range.lower)){if(length===2&&bearing===360){methods.animateToDelta.apply(self,[-180,duration,easing,callback]);}else{methods.animateBearingToFocus.apply(self,[range.lower,duration,easing,callback]);}
break;}}}else{bearing=(Math.abs(bearing)<data.floatComparisonThreshold||360-Math.abs(bearing)<data.floatComparisonThreshold)?0:bearing;for(j=length-1;j>=0;j-=1){range={lower:data.period*j,upper:data.period*(j+1)};range.upper=(j===length-1)?360:range.upper;if(bearing>=Math.floor(range.lower)&&bearing<Math.ceil(range.upper)){if(length===2&&bearing===360){methods.animateToDelta.apply(self,[180,duration,easing,callback]);}else{methods.animateBearingToFocus.apply(self,[range.upper,duration,easing,callback]);}
break;}}}}});},animateToNearestChild:function(duration,easing,callback){callback=callback||function(){};if($.isFunction(easing)){callback=easing;easing=null;}else if($.isFunction(duration)){callback=duration;duration=null;}
return this.each(function(){var nearest=methods.getNearestChild.apply($(this));methods.animateToChild.apply($(this),[nearest,duration,easing,callback]);});},animateToChild:function(childPosition,duration,easing,callback){callback=callback||function(){};if($.isFunction(easing)){callback=easing;easing=null;}else if($.isFunction(duration)){callback=duration;duration=null;}
return this.each(function(){var child,self=$(this),data=self.data("roundabout");if(data.childInFocus!==childPosition&&!data.animating){child=self.children(data.childSelector).eq(childPosition);methods.animateBearingToFocus.apply(self,[child.data("roundabout").degrees,duration,easing,callback]);}});},animateToNextChild:function(duration,easing,callback){return methods.animateToNearbyChild.apply(this,[arguments,"next"]);},animateToPreviousChild:function(duration,easing,callback){return methods.animateToNearbyChild.apply(this,[arguments,"previous"]);},animateToDelta:function(degrees,duration,easing,callback){callback=callback||function(){};if($.isFunction(easing)){callback=easing;easing=null;}else if($.isFunction(duration)){callback=duration;duration=null;}
return this.each(function(){var delta=$(this).data("roundabout").bearing+degrees;methods.animateToBearing.apply($(this),[delta,duration,easing,callback]);});},animateBearingToFocus:function(degrees,duration,easing,callback){callback=callback||function(){};if($.isFunction(easing)){callback=easing;easing=null;}else if($.isFunction(duration)){callback=duration;duration=null;}
return this.each(function(){var delta=$(this).data("roundabout").bearing-degrees;delta=(Math.abs(360-delta)<Math.abs(delta))?360-delta:-delta;delta=(delta>180)?-(360-delta):delta;if(delta!==0){methods.animateToDelta.apply($(this),[delta,duration,easing,callback]);}});},stopAnimation:function(){return this.each(function(){$(this).data("roundabout").stopAnimation=true;});},allowAnimation:function(){return this.each(function(){$(this).data("roundabout").stopAnimation=false;});},startAutoplay:function(callback){return this.each(function(){var self=$(this),data=self.data("roundabout");callback=callback||data.autoplayCallback||function(){};clearInterval(data.autoplayInterval);data.autoplayInterval=setInterval(function(){methods.animateToNextChild.apply(self,[callback]);},data.autoplayDuration);data.autoplayIsRunning=true;self.trigger("autoplayStart");});},stopAutoplay:function(){return this.each(function(){clearInterval($(this).data("roundabout").autoplayInterval);$(this).data("roundabout").autoplayInterval=null;$(this).data("roundabout").autoplayIsRunning=false;$(this).trigger("autoplayStop");});},toggleAutoplay:function(callback){return this.each(function(){var self=$(this),data=self.data("roundabout");callback=callback||data.autoplayCallback||function(){};if(!methods.isAutoplaying.apply($(this))){methods.startAutoplay.apply($(this),[callback]);}else{methods.stopAutoplay.apply($(this),[callback]);}});},isAutoplaying:function(){return(this.data("roundabout").autoplayIsRunning);},changeAutoplayDuration:function(duration){return this.each(function(){var self=$(this),data=self.data("roundabout");data.autoplayDuration=duration;if(methods.isAutoplaying.apply(self)){methods.stopAutoplay.apply(self);setTimeout(function(){methods.startAutoplay.apply(self);},10);}});},normalize:function(degrees){var inRange=degrees%360.0;return(inRange<0)?360+inRange:inRange;},normalizeRad:function(radians){while(radians<0){radians+=(Math.PI*2);}
while(radians>(Math.PI*2)){radians-=(Math.PI*2);}
return radians;},isChildBackDegreesBetween:function(value1,value2){var backDegrees=$(this).data("roundabout").backDegrees;if(value1>value2){return(backDegrees>=value2&&backDegrees<value1);}else{return(backDegrees<value2&&backDegrees>=value1);}},getAnimateToMethod:function(effect){effect=effect.toLowerCase();if(effect==="next"){return"animateToNextChild";}else if(effect==="previous"){return"animateToPreviousChild";}
return"animateToNearestChild";},relayoutChildren:function(){return this.each(function(){var self=$(this),settings=$.extend({},self.data("roundabout"));settings.startingChild=self.data("roundabout").childInFocus;methods.init.apply(self,[settings]);});},getNearestChild:function(){var self=$(this),data=self.data("roundabout"),length=self.children(data.childSelector).length;if(!data.reflect){return((length)-(Math.round(data.bearing/data.period)%length))%length;}else{return(Math.round(data.bearing/data.period)%length);}},degToRad:function(degrees){return methods.normalize.apply(null,[degrees])*Math.PI/180.0;},getPlacement:function(child){var data=this.data("roundabout");return(!data.reflect)?360.0-(data.period*child):data.period*child;},isInFocus:function(degrees){var diff,self=this,data=self.data("roundabout"),bearing=methods.normalize.apply(null,[data.bearing]);degrees=methods.normalize.apply(null,[degrees]);diff=Math.abs(bearing-degrees);return(diff<=data.floatComparisonThreshold||diff>=360-data.floatComparisonThreshold);}};$.fn.roundabout=function(method){if(methods[method]){return methods[method].apply(this,Array.prototype.slice.call(arguments,1));}else if(typeof method==="object"||$.isFunction(method)||!method){return methods.init.apply(this,arguments);}else{$.error("Method "+method+" does not exist for jQuery.roundabout.");}};})(jQuery);


/*================================================
 jQuery jqModal
================================================*/
(function($){$.fn.jqm=function(o){var p={overlay:50,overlayClass:'jqmOverlay',closeClass:'jqmClose',trigger:'.jqModal',ajax:F,ajaxText:'',target:F,modal:F,toTop:F,onShow:F,onHide:F,onLoad:F};return this.each(function(){if(this._jqm)return H[this._jqm].c=$.extend({},H[this._jqm].c,o);s++;this._jqm=s;H[s]={c:$.extend(p,$.jqm.params,o),a:F,w:$(this).addClass('jqmID'+s),s:s};if(p.trigger)$(this).jqmAddTrigger(p.trigger);});};$.fn.jqmAddClose=function(e){return hs(this,e,'jqmHide');};$.fn.jqmAddTrigger=function(e){return hs(this,e,'jqmShow');};$.fn.jqmShow=function(t){return this.each(function(){t=t||window.event;$.jqm.open(this._jqm,t);});};$.fn.jqmHide=function(t){return this.each(function(){t=t||window.event;$.jqm.close(this._jqm,t)});};$.jqm={hash:{},open:function(s,t){var h=H[s],c=h.c,cc='.'+c.closeClass,z=(parseInt(h.w.css('z-index'))),z=(z>0)?z:3000,o=$('<div></div>').css({height:'100%',width:'100%',position:'fixed',left:0,top:0,'z-index':z-1,opacity:c.overlay/100});if(h.a)return F;h.t=t;h.a=true;h.w.css('z-index',z);if(c.modal){if(!A[0])L('bind');A.push(s);}
else if(c.overlay>0)h.w.jqmAddClose(o);else o=F;h.o=(o)?o.addClass(c.overlayClass).prependTo('body'):F;if(ie6){$('html,body').css({height:'100%',width:'100%'});if(o){o=o.css({position:'absolute'})[0];for(var y in{Top:1,Left:1})o.style.setExpression(y.toLowerCase(),"(_=(document.documentElement.scroll"+y+" || document.body.scroll"+y+"))+'px'");}}
if(c.ajax){var r=c.target||h.w,u=c.ajax,r=(typeof r=='string')?$(r,h.w):$(r),u=(u.substr(0,1)=='@')?$(t).attr(u.substring(1)):u;r.html(c.ajaxText).load(u,function(){if(c.onLoad)c.onLoad.call(this,h);if(cc)h.w.jqmAddClose($(cc,h.w));e(h);});}
else if(cc)h.w.jqmAddClose($(cc,h.w));if(c.toTop&&h.o)h.w.before('<span id="jqmP'+h.w[0]._jqm+'"></span>').insertAfter(h.o);(c.onShow)?c.onShow(h):h.w.show();e(h);return F;},close:function(s){var h=H[s];if(!h.a)return F;h.a=F;if(A[0]){A.pop();if(!A[0])L('unbind');}
if(h.c.toTop&&h.o)$('#jqmP'+h.w[0]._jqm).after(h.w).remove();if(h.c.onHide)h.c.onHide(h);else{h.w.hide();if(h.o)h.o.remove();}return F;},params:{}};var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&&($.browser.version=="6.0"),F=false,i=$('<iframe src="javascript:false;document.write(\'\');" class="jqm"></iframe>').css({opacity:0}),e=function(h){if(ie6)if(h.o)h.o.html('<p style="width:100%;height:100%"/>').prepend(i);else if(!$('iframe.jqm',h.w)[0])h.w.prepend(i);f(h);},f=function(h){try{$(':input:visible',h.w)[0].focus();}catch(_){}},L=function(t){$()[t]("keypress",m)[t]("keydown",m)[t]("mousedown",m);},m=function(e){var h=H[A[A.length-1]],r=(!$(e.target).parents('.jqmID'+h.s)[0]);if(r)f(h);return!r;},hs=function(w,t,c){return w.each(function(){var s=this._jqm;$(t).each(function(){if(!this[c]){this[c]=[];$(this).click(function(){for(var i in{jqmShow:1,jqmHide:1})for(var s in this[i])if(H[this[i][s]])H[this[i][s]].w[i](this);return F;});}this[c].push(s);});});};})(jQuery);


/*================================================
 Equal Column Height Plugin
================================================*/
function equalHeight(group) {var tallest = 0;group.each(function() {var thisHeight = $(this).height();if(thisHeight > tallest) {tallest = thisHeight;}});group.height(tallest);}


/*================================================
 jQuery DefaultValue
================================================*/
(function(c){c.fn.extend({defaultValue:function(e){if("placeholder"in document.createElement("input"))return!1;return this.each(function(){if(c(this).data("defaultValued"))return!1;var a=c(this),h=a.attr("placeholder"),f={input:a};a.data("defaultValued",!0);var d=function(){var b;if(a.context.nodeName.toLowerCase()=="input")b=c("<input />").attr({type:"text"});else if(a.context.nodeName.toLowerCase()=="textarea")b=c("<textarea />");else throw"DefaultValue only works with input and textareas";b.attr({value:h,
"class":a.attr("class")+" empty",size:a.attr("size"),style:a.attr("style"),tabindex:a.attr("tabindex"),rows:a.attr("rows"),cols:a.attr("cols"),name:"defaultvalue-clone-"+((1+Math.random())*65536|0).toString(16).substring(1)});b.focus(function(){b.hide();a.show();setTimeout(function(){a.focus()},1)});return b}();f.clone=d;d.insertAfter(a);var g=function(){a.val().length<=0?(d.show(),a.hide()):(d.hide(),a.show().trigger("click"))};a.bind("blur",g);g();e&&e(f)})}})})(jQuery);


/*================================================
 Stylish Select Plugin
================================================*/
/**
* Stylish Select 0.4.5 - jQuery plugin to replace a select drop down box with a stylable unordered list
* http://github.com/sko77sun/Stylish-Select
* Requires: jQuery 1.3 or newer
* Contributions from Justin Beasley: http://www.harvest.org/ Anatoly Ressin: http://www.artazor.lv/ Wilfred Hughes: https://github.com/Wilfred
* Dual licensed under the MIT and GPL licenses.
*/
(function(a){a("html").addClass("stylish-select");if(!Array.prototype.indexOf){Array.prototype.indexOf=function(d){if(this===void 0||this===null){throw new TypeError()}var e=Object(this);var b=e.length>>>0;if(b===0){return -1}var f=0;if(arguments.length>0){f=Number(arguments[1]);if(f!==f){f=0}else{if(f!==0&&f!==(1/0)&&f!==-(1/0)){f=(f>0||-1)*Math.floor(Math.abs(f))}}}if(f>=b){return -1}var c=f>=0?f:Math.max(b-Math.abs(f),0);for(;c<b;c++){if(c in e&&e[c]===d){return c}}return -1}}a.fn.extend({getSetSSValue:function(b){if(b){a(this).val(b).change();return this}else{return a(this).find(":selected").val()}},resetSS:function(){var b=a(this).data("ssOpts");$this=a(this);$this.next().remove();$this.unbind(".sSelect").sSelect(b)}});a.fn.sSelect=function(b){return this.each(function(){var l={defaultText:"Please select",animationSpeed:0,ddMaxHeight:"",containerClass:""};var o=a.extend(l,b),f=a(this),m=a('<div class="selectedTxt"></div>'),u=a('<div class="newListSelected '+o.containerClass+'"></div>'),k=a('<div class="SSContainerDivWrapper" style="visibility:hidden;"></div>'),C=a('<ul class="newList"></ul>'),w=-1,e=-1,j=-1,p=[],z=false,y=false,A;a(this).data("ssOpts",b);u.insertAfter(f);u.attr("tabindex",f.attr("tabindex")||"0");m.prependTo(u);C.appendTo(u);C.wrap(k);k=C.parent();f.hide();m.data("ssReRender",!m.is(":visible"));if(f.children("optgroup").length==0){f.children().each(function(E){var F=a(this).html();var D=a(this).val();p.push(F.charAt(0).toLowerCase());if(a(this).attr("selected")=="selected"||a(this).attr("selected")==true){o.defaultText=F;e=j=E}C.append(a('<li><a href="JavaScript:void(0);">'+F+"</a></li>").data("key",D))});A=C.children().children()}else{f.children("optgroup").each(function(){var D=a(this).attr("label"),F=a('<li class="newListOptionTitle">'+D+"</li>"),E=a("<ul></ul>");F.appendTo(C);E.appendTo(F);a(this).children().each(function(){++w;var H=a(this).html();var G=a(this).val();p.push(H.charAt(0).toLowerCase());if(a(this).attr("selected")=="selected"||a(this).attr("selected")==true){o.defaultText=H;e=j=w}E.append(a('<li><a href="JavaScript:void(0);">'+H+"</a></li>").data("key",G))})});A=C.find("ul li a")}var r=C.height(),q=u.height(),B=A.length;if(e!=-1){i(e)}else{m.text(o.defaultText)}function s(){var E=u.offset().top,D=a(window).height(),F=a(window).scrollTop();if(r>parseInt(o.ddMaxHeight)){r=parseInt(o.ddMaxHeight)}E=E-F;if(E+r>=D){C.css({height:r});k.css({top:"-"+r+"px",height:r});f.onTop=true}else{C.css({height:r});k.css({top:q+"px",height:r});f.onTop=false}}s();a(window).bind("resize.sSelect scroll.sSelect",s);function v(){u.css("position","relative")}function d(){u.css({position:"static"})}m.bind("click.sSelect",function(D){D.stopPropagation();if(a(this).data("ssReRender")){r=C.height("").height();k.height("");q=u.height();a(this).data("ssReRender",false);s()}a(".SSContainerDivWrapper").not(a(this).next()).hide().parent().css("position","static").removeClass("newListSelFocus");k.toggle();v();if(e==-1){e=0}A.eq(e).focus()});function c(E,D){if(E==true){j=e;f.change()}if(D==true){e=j;i(e)}k.hide();d()}A.bind("click.sSelect",function(E){var D=a(E.target);e=A.index(D);y=true;i(e,true);c()});A.bind("mouseenter.sSelect",function(E){var D=a(E.target);D.addClass("newListHover")}).bind("mouseleave.sSelect",function(E){var D=a(E.target);D.removeClass("newListHover")});function i(D,H){if(D==-1){m.text(o.defaultText);A.removeClass("hiLite")}else{A.removeClass("hiLite").eq(D).addClass("hiLite");var G=A.eq(D).text(),F=A.eq(D).parent().data("key");try{f.val(F)}catch(E){f[0].selectedIndex=D}m.text(G);if(H==true){j=D;f.change()}if(k.is(":visible")){A.eq(D).focus()}}}f.bind("change.sSelect",function(E){var D=a(E.target);if(y==true){y=false;return false}var F=D.find(":selected");e=D.find("option").index(F);i(e)});function t(D){a(D).unbind("keydown.sSelect").bind("keydown.sSelect",function(G){var F=G.which;y=true;switch(F){case 40:case 39:x();return false;break;case 38:case 37:n();return false;break;case 33:case 36:h();return false;break;case 34:case 35:g();return false;break;case 13:case 27:c(true);return false;break}keyPressed=String.fromCharCode(F).toLowerCase();var E=p.indexOf(keyPressed);if(typeof E!="undefined"){++e;e=p.indexOf(keyPressed,e);if(e==-1||e==null||z!=keyPressed){e=p.indexOf(keyPressed)}i(e);z=keyPressed;return false}})}function x(){if(e<(B-1)){++e;i(e)}}function n(){if(e>0){--e;i(e)}}function h(){e=0;i(e)}function g(){e=B-1;i(e)}u.bind("click.sSelect",function(D){D.stopPropagation();t(this)});u.bind("focus.sSelect",function(){a(this).addClass("newListSelFocus");t(this)});u.bind("blur.sSelect",function(){a(this).removeClass("newListSelFocus")});a(document).bind("click.sSelect",function(){u.removeClass("newListSelFocus");if(k.is(":visible")){c(false,true)}else{c(false)}});m.bind("mouseenter.sSelect",function(E){var D=a(E.target);D.parent().addClass("newListSelHover")}).bind("mouseleave.sSelect",function(E){var D=a(E.target);D.parent().removeClass("newListSelHover")});k.css({left:"0",display:"none",visibility:"visible"})})}})(jQuery);


/*================================================
 jQuery Tools Tabs
================================================*/
/*!
 * jQuery Tools v1.2.6 - The missing UI library for the Web
 * tabs/tabs.js
 * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
 * http://flowplayer.org/tools/
 * 
 */
(function(a){a.tools=a.tools||{version:"v1.2.6"},a.tools.tabs={conf:{tabs:"a",current:"current",onBeforeClick:null,onClick:null,effect:"default",initialIndex:0,event:"click",rotate:!1,slideUpSpeed:400,slideDownSpeed:400,history:!1},addEffect:function(a,c){b[a]=c}};var b={"default":function(a,b){this.getPanes().hide().eq(a).show(),b.call()},fade:function(a,b){var c=this.getConf(),d=c.fadeOutSpeed,e=this.getPanes();d?e.fadeOut(d):e.hide(),e.eq(a).fadeIn(c.fadeInSpeed,b)},slide:function(a,b){var c=this.getConf();this.getPanes().slideUp(c.slideUpSpeed),this.getPanes().eq(a).slideDown(c.slideDownSpeed,b)},ajax:function(a,b){this.getPanes().eq(0).load(this.getTabs().eq(a).attr("href"),b)}},c,d;a.tools.tabs.addEffect("horizontal",function(b,e){if(!c){var f=this.getPanes().eq(b),g=this.getCurrentPane();d||(d=this.getPanes().eq(0).width()),c=!0,f.show(),g.animate({width:0},{step:function(a){f.css("width",d-a)},complete:function(){a(this).hide(),e.call(),c=!1}}),g.length||(e.call(),c=!1)}});function e(c,d,e){var f=this,g=c.add(this),h=c.find(e.tabs),i=d.jquery?d:c.children(d),j;h.length||(h=c.children()),i.length||(i=c.parent().find(d)),i.length||(i=a(d)),a.extend(this,{click:function(c,d){var i=h.eq(c);typeof c=="string"&&c.replace("#","")&&(i=h.filter("[href*="+c.replace("#","")+"]"),c=Math.max(h.index(i),0));if(e.rotate){var k=h.length-1;if(c<0)return f.click(k,d);if(c>k)return f.click(0,d)}if(!i.length){if(j>=0)return f;c=e.initialIndex,i=h.eq(c)}if(c===j)return f;d=d||a.Event(),d.type="onBeforeClick",g.trigger(d,[c]);if(!d.isDefaultPrevented()){b[e.effect].call(f,c,function(){j=c,d.type="onClick",g.trigger(d,[c])}),h.removeClass(e.current),i.addClass(e.current);return f}},getConf:function(){return e},getTabs:function(){return h},getPanes:function(){return i},getCurrentPane:function(){return i.eq(j)},getCurrentTab:function(){return h.eq(j)},getIndex:function(){return j},next:function(){return f.click(j+1)},prev:function(){return f.click(j-1)},destroy:function(){h.unbind(e.event).removeClass(e.current),i.find("a[href^=#]").unbind("click.T");return f}}),a.each("onBeforeClick,onClick".split(","),function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}}),e.history&&a.fn.history&&(a.tools.history.init(h),e.event="history"),h.each(function(b){a(this).bind(e.event,function(a){f.click(b,a);return a.preventDefault()})}),i.find("a[href^=#]").bind("click.T",function(b){f.click(a(this).attr("href"),b)}),location.hash&&e.tabs=="a"&&c.find("[href="+location.hash+"]").length?f.click(location.hash):(e.initialIndex===0||e.initialIndex>0)&&f.click(e.initialIndex)}a.fn.tabs=function(b,c){var d=this.data("tabs");d&&(d.destroy(),this.removeData("tabs")),a.isFunction(c)&&(c={onBeforeClick:c}),c=a.extend({},a.tools.tabs.conf,c),this.each(function(){d=new e(a(this),b,c),a(this).data("tabs",d)});return c.api?d:this}})(jQuery);


/*================================================
 jCarousel
================================================*/
/*!jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */
(function(g){var q={vertical:!1,rtl:!1,start:1,offset:1,size:null,scroll:3,visible:null,animation:"normal",easing:"swing",auto:0,wrap:null,initCallback:null,setupCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,animationStepCallback:null,buttonNextHTML:"<div></div>",buttonPrevHTML:"<div></div>",buttonNextEvent:"click",buttonPrevEvent:"click", buttonNextCallback:null,buttonPrevCallback:null,itemFallbackDimension:null},m=!1;g(window).bind("load.jcarousel",function(){m=!0});g.jcarousel=function(a,c){this.options=g.extend({},q,c||{});this.autoStopped=this.locked=!1;this.buttonPrevState=this.buttonNextState=this.buttonPrev=this.buttonNext=this.list=this.clip=this.container=null;if(!c||c.rtl===void 0)this.options.rtl=(g(a).attr("dir")||g("html").attr("dir")||"").toLowerCase()=="rtl";this.wh=!this.options.vertical?"width":"height";this.lt=!this.options.vertical? this.options.rtl?"right":"left":"top";for(var b="",d=a.className.split(" "),f=0;f<d.length;f++)if(d[f].indexOf("jcarousel-skin")!=-1){g(a).removeClass(d[f]);b=d[f];break}a.nodeName.toUpperCase()=="UL"||a.nodeName.toUpperCase()=="OL"?(this.list=g(a),this.clip=this.list.parents(".jcarousel-clip"),this.container=this.list.parents(".jcarousel-container")):(this.container=g(a),this.list=this.container.find("ul,ol").eq(0),this.clip=this.container.find(".jcarousel-clip"));if(this.clip.size()===0)this.clip= this.list.wrap("<div></div>").parent();if(this.container.size()===0)this.container=this.clip.wrap("<div></div>").parent();b!==""&&this.container.parent()[0].className.indexOf("jcarousel-skin")==-1&&this.container.wrap('<div class=" '+b+'"></div>');this.buttonPrev=g(".jcarousel-prev",this.container);if(this.buttonPrev.size()===0&&this.options.buttonPrevHTML!==null)this.buttonPrev=g(this.options.buttonPrevHTML).appendTo(this.container);this.buttonPrev.addClass(this.className("jcarousel-prev"));this.buttonNext= g(".jcarousel-next",this.container);if(this.buttonNext.size()===0&&this.options.buttonNextHTML!==null)this.buttonNext=g(this.options.buttonNextHTML).appendTo(this.container);this.buttonNext.addClass(this.className("jcarousel-next"));this.clip.addClass(this.className("jcarousel-clip")).css({position:"relative"});this.list.addClass(this.className("jcarousel-list")).css({overflow:"hidden",position:"relative",top:0,margin:0,padding:0}).css(this.options.rtl?"right":"left",0);this.container.addClass(this.className("jcarousel-container")).css({position:"relative"}); !this.options.vertical&&this.options.rtl&&this.container.addClass("jcarousel-direction-rtl").attr("dir","rtl");var j=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null,b=this.list.children("li"),e=this;if(b.size()>0){var h=0,i=this.options.offset;b.each(function(){e.format(this,i++);h+=e.dimension(this,j)});this.list.css(this.wh,h+100+"px");if(!c||c.size===void 0)this.options.size=b.size()}this.container.css("display","block");this.buttonNext.css("display","block");this.buttonPrev.css("display", "block");this.funcNext=function(){e.next()};this.funcPrev=function(){e.prev()};this.funcResize=function(){e.resizeTimer&&clearTimeout(e.resizeTimer);e.resizeTimer=setTimeout(function(){e.reload()},100)};this.options.initCallback!==null&&this.options.initCallback(this,"init");!m&&g.browser.safari?(this.buttons(!1,!1),g(window).bind("load.jcarousel",function(){e.setup()})):this.setup()};var f=g.jcarousel;f.fn=f.prototype={jcarousel:"0.2.8"};f.fn.extend=f.extend=g.extend;f.fn.extend({setup:function(){this.prevLast= this.prevFirst=this.last=this.first=null;this.animating=!1;this.tail=this.resizeTimer=this.timer=null;this.inTail=!1;if(!this.locked){this.list.css(this.lt,this.pos(this.options.offset)+"px");var a=this.pos(this.options.start,!0);this.prevFirst=this.prevLast=null;this.animate(a,!1);g(window).unbind("resize.jcarousel",this.funcResize).bind("resize.jcarousel",this.funcResize);this.options.setupCallback!==null&&this.options.setupCallback(this)}},reset:function(){this.list.empty();this.list.css(this.lt, "0px");this.list.css(this.wh,"10px");this.options.initCallback!==null&&this.options.initCallback(this,"reset");this.setup()},reload:function(){this.tail!==null&&this.inTail&&this.list.css(this.lt,f.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=!1;this.options.reloadCallback!==null&&this.options.reloadCallback(this);if(this.options.visible!==null){var a=this,c=Math.ceil(this.clipping()/this.options.visible),b=0,d=0;this.list.children("li").each(function(f){b+=a.dimension(this, c);f+1<a.first&&(d=b)});this.list.css(this.wh,b+"px");this.list.css(this.lt,-d+"px")}this.scroll(this.first,!1)},lock:function(){this.locked=!0;this.buttons()},unlock:function(){this.locked=!1;this.buttons()},size:function(a){if(a!==void 0)this.options.size=a,this.locked||this.buttons();return this.options.size},has:function(a,c){if(c===void 0||!c)c=a;if(this.options.size!==null&&c>this.options.size)c=this.options.size;for(var b=a;b<=c;b++){var d=this.get(b);if(!d.length||d.hasClass("jcarousel-item-placeholder"))return!1}return!0}, get:function(a){return g(">.jcarousel-item-"+a,this.list)},add:function(a,c){var b=this.get(a),d=0,p=g(c);if(b.length===0)for(var j,e=f.intval(a),b=this.create(a);;){if(j=this.get(--e),e<=0||j.length){e<=0?this.list.prepend(b):j.after(b);break}}else d=this.dimension(b);p.get(0).nodeName.toUpperCase()=="LI"?(b.replaceWith(p),b=p):b.empty().append(c);this.format(b.removeClass(this.className("jcarousel-item-placeholder")),a);p=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible): null;d=this.dimension(b,p)-d;a>0&&a<this.first&&this.list.css(this.lt,f.intval(this.list.css(this.lt))-d+"px");this.list.css(this.wh,f.intval(this.list.css(this.wh))+d+"px");return b},remove:function(a){var c=this.get(a);if(c.length&&!(a>=this.first&&a<=this.last)){var b=this.dimension(c);a<this.first&&this.list.css(this.lt,f.intval(this.list.css(this.lt))+b+"px");c.remove();this.list.css(this.wh,f.intval(this.list.css(this.wh))-b+"px")}},next:function(){this.tail!==null&&!this.inTail?this.scrollTail(!1): this.scroll((this.options.wrap=="both"||this.options.wrap=="last")&&this.options.size!==null&&this.last==this.options.size?1:this.first+this.options.scroll)},prev:function(){this.tail!==null&&this.inTail?this.scrollTail(!0):this.scroll((this.options.wrap=="both"||this.options.wrap=="first")&&this.options.size!==null&&this.first==1?this.options.size:this.first-this.options.scroll)},scrollTail:function(a){if(!this.locked&&!this.animating&&this.tail){this.pauseAuto();var c=f.intval(this.list.css(this.lt)), c=!a?c-this.tail:c+this.tail;this.inTail=!a;this.prevFirst=this.first;this.prevLast=this.last;this.animate(c)}},scroll:function(a,c){!this.locked&&!this.animating&&(this.pauseAuto(),this.animate(this.pos(a),c))},pos:function(a,c){var b=f.intval(this.list.css(this.lt));if(this.locked||this.animating)return b;this.options.wrap!="circular"&&(a=a<1?1:this.options.size&&a>this.options.size?this.options.size:a);for(var d=this.first>a,g=this.options.wrap!="circular"&&this.first<=1?1:this.first,j=d?this.get(g): this.get(this.last),e=d?g:g-1,h=null,i=0,k=!1,l=0;d?--e>=a:++e<a;){h=this.get(e);k=!h.length;if(h.length===0&&(h=this.create(e).addClass(this.className("jcarousel-item-placeholder")),j[d?"before":"after"](h),this.first!==null&&this.options.wrap=="circular"&&this.options.size!==null&&(e<=0||e>this.options.size)))j=this.get(this.index(e)),j.length&&(h=this.add(e,j.clone(!0)));j=h;l=this.dimension(h);k&&(i+=l);if(this.first!==null&&(this.options.wrap=="circular"||e>=1&&(this.options.size===null||e<= this.options.size)))b=d?b+l:b-l}for(var g=this.clipping(),m=[],o=0,n=0,j=this.get(a-1),e=a;++o;){h=this.get(e);k=!h.length;if(h.length===0){h=this.create(e).addClass(this.className("jcarousel-item-placeholder"));if(j.length===0)this.list.prepend(h);else j[d?"before":"after"](h);if(this.first!==null&&this.options.wrap=="circular"&&this.options.size!==null&&(e<=0||e>this.options.size))j=this.get(this.index(e)),j.length&&(h=this.add(e,j.clone(!0)))}j=h;l=this.dimension(h);if(l===0)throw Error("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting..."); this.options.wrap!="circular"&&this.options.size!==null&&e>this.options.size?m.push(h):k&&(i+=l);n+=l;if(n>=g)break;e++}for(h=0;h<m.length;h++)m[h].remove();i>0&&(this.list.css(this.wh,this.dimension(this.list)+i+"px"),d&&(b-=i,this.list.css(this.lt,f.intval(this.list.css(this.lt))-i+"px")));i=a+o-1;if(this.options.wrap!="circular"&&this.options.size&&i>this.options.size)i=this.options.size;if(e>i){o=0;e=i;for(n=0;++o;){h=this.get(e--);if(!h.length)break;n+=this.dimension(h);if(n>=g)break}}e=i-o+ 1;this.options.wrap!="circular"&&e<1&&(e=1);if(this.inTail&&d)b+=this.tail,this.inTail=!1;this.tail=null;if(this.options.wrap!="circular"&&i==this.options.size&&i-o+1>=1&&(d=f.intval(this.get(i).css(!this.options.vertical?"marginRight":"marginBottom")),n-d>g))this.tail=n-g-d;if(c&&a===this.options.size&&this.tail)b-=this.tail,this.inTail=!0;for(;a-- >e;)b+=this.dimension(this.get(a));this.prevFirst=this.first;this.prevLast=this.last;this.first=e;this.last=i;return b},animate:function(a,c){if(!this.locked&& !this.animating){this.animating=!0;var b=this,d=function(){b.animating=!1;a===0&&b.list.css(b.lt,0);!b.autoStopped&&(b.options.wrap=="circular"||b.options.wrap=="both"||b.options.wrap=="last"||b.options.size===null||b.last<b.options.size||b.last==b.options.size&&b.tail!==null&&!b.inTail)&&b.startAuto();b.buttons();b.notify("onAfterAnimation");if(b.options.wrap=="circular"&&b.options.size!==null)for(var c=b.prevFirst;c<=b.prevLast;c++)c!==null&&!(c>=b.first&&c<=b.last)&&(c<1||c>b.options.size)&&b.remove(c)}; this.notify("onBeforeAnimation");if(!this.options.animation||c===!1)this.list.css(this.lt,a+"px"),d();else{var f=!this.options.vertical?this.options.rtl?{right:a}:{left:a}:{top:a},d={duration:this.options.animation,easing:this.options.easing,complete:d};if(g.isFunction(this.options.animationStepCallback))d.step=this.options.animationStepCallback;this.list.animate(f,d)}}},startAuto:function(a){if(a!==void 0)this.options.auto=a;if(this.options.auto===0)return this.stopAuto();if(this.timer===null){this.autoStopped= !1;var c=this;this.timer=window.setTimeout(function(){c.next()},this.options.auto*1E3)}},stopAuto:function(){this.pauseAuto();this.autoStopped=!0},pauseAuto:function(){if(this.timer!==null)window.clearTimeout(this.timer),this.timer=null},buttons:function(a,c){if(a==null&&(a=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="first"||this.options.size===null||this.last<this.options.size),!this.locked&&(!this.options.wrap||this.options.wrap=="first")&&this.options.size!==null&& this.last>=this.options.size))a=this.tail!==null&&!this.inTail;if(c==null&&(c=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="last"||this.first>1),!this.locked&&(!this.options.wrap||this.options.wrap=="last")&&this.options.size!==null&&this.first==1))c=this.tail!==null&&this.inTail;var b=this;this.buttonNext.size()>0?(this.buttonNext.unbind(this.options.buttonNextEvent+".jcarousel",this.funcNext),a&&this.buttonNext.bind(this.options.buttonNextEvent+".jcarousel",this.funcNext), this.buttonNext[a?"removeClass":"addClass"](this.className("jcarousel-next-disabled")).attr("disabled",a?!1:!0),this.options.buttonNextCallback!==null&&this.buttonNext.data("jcarouselstate")!=a&&this.buttonNext.each(function(){b.options.buttonNextCallback(b,this,a)}).data("jcarouselstate",a)):this.options.buttonNextCallback!==null&&this.buttonNextState!=a&&this.options.buttonNextCallback(b,null,a);this.buttonPrev.size()>0?(this.buttonPrev.unbind(this.options.buttonPrevEvent+".jcarousel",this.funcPrev), c&&this.buttonPrev.bind(this.options.buttonPrevEvent+".jcarousel",this.funcPrev),this.buttonPrev[c?"removeClass":"addClass"](this.className("jcarousel-prev-disabled")).attr("disabled",c?!1:!0),this.options.buttonPrevCallback!==null&&this.buttonPrev.data("jcarouselstate")!=c&&this.buttonPrev.each(function(){b.options.buttonPrevCallback(b,this,c)}).data("jcarouselstate",c)):this.options.buttonPrevCallback!==null&&this.buttonPrevState!=c&&this.options.buttonPrevCallback(b,null,c);this.buttonNextState= a;this.buttonPrevState=c},notify:function(a){var c=this.prevFirst===null?"init":this.prevFirst<this.first?"next":"prev";this.callback("itemLoadCallback",a,c);this.prevFirst!==this.first&&(this.callback("itemFirstInCallback",a,c,this.first),this.callback("itemFirstOutCallback",a,c,this.prevFirst));this.prevLast!==this.last&&(this.callback("itemLastInCallback",a,c,this.last),this.callback("itemLastOutCallback",a,c,this.prevLast));this.callback("itemVisibleInCallback",a,c,this.first,this.last,this.prevFirst, this.prevLast);this.callback("itemVisibleOutCallback",a,c,this.prevFirst,this.prevLast,this.first,this.last)},callback:function(a,c,b,d,f,j,e){if(!(this.options[a]==null||typeof this.options[a]!="object"&&c!="onAfterAnimation")){var h=typeof this.options[a]=="object"?this.options[a][c]:this.options[a];if(g.isFunction(h)){var i=this;if(d===void 0)h(i,b,c);else if(f===void 0)this.get(d).each(function(){h(i,this,d,b,c)});else for(var a=function(a){i.get(a).each(function(){h(i,this,a,b,c)})},k=d;k<=f;k++)k!== null&&!(k>=j&&k<=e)&&a(k)}}},create:function(a){return this.format("<li></li>",a)},format:function(a,c){for(var a=g(a),b=a.get(0).className.split(" "),d=0;d<b.length;d++)b[d].indexOf("jcarousel-")!=-1&&a.removeClass(b[d]);a.addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-"+c)).css({"float":this.options.rtl?"right":"left","list-style":"none"}).attr("jcarouselindex",c);return a},className:function(a){return a+" "+a+(!this.options.vertical?"-horizontal":"-vertical")}, dimension:function(a,c){var b=g(a);if(c==null)return!this.options.vertical?b.outerWidth(!0)||f.intval(this.options.itemFallbackDimension):b.outerHeight(!0)||f.intval(this.options.itemFallbackDimension);else{var d=!this.options.vertical?c-f.intval(b.css("marginLeft"))-f.intval(b.css("marginRight")):c-f.intval(b.css("marginTop"))-f.intval(b.css("marginBottom"));g(b).css(this.wh,d+"px");return this.dimension(b)}},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-f.intval(this.clip.css("borderLeftWidth"))- f.intval(this.clip.css("borderRightWidth")):this.clip[0].offsetHeight-f.intval(this.clip.css("borderTopWidth"))-f.intval(this.clip.css("borderBottomWidth"))},index:function(a,c){if(c==null)c=this.options.size;return Math.round(((a-1)/c-Math.floor((a-1)/c))*c)+1}});f.extend({defaults:function(a){return g.extend(q,a||{})},intval:function(a){a=parseInt(a,10);return isNaN(a)?0:a},windowLoaded:function(){m=!0}});g.fn.jcarousel=function(a){if(typeof a=="string"){var c=g(this).data("jcarousel"),b=Array.prototype.slice.call(arguments, 1);return c[a].apply(c,b)}else return this.each(function(){var b=g(this).data("jcarousel");b?(a&&g.extend(b.options,a),b.reload()):g(this).data("jcarousel",new f(this,a))})}})(jQuery);


/*================================================
 Browser Detection
================================================*/
(function(){var BrowserDetect={init:function(){this.browser=this.searchString(this.dataBrowser)||"An unknown browser";this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"an unknown version";this.OS=this.searchString(this.dataOS)||"an unknown OS";},searchString:function(data){for(var i=0;i<data.length;i++){var dataString=data[i].string;var dataProp=data[i].prop;this.versionSearchString=data[i].versionSearch||data[i].identity;if(dataString){if(dataString.indexOf(data[i].subString)!=-1)
return data[i].identity;}
else if(dataProp)
return data[i].identity;}},searchVersion:function(dataString){var index=dataString.indexOf(this.versionSearchString);if(index==-1)return;return parseFloat(dataString.substring(index+this.versionSearchString.length+1));},dataBrowser:[{string:navigator.userAgent,subString:"Chrome",identity:"Chrome"},{string:navigator.userAgent,subString:"OmniWeb",versionSearch:"OmniWeb/",identity:"OmniWeb"},{string:navigator.vendor,subString:"Apple",identity:"Safari",versionSearch:"Version"},{prop:window.opera,identity:"Opera"},{string:navigator.vendor,subString:"iCab",identity:"iCab"},{string:navigator.vendor,subString:"KDE",identity:"Konqueror"},{string:navigator.userAgent,subString:"Firefox",identity:"Firefox"},{string:navigator.vendor,subString:"Camino",identity:"Camino"},{string:navigator.userAgent,subString:"Netscape",identity:"Netscape"},{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"},{string:navigator.userAgent,subString:"Gecko",identity:"Mozilla",versionSearch:"rv"},{string:navigator.userAgent,subString:"Mozilla",identity:"Netscape",versionSearch:"Mozilla"}],dataOS:[{string:navigator.platform,subString:"Win",identity:"Windows"},{string:navigator.platform,subString:"Mac",identity:"Mac"},{string:navigator.userAgent,subString:"iPhone",identity:"iPhone/iPod"},{string:navigator.platform,subString:"Linux",identity:"Linux"}]};BrowserDetect.init();window.$.client={os:BrowserDetect.OS,browser:BrowserDetect.browser};})();


/*================================================
 Cufon
================================================*/
/*Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());


/*================================================
 Cufon - TradeGothic
================================================*/
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  The digitally encoded machine readable software for producing the
 Typefaces
 * licensed to you is copyrighted (c) 1989, 1990 Adobe Systems.
 All rights
 * reserved. This software is the property of Adobe Systems
 Incorporated and its
 * licensors, and may not be reproduced, used,
 displayed, modified, disclosed, or
 * transferred  without the express
 written approval of Adobe.

 The digitally
 * encoded machine readable outline data for producing
 the Typefaces licensed to
 * you is copyrighted (c) 1981 Linotype AG
 and/or its subsidiaries. All Rights
 * Reserved.
 This data is the property of Linotype AG and/or its subsidiaries
 and
 * may not be reproduced, used, displayed, modified, disclosed or
 transferred
 * without the express written approval of Linotype AG
 and/or its subsidiaries.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"TradeGothic","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-60 -349 360 81.9651","underline-thickness":"18","underline-position":"-36","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"76,-260r-10,172r-32,0r-10,-172r52,0xm76,0r-52,0r0,-51r52,0r0,51","w":100},"\"":{"d":"72,-163r0,-97r39,0r0,97r-39,0xm9,-163r0,-97r39,0r0,97r-39,0","w":119},"#":{"d":"182,-108r0,34r-35,0r-11,74r-34,0r10,-74r-36,0r-10,74r-35,0r10,-74r-34,0r0,-34r39,0r6,-44r-34,0r0,-34r39,0r10,-74r35,0r-11,74r36,0r11,-74r34,0r-10,74r31,0r0,34r-35,0r-7,44r31,0xm123,-152r-36,0r-6,44r35,0","w":200},"$":{"d":"7,-46r31,-28v11,15,28,30,46,34r0,-74v-37,-11,-72,-35,-72,-76v0,-42,32,-68,72,-70r0,-23r28,0r0,23v30,5,51,20,68,38r-28,27v-10,-13,-23,-23,-40,-25r0,66v40,14,76,33,76,82v0,44,-34,71,-76,72r0,41r-28,0r0,-41v-25,0,-59,-22,-77,-46xm84,-162r0,-60v-17,0,-31,10,-31,28v0,16,15,27,31,32xm112,-106r0,66v19,0,32,-13,32,-31v0,-21,-15,-27,-32,-35","w":200},"%":{"d":"77,-260v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm77,-225v-41,0,-35,59,0,59v16,0,30,-14,30,-29v0,-15,-14,-30,-30,-30xm243,-130v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm243,-94v-16,0,-30,14,-30,29v0,15,14,30,30,30v16,0,30,-15,30,-30v0,-15,-14,-29,-30,-29xm71,4r149,-268r31,0r-149,268r-31,0","w":320},"&":{"d":"99,-233v-32,0,-26,49,-8,69v14,-12,31,-24,31,-45v0,-11,-8,-24,-23,-24xm183,-131r39,11v-8,22,-17,44,-30,65v10,7,23,14,36,15r0,44v-25,0,-42,-6,-66,-27v-42,48,-150,31,-150,-45v0,-36,18,-55,44,-72v-14,-21,-21,-37,-21,-59v0,-87,130,-82,128,-6v0,33,-26,53,-50,72v14,19,29,37,46,53v9,-17,19,-33,24,-51xm81,-107v-32,16,-18,70,18,70v13,0,26,-7,33,-15v-20,-17,-36,-36,-51,-55","w":240},"\u2019":{"d":"18,-156r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":79},"(":{"d":"109,30r-42,0v-63,-80,-64,-214,0,-294r42,0v-28,39,-51,84,-51,147v0,63,23,108,51,147","w":119},")":{"d":"53,30r-43,0v28,-39,52,-84,52,-147v0,-63,-24,-108,-52,-147r43,0v63,80,64,214,0,294","w":119},"*":{"d":"72,-260r36,0v-2,18,-10,37,-9,54r48,-24r9,32v-17,4,-39,1,-53,8r38,38r-27,20v-9,-15,-13,-36,-25,-48r-23,48r-27,-20v11,-14,31,-25,37,-40r-52,-6r9,-32r48,24v1,-17,-7,-36,-9,-54"},"+":{"d":"86,-120r0,-76r44,0r0,76r76,0r0,44r-76,0r0,76r-44,0r0,-76r-76,0r0,-44r76,0","w":216},",":{"d":"28,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":100},"-":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119},".":{"d":"76,0r-52,0r0,-51r52,0r0,51","w":100},"\/":{"d":"121,-264r-98,268r-44,0r98,-268r44,0","w":100},"0":{"d":"13,-86r0,-88v0,-55,31,-90,87,-90v56,0,87,35,87,90r0,88v0,55,-31,90,-87,90v-56,0,-87,-35,-87,-90xm100,-222v-53,0,-40,80,-40,130v0,42,13,55,40,55v53,0,40,-80,40,-131v0,-42,-13,-54,-40,-54","w":200},"1":{"d":"85,0r0,-199r-40,0r0,-28v38,-8,45,-21,57,-37r28,0r0,264r-45,0","w":200},"2":{"d":"178,0r-164,0r0,-42v104,-99,121,-118,121,-145v0,-21,-12,-35,-35,-35v-27,1,-39,17,-37,43r-48,0v-4,-50,27,-85,81,-85v51,0,86,26,86,76v0,60,-70,107,-107,147r103,0r0,41","w":200},"3":{"d":"12,-76r48,0v0,27,11,39,38,39v24,0,38,-17,38,-39v0,-29,-16,-41,-52,-41r0,-41v58,9,61,-64,12,-64v-18,0,-30,12,-31,30r-47,0v0,-48,35,-72,79,-72v77,0,108,93,49,128v28,11,38,33,38,62v0,51,-38,78,-85,78v-58,0,-87,-31,-87,-80","w":200},"4":{"d":"40,-105r74,0r-1,-102xm0,-110r110,-150r49,0r0,155r37,0r0,37r-37,0r0,68r-45,0r0,-68r-114,0r0,-42","w":200},"5":{"d":"13,-75r47,0v-1,24,14,38,37,38v31,0,41,-21,41,-57v0,-55,-54,-63,-76,-30r-40,0r0,-136r150,0r0,41r-109,0r0,54v14,-10,29,-16,48,-16v55,0,74,35,74,88v0,60,-25,97,-87,97v-65,0,-85,-40,-85,-79","w":200},"6":{"d":"60,-106v-2,43,8,69,40,69v25,0,38,-18,38,-48v0,-52,-55,-50,-78,-21xm180,-192r-47,0v-1,-18,-15,-30,-33,-30v-36,0,-43,34,-40,78v16,-12,35,-20,56,-20v45,0,69,35,69,77v0,53,-26,91,-85,91v-56,0,-87,-35,-87,-90r0,-88v0,-55,31,-90,87,-90v45,0,76,25,80,72","w":200},"7":{"d":"11,-219r0,-41r164,0r0,24r-70,236r-52,0r72,-219r-114,0","w":200},"8":{"d":"140,-75v0,-24,-16,-40,-40,-40v-24,0,-40,16,-40,40v0,22,11,38,40,38v29,0,40,-16,40,-38xm133,-189v0,-18,-14,-33,-33,-33v-19,0,-33,15,-33,33v0,18,15,33,33,33v18,0,33,-15,33,-33xm187,-74v0,51,-38,78,-87,78v-49,0,-87,-27,-87,-78v0,-29,10,-51,38,-62v-21,-10,-32,-34,-32,-57v0,-48,36,-71,81,-71v45,0,81,23,81,71v0,23,-11,47,-32,57v28,11,38,33,38,62","w":200},"9":{"d":"140,-154v2,-42,-8,-68,-40,-68v-25,0,-37,17,-37,47v-1,53,54,51,77,21xm20,-68r47,0v1,18,15,31,33,31v35,0,43,-35,40,-79v-16,12,-35,20,-56,20v-45,0,-69,-35,-69,-77v0,-53,26,-91,85,-91v56,0,87,35,87,90r0,88v0,55,-31,90,-87,90v-45,0,-76,-25,-80,-72","w":200},":":{"d":"76,0r-52,0r0,-51r52,0r0,51xm76,-108r-52,0r0,-51r52,0r0,51","w":100},";":{"d":"28,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm76,-108r-52,0r0,-51r52,0r0,51","w":100},"<":{"d":"206,-39r0,42r-196,-84r0,-34r196,-84r0,42r-140,59","w":216},"=":{"d":"206,-164r0,44r-196,0r0,-44r196,0xm206,-76r0,44r-196,0r0,-44r196,0","w":216},">":{"d":"10,3r0,-42r140,-59r-140,-59r0,-42r196,84r0,34","w":216},"?":{"d":"45,-195r-41,-12v10,-74,139,-78,139,5v0,41,-62,67,-52,116r-39,0r0,-36v0,-17,46,-63,46,-84v0,-12,-11,-21,-23,-21v-15,0,-29,16,-30,32xm97,0r-51,0r0,-51r51,0r0,51","w":159},"@":{"d":"148,-163v-39,-3,-57,70,-11,72v40,3,57,-70,11,-72xm186,-177r5,-18r32,0r-20,102v0,4,1,7,5,7v17,0,36,-20,36,-59v0,-58,-40,-88,-95,-88v-60,0,-99,44,-99,103v0,94,113,132,176,78r33,0v-64,104,-246,50,-246,-78v0,-76,62,-134,137,-134v63,0,125,43,125,109v0,79,-69,104,-91,104v-11,1,-18,-9,-21,-19v-31,41,-93,8,-93,-44v0,-61,76,-117,116,-63","w":288},"A":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0","w":200},"B":{"d":"22,0r0,-260v74,-3,154,-4,154,67v0,23,-11,41,-32,54v69,34,39,151,-49,139r-73,0xm72,-116r0,75v35,3,60,-7,60,-38v0,-31,-26,-39,-60,-37xm72,-219r0,62v30,3,54,-7,54,-31v0,-27,-24,-34,-54,-31","w":200},"C":{"d":"68,-183r0,106v0,29,12,37,32,37v26,0,35,-22,32,-54r50,0v3,68,-31,98,-82,98v-48,0,-82,-24,-82,-88r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r-50,0v2,-30,-10,-44,-32,-44v-20,0,-32,8,-32,37","w":200},"D":{"d":"22,0r0,-260v88,-2,161,-5,160,90r0,80v1,95,-71,93,-160,90xm72,-216r0,172v39,2,60,-5,60,-52v0,-59,15,-135,-60,-120","w":200},"E":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44"},"F":{"d":"72,0r-50,0r0,-260r130,0r0,44r-80,0r0,60r63,0r0,44r-63,0r0,112","w":159},"G":{"d":"154,0r-7,-22v-42,51,-129,25,-129,-62r0,-92v0,-64,34,-88,82,-88v51,0,78,30,80,89r-50,0v6,-59,-62,-62,-62,-8r0,106v0,29,12,37,32,37v25,1,32,-23,30,-52r-35,0r0,-41r85,0r0,133r-26,0","w":200},"H":{"d":"75,0r-50,0r0,-260r50,0r0,104r70,0r0,-104r50,0r0,260r-50,0r0,-112r-70,0r0,112","w":219},"I":{"d":"75,0r-50,0r0,-260r50,0r0,260","w":100},"J":{"d":"45,-260r50,0r0,205v2,43,-40,66,-91,58r0,-44v24,3,41,1,41,-24r0,-195","w":119},"K":{"d":"72,0r-50,0r0,-260r50,0r1,107r64,-107r55,0r-67,105r74,155r-56,0r-52,-109r-19,29r0,80","w":200},"L":{"d":"152,0r-130,0r0,-260r50,0r0,216r80,0r0,44","w":159},"M":{"d":"68,0r-43,0r0,-260r70,0r45,171r45,-171r70,0r0,260r-43,0r0,-204r-53,204r-38,0r-53,-204r0,204","w":280},"N":{"d":"71,0r-46,0r0,-260r55,0r69,154r0,-154r46,0r0,260r-48,0r-76,-168r0,168","w":219},"O":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37","w":200},"P":{"d":"75,0r-50,0r0,-260r72,0v61,0,91,29,91,78v0,56,-43,83,-113,78r0,104xm75,-219r0,74v36,2,63,-2,63,-37v0,-35,-27,-40,-63,-37","w":200},"Q":{"d":"198,-24r0,43v-24,0,-41,-11,-53,-25v-60,25,-127,5,-127,-78r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88v0,49,7,110,-10,143v7,5,15,9,26,9xm97,-65r0,-43v16,2,27,12,35,24v-5,-47,19,-138,-32,-136v-20,0,-32,8,-32,37r0,106v-2,38,26,42,51,33v-7,-10,-14,-18,-22,-21","w":200},"R":{"d":"192,0r-53,0r-43,-106r-24,0r0,106r-50,0r0,-260r72,0v96,-12,118,114,49,144xm72,-219r0,72v34,2,61,0,61,-36v0,-36,-26,-38,-61,-36","w":200},"S":{"d":"177,-201r-45,13v-8,-24,-19,-34,-36,-34v-18,0,-28,10,-28,28v0,39,111,42,111,123v0,45,-31,75,-83,75v-40,0,-71,-22,-84,-73r48,-11v6,31,24,43,39,43v17,0,31,-12,31,-31v0,-49,-111,-50,-111,-123v0,-45,27,-73,78,-73v44,0,71,26,80,63","w":200},"T":{"d":"7,-260r166,0r0,44r-58,0r0,216r-50,0r0,-216r-58,0r0,-44"},"U":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182","w":219},"V":{"d":"72,0r-67,-260r49,0r47,186r45,-186r49,0r-66,260r-57,0","w":200},"W":{"d":"63,0r-55,-260r46,0r36,170r36,-170r48,0r36,170r35,-170r46,0r-57,260r-48,0r-37,-178r-39,178r-47,0","w":299},"X":{"d":"63,-260r37,78r38,-78r53,0r-63,123r69,137r-54,0r-43,-92r-43,92r-54,0r70,-137r-64,-123r54,0","w":200},"Y":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0","w":200},"Z":{"d":"22,-216r0,-44r144,0r0,42r-98,174r100,0r0,44r-156,0r0,-42r98,-174r-88,0"},"[":{"d":"102,27r-84,0r0,-287r84,0r0,22r-44,0r0,243r44,0r0,22","w":119},"\\":{"d":"77,4r-98,-268r44,0r98,268r-44,0","w":100},"]":{"d":"18,-260r84,0r0,287r-84,0r0,-22r44,0r0,-243r-44,0r0,-22","w":119},"^":{"d":"61,-115r-42,0r70,-145r38,0r70,145r-43,0r-46,-102","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"62,-264r-18,54r22,0r0,51r-52,0r0,-51r23,-54r25,0","w":79},"a":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3"},"b":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm63,0r-41,0r0,-260r45,0r0,82v50,-43,95,-20,95,56v0,59,1,126,-50,126v-21,0,-39,-17,-49,-28r0,24"},"c":{"d":"162,-128r-45,0v2,-21,-7,-32,-27,-32v-44,-1,-27,63,-27,101v0,15,11,23,27,23v21,0,30,-13,27,-35r45,0v0,52,-27,75,-72,75v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v44,0,71,21,72,71"},"d":{"d":"113,-44r0,-108v-24,-22,-49,-25,-50,33v-1,32,0,99,23,89v10,0,18,-4,27,-14xm158,0r-41,0v-1,-7,2,-18,-1,-24v-8,12,-28,28,-48,28v-51,0,-50,-67,-50,-126v0,-76,45,-99,95,-56r0,-82r45,0r0,260"},"e":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39"},"f":{"d":"97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74","w":100},"g":{"d":"105,-125v0,-25,-8,-38,-24,-38v-17,0,-23,12,-23,43v0,24,7,36,21,36v19,0,26,-7,26,-41xm172,-199r0,39v-11,-4,-19,-3,-29,2v17,62,-9,126,-79,109v-3,4,-8,6,-8,11v0,24,114,-13,114,58v0,33,-34,49,-87,49v-74,0,-96,-43,-48,-66v-30,-14,-16,-52,9,-61v-47,-30,-45,-141,37,-141v19,0,39,8,51,22v12,-14,23,-22,40,-22xm127,23v-4,-17,-48,-10,-67,-14v-5,5,-9,8,-9,15v0,10,15,15,42,15v22,0,34,-6,34,-16"},"h":{"d":"67,0r-45,0r0,-260r45,0r0,86v27,-33,91,-40,91,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148"},"i":{"d":"27,-196r46,0r0,196r-46,0r0,-196xm73,-230r-46,0r0,-41r46,0r0,41","w":100},"j":{"d":"27,-196r46,0r0,212v-1,43,-33,57,-72,52r0,-40v19,0,26,-6,26,-18r0,-206xm73,-230r-46,0r0,-41r46,0r0,41","w":100},"k":{"d":"69,0r-45,0r0,-260r45,0r1,140r48,-76r51,0r-45,66r49,130r-48,0r-33,-92r-23,32r0,60"},"l":{"d":"27,0r0,-260r46,0r0,260r-46,0","w":100},"m":{"d":"22,0r0,-196r44,0r0,22v23,-27,71,-39,83,4v24,-37,89,-45,89,22r0,148r-45,0r0,-149v-1,-32,-31,-11,-40,1r0,148r-46,0r0,-149v-1,-32,-33,-11,-40,1r0,148r-45,0","w":259},"n":{"d":"67,0r-45,0r0,-196r44,0r0,22v30,-33,92,-41,92,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148"},"o":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23"},"p":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm22,-196r41,0v1,7,-2,18,1,24v8,-12,28,-27,48,-27v51,0,50,66,50,125v0,76,-46,100,-95,56r0,87r-45,0r0,-265"},"q":{"d":"113,-44r0,-108v-24,-22,-49,-25,-50,33v-1,32,0,99,23,89v10,0,18,-4,27,-14xm117,-196r41,0r0,265r-45,0r0,-87v-50,45,-95,20,-95,-56v0,-59,-1,-125,50,-125v21,0,39,16,49,27r0,-24"},"r":{"d":"67,0r-45,0r0,-196r44,0v1,8,-2,20,1,26v10,-19,23,-29,46,-29r0,49v-18,-10,-46,-6,-46,16r0,134","w":119},"s":{"d":"145,-150r-37,14v-6,-29,-50,-39,-50,-9v0,30,89,31,89,89v0,39,-27,60,-65,60v-27,0,-52,-7,-74,-56r41,-11v4,18,15,30,33,30v14,0,22,-6,22,-17v0,-37,-89,-29,-89,-95v0,-37,30,-54,62,-54v34,0,57,19,68,49","w":159},"t":{"d":"20,-150r-18,0r0,-37r18,0r0,-53r46,0r0,53r29,0r0,37r-29,0r0,100v-1,13,14,15,29,14r0,38v-36,6,-75,1,-75,-37r0,-115","w":100},"u":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148"},"v":{"d":"50,-196r30,126r30,-126r46,0r-54,196r-44,0r-54,-196r46,0","w":159},"w":{"d":"51,0r-46,-196r42,0r27,123r26,-123r39,0r29,123r25,-123r42,0r-46,196r-42,0r-29,-122r-24,122r-43,0","w":240},"x":{"d":"56,-101r-50,-95r48,0r26,56r26,-56r48,0r-49,96r53,100r-49,0r-29,-63r-30,63r-48,0","w":159},"y":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69","w":159},"z":{"d":"18,-156r0,-40r131,0r0,39r-83,117r83,0r0,40r-138,0r0,-39r82,-117r-75,0","w":159},"{":{"d":"94,-264r0,22v-67,-12,7,116,-59,125v41,2,29,63,29,104v0,21,11,23,30,22r0,21v-39,2,-66,-1,-70,-43v-3,-34,15,-96,-25,-93r0,-22v40,4,22,-59,25,-93v4,-41,31,-45,70,-43","w":119},"|":{"d":"18,4r0,-268r44,0r0,268r-44,0","w":79},"}":{"d":"26,30r0,-21v67,11,-6,-115,59,-126v-42,-2,-29,-62,-29,-103v0,-21,-11,-23,-30,-22r0,-22v39,-2,66,1,70,43v3,34,-14,97,25,94r0,22v-39,-4,-22,59,-25,92v-4,41,-31,45,-70,43","w":119},"~":{"d":"149,-64v-38,0,-97,-55,-116,1r-14,-35v9,-17,22,-33,48,-33v27,0,63,26,85,26v14,0,23,-14,32,-28r13,35v-11,16,-24,34,-48,34","w":216},"\u00a1":{"d":"76,64r-52,0r10,-172r32,0xm24,-196r52,0r0,51r-52,0r0,-51","w":100},"\u00a2":{"d":"69,-49r27,-111v-48,-2,-23,62,-29,101v0,4,0,7,2,10xm172,-128r-45,0v0,-10,1,-18,-5,-23r-30,115v27,1,38,-9,35,-35r46,0v1,56,-34,79,-89,74r-13,47r-32,0r15,-55v-35,-14,-32,-69,-32,-120v0,-57,32,-77,86,-74r12,-44r32,0r-14,51v22,9,34,31,34,64","w":200},"\u00a3":{"d":"40,-114r-34,0r0,-32r30,0v-20,-61,10,-118,68,-118v58,0,84,30,84,78r-46,0v-2,-22,-10,-38,-34,-38v-38,-1,-32,48,-25,78r48,0r0,32r-44,0v0,9,-2,45,-9,61v25,20,75,29,71,-25r43,0v0,42,-11,82,-65,82v-24,0,-36,-4,-68,-24v-19,17,-30,24,-51,24r0,-44v26,0,37,-39,32,-74","w":200},"\u2044":{"d":"-60,4r146,-268r34,0r-146,268r-34,0","w":60},"\u00a5":{"d":"180,-163r0,32r-46,0r-11,26r57,0r0,32r-59,0r0,73r-42,0r0,-73r-58,0r0,-32r56,0r-11,-26r-45,0r0,-32r30,0r-45,-97r44,0r51,116r49,-116r44,0r-45,97r31,0","w":200},"\u0192":{"d":"9,65r6,-37v22,8,37,7,42,-26r26,-134r-35,0r0,-31r42,0v16,-85,35,-113,97,-96r-6,36v-33,-11,-37,3,-47,60r36,0r0,31r-42,0r-23,119v-6,49,-35,97,-96,78","w":200},"\u00a7":{"d":"145,-235r-25,20v-8,-16,-46,-29,-46,-3v0,28,87,70,87,119v0,24,-17,37,-39,41v35,29,17,88,-33,88v-31,0,-43,-13,-58,-30r24,-19v5,17,51,31,51,2v0,-30,-87,-80,-87,-118v0,-32,15,-42,37,-46v-30,-29,-18,-84,31,-83v25,0,42,9,58,29xm53,-144v-5,9,55,68,60,62v9,0,14,-7,14,-16v5,-6,-53,-66,-60,-60v-7,0,-14,6,-14,14"},"\u00a4":{"d":"193,-58r-21,21r-20,-21v-23,23,-81,24,-104,0r-20,21r-21,-21r20,-20v-21,-25,-21,-79,0,-104r-20,-20r21,-21r20,21v23,-23,81,-24,104,0r20,-21r21,21r-20,20v21,25,21,79,0,104xm149,-130v0,-30,-18,-53,-49,-53v-31,0,-49,23,-49,53v0,30,18,53,49,53v31,0,49,-23,49,-53","w":200},"'":{"d":"20,-163r0,-97r40,0r0,97r-40,0","w":79},"\u201c":{"d":"62,-264r-18,54r22,0r0,51r-52,0r0,-51r23,-54r25,0xm142,-264r-18,54r21,0r0,51r-51,0r0,-51r23,-54r25,0","w":159},"\u00ab":{"d":"139,-40r-44,-58r44,-58r40,0r-44,58r44,58r-40,0xm66,-40r-44,-58r44,-58r39,0r-44,58r44,58r-39,0","w":200},"\u2039":{"d":"14,-98r44,-58r39,0r-44,58r44,58r-39,0","w":119},"\u203a":{"d":"106,-98r-44,58r-39,0r44,-58r-44,-58r39,0","w":119},"\ufb01":{"d":"116,-187r45,0r0,187r-45,0r0,-187xm161,-221r-45,0r0,-41r45,0r0,41xm97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74"},"\ufb02":{"d":"116,0r0,-260r45,0r0,260r-45,0xm97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74"},"\u2013":{"d":"180,-83r-180,0r0,-30r180,0r0,30"},"\u2020":{"d":"24,-168r0,-35r58,10r-9,-71r34,0r-9,71r58,-10r0,35r-57,-10r9,61v-5,41,-8,97,-11,144r-14,0v-3,-47,-6,-103,-11,-144r9,-61"},"\u2021":{"d":"72,-118r9,-64r-57,10r0,-35r58,10r-9,-67r34,0r-9,67r58,-10r0,35r-57,-10r9,64r-9,63r57,-9r0,34r-58,-10r9,67r-34,0r9,-67r-58,10r0,-34r57,9"},"\u00b7":{"d":"50,-125v16,0,27,13,27,27v0,14,-11,27,-27,27v-16,0,-27,-13,-27,-27v0,-14,11,-27,27,-27","w":100},"\u00b6":{"d":"68,30r0,-163v-40,0,-64,-23,-64,-62v0,-43,22,-65,77,-65r116,0r0,30r-25,0r0,260r-40,0r0,-260r-24,0r0,260r-40,0","w":200},"\u2022":{"d":"25,-130v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65"},"\u201a":{"d":"18,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":79},"\u201e":{"d":"18,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm98,53r18,-53r-22,0r0,-51r51,0r0,51r-22,53r-25,0","w":159},"\u201d":{"d":"18,-156r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm98,-156r18,-53r-22,0r0,-51r51,0r0,51r-22,53r-25,0","w":159},"\u00bb":{"d":"105,-98r-44,58r-39,0r44,-58r-44,-58r39,0xm179,-98r-44,58r-40,0r44,-58r-44,-58r40,0","w":200},"\u2026":{"d":"86,0r-51,0r0,-51r51,0r0,51xm325,0r-51,0r0,-51r51,0r0,51xm206,0r-52,0r0,-51r52,0r0,51","w":360},"\u2030":{"d":"58,-260v30,0,54,24,54,53v0,29,-24,54,-54,54v-30,0,-53,-25,-53,-54v0,-29,23,-53,53,-53xm58,-230v-14,0,-23,10,-23,23v0,13,9,24,23,24v14,0,24,-11,24,-24v0,-13,-10,-23,-24,-23xm172,-77v-14,0,-24,11,-24,24v0,13,10,23,24,23v14,0,23,-10,23,-23v0,-13,-9,-24,-23,-24xm172,-107v30,0,53,25,53,54v0,29,-23,53,-53,53v-30,0,-54,-24,-54,-53v0,-29,24,-54,54,-54xm302,-77v-14,0,-24,11,-24,24v0,13,10,23,24,23v14,0,23,-10,23,-23v0,-13,-9,-24,-23,-24xm302,-107v30,0,53,25,53,54v0,29,-23,53,-53,53v-30,0,-54,-24,-54,-53v0,-29,24,-54,54,-54xm27,4r147,-268r28,0r-147,268r-28,0","w":360},"\u00bf":{"d":"115,-1r41,12v-10,74,-139,78,-139,-5v0,-41,61,-67,51,-115r40,0r0,35v0,17,-46,63,-46,84v0,12,11,21,23,21v15,0,29,-16,30,-32xm63,-196r51,0r0,51r-51,0r0,-51","w":159},"`":{"d":"-9,-272r56,0r34,52r-37,0","w":100},"\u00b4":{"d":"53,-272r56,0r-53,52r-37,0","w":100},"\u02c6":{"d":"27,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u02dc":{"d":"93,-268r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":100},"\u00af":{"d":"113,-230r-126,0r0,-27r126,0r0,27","w":100},"\u02d8":{"d":"87,-271r24,0v-5,36,-27,52,-63,52v-34,0,-55,-17,-58,-52r23,0v4,35,69,35,74,0","w":100},"\u02d9":{"d":"28,-264r44,0r0,42r-44,0r0,-42","w":100},"\u00a8":{"d":"-6,-264r43,0r0,42r-43,0r0,-42xm63,-264r43,0r0,42r-43,0r0,-42","w":100},"\u02da":{"d":"50,-217v-21,0,-38,-18,-38,-39v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm50,-275v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19","w":100},"\u00b8":{"d":"1,73r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r21,-32r20,0v-4,8,-14,16,-15,23v18,-9,45,5,44,25v-2,39,-55,40,-85,25","w":100},"\u02dd":{"d":"21,-272r55,0r-51,52r-35,0xm86,-272r56,0r-53,52r-36,0","w":100},"\u02db":{"d":"93,-8r0,5v-19,7,-51,21,-51,45v0,30,40,15,53,3r8,12v-25,22,-92,37,-92,-11v0,-38,54,-49,82,-54","w":100},"\u02c7":{"d":"73,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":100},"\u2014":{"d":"360,-83r-360,0r0,-30r360,0r0,30","w":360},"\u00c6":{"d":"168,-220r-56,113r62,0r0,-113r-6,0xm58,0r-53,0r133,-260r192,0r0,44r-106,0r0,60r79,0r0,44r-79,0r0,68r110,0r0,44r-160,0r0,-63r-85,0","w":360},"\u00aa":{"d":"6,-226v1,-27,23,-37,48,-38v67,-2,37,66,45,120r-31,0v-1,-3,0,-7,-1,-12v-13,19,-63,22,-63,-14v0,-27,28,-40,62,-50v1,-11,-1,-19,-13,-18v-9,0,-15,5,-15,12r-32,0xm46,-166v17,1,23,-12,20,-31v-15,6,-30,11,-30,22v0,6,5,9,10,9","w":108},"\u0141":{"d":"72,-114r0,70r80,0r0,44r-130,0r0,-94r-22,9r0,-41r22,-9r0,-125r50,0r0,104r59,-23r-1,41","w":159},"\u00d8":{"d":"127,-208v-17,-21,-59,-18,-59,25r0,89xm76,-48v21,15,56,12,56,-29r0,-79xm161,-277r37,0r-26,50v17,33,8,95,10,143v3,82,-64,102,-125,79r-17,33r-38,0r29,-56v-21,-31,-11,-98,-13,-148v-3,-85,70,-103,130,-77","w":200},"\u0152":{"d":"122,-220v-58,0,-52,60,-51,117v0,48,14,63,51,63v62,0,40,-80,40,-133v0,-30,-8,-47,-40,-47xm212,-216r0,60r80,0r0,44r-80,0r0,68r110,0r0,44r-149,0v-25,0,-34,4,-63,4v-54,0,-89,-38,-89,-102r0,-69v-4,-98,91,-93,180,-93r118,0r0,44r-107,0","w":339},"\u00ba":{"d":"54,-142v-44,0,-47,-32,-47,-77v0,-31,17,-45,47,-45v42,0,47,33,47,78v0,31,-18,44,-47,44xm54,-237v-24,0,-14,35,-14,55v0,9,4,14,14,14v24,0,14,-35,14,-55v0,-9,-4,-14,-14,-14","w":108},"\u00e6":{"d":"114,-48r0,-48v-24,9,-52,24,-52,45v1,31,42,23,52,3xm258,-87r-99,0v-2,28,2,54,27,54v19,0,26,-12,26,-27r46,0v-2,40,-26,64,-72,64v-32,0,-52,-17,-60,-26v-30,23,-46,26,-64,26v-27,0,-45,-15,-45,-47v0,-45,43,-65,97,-82v2,-21,-3,-38,-21,-38v-14,0,-25,10,-25,24r-46,0v3,-68,86,-75,119,-38v35,-43,122,-18,117,44r0,46xm159,-124r53,0v2,-23,-4,-39,-26,-39v-22,0,-29,16,-27,39","w":280},"\u0131":{"d":"73,0r-46,0r0,-196r46,0r0,196","w":100},"\u0142":{"d":"73,-136r0,136r-46,0r0,-113r-26,14r0,-34r26,-14r0,-113r46,0r0,90r26,-13r0,34","w":100},"\u00f8":{"d":"63,-75v17,-25,29,-55,44,-81v-17,-9,-44,-2,-44,19r0,62xm117,-114v-16,23,-27,51,-41,75v17,8,41,0,41,-20r0,-55xm56,-2r-23,42r-32,0r32,-59v-19,-20,-13,-67,-15,-106v-3,-67,55,-85,109,-68r18,-34r32,0r-28,53v18,21,11,65,13,103v3,66,-52,87,-106,69"},"\u0153":{"d":"90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm262,-87r-100,0v-3,29,3,54,28,54v19,0,27,-12,27,-27r45,0v7,63,-92,86,-122,38v-32,46,-132,30,-122,-49r0,-54v-9,-78,89,-94,122,-49v30,-46,129,-23,122,41r0,46xm162,-124r55,0v2,-23,-5,-39,-27,-39v-22,0,-30,15,-28,39","w":280},"\u00df":{"d":"67,0r-45,0r0,-188v0,-42,15,-72,68,-72v61,0,87,86,41,119v55,20,41,145,-20,145v-9,0,-18,-2,-26,-6r0,-41v21,8,34,1,34,-32v0,-27,-6,-45,-34,-45r0,-37v16,-1,26,-13,26,-32v0,-18,-6,-31,-24,-31v-14,0,-20,10,-20,21r0,199"},"\u00b9":{"d":"51,-105r0,-119r-24,0r0,-19v22,-4,29,-12,35,-21r22,0r0,159r-33,0","w":119},"\u00ac":{"d":"162,-32r0,-88r-152,0r0,-44r196,0r0,132r-44,0","w":216},"\u03bc":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-15,13,-29,25,-47,26r0,65r-45,0r0,-265r45,0r0,144v1,33,31,22,46,4r0,-148"},"\u2122":{"d":"213,-260r34,90r33,-90r56,0r0,148r-39,0r0,-100r-36,100r-29,0r-36,-100r0,100r-38,0r0,-148r55,0xm134,-260r0,30r-41,0r0,118r-40,0r0,-118r-41,0r0,-30r122,0","w":360},"\u00d0":{"d":"3,-112r0,-44r19,0r0,-104v88,-2,161,-5,160,90r0,80v1,95,-71,93,-160,90r0,-112r-19,0xm104,-156r0,44r-32,0r0,68v39,2,60,-5,60,-52v0,-59,15,-135,-60,-120r0,60r32,0","w":200},"\u00bd":{"d":"53,-105r0,-119r-24,0r0,-19v22,-4,28,-12,34,-21r22,0r0,159r-32,0xm285,0r-107,0r0,-27v66,-58,77,-69,77,-85v0,-10,-6,-20,-21,-20v-18,1,-24,10,-23,24r-32,0v-2,-30,16,-50,52,-50v33,0,56,15,56,45v0,36,-43,63,-67,86r65,0r0,27xm49,4r145,-268r35,0r-146,268r-34,0","w":300},"\u00b1":{"d":"86,-148r0,-48r44,0r0,48r76,0r0,44r-76,0r0,49r-44,0r0,-49r-76,0r0,-44r76,0xm10,0r0,-44r196,0r0,44r-196,0","w":216},"\u00de":{"d":"75,0r-50,0r0,-260r50,0r0,48v70,-5,113,20,113,77v0,56,-43,83,-113,78r0,57xm75,-171r0,73v36,2,63,-2,63,-37v0,-35,-28,-38,-63,-36","w":200},"\u00bc":{"d":"194,-66r37,0v-1,-15,2,-34,-1,-47xm160,-66r71,-90r33,0r0,90r23,0r0,25r-23,0r0,41r-33,0r0,-41r-71,0r0,-25xm53,-105r0,-119r-24,0r0,-19v22,-4,28,-12,34,-21r22,0r0,159r-32,0xm55,4r146,-268r34,0r-145,268r-35,0","w":300},"\u00f7":{"d":"206,-76r-196,0r0,-44r196,0r0,44xm73,-178v0,-19,16,-34,35,-34v18,0,34,16,34,34v0,17,-16,34,-34,34v-19,0,-35,-15,-35,-34xm73,-18v0,-19,16,-34,35,-34v18,0,34,15,34,34v0,17,-16,35,-34,35v-19,0,-35,-17,-35,-35","w":216},"\u00a6":{"d":"18,4r0,-103r44,0r0,103r-44,0xm18,-161r0,-103r44,0r0,103r-44,0","w":79},"\u00b0":{"d":"72,-181v17,0,30,-14,30,-31v0,-17,-13,-31,-30,-31v-17,0,-30,14,-30,31v0,17,13,31,30,31xm72,-161v-29,0,-52,-22,-52,-51v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,51,-52,51","w":144},"\u00fe":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm22,-260r44,0r1,84v5,-9,25,-23,45,-23v51,0,50,66,50,125v0,76,-46,100,-95,56r0,87r-45,0r0,-329"},"\u00be":{"d":"194,-66r37,0v-1,-15,2,-34,-1,-47xm160,-66r71,-90r33,0r0,90r23,0r0,25r-23,0r0,41r-33,0r0,-41r-71,0r0,-25xm13,-151r32,0v0,15,7,21,24,21v15,0,23,-8,23,-21v0,-17,-11,-23,-33,-23r0,-27v35,6,39,-35,9,-36v-11,0,-19,8,-19,18r-32,0v0,-30,23,-45,51,-45v49,0,71,56,32,77v49,20,19,84,-31,84v-38,0,-56,-19,-56,-48xm62,4r146,-268r35,0r-146,268r-35,0","w":300},"\u00b2":{"d":"112,-105r-107,0r0,-27v66,-58,77,-69,77,-85v0,-10,-6,-20,-21,-20v-19,1,-23,9,-22,24r-33,0v-2,-30,17,-51,53,-51v33,0,55,16,55,46v0,36,-42,63,-66,86r64,0r0,27","w":119},"\u00ae":{"d":"121,-117r0,60r-31,0r0,-146v52,0,115,-9,115,44v0,27,-16,38,-37,39r34,63r-35,0r-31,-60r-15,0xm121,-177r0,34v22,-1,55,6,51,-19v5,-18,-31,-15,-51,-15xm144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm241,-130v0,-60,-44,-102,-97,-102v-54,0,-97,42,-97,102v0,60,43,102,97,102v53,0,97,-42,97,-102","w":288},"\u2212":{"d":"206,-76r-196,0r0,-44r196,0r0,44","w":216},"\u00f0":{"d":"90,-148v-42,-2,-27,54,-27,90v0,14,11,22,27,22v42,2,27,-54,27,-90v0,-14,-11,-22,-27,-22xm63,-255r43,-5v4,4,7,8,11,13r39,-13r11,27r-33,11v27,44,28,91,28,156v0,49,-27,70,-72,70v-65,0,-72,-51,-72,-121v0,-54,35,-75,87,-69v-2,-8,-5,-15,-9,-23r-39,14r-11,-27r34,-12v-5,-7,-11,-14,-17,-21"},"\u00d7":{"d":"10,-165r31,-31r67,67r67,-67r31,31r-67,67r67,67r-31,31r-67,-67r-67,67r-31,-31r67,-67","w":216},"\u00b3":{"d":"4,-151r32,0v0,15,6,21,23,21v15,0,24,-8,24,-21v0,-17,-11,-23,-33,-23r0,-27v35,6,37,-35,8,-36v-11,0,-18,8,-18,18r-33,0v0,-30,24,-45,52,-45v49,0,71,56,32,77v47,18,19,84,-31,84v-38,0,-56,-19,-56,-48","w":119},"\u00a9":{"d":"144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm241,-130v0,-60,-44,-102,-97,-102v-54,0,-97,42,-97,102v0,60,43,102,97,102v53,0,97,-42,97,-102xm181,-110r33,0v-6,37,-34,57,-65,57v-45,0,-74,-34,-74,-78v0,-84,126,-110,137,-23r-31,0v-14,-40,-74,-25,-69,22v-6,47,60,66,69,22","w":288},"\u00c1":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm103,-327r56,0r-53,52r-37,0","w":200},"\u00c2":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm77,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":200},"\u00c4":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm44,-319r43,0r0,42r-43,0r0,-42xm113,-319r43,0r0,42r-43,0r0,-42","w":200},"\u00c0":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm41,-327r56,0r34,52r-37,0","w":200},"\u00c5":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm100,-272v-21,0,-38,-18,-38,-39v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm100,-330v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19","w":200},"\u00c3":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm143,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":200},"\u00c7":{"d":"68,-183r0,106v0,29,12,37,32,37v26,0,35,-22,32,-54r50,0v3,68,-31,98,-82,98v-48,0,-82,-24,-82,-88r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r-50,0v2,-30,-10,-44,-32,-44v-20,0,-32,8,-32,37xm51,73r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r21,-32r20,0v-4,8,-14,16,-15,23v18,-9,45,5,44,25v-2,39,-55,40,-85,25","w":200},"\u00c9":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm93,-327r56,0r-53,52r-37,0"},"\u00ca":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm67,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00cb":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm34,-319r43,0r0,42r-43,0r0,-42xm103,-319r43,0r0,42r-43,0r0,-42"},"\u00c8":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm31,-327r56,0r34,52r-37,0"},"\u00cd":{"d":"75,0r-50,0r0,-260r50,0r0,260xm53,-327r56,0r-53,52r-37,0","w":100},"\u00ce":{"d":"75,0r-50,0r0,-260r50,0r0,260xm27,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u00cf":{"d":"75,0r-50,0r0,-260r50,0r0,260xm-6,-319r43,0r0,42r-43,0r0,-42xm63,-319r43,0r0,42r-43,0r0,-42","w":100},"\u00cc":{"d":"75,0r-50,0r0,-260r50,0r0,260xm-9,-327r56,0r34,52r-37,0","w":100},"\u00d1":{"d":"71,0r-46,0r0,-260r55,0r69,154r0,-154r46,0r0,260r-48,0r-76,-168r0,168xm153,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":219},"\u00d3":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm103,-327r56,0r-53,52r-37,0","w":200},"\u00d4":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm77,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":200},"\u00d6":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm44,-319r43,0r0,42r-43,0r0,-42xm113,-319r43,0r0,42r-43,0r0,-42","w":200},"\u00d2":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm41,-327r56,0r34,52r-37,0","w":200},"\u00d5":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm143,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":200},"\u0160":{"d":"177,-201r-45,13v-8,-24,-19,-34,-36,-34v-18,0,-28,10,-28,28v0,39,111,42,111,123v0,45,-31,75,-83,75v-40,0,-71,-22,-84,-73r48,-11v6,31,24,43,39,43v17,0,31,-12,31,-31v0,-49,-111,-50,-111,-123v0,-45,27,-73,78,-73v44,0,71,26,80,63xm123,-275r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":200},"\u00da":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm113,-327r56,0r-53,52r-37,0","w":219},"\u00db":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm87,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":219},"\u00dc":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm54,-319r43,0r0,42r-43,0r0,-42xm123,-319r43,0r0,42r-43,0r0,-42","w":219},"\u00d9":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm51,-327r56,0r34,52r-37,0","w":219},"\u00dd":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0xm103,-327r56,0r-53,52r-37,0","w":200},"\u0178":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0xm44,-319r43,0r0,42r-43,0r0,-42xm113,-319r43,0r0,42r-43,0r0,-42","w":200},"\u017d":{"d":"22,-216r0,-44r144,0r0,42r-98,174r100,0r0,44r-156,0r0,-42r98,-174r-88,0xm113,-275r-46,0r-41,-52r41,0r23,29r23,-29r41,0"},"\u00e1":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm93,-272r56,0r-53,52r-37,0"},"\u00e2":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00e4":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00e0":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm31,-272r56,0r34,52r-37,0"},"\u00e5":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm90,-217v-21,0,-38,-18,-38,-39v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm90,-275v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19"},"\u00e3":{"d":"63,-139r-46,0v3,-44,37,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm133,-268r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2"},"\u00e7":{"d":"162,-128r-45,0v2,-21,-7,-32,-27,-32v-44,-1,-27,63,-27,101v0,15,11,23,27,23v21,0,30,-13,27,-35r45,0v0,52,-27,75,-72,75v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v44,0,71,21,72,71xm41,73r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r21,-32r20,0v-4,8,-14,16,-15,23v18,-9,45,5,44,25v-2,39,-55,40,-85,25"},"\u00e9":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm93,-272r56,0r-53,52r-37,0"},"\u00ea":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00eb":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00e8":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm31,-272r56,0r34,52r-37,0"},"\u00ed":{"d":"73,0r-46,0r0,-196r46,0r0,196xm53,-272r56,0r-53,52r-37,0","w":100},"\u00ee":{"d":"73,0r-46,0r0,-196r46,0r0,196xm27,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u00ef":{"d":"73,0r-46,0r0,-196r46,0r0,196xm-6,-264r43,0r0,42r-43,0r0,-42xm63,-264r43,0r0,42r-43,0r0,-42","w":100},"\u00ec":{"d":"73,0r-46,0r0,-196r46,0r0,196xm-9,-272r56,0r34,52r-37,0","w":100},"\u00f1":{"d":"67,0r-45,0r0,-196r44,0r0,22v30,-33,92,-41,92,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148xm133,-268r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2"},"\u00f3":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm93,-272r56,0r-53,52r-37,0"},"\u00f4":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00f6":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00f2":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm31,-272r56,0r34,52r-37,0"},"\u00f5":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm133,-268r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2"},"\u0161":{"d":"145,-150r-37,14v-6,-29,-50,-39,-50,-9v0,30,89,31,89,89v0,39,-27,60,-65,60v-27,0,-52,-7,-74,-56r41,-11v4,18,15,30,33,30v14,0,22,-6,22,-17v0,-37,-89,-29,-89,-95v0,-37,30,-54,62,-54v34,0,57,19,68,49xm103,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":159},"\u00fa":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm90,-272r56,0r-53,52r-37,0"},"\u00fb":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm64,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00fc":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm31,-264r43,0r0,42r-43,0r0,-42xm100,-264r43,0r0,42r-43,0r0,-42"},"\u00f9":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm28,-272r56,0r34,52r-37,0"},"\u00fd":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69xm83,-272r56,0r-53,52r-37,0","w":159},"\u00ff":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69xm24,-264r43,0r0,42r-43,0r0,-42xm93,-264r43,0r0,42r-43,0r0,-42","w":159},"\u017e":{"d":"18,-156r0,-40r131,0r0,39r-83,117r83,0r0,40r-138,0r0,-39r82,-117r-75,0xm103,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":159},"\u00a0":{"w":100}}});

(function ($) { $.fn.hygenic = function (fn, params) { params = $.extend({}, $.fn.hygenic.params, params); this.each(function () { var tgt = $(this); tgt.bind("hygenic", fn).bind("keyup", function (event) { $.fn.hygenic.checkCode(event, params, tgt) }) }); return this }; $.fn.hygenic.params = { "code": [38, 38, 40, 40, 37, 39, 37, 39, 66, 65], "step": 0 }; $.fn.hygenic.checkCode = function (event, params, tgt) { if (event.keyCode == params.code[params.step]) params.step++; else params.step = 0; if (params.step == params.code.length) { tgt.trigger("hygenic"); params.step = 0 } } })(jQuery);
