var pro6pp_auth_key="vJb5xZcEdaL9wd37";(function($){$.fn.applyAutocomplete=function(options){var instance=this;if(options)
{instance.postcode=$(options['postcode']);instance.streetnumber=$(options['streetnumber']);instance.street=$(options['street']);instance.streets=$(options['streets']);instance.city=$(options['city']);instance.message=$(options['message']);instance.spinner=$(options['spinner']);}else{instance.postcode=this.find('.postcode');instance.streetnumber=this.find('.streetnumber');instance.street=this.find('.street');instance.streets=this.find('.streets');instance.city=this.find('.city');instance.message=this.find('.message');instance.spinner=this.find('.spinner');}
instance.postcode.attr('autocomplete','off');instance.postcode.keyup(function(){autocomplete(instance);});instance.streetnumber.attr('autocomplete','off');instance.streetnumber.keyup(function(){autocomplete(instance);});};var pro6pp_cache={};function pro6pp_cached_get(obj,url,callback){if(pro6pp_cache.hasOwnProperty(url)){callback(obj,pro6pp_cache[url]);}else{$.getJSON(url+"&callback=?",function(data){pro6pp_cache[url]=data;callback(obj,data);});}}
function autocomplete(obj){obj.message.empty();var postcode=obj.postcode.val();var streetnumber=obj.streetnumber.val();var nl_sixpp_regex=/[0-9]{4,4}\s?[a-zA-Z]{2,2}/;if(nl_sixpp_regex.test(postcode)){show_street(obj);obj.spinner.show();var url="https://pro6pp.appspot.com/v1/autocomplete?auth_key="
+pro6pp_auth_key+"&nl_sixpp="+postcode
+"&streetnumber="+streetnumber;url=encodeURI(url);pro6pp_cached_get(obj,url,fillin);}else{obj.street.empty();obj.street.empty();}}
function show_street(obj){obj.street.show();obj.streets.hide();obj.street.val(obj.streets.val());}
function show_streets(obj){obj.street.hide();obj.streets.show();}
function fillin(obj,json){obj.spinner.hide();if(json.status=='ok'){if(json.results.length==1){obj.street.val(json.results[0].street);}else{var streets=obj.streets;streets.empty();$.each(json.results,function(i,street){streets.append("<option value='"+street.street+"'>"
+street.street+"</option>");$(obj).find('.streets option:last').click(function(){show_street(obj);});});show_streets(obj);}
obj.city.val(json.results[0].city);}else{var translated_message=json.error.message;if(json.error.message=='nl_sixpp not found'){translated_message='Onbekende postcode';}else if(json.error.message=='invalid postcode format'){translated_message='Ongeldig postcode formaat';}
obj.message.html(translated_message);}}})(jQuery);
;(function($){$.alerts={verticalOffset:-75,horizontalOffset:0,repositionOnResize:true,overlayOpacity:.01,overlayColor:'#FFF',draggable:true,okButton:'&nbsp;OK&nbsp;',cancelButton:'&nbsp;Cancel&nbsp;',dialogClass:null,alert:function(message,title,callback){if(title==null)title='Alert';$.alerts._show(title,message,null,'alert',function(result){if(callback)callback(result);});},confirm:function(message,title,callback){if(title==null)title='Confirm';$.alerts._show(title,message,null,'confirm',function(result){if(callback)callback(result);});},prompt:function(message,value,title,callback){if(title==null)title='Prompt';$.alerts._show(title,message,value,'prompt',function(result){if(callback)callback(result);});},_show:function(title,msg,value,type,callback){$.alerts._hide();$.alerts._overlay('show');$("BODY").append('<div id="popup_container">'+'<h1 id="popup_title"></h1>'+'<div id="popup_content">'+'<div id="popup_message"></div>'+'</div>'+'</div>');if($.alerts.dialogClass)$("#popup_container").addClass($.alerts.dialogClass);var pos=($.browser.msie&&parseInt($.browser.version)<=6)?'absolute':'fixed';$("#popup_container").css({position:pos,zIndex:99999,padding:0,margin:0});$("#popup_title").text(title);$("#popup_content").addClass(type);$("#popup_message").text(msg);$("#popup_message").html($("#popup_message").text().replace(/\n/g,'<br />'));$("#popup_container").css({minWidth:$("#popup_container").outerWidth(),maxWidth:$("#popup_container").outerWidth()});$.alerts._reposition();$.alerts._maintainPosition(true);switch(type){case'alert':$("#popup_message").after('<div id="popup_panel"><input type="button" value="'+$.alerts.okButton+'" id="popup_ok" /></div>');$("#popup_ok").click(function(){$.alerts._hide();callback(true);});$("#popup_ok").focus().keypress(function(e){if(e.keyCode==13||e.keyCode==27)$("#popup_ok").trigger('click');});break;case'confirm':$("#popup_message").after('<div id="popup_panel"><input type="button" value="'+$.alerts.okButton+'" id="popup_ok" /> <input type="button" value="'+$.alerts.cancelButton+'" id="popup_cancel" /></div>');$("#popup_ok").click(function(){$.alerts._hide();if(callback)callback(true);});$("#popup_cancel").click(function(){$.alerts._hide();if(callback)callback(false);});$("#popup_ok").focus();$("#popup_ok, #popup_cancel").keypress(function(e){if(e.keyCode==13)$("#popup_ok").trigger('click');if(e.keyCode==27)$("#popup_cancel").trigger('click');});break;case'prompt':$("#popup_message").append('<br /><input type="text" size="30" id="popup_prompt" />').after('<div id="popup_panel"><input type="button" value="'+$.alerts.okButton+'" id="popup_ok" /> <input type="button" value="'+$.alerts.cancelButton+'" id="popup_cancel" /></div>');$("#popup_prompt").width($("#popup_message").width());$("#popup_ok").click(function(){var val=$("#popup_prompt").val();$.alerts._hide();if(callback)callback(val);});$("#popup_cancel").click(function(){$.alerts._hide();if(callback)callback(null);});$("#popup_prompt, #popup_ok, #popup_cancel").keypress(function(e){if(e.keyCode==13)$("#popup_ok").trigger('click');if(e.keyCode==27)$("#popup_cancel").trigger('click');});if(value)$("#popup_prompt").val(value);$("#popup_prompt").focus().select();break;}
if($.alerts.draggable){try{$("#popup_container").draggable({handle:$("#popup_title")});$("#popup_title").css({cursor:'move'});}catch(e){}}},_hide:function(){$("#popup_container").remove();$.alerts._overlay('hide');$.alerts._maintainPosition(false);},_overlay:function(status){switch(status){case'show':$.alerts._overlay('hide');$("BODY").append('<div id="popup_overlay"></div>');$("#popup_overlay").css({position:'absolute',zIndex:99998,top:'0px',left:'0px',width:'100%',height:$(document).height(),background:$.alerts.overlayColor,opacity:$.alerts.overlayOpacity});break;case'hide':$("#popup_overlay").remove();break;}},_reposition:function(){var top=(($(window).height()/2)-($("#popup_container").outerHeight()/2))+$.alerts.verticalOffset;var left=(($(window).width()/2)-($("#popup_container").outerWidth()/2))+$.alerts.horizontalOffset;if(top<0)top=0;if(left<0)left=0;if($.browser.msie&&parseInt($.browser.version)<=6)top=top+$(window).scrollTop();$("#popup_container").css({top:top+'px',left:left+'px'});$("#popup_overlay").height($(document).height());},_maintainPosition:function(status){if($.alerts.repositionOnResize){switch(status){case true:$(window).bind('resize',$.alerts._reposition);break;case false:$(window).unbind('resize',$.alerts._reposition);break;}}}}
jAlert=function(message,title,callback){$.alerts.alert(message,title,callback);}
jConfirm=function(message,title,callback){$.alerts.confirm(message,title,callback);};jPrompt=function(message,value,title,callback){$.alerts.prompt(message,value,title,callback);};})(jQuery);
;/* http://keith-wood.name/countdown.html
   Countdown for jQuery v1.5.5.
   Written by Keith Wood (kbwood{at}iinet.com.au) January 2008.
   Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and 
   MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. 
   Please attribute the author if you use it. */
(function($){function Countdown(){this.regional=[];this.regional['']={labels:['Years','Months','Weeks','Days','Hours','Minutes','Seconds'],labels1:['Year','Month','Week','Day','Hour','Minute','Second'],compactLabels:['y','m','w','d'],timeSeparator:':',isRTL:false};this._defaults={until:null,since:null,timezone:null,serverSync:null,format:'dHMS',layout:'',compact:false,description:'',expiryUrl:'',expiryText:'',alwaysExpire:false,onExpiry:null,onTick:null};$.extend(this._defaults,this.regional[''])}var w='countdown';var Y=0;var O=1;var W=2;var D=3;var H=4;var M=5;var S=6;$.extend(Countdown.prototype,{markerClassName:'hasCountdown',_timer:setInterval(function(){$.countdown._updateTargets()},980),_timerTargets:[],setDefaults:function(a){this._resetExtraLabels(this._defaults,a);extendRemove(this._defaults,a||{})},UTCDate:function(a,b,c,e,f,g,h,i){if(typeof b=='object'&&b.constructor==Date){i=b.getMilliseconds();h=b.getSeconds();g=b.getMinutes();f=b.getHours();e=b.getDate();c=b.getMonth();b=b.getFullYear()}var d=new Date();d.setUTCFullYear(b);d.setUTCDate(1);d.setUTCMonth(c||0);d.setUTCDate(e||1);d.setUTCHours(f||0);d.setUTCMinutes((g||0)-(Math.abs(a)<30?a*60:a));d.setUTCSeconds(h||0);d.setUTCMilliseconds(i||0);return d},_settingsCountdown:function(a,b){if(!b){return $.countdown._defaults}var c=$.data(a,w);return(b=='all'?c.options:c.options[b])},_attachCountdown:function(a,b){var c=$(a);if(c.hasClass(this.markerClassName)){return}c.addClass(this.markerClassName);var d={options:$.extend({},b),_periods:[0,0,0,0,0,0,0]};$.data(a,w,d);this._changeCountdown(a)},_addTarget:function(a){if(!this._hasTarget(a)){this._timerTargets.push(a)}},_hasTarget:function(a){return($.inArray(a,this._timerTargets)>-1)},_removeTarget:function(b){this._timerTargets=$.map(this._timerTargets,function(a){return(a==b?null:a)})},_updateTargets:function(){for(var i=0;i<this._timerTargets.length;i++){this._updateCountdown(this._timerTargets[i])}},_updateCountdown:function(a,b){var c=$(a);b=b||$.data(a,w);if(!b){return}c.html(this._generateHTML(b));c[(this._get(b,'isRTL')?'add':'remove')+'Class']('countdown_rtl');var d=this._get(b,'onTick');if(d){d.apply(a,[b._hold!='lap'?b._periods:this._calculatePeriods(b,b._show,new Date())])}var e=b._hold!='pause'&&(b._since?b._now.getTime()<=b._since.getTime():b._now.getTime()>=b._until.getTime());if(e&&!b._expiring){b._expiring=true;if(this._hasTarget(a)||this._get(b,'alwaysExpire')){this._removeTarget(a);var f=this._get(b,'onExpiry');if(f){f.apply(a,[])}var g=this._get(b,'expiryText');if(g){var h=this._get(b,'layout');b.options.layout=g;this._updateCountdown(a,b);b.options.layout=h}var i=this._get(b,'expiryUrl');if(i){window.location=i}}b._expiring=false}else if(b._hold=='pause'){this._removeTarget(a)}$.data(a,w,b)},_changeCountdown:function(a,b,c){b=b||{};if(typeof b=='string'){var d=b;b={};b[d]=c}var e=$.data(a,w);if(e){this._resetExtraLabels(e.options,b);extendRemove(e.options,b);this._adjustSettings(a,e);$.data(a,w,e);var f=new Date();if((e._since&&e._since<f)||(e._until&&e._until>f)){this._addTarget(a)}this._updateCountdown(a,e)}},_resetExtraLabels:function(a,b){var c=false;for(var n in b){if(n.match(/[Ll]abels/)){c=true;break}}if(c){for(var n in a){if(n.match(/[Ll]abels[0-9]/)){a[n]=null}}}},_adjustSettings:function(a,b){var c=this._get(b,'serverSync');c=(c?c.apply(a,[]):null);var d=new Date();var e=this._get(b,'timezone');e=(e==null?-d.getTimezoneOffset():e);b._since=this._get(b,'since');if(b._since){b._since=this.UTCDate(e,this._determineTime(b._since,null));if(b._since&&c){b._since.setMilliseconds(b._since.getMilliseconds()+d.getTime()-c.getTime())}}b._until=this.UTCDate(e,this._determineTime(this._get(b,'until'),d));if(c){b._until.setMilliseconds(b._until.getMilliseconds()+d.getTime()-c.getTime())}b._show=this._determineShow(b)},_destroyCountdown:function(a){var b=$(a);if(!b.hasClass(this.markerClassName)){return}this._removeTarget(a);b.removeClass(this.markerClassName).empty();$.removeData(a,w)},_pauseCountdown:function(a){this._hold(a,'pause')},_lapCountdown:function(a){this._hold(a,'lap')},_resumeCountdown:function(a){this._hold(a,null)},_hold:function(a,b){var c=$.data(a,w);if(c){if(c._hold=='pause'&&!b){c._periods=c._savePeriods;var d=(c._since?'-':'+');c[c._since?'_since':'_until']=this._determineTime(d+c._periods[0]+'y'+d+c._periods[1]+'o'+d+c._periods[2]+'w'+d+c._periods[3]+'d'+d+c._periods[4]+'h'+d+c._periods[5]+'m'+d+c._periods[6]+'s');this._addTarget(a)}c._hold=b;c._savePeriods=(b=='pause'?c._periods:null);$.data(a,w,c);this._updateCountdown(a,c)}},_getTimesCountdown:function(a){var b=$.data(a,w);return(!b?null:(!b._hold?b._periods:this._calculatePeriods(b,b._show,new Date())))},_get:function(a,b){return(a.options[b]!=null?a.options[b]:$.countdown._defaults[b])},_determineTime:function(k,l){var m=function(a){var b=new Date();b.setTime(b.getTime()+a*1000);return b};var n=function(a){a=a.toLowerCase();var b=new Date();var c=b.getFullYear();var d=b.getMonth();var e=b.getDate();var f=b.getHours();var g=b.getMinutes();var h=b.getSeconds();var i=/([+-]?[0-9]+)\s*(s|m|h|d|w|o|y)?/g;var j=i.exec(a);while(j){switch(j[2]||'s'){case's':h+=parseInt(j[1],10);break;case'm':g+=parseInt(j[1],10);break;case'h':f+=parseInt(j[1],10);break;case'd':e+=parseInt(j[1],10);break;case'w':e+=parseInt(j[1],10)*7;break;case'o':d+=parseInt(j[1],10);e=Math.min(e,$.countdown._getDaysInMonth(c,d));break;case'y':c+=parseInt(j[1],10);e=Math.min(e,$.countdown._getDaysInMonth(c,d));break}j=i.exec(a)}return new Date(c,d,e,f,g,h,0)};var o=(k==null?l:(typeof k=='string'?n(k):(typeof k=='number'?m(k):k)));if(o)o.setMilliseconds(0);return o},_getDaysInMonth:function(a,b){return 32-new Date(a,b,32).getDate()},_generateHTML:function(c){c._periods=periods=(c._hold?c._periods:this._calculatePeriods(c,c._show,new Date()));var d=false;var e=0;for(var f=0;f<c._show.length;f++){d|=(c._show[f]=='?'&&periods[f]>0);c._show[f]=(c._show[f]=='?'&&!d?null:c._show[f]);e+=(c._show[f]?1:0)}var g=this._get(c,'compact');var h=this._get(c,'layout');var i=(g?this._get(c,'compactLabels'):this._get(c,'labels'));var j=this._get(c,'timeSeparator');var k=this._get(c,'description')||'';var l=function(a){var b=$.countdown._get(c,'compactLabels'+periods[a]);return(c._show[a]?periods[a]+(b?b[a]:i[a])+' ':'')};var m=function(a){var b=$.countdown._get(c,'labels'+periods[a]);return(c._show[a]?'<span class="countdown_section"><span class="countdown_amount">'+periods[a]+'</span><br/>'+(b?b[a]:i[a])+'</span>':'')};return(h?this._buildLayout(c,h,g):((g?'<span class="countdown_row countdown_amount'+(c._hold?' countdown_holding':'')+'">'+l(Y)+l(O)+l(W)+l(D)+(c._show[H]?this._minDigits(periods[H],2):'')+(c._show[M]?(c._show[H]?j:'')+this._minDigits(periods[M],2):'')+(c._show[S]?(c._show[H]||c._show[M]?j:'')+this._minDigits(periods[S],2):''):'<span class="countdown_row countdown_show'+e+(c._hold?' countdown_holding':'')+'">'+m(Y)+m(O)+m(W)+m(D)+m(H)+m(M)+m(S))+'</span>'+(k?'<span class="countdown_row countdown_descr">'+k+'</span>':'')))},_buildLayout:function(c,d,e){var f=this._get(c,(e?'compactLabels':'labels'));var g=function(a){return($.countdown._get(c,(e?'compactLabels':'labels')+c._periods[a])||f)[a]};var h=function(a,b){return Math.floor(a/b)%10};var j={desc:this._get(c,'description'),sep:this._get(c,'timeSeparator'),yl:g(Y),yn:c._periods[Y],ynn:this._minDigits(c._periods[Y],2),ynnn:this._minDigits(c._periods[Y],3),y1:h(c._periods[Y],1),y10:h(c._periods[Y],10),y100:h(c._periods[Y],100),y1000:h(c._periods[Y],1000),ol:g(O),on:c._periods[O],onn:this._minDigits(c._periods[O],2),onnn:this._minDigits(c._periods[O],3),o1:h(c._periods[O],1),o10:h(c._periods[O],10),o100:h(c._periods[O],100),o1000:h(c._periods[O],1000),wl:g(W),wn:c._periods[W],wnn:this._minDigits(c._periods[W],2),wnnn:this._minDigits(c._periods[W],3),w1:h(c._periods[W],1),w10:h(c._periods[W],10),w100:h(c._periods[W],100),w1000:h(c._periods[W],1000),dl:g(D),dn:c._periods[D],dnn:this._minDigits(c._periods[D],2),dnnn:this._minDigits(c._periods[D],3),d1:h(c._periods[D],1),d10:h(c._periods[D],10),d100:h(c._periods[D],100),d1000:h(c._periods[D],1000),hl:g(H),hn:c._periods[H],hnn:this._minDigits(c._periods[H],2),hnnn:this._minDigits(c._periods[H],3),h1:h(c._periods[H],1),h10:h(c._periods[H],10),h100:h(c._periods[H],100),h1000:h(c._periods[H],1000),ml:g(M),mn:c._periods[M],mnn:this._minDigits(c._periods[M],2),mnnn:this._minDigits(c._periods[M],3),m1:h(c._periods[M],1),m10:h(c._periods[M],10),m100:h(c._periods[M],100),m1000:h(c._periods[M],1000),sl:g(S),sn:c._periods[S],snn:this._minDigits(c._periods[S],2),snnn:this._minDigits(c._periods[S],3),s1:h(c._periods[S],1),s10:h(c._periods[S],10),s100:h(c._periods[S],100),s1000:h(c._periods[S],1000)};var k=d;for(var i=0;i<7;i++){var l='yowdhms'.charAt(i);var m=new RegExp('\\{'+l+'<\\}(.*)\\{'+l+'>\\}','g');k=k.replace(m,(c._show[i]?'$1':''))}$.each(j,function(n,v){var a=new RegExp('\\{'+n+'\\}','g');k=k.replace(a,v)});return k},_minDigits:function(a,b){a=''+a;if(a.length>=b){return a}a='0000000000'+a;return a.substr(a.length-b)},_determineShow:function(a){var b=this._get(a,'format');var c=[];c[Y]=(b.match('y')?'?':(b.match('Y')?'!':null));c[O]=(b.match('o')?'?':(b.match('O')?'!':null));c[W]=(b.match('w')?'?':(b.match('W')?'!':null));c[D]=(b.match('d')?'?':(b.match('D')?'!':null));c[H]=(b.match('h')?'?':(b.match('H')?'!':null));c[M]=(b.match('m')?'?':(b.match('M')?'!':null));c[S]=(b.match('s')?'?':(b.match('S')?'!':null));return c},_calculatePeriods:function(f,g,h){f._now=h;f._now.setMilliseconds(0);var i=new Date(f._now.getTime());if(f._since){if(h.getTime()<f._since.getTime()){f._now=h=i}else{h=f._since}}else{i.setTime(f._until.getTime());if(h.getTime()>f._until.getTime()){f._now=h=i}}var j=[0,0,0,0,0,0,0];if(g[Y]||g[O]){var k=$.countdown._getDaysInMonth(h.getFullYear(),h.getMonth());var l=$.countdown._getDaysInMonth(i.getFullYear(),i.getMonth());var m=(i.getDate()==h.getDate()||(i.getDate()>=Math.min(k,l)&&h.getDate()>=Math.min(k,l)));var n=function(a){return(a.getHours()*60+a.getMinutes())*60+a.getSeconds()};var o=Math.max(0,(i.getFullYear()-h.getFullYear())*12+i.getMonth()-h.getMonth()+((i.getDate()<h.getDate()&&!m)||(m&&n(i)<n(h))?-1:0));j[Y]=(g[Y]?Math.floor(o/12):0);j[O]=(g[O]?o-j[Y]*12:0);var p=function(a,b,c){var d=(a.getDate()==c);var e=$.countdown._getDaysInMonth(a.getFullYear()+b*j[Y],a.getMonth()+b*j[O]);if(a.getDate()>e){a.setDate(e)}a.setFullYear(a.getFullYear()+b*j[Y]);a.setMonth(a.getMonth()+b*j[O]);if(d){a.setDate(e)}return a};if(f._since){i=p(i,-1,l)}else{h=p(new Date(h.getTime()),+1,k)}}var q=Math.floor((i.getTime()-h.getTime())/1000);var r=function(a,b){j[a]=(g[a]?Math.floor(q/b):0);q-=j[a]*b};r(W,604800);r(D,86400);r(H,3600);r(M,60);r(S,1);if(q>0&&!f._since){var s=[1,12,4.3482,7,24,60,60];var t=S;var u=1;for(var v=S;v>=Y;v--){if(g[v]){if(j[t]>=u){j[t]=0;q=1}if(q>0){j[v]++;q=0;t=v;u=1}}u*=s[v]}}return j}});function extendRemove(a,b){$.extend(a,b);for(var c in b){if(b[c]==null){a[c]=null}}return a}$.fn.countdown=function(a){var b=Array.prototype.slice.call(arguments,1);if(a=='getTimes'||a=='settings'){return $.countdown['_'+a+'Countdown'].apply($.countdown,[this[0]].concat(b))}return this.each(function(){if(typeof a=='string'){$.countdown['_'+a+'Countdown'].apply($.countdown,[this].concat(b))}else{$.countdown._attachCountdown(this,a)}})};$.countdown=new Countdown()})(jQuery);
;(function($){$.countdown.regional['nl']={labels:['Jaren','Maanden','Weken','Dagen','Uren','Minuten','Seconden'],labels1:['Jaar','Maand','Week','Dag','Uur','Minuut','Seconde'],compactLabels:['j','m','w','d'],timeSeparator:':',isRTL:false};$.countdown.setDefaults($.countdown.regional['nl']);})(jQuery);
;;(function($){$.fn.ajaxSubmit=function(options){if(!this.length){log('ajaxSubmit: skipping submit process - no element selected');return this;}
if(typeof options=='function')
options={success:options};var url=$.trim(this.attr('action'));if(url){url=(url.match(/^([^#]+)/)||[])[1];}
url=url||window.location.href||'';options=$.extend({url:url,type:this.attr('method')||'GET',iframeSrc:/^https/i.test(window.location.href||'')?'javascript:false':'about:blank'},options||{});var veto={};this.trigger('form-pre-serialize',[this,options,veto]);if(veto.veto){log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');return this;}
if(options.beforeSerialize&&options.beforeSerialize(this,options)===false){log('ajaxSubmit: submit aborted via beforeSerialize callback');return this;}
var a=this.formToArray(options.semantic);if(options.data){options.extraData=options.data;for(var n in options.data){if(options.data[n]instanceof Array){for(var k in options.data[n])
a.push({name:n,value:options.data[n][k]});}
else
a.push({name:n,value:options.data[n]});}}
if(options.beforeSubmit&&options.beforeSubmit(a,this,options)===false){log('ajaxSubmit: submit aborted via beforeSubmit callback');return this;}
this.trigger('form-submit-validate',[a,this,options,veto]);if(veto.veto){log('ajaxSubmit: submit vetoed via form-submit-validate trigger');return this;}
var q=$.param(a);if(options.type.toUpperCase()=='GET'){options.url+=(options.url.indexOf('?')>=0?'&':'?')+q;options.data=null;}
else
options.data=q;var $form=this,callbacks=[];if(options.resetForm)callbacks.push(function(){$form.resetForm();});if(options.clearForm)callbacks.push(function(){$form.clearForm();});if(!options.dataType&&options.target){var oldSuccess=options.success||function(){};callbacks.push(function(data){$(options.target).html(data).each(oldSuccess,arguments);});}
else if(options.success)
callbacks.push(options.success);options.success=function(data,status){for(var i=0,max=callbacks.length;i<max;i++)
callbacks[i].apply(options,[data,status,$form]);};var files=$('input:file',this).fieldValue();var found=false;for(var j=0;j<files.length;j++)
if(files[j])
found=true;var multipart=false;if((files.length&&options.iframe!==false)||options.iframe||found||multipart){if(options.closeKeepAlive)
$.get(options.closeKeepAlive,fileUpload);else
fileUpload();}
else
$.ajax(options);this.trigger('form-submit-notify',[this,options]);return this;function fileUpload(){var form=$form[0];if($(':input[name=submit]',form).length){alert('Error: Form elements must not be named "submit".');return;}
var opts=$.extend({},$.ajaxSettings,options);var s=$.extend(true,{},$.extend(true,{},$.ajaxSettings),opts);var id='jqFormIO'+(new Date().getTime());var $io=$('<iframe id="'+id+'" name="'+id+'" src="'+opts.iframeSrc+'" />');var io=$io[0];$io.css({position:'absolute',top:'-1000px',left:'-1000px'});var xhr={aborted:0,responseText:null,responseXML:null,status:0,statusText:'n/a',getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(){this.aborted=1;$io.attr('src',opts.iframeSrc);}};var g=opts.global;if(g&&!$.active++)$.event.trigger("ajaxStart");if(g)$.event.trigger("ajaxSend",[xhr,opts]);if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&$.active--;return;}
if(xhr.aborted)
return;var cbInvoked=0;var timedOut=0;var sub=form.clk;if(sub){var n=sub.name;if(n&&!sub.disabled){options.extraData=options.extraData||{};options.extraData[n]=sub.value;if(sub.type=="image"){options.extraData[name+'.x']=form.clk_x;options.extraData[name+'.y']=form.clk_y;}}}
setTimeout(function(){var t=$form.attr('target'),a=$form.attr('action');form.setAttribute('target',id);if(form.getAttribute('method')!='POST')
form.setAttribute('method','POST');if(form.getAttribute('action')!=opts.url)
form.setAttribute('action',opts.url);if(!options.skipEncodingOverride){$form.attr({encoding:'multipart/form-data',enctype:'multipart/form-data'});}
if(opts.timeout)
setTimeout(function(){timedOut=true;cb();},opts.timeout);var extraInputs=[];try{if(options.extraData)
for(var n in options.extraData)
extraInputs.push($('<input type="hidden" name="'+n+'" value="'+options.extraData[n]+'" />').appendTo(form)[0]);$io.appendTo('body');io.attachEvent?io.attachEvent('onload',cb):io.addEventListener('load',cb,false);form.submit();}
finally{form.setAttribute('action',a);t?form.setAttribute('target',t):$form.removeAttr('target');$(extraInputs).remove();}},10);var domCheckCount=50;function cb(){if(cbInvoked++)return;io.detachEvent?io.detachEvent('onload',cb):io.removeEventListener('load',cb,false);var ok=true;try{if(timedOut)throw'timeout';var data,doc;doc=io.contentWindow?io.contentWindow.document:io.contentDocument?io.contentDocument:io.document;var isXml=opts.dataType=='xml'||doc.XMLDocument||$.isXMLDoc(doc);log('isXml='+isXml);if(!isXml&&(doc.body==null||doc.body.innerHTML=='')){if(--domCheckCount){cbInvoked=0;setTimeout(cb,100);return;}
log('Could not access iframe DOM after 50 tries.');return;}
xhr.responseText=doc.body?doc.body.innerHTML:null;xhr.responseXML=doc.XMLDocument?doc.XMLDocument:doc;xhr.getResponseHeader=function(header){var headers={'content-type':opts.dataType};return headers[header];};if(opts.dataType=='json'||opts.dataType=='script'){var ta=doc.getElementsByTagName('textarea')[0];if(ta)
xhr.responseText=ta.value;else{var pre=doc.getElementsByTagName('pre')[0];if(pre)
xhr.responseText=pre.innerHTML;}}
else if(opts.dataType=='xml'&&!xhr.responseXML&&xhr.responseText!=null){xhr.responseXML=toXml(xhr.responseText);}
data=$.httpData(xhr,opts.dataType);}
catch(e){ok=false;$.handleError(opts,xhr,'error',e);}
if(ok){opts.success(data,'success');if(g)$.event.trigger("ajaxSuccess",[xhr,opts]);}
if(g)$.event.trigger("ajaxComplete",[xhr,opts]);if(g&&!--$.active)$.event.trigger("ajaxStop");if(opts.complete)opts.complete(xhr,ok?'success':'error');setTimeout(function(){$io.remove();xhr.responseXML=null;},100);};function toXml(s,doc){if(window.ActiveXObject){doc=new ActiveXObject('Microsoft.XMLDOM');doc.async='false';doc.loadXML(s);}
else
doc=(new DOMParser()).parseFromString(s,'text/xml');return(doc&&doc.documentElement&&doc.documentElement.tagName!='parsererror')?doc:null;};};};$.fn.ajaxForm=function(options){return this.ajaxFormUnbind().bind('submit.form-plugin',function(){$(this).ajaxSubmit(options);return false;}).bind('click.form-plugin',function(e){var target=e.target;var $el=$(target);if(!($el.is(":submit,input:image"))){var t=$el.closest(':submit');if(t.length==0)
return;target=t[0];}
var form=this;form.clk=target;if(target.type=='image'){if(e.offsetX!=undefined){form.clk_x=e.offsetX;form.clk_y=e.offsetY;}else if(typeof $.fn.offset=='function'){var offset=$el.offset();form.clk_x=e.pageX-offset.left;form.clk_y=e.pageY-offset.top;}else{form.clk_x=e.pageX-target.offsetLeft;form.clk_y=e.pageY-target.offsetTop;}}
setTimeout(function(){form.clk=form.clk_x=form.clk_y=null;},100);});};$.fn.ajaxFormUnbind=function(){return this.unbind('submit.form-plugin click.form-plugin');};$.fn.formToArray=function(semantic){var a=[];if(this.length==0)return a;var form=this[0];var els=semantic?form.getElementsByTagName('*'):form.elements;if(!els)return a;for(var i=0,max=els.length;i<max;i++){var el=els[i];var n=el.name;if(!n)continue;if(semantic&&form.clk&&el.type=="image"){if(!el.disabled&&form.clk==el){a.push({name:n,value:$(el).val()});a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}
continue;}
var v=$.fieldValue(el,true);if(v&&v.constructor==Array){for(var j=0,jmax=v.length;j<jmax;j++)
a.push({name:n,value:v[j]});}
else if(v!==null&&typeof v!='undefined')
a.push({name:n,value:v});}
if(!semantic&&form.clk){var $input=$(form.clk),input=$input[0],n=input.name;if(n&&!input.disabled&&input.type=='image'){a.push({name:n,value:$input.val()});a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}}
return a;};$.fn.formSerialize=function(semantic){return $.param(this.formToArray(semantic));};$.fn.fieldSerialize=function(successful){var a=[];this.each(function(){var n=this.name;if(!n)return;var v=$.fieldValue(this,successful);if(v&&v.constructor==Array){for(var i=0,max=v.length;i<max;i++)
a.push({name:n,value:v[i]});}
else if(v!==null&&typeof v!='undefined')
a.push({name:this.name,value:v});});return $.param(a);};$.fn.fieldValue=function(successful){for(var val=[],i=0,max=this.length;i<max;i++){var el=this[i];var v=$.fieldValue(el,successful);if(v===null||typeof v=='undefined'||(v.constructor==Array&&!v.length))
continue;v.constructor==Array?$.merge(val,v):val.push(v);}
return val;};$.fieldValue=function(el,successful){var n=el.name,t=el.type,tag=el.tagName.toLowerCase();if(typeof successful=='undefined')successful=true;if(successful&&(!n||el.disabled||t=='reset'||t=='button'||(t=='checkbox'||t=='radio')&&!el.checked||(t=='submit'||t=='image')&&el.form&&el.form.clk!=el||tag=='select'&&el.selectedIndex==-1))
return null;if(tag=='select'){var index=el.selectedIndex;if(index<0)return null;var a=[],ops=el.options;var one=(t=='select-one');var max=(one?index+1:ops.length);for(var i=(one?index:0);i<max;i++){var op=ops[i];if(op.selected){var v=op.value;if(!v)
v=(op.attributes&&op.attributes['value']&&!(op.attributes['value'].specified))?op.text:op.value;if(one)return v;a.push(v);}}
return a;}
return el.value;};$.fn.clearForm=function(){return this.each(function(){$('input,select,textarea',this).clearFields();});};$.fn.clearFields=$.fn.clearInputs=function(){return this.each(function(){var t=this.type,tag=this.tagName.toLowerCase();if(t=='text'||t=='password'||tag=='textarea')
this.value='';else if(t=='checkbox'||t=='radio')
this.checked=false;else if(tag=='select')
this.selectedIndex=-1;});};$.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=='function'||(typeof this.reset=='object'&&!this.reset.nodeType))
this.reset();});};$.fn.enable=function(b){if(b==undefined)b=true;return this.each(function(){this.disabled=!b;});};$.fn.selected=function(select){if(select==undefined)select=true;return this.each(function(){var t=this.type;if(t=='checkbox'||t=='radio')
this.checked=select;else if(this.tagName.toLowerCase()=='option'){var $sel=$(this).parent('select');if(select&&$sel[0]&&$sel[0].type=='select-one'){$sel.find('option').selected(false);}
this.selected=select;}});};function log(){if($.fn.ajaxSubmit.debug&&window.console&&window.console.log)
window.console.log('[jquery.form] '+Array.prototype.join.call(arguments,''));};})(jQuery);
;(function($){$.fn.lazyKarl=function(options){var defaults={loadImg:'assets/images/indicator.gif'};var options=$.extend(defaults,options);$(this).each(function(){$('body').prepend('<div class="lazy-window-top" style="position:fixed; background-color:transparent; opacity:0; height:1px; width:100%; top:1px; margin:0 auto;"></div>');$('body').append('<div class="lazy-window-bottom" style="position:fixed; background-color:transparent; opacity:0; height:1px; width:100%; bottom:1px; margin:0 auto;"></div>');var allImages=$(this).find('img');allImages.each(function(){var imageSRC=$(this).attr("src");var imageREL=$(this).attr("rel");if(imageSRC!=""){$(this).attr("rel",imageSRC);}
$(this).prop("src",options.loadImg);});checkPos();$(window).scroll(function(e){checkPos();});function checkPos(){var windowTopOffset=$('.lazy-window-top').offset();var windowTopHeight=$('.lazy-window-top').height();var windowTop=parseInt(windowTopHeight+windowTopOffset.top);var windowBottomOffset=$('.lazy-window-bottom').offset();var windowBottomHeight=$('.lazy-window-bottom').height();var windowBottom=parseInt(windowBottomHeight+windowBottomOffset.top);allImages.each(function(){var imageOffset1=$(this).offset();var imageHeight=$(this).height();var imageBottom=parseInt(imageOffset1.top+imageHeight);if(imageOffset1.top<windowBottom&&imageBottom>windowTop){imageSRC1=$(this).attr("rel");$(this).attr("src",imageSRC1);}});}});}})(jQuery);
;(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}
var validator=$.data(this[0],'validator');if(validator){return validator;}
this.attr('novalidate','novalidate');validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){var inputsAndButtons=this.find("input, button");inputsAndButtons.filter(".cancel").click(function(){validator.cancelSubmit=true;});if(validator.settings.submitHandler){inputsAndButtons.filter(":submit").click(function(){validator.submitButton=this;});}
this.submit(function(event){if(validator.settings.debug)
event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);}
validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove();}
return false;}
return true;}
if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}
if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}
return handle();}else{validator.focusInvalid();return false;}});}
return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)
settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}
var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}
var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}
return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(""+a.value);},filled:function(a){return!!$.trim(""+a.value);},unchecked:function(a){return!a.checked;}});$.validator=function(options,form){this.settings=$.extend(true,{},$.validator.defaults,options);this.currentForm=form;this.init();};$.validator.format=function(source,params){if(arguments.length==1)
return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}
if(params.constructor!=Array){params=[params];}
$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:":hidden",ignoreTitle:false,onfocusin:function(element,event){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.addWrapper(this.errorsFor(element)).hide();}},onfocusout:function(element,event){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element,event){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element,event){if(element.name in this.submitted)
this.element(element);else if(element.parentNode.name in this.submitted)
this.element(element.parentNode);},highlight:function(element,errorClass,validClass){if(element.type==='radio'){this.findByName(element.name).addClass(errorClass).removeClass(validClass);}else{$(element).addClass(errorClass).removeClass(validClass);}},unhighlight:function(element,errorClass,validClass){if(element.type==='radio'){this.findByName(element.name).removeClass(errorClass).addClass(validClass);}else{$(element).removeClass(errorClass).addClass(validClass);}}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator"),eventType="on"+event.type.replace(/^validate/,"");validator.settings[eventType]&&validator.settings[eventType].call(validator,this[0],event);}
$(this.currentForm).validateDelegate("[type='text'], [type='password'], [type='file'], select, textarea, "+"[type='number'], [type='search'] ,[type='tel'], [type='url'], "+"[type='email'], [type='datetime'], [type='date'], [type='month'], "+"[type='week'], [type='time'], [type='datetime-local'], "+"[type='range'], [type='color'] ","focusin focusout keyup",delegate).validateDelegate("[type='radio'], [type='checkbox'], select, option","click",delegate);if(this.settings.invalidHandler)
$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())
$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}
return this.valid();},element:function(element){element=this.validationTargetFor(this.clean(element));this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}
if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}
this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}
this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}
this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)
$(this.currentForm).resetForm();this.submitted={};this.lastElement=null;this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)
count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin");}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))
return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.validationTargetFor(this.clean(element));var rules=$(element).rules();var dependencyMismatch=false;for(var method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}
dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}
if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method",e);throw e;}}
if(dependencyMismatch)
return;if(this.objectLength(rules))
this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)
return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)
return arguments[i];}
return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method),theregex=/\$?\{(\d+)\}/g;if(typeof message=="function"){message=message.call(this,rule.parameters,element);}else if(theregex.test(message)){message=jQuery.format(message.replace(theregex,'{$1}'),rule.parameters);}
this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)
toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message);}
if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}
if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}
if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass,this.settings.validClass);}}
this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass(this.settings.validClass).addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}
if(!this.labelContainer.append(label).length)
this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}
if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}
this.toShow=this.toShow.add(label);},errorsFor:function(element){var name=this.idOrName(element);return this.errors().filter(function(){return $(this).attr('for')==name;});},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},validationTargetFor:function(element){if(this.checkable(element)){element=this.findByName(element.name).not(this.settings.ignore)[0];}
return element;},checkable:function(element){return /radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))
return this.findByName(element.name).filter(':checked').length;}
return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)
this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();this.formSubmitted=false;}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false;}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",{old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(var method in $.validator.methods){var value;if(method==='required'&&typeof $.fn.prop==='function'){value=$element.prop(method);}else{value=$element.attr(method);}
if(value){rules[method]=value;}else if($element[0].getAttribute("type")===method){rules[method]=true;}}
if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}
return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}
return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}
if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}
if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}
if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}
if(rules.messages){delete rules.messages;}
return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}
return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))
return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var val=$(element).val();return val&&val.length>0;case'input':if(this.checkable(element))
return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))
return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])
this.settings.messages[element.name]={};previous.originalMessage=this.settings.messages[element.name].remote;this.settings.messages[element.name].remote=previous.message;param=typeof param=="string"&&{url:param}||param;if(this.pending[element.name]){return"pending";}
if(previous.old===value){return previous.valid;}
previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){validator.settings.messages[element.name].remote=previous.originalMessage;var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};var message=response||validator.defaultMessage(element,"remote");errors[element.name]=previous.message=$.isFunction(message)?message(value):message;validator.showErrors(errors);}
previous.valid=valid;validator.stopRequest(element,valid);}},param));return"pending";},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))
return"dependency-mismatch";if(/[^0-9 -]+/.test(value))
return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(var n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)
nDigit-=9;}
nCheck+=nDigit;bEven=!bEven;}
return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){var target=$(param).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){$(element).valid();});return value==target.val();}}});$.format=$.validator.format;})(jQuery);;(function($){var pendingRequests={};if($.ajaxPrefilter){$.ajaxPrefilter(function(settings,_,xhr){var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
pendingRequests[port]=xhr;}});}else{var ajax=$.ajax;$.ajax=function(settings){var mode=("mode"in settings?settings:$.ajaxSettings).mode,port=("port"in settings?settings:$.ajaxSettings).port;if(mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
return(pendingRequests[port]=ajax.apply(this,arguments));}
return ajax.apply(this,arguments);};}})(jQuery);;(function($){if(!jQuery.event.special.focusin&&!jQuery.event.special.focusout&&document.addEventListener){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){this.addEventListener(original,handler,true);},teardown:function(){this.removeEventListener(original,handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};function handler(e){e=$.event.fix(e);e.type=fix;return $.event.handle.call(this,e);}});};$.extend($.fn,{validateDelegate:function(delegate,type,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});}});})(jQuery);
;eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('h.i[\'1a\']=h.i[\'z\'];h.O(h.i,{y:\'D\',z:9(x,t,b,c,d){6 h.i[h.i.y](x,t,b,c,d)},17:9(x,t,b,c,d){6 c*(t/=d)*t+b},D:9(x,t,b,c,d){6-c*(t/=d)*(t-2)+b},13:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t+b;6-c/2*((--t)*(t-2)-1)+b},X:9(x,t,b,c,d){6 c*(t/=d)*t*t+b},U:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t+1)+b},R:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t+b;6 c/2*((t-=2)*t*t+2)+b},N:9(x,t,b,c,d){6 c*(t/=d)*t*t*t+b},M:9(x,t,b,c,d){6-c*((t=t/d-1)*t*t*t-1)+b},L:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t+b;6-c/2*((t-=2)*t*t*t-2)+b},K:9(x,t,b,c,d){6 c*(t/=d)*t*t*t*t+b},J:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t*t*t+1)+b},I:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t*t+b;6 c/2*((t-=2)*t*t*t*t+2)+b},G:9(x,t,b,c,d){6-c*8.C(t/d*(8.g/2))+c+b},15:9(x,t,b,c,d){6 c*8.n(t/d*(8.g/2))+b},12:9(x,t,b,c,d){6-c/2*(8.C(8.g*t/d)-1)+b},Z:9(x,t,b,c,d){6(t==0)?b:c*8.j(2,10*(t/d-1))+b},Y:9(x,t,b,c,d){6(t==d)?b+c:c*(-8.j(2,-10*t/d)+1)+b},W:9(x,t,b,c,d){e(t==0)6 b;e(t==d)6 b+c;e((t/=d/2)<1)6 c/2*8.j(2,10*(t-1))+b;6 c/2*(-8.j(2,-10*--t)+2)+b},V:9(x,t,b,c,d){6-c*(8.o(1-(t/=d)*t)-1)+b},S:9(x,t,b,c,d){6 c*8.o(1-(t=t/d-1)*t)+b},Q:9(x,t,b,c,d){e((t/=d/2)<1)6-c/2*(8.o(1-t*t)-1)+b;6 c/2*(8.o(1-(t-=2)*t)+1)+b},P:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6-(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b},H:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6 a*8.j(2,-10*t)*8.n((t*d-s)*(2*8.g)/p)+c+b},T:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d/2)==2)6 b+c;e(!p)p=d*(.3*1.5);e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);e(t<1)6-.5*(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b;6 a*8.j(2,-10*(t-=1))*8.n((t*d-s)*(2*8.g)/p)*.5+c+b},F:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*(t/=d)*t*((s+1)*t-s)+b},E:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},16:9(x,t,b,c,d,s){e(s==u)s=1.l;e((t/=d/2)<1)6 c/2*(t*t*(((s*=(1.B))+1)*t-s))+b;6 c/2*((t-=2)*t*(((s*=(1.B))+1)*t+s)+2)+b},A:9(x,t,b,c,d){6 c-h.i.v(x,d-t,0,c,d)+b},v:9(x,t,b,c,d){e((t/=d)<(1/2.k)){6 c*(7.q*t*t)+b}m e(t<(2/2.k)){6 c*(7.q*(t-=(1.5/2.k))*t+.k)+b}m e(t<(2.5/2.k)){6 c*(7.q*(t-=(2.14/2.k))*t+.11)+b}m{6 c*(7.q*(t-=(2.18/2.k))*t+.19)+b}},1b:9(x,t,b,c,d){e(t<d/2)6 h.i.A(x,t*2,0,c,d)*.5+b;6 h.i.v(x,t*2-d,0,c,d)*.5+c*.5+b}});',62,74,'||||||return||Math|function|||||if|var|PI|jQuery|easing|pow|75|70158|else|sin|sqrt||5625|asin|||undefined|easeOutBounce|abs||def|swing|easeInBounce|525|cos|easeOutQuad|easeOutBack|easeInBack|easeInSine|easeOutElastic|easeInOutQuint|easeOutQuint|easeInQuint|easeInOutQuart|easeOutQuart|easeInQuart|extend|easeInElastic|easeInOutCirc|easeInOutCubic|easeOutCirc|easeInOutElastic|easeOutCubic|easeInCirc|easeInOutExpo|easeInCubic|easeOutExpo|easeInExpo||9375|easeInOutSine|easeInOutQuad|25|easeOutSine|easeInOutBack|easeInQuad|625|984375|jswing|easeInOutBounce'.split('|'),0,{}))
;/* Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 * Thanks to: Seamus Leahy for adding deltaX and deltaY
 *
 * Version: 3.0.6
 * 
 * Requires: 1.2.2+
 */
(function(d){function e(a){var b=a||window.event,c=[].slice.call(arguments,1),f=0,e=0,g=0,a=d.event.fix(b);a.type="mousewheel";b.wheelDelta&&(f=b.wheelDelta/120);b.detail&&(f=-b.detail/3);g=f;b.axis!==void 0&&b.axis===b.HORIZONTAL_AXIS&&(g=0,e=-1*f);b.wheelDeltaY!==void 0&&(g=b.wheelDeltaY/120);b.wheelDeltaX!==void 0&&(e=-1*b.wheelDeltaX/120);c.unshift(a,f,e,g);return(d.event.dispatch||d.event.handle).apply(this,c)}var c=["DOMMouseScroll","mousewheel"];if(d.event.fixHooks)for(var h=c.length;h;)d.event.fixHooks[c[--h]]=d.event.mouseHooks;d.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],e,false);else this.onmousewheel=e},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],e,false);else this.onmousewheel=null}};d.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);
;/* fancyBox v2.0.3 fancyapps.com | fancyapps.com/fancybox/#license */
(function(r,n,d){var i=d(r),o=d(n),a=d.fancybox=function(){a.open.apply(this,arguments)},p=!1,q=null;d.extend(a,{version:"2.0.3",defaults:{padding:15,margin:20,width:800,height:600,minWidth:200,minHeight:200,maxWidth:9999,maxHeight:9999,autoSize:!0,fitToView:!0,aspectRatio:!1,topRatio:0.5,fixed:!d.browser.msie||6<d.browser.version,scrolling:"auto",wrapCSS:"fancybox-default",arrows:!0,closeBtn:!0,closeClick:!1,nextClick:!1,mouseWheel:!0,autoPlay:!1,playSpeed:3E3,modal:!1,loop:!0,ajax:{},keys:{next:[13,32,34,39,40],prev:[8,33,37,38],close:[27]},index:0,type:null,href:null,content:null,title:null,tpl:{wrap:'<div class="fancybox-wrap"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div>',image:'<img class="fancybox-image" src="{href}" alt="" />',iframe:'<iframe class="fancybox-iframe" name="fancybox-frame{rnd}" frameborder="0" hspace="0" '+(d.browser.msie?'allowtransparency="true""':"")+' scrolling="{scrolling}" src="{href}"></iframe>',swf:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{href}" /><embed src="{href}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="100%" height="100%" wmode="transparent"></embed></object>',error:'<p class="fancybox-error">The requested content cannot be loaded.<br/>Please try again later.</p>',closeBtn:'<div title="Close" class="fancybox-item fancybox-close"></div>',next:'<a title="Next" class="fancybox-item fancybox-next"><span></span></a>',prev:'<a title="Previous" class="fancybox-item fancybox-prev"><span></span></a>'},openEffect:"fade",openSpeed:500,openEasing:"swing",openOpacity:!0,openMethod:"zoomIn",closeEffect:"fade",closeSpeed:500,closeEasing:"swing",closeOpacity:!0,closeMethod:"zoomOut",nextEffect:"elastic",nextSpeed:300,nextEasing:"swing",nextMethod:"changeIn",prevEffect:"elastic",prevSpeed:300,prevEasing:"swing",prevMethod:"changeOut",helpers:{overlay:{speedIn:0,speedOut:0,opacity:0.85,css:{cursor:"pointer","background-color":"rgba(0, 0, 0, 0.85)"},closeClick:!0},title:{type:"float"}}},group:{},opts:{},coming:null,current:null,isOpen:!1,isOpened:!1,wrap:null,outer:null,inner:null,player:{timer:null,isActive:!1},ajaxLoad:null,imgPreload:null,transitions:{},helpers:{},open:function(b,c){d.isArray(b)||(b=[b]);if(b.length)a.close(!0),a.opts=d.extend(!0,{},a.defaults,c),a.group=b,a._start(a.opts.index||0)},cancel:function(){if(!(a.coming&&!1===a.trigger("onCancel"))&&(a.coming=null,a.hideLoading(),a.ajaxLoad&&a.ajaxLoad.abort(),a.ajaxLoad=null,a.imgPreload))a.imgPreload.onload=a.imgPreload.onabort=a.imgPreload.onerror=null},close:function(b){a.cancel();if(a.current&&!1!==a.trigger("beforeClose"))a.unbindEvents(),!a.isOpen||b&&!0===b[0]?(d(".fancybox-wrap").stop().trigger("onReset").remove(),a._afterZoomOut()):(a.isOpen=a.isOpened=!1,d(".fancybox-item").remove(),a.wrap.stop(!0).removeClass("fancybox-opened"),a.inner.css("overflow","hidden"),a.transitions[a.current.closeMethod]())},play:function(b){var c=function(){clearTimeout(a.player.timer)},e=function(){c();if(a.current&&a.player.isActive)a.player.timer=setTimeout(a.next,a.current.playSpeed)},g=function(){c();d("body").unbind(".player");a.player.isActive=!1;a.trigger("onPlayEnd")};if(a.player.isActive||b&&!1===b[0])g();else if(a.current&&(a.current.loop||a.current.index<a.group.length-1))a.player.isActive=!0,e(),d("body").bind({"onCancel.player afterShow.player onUpdate.player":e,"beforeClose.player":g,"beforeLoad.player":c}),a.trigger("onPlayStart")},next:function(){a.current&&a.jumpto(a.current.index+1)},prev:function(){a.current&&a.jumpto(a.current.index-1)},jumpto:function(b){a.current&&(b=parseInt(b,10),1<a.group.length&&a.current.loop&&(b>=a.group.length?b=0:0>b&&(b=a.group.length-1)),"undefined"!==typeof a.group[b]&&(a.cancel(),a._start(b)))},reposition:function(b){a.isOpen&&a.wrap.css(a._getPosition(b))},update:function(){a.isOpen&&(p||(q=setInterval(function(){if(p&&(p=!1,clearTimeout(q),a.current)){if(a.current.autoSize)a.inner.height("auto"),a.current.height=a.inner.height();a._setDimension();a.current.canGrow&&a.inner.height("auto");a.reposition();a.trigger("onUpdate")}},100)),p=!0)},toggle:function(){if(a.isOpen)a.current.fitToView=!a.current.fitToView,a.update()},hideLoading:function(){d("#fancybox-loading").remove()},showLoading:function(){a.hideLoading();d('<div id="fancybox-loading"></div>').click(a.cancel).appendTo("body")},getViewport:function(){return{x:i.scrollLeft(),y:i.scrollTop(),w:i.width(),h:i.height()}},unbindEvents:function(){a.wrap&&a.wrap.unbind(".fb");o.unbind(".fb");i.unbind(".fb")},bindEvents:function(){var b=a.current,c=b.keys;b&&(i.bind("resize.fb, orientationchange.fb",a.update),c&&o.bind("keydown.fb",function(b){-1<d.inArray(b.target.tagName.toLowerCase(),["input","textarea","select","button"])||(-1<d.inArray(b.keyCode,c.close)?(a.close(),b.preventDefault()):-1<d.inArray(b.keyCode,c.next)?(a.next(),b.preventDefault()):-1<d.inArray(b.keyCode,c.prev)&&(a.prev(),b.preventDefault()))}),d.fn.mousewheel&&b.mouseWheel&&1<a.group.length&&a.wrap.bind("mousewheel.fb",function(b,c){if(0===d(b.target).get(0).clientHeight||d(b.target).get(0).scrollHeight===d(b.target).get(0).clientHeight)b.preventDefault(),a[0<c?"prev":"next"]()}))},trigger:function(b){var c,e=-1<d.inArray(b,["onCancel","beforeLoad","afterLoad"])?"coming":"current";if(a[e]){d.isFunction(a[e][b])&&(c=a[e][b].apply(a[e],Array.prototype.slice.call(arguments,1)));if(!1===c)return!1;a[e].helpers&&d.each(a[e].helpers,function(c,e){if(e&&"undefined"!==typeof a.helpers[c]&&d.isFunction(a.helpers[c][b]))a.helpers[c][b](e)});d.event.trigger(b+".fb")}},isImage:function(a){return a&&a.match(/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i)},isSWF:function(a){return a&&a.match(/\.(swf)(.*)?$/i)},_start:function(b){var c=a.group[b]||null,e,g,h,f=d.extend(!0,{},a.opts,d.isPlainObject(c)?c:{},{index:b,element:c});if("number"===typeof f.margin)f.margin=[f.margin,f.margin,f.margin,f.margin];f.modal&&d.extend(!0,f,{closeBtn:!1,closeClick:!1,nextClick:!1,arrows:!1,mouseWheel:!1,keys:null,helpers:{overlay:{css:{cursor:"auto"},closeClick:!1}}});a.coming=f;if(!1===a.trigger("beforeLoad"))a.coming=null;else{if("object"===typeof c&&(c.nodeType||c instanceof d))e=!0,f.href=d(c).attr("href")||f.href,f.title=d(c).attr("title")||f.title,d.metadata&&d.extend(f,d(c).metadata());g=f.type;b=f.href;if(!g)e&&(h=d(c).data("fancybox-type"),!h&&c.className&&(h=(h=c.className.match(/fancybox\.(\w+)/))?h[1]:!1)),h?g=h:b&&(a.isImage(b)?g="image":a.isSWF(b)?g="swf":b.match(/^#/)&&(g="inline")),g||(g=e?"inline":"html"),f.type=g;if("inline"===g||"html"===g){if(!f.content)f.content="inline"===g&&b?d(b):c;f.content.length||(g=null)}else f.href=b||c,f.href||(g=null);f.group=a.group;"image"===g?a._loadImage():"ajax"===g?a._loadAjax():g?a._afterLoad():a._error()}},_error:function(){a.coming.type="html";a.coming.minHeight=0;a.coming.autoSize=!0;a.coming.content=a.coming.tpl.error;a._afterLoad()},_loadImage:function(){a.imgPreload=new Image;a.imgPreload.onload=function(){this.onload=this.onerror=null;a.coming.width=this.width;a.coming.height=this.height;a._afterLoad()};a.imgPreload.onerror=function(){this.onload=this.onerror=null;a._error()};a.imgPreload.src=a.coming.href;a.imgPreload.complete||a.showLoading()},_loadAjax:function(){a.showLoading();a.ajaxLoad=d.ajax(d.extend({},a.coming.ajax,{url:a.coming.href,error:function(b,c,e){"abort"!==c?(a.coming.content=e,a._error()):a.hideLoading()},success:function(b,c){if("success"===c)a.coming.content=b,a._afterLoad()}}))},_afterLoad:function(){a.hideLoading();!a.coming||!1===a.trigger("afterLoad",a.current)?a.coming=!1:(a.isOpened?(d(".fancybox-item").remove(),a.wrap.stop(!0).removeClass("fancybox-opened"),a.inner.css("overflow","hidden"),a.transitions[a.current.prevMethod]()):(d(".fancybox-wrap").stop().trigger("onReset").remove(),a.trigger("afterClose")),a.unbindEvents(),a.isOpen=!1,a.current=a.coming,a.coming=!1,a.wrap=d(a.current.tpl.wrap).addClass("fancybox-tmp "+a.current.wrapCSS).appendTo("body"),a.outer=d(".fancybox-outer",a.wrap).css("padding",a.current.padding+"px"),a.inner=d(".fancybox-inner",a.wrap),a._setContent(),a.trigger("beforeShow"),a._setDimension(),a.wrap.hide().removeClass("fancybox-tmp"),a.bindEvents(),a.transitions[a.isOpened?a.current.nextMethod:a.current.openMethod]())},_setContent:function(){var b,c,e=a.current,g=e.type;switch(g){case"inline":case"ajax":case"html":"inline"===g?(b=e.content.show().detach(),b.parent().hasClass("fancybox-inner")&&b.parents(".fancybox-wrap").trigger("onReset").remove(),d(a.wrap).bind("onReset",function(){b.appendTo("body").hide()})):b=e.content;if(e.autoSize)c=d('<div class="fancybox-tmp"></div>').appendTo(d("body")).append(b),e.width=c.outerWidth(),e.height=c.outerHeight(!0),b=c.contents().detach(),c.remove();break;case"image":b=e.tpl.image.replace("{href}",e.href);e.aspectRatio=!0;break;case"swf":b=e.tpl.swf.replace(/\{width\}/g,e.width).replace(/\{height\}/g,e.height).replace(/\{href\}/g,e.href);break;case"iframe":b=e.tpl.iframe.replace("{href}",e.href).replace("{scrolling}",e.scrolling).replace("{rnd}",(new Date).getTime())}if(-1<d.inArray(g,["image","swf","iframe"]))e.autoSize=!1,e.scrolling=!1;a.inner.append(b)},_setDimension:function(){var b=a.current,c=a.getViewport(),e=b.margin,g=2*b.padding,h=b.width+g,f=b.height+g,m=b.width/b.height,j=b.maxWidth,k=b.maxHeight,i=b.minWidth,l=b.minHeight;c.w-=e[1]+e[3];c.h-=e[0]+e[2];-1<h.toString().indexOf("%")&&(h=c.w*parseFloat(h)/100);-1<f.toString().indexOf("%")&&(f=c.h*parseFloat(f)/100);b.fitToView&&(j=Math.min(c.w,j),k=Math.min(c.h,k));j=Math.max(i,j);k=Math.max(l,k);b.aspectRatio?(h>j&&(h=j,f=(h-g)/m+g),f>k&&(f=k,h=(f-g)*m+g),h<i&&(h=i,f=(h-g)/m+g),f<l&&(f=l,h=(f-g)*m+g)):(h=Math.max(i,Math.min(h,j)),f=Math.max(l,Math.min(f,k)));h=Math.round(h);f=Math.round(f);d(a.wrap.add(a.outer).add(a.inner)).width("auto").height("auto");a.inner.width(h-g).height(f-g);a.wrap.width(h);e=a.wrap.height();if(h>j||e>k)for(;(h>j||e>k)&&h>i&&e>l;)f-=10,b.aspectRatio?(h=Math.round((f-g)*m+g),h<i&&(h=i,f=(h-g)/m+g)):h-=10,a.inner.width(h-g).height(f-g),a.wrap.width(h),e=a.wrap.height();b.dim={width:h,height:e};b.canGrow=b.autoSize&&f>l&&f<k;b.canShrink=!1;b.canExpand=!1;if(h-g<b.width||f-g<b.height)b.canExpand=!0;else if((h>c.w||e>c.h)&&h>i&&f>l)b.canShrink=!0;b=e-g;a.innerSpace=b-a.inner.height();a.outerSpace=b-a.outer.height()},_getPosition:function(b){var c=a.getViewport(),e=a.current.margin,d=a.wrap.width()+
e[1]+e[3],h=a.wrap.height()+e[0]+e[2],f={position:"absolute",top:e[0]+c.y,left:e[3]+c.x};if(a.current.fixed&&(!b||!1===b[0])&&h<=c.h&&d<=c.w)f={position:"fixed",top:e[0],left:e[3]};f.top=Math.ceil(Math.max(f.top,f.top+(c.h-h)*a.current.topRatio))+"px";f.left=Math.ceil(Math.max(f.left,f.left+0.5*(c.w-d)))+"px";return f},_afterZoomIn:function(){var b=a.current;a.isOpen=a.isOpened=!0;a.wrap.addClass("fancybox-opened").css("overflow","visible");a.update();a.inner.css("overflow","auto"===b.scrolling?"auto":"yes"===b.scrolling?"scroll":"hidden");if(b.closeClick||b.nextClick)a.inner.bind("click.fb",b.nextClick?a.next:a.close);b.closeBtn&&d(a.current.tpl.closeBtn).appendTo(a.wrap).bind("click.fb",a.close);b.arrows&&1<a.group.length&&((b.loop||0<b.index)&&d(b.tpl.prev).appendTo(a.wrap).bind("click.fb",a.prev),(b.loop||b.index<a.group.length-1)&&d(b.tpl.next).appendTo(a.wrap).bind("click.fb",a.next));a.trigger("afterShow");if(a.opts.autoPlay&&!a.player.isActive)a.opts.autoPlay=!1,a.play()},_afterZoomOut:function(){a.trigger("afterClose");a.wrap.trigger("onReset").remove();d.extend(a,{group:{},opts:{},current:null,isOpened:!1,isOpen:!1,wrap:null,outer:null,inner:null})}});a.transitions={getOrigPosition:function(){var b=a.current.element,c={},e=50,g=50,h;b&&b.nodeName&&d(b).is(":visible")?(h=d(b).find("img:first"),h.length?(c=h.offset(),e=h.outerWidth(),g=h.outerHeight()):c=d(b).offset()):(b=a.getViewport(),c.top=b.y+0.5*(b.h-g),c.left=b.x+0.5*(b.w-e));return c={top:Math.ceil(c.top)+"px",left:Math.ceil(c.left)+"px",width:Math.ceil(e)+"px",height:Math.ceil(g)+"px"}},step:function(b,c){var e,d,h;if("width"===c.prop||"height"===c.prop)d=h=Math.ceil(b-2*a.current.padding),"height"===c.prop&&(e=(b-c.start)/(c.end-c.start),c.start>c.end&&(e=1-e),d-=a.innerSpace*e,h-=a.outerSpace*e),a.inner[c.prop](d),a.outer[c.prop](h)},zoomIn:function(){var b=a.current,c,e;c=b.dim;if("elastic"===b.openEffect){e=d.extend({},c,a._getPosition(!0));delete e.position;c=this.getOrigPosition();if(b.openOpacity)c.opacity=0,e.opacity=1;a.wrap.css(c).show().animate(e,{duration:b.openSpeed,easing:b.openEasing,step:this.step,complete:a._afterZoomIn})}else a.wrap.css(d.extend({},c,a._getPosition())),"fade"===b.openEffect?a.wrap.fadeIn(b.openSpeed,a._afterZoomIn):(a.wrap.show(),a._afterZoomIn())},zoomOut:function(){var b=a.current,c;if("elastic"===b.closeEffect){"fixed"===a.wrap.css("position")&&a.wrap.css(a._getPosition(!0));c=this.getOrigPosition();if(b.closeOpacity)c.opacity=0;a.wrap.animate(c,{duration:b.closeSpeed,easing:b.closeEasing,step:this.step,complete:a._afterZoomOut})}else a.wrap.fadeOut("fade"===b.closeEffect?b.closeSpeed:0,a._afterZoomOut)},changeIn:function(){var b=a.current,c;"elastic"===a.current.nextEffect?(c=a._getPosition(!0),c.opacity=0,c.top=parseInt(c.top,10)-200+"px",a.wrap.css(c).show().animate({opacity:1,top:"+=200px"},{duration:b.nextSpeed,complete:a._afterZoomIn})):(a.wrap.css(a._getPosition()),"fade"===b.nextEffect?a.wrap.hide().fadeIn(b.nextSpeed,a._afterZoomIn):(a.wrap.show(),a._afterZoomIn()))},changeOut:function(){function b(){d(this).trigger("onReset").remove()}a.wrap.removeClass("fancybox-opened");"elastic"===a.current.prevEffect?a.wrap.animate({opacity:0,top:"+=200px"},{duration:a.current.prevSpeed,complete:b}):a.wrap.fadeOut("fade"===a.current.prevEffect?a.current.prevSpeed:0,b)}};a.helpers.overlay={overlay:null,update:function(){var a,c;this.overlay.width(0).height(0);d.browser.msie?(a=Math.max(n.documentElement.scrollWidth,n.body.scrollWidth),c=Math.max(n.documentElement.offsetWidth,n.body.offsetWidth),a=a<c?i.width():a):a=o.width();this.overlay.width(a).height(o.height())},beforeShow:function(b){if(!this.overlay)this.overlay=d('<div id="fancybox-overlay"></div>').css(b.css||{background:"black"}).appendTo("body"),this.update(),b.closeClick&&this.overlay.bind("click.fb",a.close),i.bind("resize.fb",d.proxy(this.update,this)),this.overlay.fadeTo(b.speedIn||"fast",b.opacity||1)},onUpdate:function(){this.update()},afterClose:function(a){this.overlay&&this.overlay.fadeOut(a.speedOut||"fast",function(){d(this).remove()});this.overlay=null}};a.helpers.title={beforeShow:function(b){var c;if(c=a.current.title)c=d('<div class="fancybox-title fancybox-title-'+
b.type+'-wrap">'+c+"</div>").appendTo("body"),"float"===b.type&&(c.width(c.width()),c.wrapInner('<span class="child"></span>'),a.current.margin[2]+=Math.abs(parseInt(c.css("margin-bottom"),10))),c.appendTo("over"===b.type?a.inner:"outside"===b.type?a.wrap:a.outer)}};d.fn.fancybox=function(b){function c(b){var c=[],i=!1,j=d(this).data("fancybox-group");b.preventDefault();if("undefined"!==typeof j)i=j?"data-fancybox-group":!1;else if(this.rel&&""!==this.rel&&"nofollow"!==this.rel)j=this.rel,i="rel";i&&(c=g.length?d(g).filter("["+i+'="'+j+'"]'):d("["+i+'="'+j+'"]'));c.length?(e.index=c.index(this),a.open(c.get(),e)):a.open(this,e);return!1}var e=b||{},g=this.selector||"";g?o.undelegate(g,"click.fb-start").delegate(g,"click.fb-start",c):d(this).unbind("click.fb-start").bind("click.fb-start",c);return this}})(window,document,jQuery);
;function renewButtons()
{$('button.cart').button({icons:{primary:"ui-icon-cart"}});$('#afrekenen').click(function()
{window.location='/winkelwagen';});$('#legen').button({icons:{primary:"ui-icon-trash"}}).click(function()
{var answer=confirm('Weet je zeker dat het winkelmandje wilt leeggooien?')
if(answer)
{$.ajax("/winkelwagen/ajax.php?action=empty");}});}
$(document).ready(function()
{$("#winkelwagen").load("/winkelwagen/ajax.php?action=mandje");renewButtons();$('.fancybox').fancybox();$(".lazyloader").lazyKarl();var newYear=new Date();newYear=new Date(newYear.getFullYear()+1,1-1,1);$('#countdown').countdown({until:newYear});});function winkelmandje(action,art,winkel)
{if(winkel==0)
{jPrompt('<p><strong>Afhaalpunt selecteren</strong></p>Om te kunnen bestellen moet u eerst een afhaalpunt selecteren. Vul hier de cijfers van uw postcode in om een te zoeken:','1234','Prompt Dialog',function(r)
{if(r)
{var location=("/winkeliers/?postcode="+r);this.location.href=location;}});}
else
{if(action=='add')
{jPrompt('<p><strong>Aantal</strong></p>Hoeveel wilt u bestellen?','1','Hoeveel?',function(r)
{if(r)
{$("#winkelmandje").html("<p>Bezig met laden van het winkelmandje...</p>").load("/winkelwagen/ajax.php?action=add&aantal="+r+"&art="+art,function(){renewButtons()});}});}}}
;/*
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;},strict:(function(){var doctype;if(document.compatMode=='BackCompat')return false;doctype=document.doctype;if(doctype){return!/frameset|transitional/i.test(doctype.publicId);}
doctype=document.firstChild;if(doctype.nodeType!=8||/^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)){return false;}
return true;})()};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/(?:^|\s)./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement,simple){if(simple)return text.replace(wsStart,'').replace(wsEnd,'');if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');var checkTypes={'':1,'text/css':1};function isContainerReady(el){if(!checkTypes[el.type.toLowerCase()])return true;return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=(function(glyphs){var key,fallbacks={'\u2011':'\u002d','\u00ad':'\u2011'};for(key in fallbacks){if(!hasOwnProperty(fallbacks,key))continue;if(!glyphs[key])glyphs[key]=glyphs[fallbacks[key]];}
return glyphs;})(data.glyphs);this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,w,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
w=glyph.w;if(isNaN(w))w=+this.w;if(w>0){w+=letterSpacing;if(wordSeparators[chr])w+=wordSpacing;}
width+=jumps[++j]=~~w;kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){try{if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
catch(e){}
return false;}
function onOverOut(e){var related=e.relatedTarget;if(related&&contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){if(!e)e=window.event;trigger(e.target||e.srcElement,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;if(hoverState){options=merge(options,options.hover);options._mediatorMode=1;}
api.replace(el,options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};this.detach=function(el){if(el.onmouseenter===undefined){removeEvent(el,'mouseover',onOverOut);removeEvent(el,'mouseout',onOverOut);}
else{removeEvent(el,'mouseenter',onEnterLeave);removeEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,listener);}}
function attach(el,options){if(options._mediatorMode)return el;var storage=sharedStorage.get(el);var oldOptions=storage.options;if(oldOptions){if(oldOptions===options)return el;if(oldOptions.hover)hoverHandler.detach(el);}
if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function removeEvent(el,type,listener){if(el.removeEventListener){el.removeEventListener(type,listener,false);}
else if(el.detachEvent){el.detachEvent('on'+type,listener);}}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;if(options.ignoreClass&&options.ignoreClass.test(el.className))return;if(options.onBeforeReplace)options.onBeforeReplace(el,options);var replace=!options.textless[name],simple=(options.trim==='simple');var style=CSS.getStyle(attach(el,options)).extend(options);if(parseFloat(style.get('fontSize'))===0)return;var font=getFont(el,style),node,type,next,anchor,text,lastElement;var isShy=options.softHyphens,anyShy=false,pos,shy,reShy=/\u00ad/g;var modifyText=options.modifyText;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(isShy&&el.nodeName.toLowerCase()!=TAG_SHY){pos=node.data.indexOf('\u00ad');if(pos>=0){node.splitText(pos);next=node.nextSibling;next.deleteData(0,1);shy=document.createElement(TAG_SHY);shy.appendChild(document.createTextNode('\u00ad'));el.insertBefore(shy,next);next=shy;anyShy=true;}}
if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){text=anchor.data;if(!isShy)text=text.replace(reShy,'');text=CSS.whiteSpace(text,style,anchor,lastElement,simple);if(modifyText)text=modifyText(text,anchor,el,options);el.replaceChild(process(font,text,style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}
if(isShy&&anyShy){updateShy(el);if(!trackingShy)addEvent(window,'resize',updateShyOnResize);trackingShy=true;}
if(options.onAfterReplace)options.onAfterReplace(el,options);}
function updateShy(context){var shys,shy,parent,glue,newGlue,next,prev,i;shys=context.getElementsByTagName(TAG_SHY);for(i=0;shy=shys[i];++i){shy.className=C_SHY_DISABLED;glue=parent=shy.parentNode;if(glue.nodeName.toLowerCase()!=TAG_GLUE){newGlue=document.createElement(TAG_GLUE);newGlue.appendChild(shy.previousSibling);parent.insertBefore(newGlue,shy);newGlue.appendChild(shy);}
else{glue=glue.parentNode;if(glue.nodeName.toLowerCase()==TAG_GLUE){parent=glue.parentNode;while(glue.firstChild){parent.insertBefore(glue.firstChild,glue);}
parent.removeChild(glue);}}}
for(i=0;shy=shys[i];++i){shy.className='';glue=shy.parentNode;parent=glue.parentNode;next=glue.nextSibling||parent.nextSibling;prev=(next.nodeName.toLowerCase()==TAG_GLUE)?glue:shy.previousSibling;if(prev.offsetTop>=next.offsetTop){shy.className=C_SHY_DISABLED;if(prev.offsetTop<next.offsetTop){newGlue=document.createElement(TAG_GLUE);parent.insertBefore(newGlue,glue);newGlue.appendChild(glue);newGlue.appendChild(next);}}}}
function updateShyOnResize(){if(ignoreResize)return;CSS.addClass(DOM.root(),C_VIEWPORT_RESIZING);clearTimeout(shyTimer);shyTimer=setTimeout(function(){ignoreResize=true;CSS.removeClass(DOM.root(),C_VIEWPORT_RESIZING);updateShy(document);ignoreResize=false;},100);}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var TAG_GLUE='cufonglue';var TAG_SHY='cufonshy';var C_SHY_DISABLED='cufon-shy-disabled';var C_VIEWPORT_RESIZING='cufon-viewport-resizing';var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var trackingShy=false;var shyTimer;var ignoreResize=false;var engines={},fonts={},defaultOptions={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,noscript:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},ignoreClass:null,modifyText:null,onAfterReplace:null,onBeforeReplace:null,printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.glow&&glow.dom&&glow.dom.get)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',softHyphens:true,textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none',trim:'advanced'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.ignoreClass=='string'){options.ignoreClass=new RegExp('(?:^|\\s)(?:'+options.ignoreClass.replace(/\s+/g,'|')+')(?:\\s|$)');}
if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(typeof elements=='string'){if(!ignoreHistory)replaceHistory.add(elements,arguments);elements=[elements];}
else if(elements.nodeType)elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(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:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}'+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'a cufon{cursor:pointer}'+'}'+'@media print{'+'cufon cufoncanvas{display:none;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(!isNaN(value)||/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='none';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'cufon canvas{position:relative;}':'cufon canvas{position:absolute;}')+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'}'+'@media print{'+'cufon{padding:0;}'+'cufon canvas{display:none;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;var pixelRatio=window.devicePixelRatio||1;if(pixelRatio!=1){canvas.width=canvasWidth*pixelRatio;canvas.height=canvasHeight*pixelRatio;g.scale(pixelRatio,pixelRatio);}
g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();g.moveTo(0,0);if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());
;/*
 * Copyright (C) 2004-2008 dot colon. All rights reserved.
 */
Cufon.registerFont({"w":209,"face":{"font-family":"Vegur","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-11 -274 322 94","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+00F3"},"glyphs":{" ":{"w":83},"B":{"d":"50,-18v11,1,23,2,39,2v40,0,69,-20,69,-51v0,-28,-26,-45,-65,-45v-14,0,-32,1,-43,1r0,93xm83,-220v-12,0,-23,1,-33,2r0,87r41,0v36,0,58,-23,58,-45v0,-26,-14,-44,-66,-44xm136,-125v28,11,45,30,45,55v0,47,-41,74,-96,74v-20,0,-36,-2,-53,-4r-3,0r0,-235r3,0v20,-3,36,-4,59,-4v53,0,81,25,81,58v0,26,-15,44,-36,56","w":196},"b":{"d":"50,-69v0,27,26,53,58,53v38,0,63,-27,63,-71v0,-45,-23,-71,-63,-71v-32,0,-58,26,-58,53r0,36xm112,-178v52,0,82,36,82,89v0,51,-33,93,-82,93v-27,0,-49,-13,-62,-31r-1,27r-20,0r0,-252r21,0r0,104v13,-18,35,-30,62,-30"},"a":{"d":"78,-16v27,0,52,-26,52,-59r0,-16v-12,-2,-25,-3,-43,-3v-32,0,-49,19,-49,41v0,24,16,37,40,37xm92,-178v39,0,60,25,60,63r0,115r-20,0r-1,-27v-13,19,-30,31,-58,31v-31,0,-58,-24,-58,-55v0,-37,31,-63,74,-63v15,0,29,2,41,4r0,-2v0,-34,-16,-46,-44,-46v-16,0,-30,3,-44,11r-5,3r-2,-20r2,-1v15,-9,33,-13,55,-13","w":177},"c":{"d":"110,4v-60,0,-94,-39,-94,-90v0,-51,35,-92,94,-92v18,0,32,4,45,8r3,1r-3,19r-4,-1v-12,-5,-25,-7,-39,-7v-50,0,-73,33,-73,71v0,40,23,71,73,71v13,0,24,-1,38,-6r4,-1r2,19r-3,1v-14,4,-27,7,-43,7","w":173},"d":{"d":"101,-16v32,0,58,-26,58,-53r0,-36v0,-27,-26,-53,-58,-53v-38,0,-62,27,-62,71v0,45,22,71,62,71xm159,-148r0,-104r22,0r0,252r-20,0r-1,-27v-13,18,-35,31,-62,31v-52,0,-82,-36,-82,-89v0,-51,33,-93,82,-93v27,0,48,12,61,30"},"e":{"d":"168,-104v0,6,0,11,-1,16r-1,2r-127,0v1,44,26,70,67,70v16,0,27,-2,39,-8r5,-3r2,20r-3,1v-13,6,-28,10,-46,10v-50,0,-87,-33,-87,-91v0,-48,30,-91,85,-91v43,0,67,31,67,74xm101,-158v-38,0,-57,24,-61,53r106,0v-1,-32,-15,-53,-45,-53","w":183},"f":{"d":"38,-190v0,-39,16,-66,51,-66v7,0,13,2,19,3r3,1r-3,19r-4,-1v-6,-1,-11,-2,-17,-2v-19,0,-28,15,-28,43r0,19r42,0r0,19r-42,0r0,155r-21,0r0,-155r-30,0r0,-19r30,0r0,-16","w":107},"g":{"d":"100,-16v31,0,59,-26,59,-53r0,-36v0,-27,-28,-53,-59,-53v-37,0,-61,27,-61,71v0,45,22,71,61,71xm160,-147r1,-27r20,0r0,162v0,61,-32,93,-87,93v-19,0,-40,-4,-56,-13r-2,-1r2,-19r5,2v17,8,38,12,53,12v39,0,63,-24,63,-75r0,-14v-14,18,-35,31,-62,31v-51,0,-81,-36,-81,-89v0,-51,33,-93,81,-93v27,0,49,13,63,31"},"h":{"d":"50,-252r0,104v14,-18,38,-30,64,-30v41,0,62,28,62,67r0,111r-22,0r0,-107v0,-37,-17,-51,-43,-51v-31,0,-61,25,-61,53r0,105r-21,0r0,-252r21,0","w":201},"i":{"d":"29,0r0,-174r21,0r0,174r-21,0xm40,-210v-8,0,-15,-6,-15,-14v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14","w":79},"j":{"d":"40,-210v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,15,6,15,14v0,8,-7,14,-15,14xm30,11r0,-185r21,0r0,182v0,46,-22,73,-57,73r-3,0r-2,-19r4,0v29,0,37,-26,37,-51","w":79},"k":{"d":"165,-174r-78,79r88,95r-29,0r-75,-83r-21,21r0,62r-21,0r0,-252r21,0r0,169r87,-91r28,0","w":176},"l":{"d":"50,0r-21,0r0,-252r21,0r0,252","w":79},"m":{"d":"217,-178v40,0,61,30,61,67r0,111r-21,0r0,-108v0,-24,-9,-50,-42,-50v-28,0,-51,24,-51,63r0,95r-22,0r0,-104v0,-32,-14,-54,-42,-54v-27,0,-50,25,-50,63r0,95r-21,0r0,-174r20,0r1,25v12,-18,31,-29,53,-29v25,0,45,15,54,38v10,-21,31,-38,60,-38","w":303},"n":{"d":"49,-174r1,27v14,-18,38,-31,64,-31v41,0,62,28,62,67r0,111r-22,0r0,-107v0,-37,-17,-51,-43,-51v-31,0,-61,25,-61,53r0,105r-21,0r0,-174r20,0","w":201},"o":{"d":"186,-87v0,51,-33,91,-85,91v-52,0,-85,-40,-85,-91v0,-51,33,-91,85,-91v52,0,85,40,85,91xm101,-16v44,0,62,-36,62,-71v0,-35,-18,-71,-62,-71v-44,0,-62,36,-62,71v0,35,18,71,62,71","w":202},"u":{"d":"152,0r-1,-27v-14,18,-38,31,-64,31v-41,0,-62,-28,-62,-67r0,-111r22,0r0,107v0,37,17,51,43,51v31,0,61,-26,61,-54r0,-104r21,0r0,174r-20,0","w":201},"t":{"d":"98,-174r0,19r-40,0r0,119v0,16,6,20,16,20v6,0,12,-1,19,-3r4,-1r2,20r-3,1v-9,2,-17,3,-25,3v-21,0,-35,-11,-35,-35r0,-124r-28,0r0,-19r28,0r0,-43r22,0r0,43r40,0","w":111},"s":{"d":"65,-79v-25,-12,-46,-27,-46,-51v0,-26,22,-48,55,-48v11,0,23,2,35,9r2,1r-2,20r-5,-2v-12,-6,-19,-8,-34,-8v-16,0,-29,10,-29,25v0,18,11,26,33,36v30,14,45,29,45,52v0,28,-27,49,-55,49v-18,0,-31,-4,-45,-11r-3,-1r3,-20r4,2v15,7,25,10,41,10v19,0,33,-11,33,-27v0,-18,-8,-25,-32,-36","w":137},"r":{"d":"93,-178r4,0r0,22r-4,0v-27,1,-43,28,-43,62r0,94r-21,0r0,-174r20,0r1,25v9,-16,23,-29,43,-29","w":104},"q":{"d":"159,-105v0,-27,-28,-53,-59,-53v-37,0,-61,27,-61,71v0,45,22,71,61,71v31,0,59,-26,59,-53r0,-36xm97,4v-51,0,-81,-36,-81,-89v0,-51,33,-93,81,-93v27,0,49,13,63,31r1,-27r20,0r0,252r-22,0r0,-105v-14,18,-35,31,-62,31"},"p":{"d":"109,-158v-31,0,-58,26,-58,53r0,36v0,27,27,53,58,53v37,0,62,-27,62,-71v0,-45,-23,-71,-62,-71xm51,-26r0,104r-22,0r0,-252r20,0r1,27v14,-18,36,-31,63,-31v51,0,81,36,81,89v0,51,-33,93,-81,93v-26,0,-48,-12,-62,-30"},"C":{"d":"133,4v-69,0,-117,-50,-117,-121v0,-71,48,-122,117,-122v22,0,40,2,58,8r3,1r-2,20r-4,-1v-17,-5,-34,-9,-51,-9v-56,0,-98,40,-98,102v0,62,42,102,98,102v17,0,34,-3,51,-8r4,-1r2,19r-3,1v-18,6,-36,9,-58,9","w":202},"D":{"d":"32,-235v16,-2,29,-4,47,-4v89,0,138,47,138,116v0,76,-58,127,-138,127v-17,0,-32,-1,-47,-4r-3,-1r0,-234r3,0xm80,-220v-11,0,-21,1,-30,2r0,201v9,1,20,1,29,1v68,0,115,-43,115,-105v0,-61,-41,-99,-114,-99","w":233},"E":{"d":"50,-112r0,93r107,0r0,19r-128,0r0,-235r124,0r0,19r-103,0r0,85r91,0r0,19r-91,0","w":167},"F":{"d":"50,0r-21,0r0,-235r127,0r0,19r-106,0r0,87r91,0r0,20r-91,0r0,109","w":159},"U":{"d":"195,-85v0,56,-33,89,-85,89v-52,0,-85,-34,-85,-82r0,-157r21,0r0,153v0,42,24,66,64,66v42,0,65,-26,65,-66r0,-153r20,0r0,150","w":219},"T":{"d":"189,-235r0,19r-79,0r2,216r-21,0r-5,-216r-79,0r0,-19r182,0","w":195},"S":{"d":"18,-182v0,-36,30,-57,73,-57v18,0,30,3,42,9r2,1r-2,20r-4,-2v-14,-7,-25,-9,-41,-9v-35,0,-48,19,-48,35v0,24,11,35,51,56v39,22,57,40,57,69v0,37,-30,64,-82,64v-17,0,-31,-3,-45,-9r-3,-1r2,-20r4,2v15,6,27,8,43,8v39,0,58,-17,58,-41v0,-25,-11,-36,-47,-55v-44,-24,-60,-44,-60,-70","w":164},"R":{"d":"50,0r-21,0r0,-235r3,0v24,-2,35,-4,56,-4v56,0,86,25,86,61v0,29,-19,50,-42,61v15,8,22,17,30,46v7,25,13,44,21,66r2,5r-25,0r-1,-3v-7,-20,-15,-45,-21,-66v-8,-28,-14,-35,-48,-35r-40,0r0,104xm86,-220v-13,0,-25,1,-36,2r0,94v10,0,24,1,34,1v39,0,65,-22,65,-51v0,-27,-16,-46,-63,-46","w":190},"Q":{"d":"243,-117v0,43,-18,82,-51,104r23,51r-23,0r-20,-42v-13,5,-27,8,-42,8v-72,0,-114,-58,-114,-122v0,-64,42,-121,114,-121v72,0,113,58,113,122xm130,-16v58,0,90,-49,90,-102v0,-53,-32,-102,-90,-102v-58,0,-91,49,-91,102v0,53,33,102,91,102","w":259},"P":{"d":"50,0r-21,0r0,-235r3,0v25,-3,34,-4,56,-4v52,0,84,28,84,66v0,43,-35,74,-86,74v-13,0,-26,-1,-36,-3r0,102xm88,-220v-12,0,-28,1,-38,2r0,96v12,2,23,3,36,3v36,0,63,-20,63,-53v0,-31,-20,-48,-61,-48","w":176},"O":{"d":"130,-239v72,0,113,57,113,121v0,64,-41,122,-113,122v-72,0,-114,-58,-114,-122v0,-64,42,-121,114,-121xm130,-16v58,0,90,-49,90,-102v0,-53,-32,-102,-90,-102v-58,0,-91,49,-91,102v0,53,33,102,91,102","w":259},"L":{"d":"50,-235r0,216r122,0r0,19r-143,0r0,-235r21,0","w":180},"J":{"d":"118,-79v0,52,-30,83,-72,83v-13,0,-21,-2,-32,-4r-4,-1r3,-19r4,1v10,3,16,3,27,3v31,0,52,-17,52,-62r0,-157r22,0r0,156","w":140},"I":{"d":"50,0r-21,0r0,-235r21,0r0,235","w":79},"H":{"d":"188,-235r22,0r0,235r-22,0r0,-113r-138,0r0,113r-21,0r0,-235r21,0r0,103r138,0r0,-103","w":238},"G":{"d":"185,-23r0,-78r-51,0r0,-19r73,0r0,111r-3,1v-24,8,-43,12,-70,12v-66,0,-118,-46,-118,-121v0,-71,45,-122,123,-122v22,0,41,2,57,8r3,1r-3,20r-4,-1v-18,-6,-34,-9,-55,-9v-63,0,-98,46,-98,102v0,63,42,102,97,102v21,0,36,-3,49,-7","w":229},"0":{"d":"102,-230v52,0,83,50,83,117v0,67,-31,117,-83,117v-52,0,-84,-50,-84,-117v0,-67,32,-117,84,-117xm102,-16v39,0,60,-40,60,-97v0,-57,-21,-97,-60,-97v-39,0,-61,40,-61,97v0,57,22,97,61,97","w":203},"1":{"d":"99,-226r12,0r0,226r-22,0r0,-198r-36,16r-2,-19","w":159},"2":{"d":"42,-19r114,0r0,19r-143,0r0,-15r51,-60v59,-65,65,-77,65,-97v0,-25,-16,-38,-46,-38v-18,0,-34,4,-48,12r-4,3r-3,-21r2,-1v17,-9,37,-13,59,-13v39,0,63,26,63,56v0,30,-19,53,-79,120","w":174},"3":{"d":"61,4v-16,0,-32,-4,-45,-11r-2,-1r2,-20r5,2v15,7,28,10,44,10v34,0,59,-18,59,-45v0,-20,-8,-42,-64,-49r-4,0r0,-18r4,-1v34,-2,57,-20,57,-44v0,-23,-14,-37,-48,-37v-15,0,-28,4,-41,11r-5,3r-2,-20r2,-1v13,-7,30,-13,52,-13v40,0,65,25,65,53v0,24,-16,45,-40,56v24,9,48,26,48,59v0,41,-37,66,-87,66","w":166},"4":{"d":"147,-226r0,147r28,0r0,20r-28,0r0,59r-21,0r0,-59r-115,0r0,-16r115,-151r21,0xm125,-151r0,-45r-34,47r-53,70r88,0","w":189},"6":{"d":"145,-66v0,-30,-19,-51,-51,-51v-34,0,-53,14,-53,32v0,42,21,69,55,69v29,0,49,-22,49,-50xm93,4v-45,0,-75,-37,-75,-101v0,-76,47,-129,119,-133r3,0r2,19r-4,0v-64,4,-91,46,-96,93v14,-13,33,-19,56,-19v43,0,70,33,70,69v0,42,-32,72,-75,72","w":183},"5":{"d":"78,-142v51,0,76,33,76,69v0,48,-36,77,-90,77v-18,0,-33,-4,-47,-11r-3,-1r3,-20r4,2v18,7,29,10,47,10v35,0,63,-19,63,-54v0,-31,-17,-52,-57,-52v-13,0,-26,1,-36,4r-1,1r-14,-1r6,-108r108,0r0,19r-89,0r-3,68v9,-2,21,-3,33,-3","w":172},"7":{"d":"11,-226r141,0r0,17r-97,209r-23,0r98,-207r-119,0r0,-19","w":164},"8":{"d":"41,-62v0,27,18,46,51,46v30,0,52,-18,52,-44v0,-27,-17,-43,-53,-55v-37,13,-50,32,-50,53xm93,-210v-30,0,-43,16,-43,36v0,21,16,37,44,47v28,-10,43,-23,43,-45v0,-21,-14,-38,-44,-38xm119,-122v32,16,48,34,48,61v0,41,-35,65,-75,65v-41,0,-74,-20,-74,-60v0,-29,18,-50,48,-64v-24,-12,-39,-30,-39,-55v0,-29,24,-55,66,-55v37,0,67,24,67,53v0,25,-16,41,-41,55","w":184},"9":{"d":"38,-160v0,30,20,51,52,51v34,0,52,-14,52,-32v0,-42,-21,-69,-55,-69v-29,0,-49,22,-49,50xm90,-230v45,0,75,37,75,101v0,76,-46,129,-118,133r-4,0r-2,-19r4,0v64,-4,91,-46,96,-93v-14,13,-33,19,-56,19v-43,0,-70,-33,-70,-69v0,-42,32,-72,75,-72","w":183},"\/":{"d":"105,-248r21,0r-113,265r-20,0","w":118},".":{"d":"48,-8v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15","w":61},"-":{"d":"90,-101r0,17r-77,0r0,-17r77,0","w":103},",":{"d":"38,-19r16,0r-2,4v-8,25,-17,49,-26,71r-1,2r-23,7r2,-7v8,-22,19,-53,24,-69v1,-3,0,-2,0,-2v2,-4,5,-6,10,-6","w":64},"+":{"d":"116,-101r80,0r0,17r-80,0r0,88r-20,0r0,-88r-79,0r0,-17r79,0r0,-87r20,0r0,87","w":212},"*":{"d":"58,-239r22,0r-3,50r46,-18r7,20r-49,12r32,39r-17,13r-27,-43r-27,43r-17,-13r32,-39r-49,-12r7,-20r46,18","w":138},"(":{"d":"83,32r3,5r-19,0r-1,-1v-24,-41,-42,-83,-42,-143v0,-60,18,-102,42,-142r1,-2r19,0r-3,5v-22,40,-39,86,-39,139v0,53,17,99,39,139","w":90},"'":{"d":"39,-170r-19,0r-2,-69r0,-1v0,-8,5,-10,11,-10r14,0","w":59},"%":{"d":"208,-122v34,0,54,28,54,63v0,35,-20,63,-54,63v-35,0,-56,-28,-56,-63v0,-35,21,-63,56,-63xm208,-14v20,0,34,-16,34,-45v0,-29,-14,-46,-34,-46v-20,0,-35,17,-35,46v0,29,15,45,35,45xm69,-230v35,0,56,29,56,65v0,36,-21,65,-56,65v-34,0,-54,-29,-54,-65v0,-36,20,-65,54,-65xm69,-117v20,0,35,-18,35,-48v0,-30,-15,-47,-35,-47v-20,0,-33,17,-33,47v0,30,13,48,33,48xm212,-233r23,0r-170,240r-23,0","w":277},"!":{"d":"33,7v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-8,15,-16,15xm44,-46r-21,0r-2,-193r25,0","w":66},"\"":{"d":"39,-170r-19,0r-2,-69r0,-1v0,-8,5,-10,11,-10r14,0xm76,-170r-19,0r-1,-69r0,-1v0,-8,5,-10,11,-10r13,0","w":97},"#":{"d":"124,-131r-7,36r34,0r0,17r-38,0r-15,74r-19,0r15,-74r-29,0r-15,74r-19,0r15,-74r-31,0r0,-17r34,0r8,-36r-34,0r0,-18r37,0r16,-73r18,0r-15,73r30,0r15,-73r19,0r-15,73r31,0r0,18r-35,0xm98,-95r7,-36r-29,0r-8,36r30,0","w":173},"$":{"d":"141,-64v0,33,-23,53,-54,57r0,34r-17,0r0,-33v-15,0,-28,-3,-41,-9r-2,-2r2,-19r5,2v17,7,26,9,41,9v28,0,43,-14,43,-36v0,-17,-7,-27,-41,-48v-36,-22,-49,-37,-49,-62v0,-25,19,-43,45,-48r0,-34r17,0r0,33v14,1,27,5,36,10r2,1r-2,19r-5,-2v-11,-6,-23,-9,-35,-9v-23,0,-35,11,-35,28v0,17,7,27,38,46v41,25,52,41,52,63","w":168},"&":{"d":"92,-223v-16,0,-28,8,-28,26v0,16,7,28,23,48v24,-20,34,-30,34,-48v0,-14,-10,-26,-29,-26xm213,4r-29,0r-19,-25v-21,20,-45,28,-74,28v-41,0,-77,-22,-77,-64v0,-32,25,-55,56,-79v-18,-21,-29,-40,-29,-59v0,-29,20,-48,51,-48v31,0,51,20,51,45v0,25,-16,43,-44,64r66,80v10,-17,12,-38,12,-65r0,-3r22,0r0,3v0,17,-3,56,-21,82xm83,-121v-35,29,-46,43,-46,63v0,30,24,46,57,46v26,0,41,-5,58,-23","w":211},")":{"d":"7,-246r-3,-5r19,0r1,2v24,40,42,82,42,142v0,60,-18,102,-42,143r-1,1r-19,0r3,-5v22,-40,39,-86,39,-139v0,-53,-17,-99,-39,-139","w":90},"?":{"d":"80,-129v-18,24,-22,43,-22,66r0,17r-22,0r0,-14v0,-35,12,-59,32,-87v14,-19,20,-31,20,-46v0,-24,-17,-30,-35,-30v-14,0,-26,5,-38,14r-5,3r-3,-20r2,-1v19,-14,36,-16,47,-16v35,0,55,21,55,49v0,20,-9,36,-31,65xm55,-8v0,-5,-3,-8,-8,-8v-5,0,-8,3,-8,8v0,5,3,8,8,8v5,0,8,-3,8,-8","w":124},":":{"d":"18,-166v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15xm48,-8v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15","w":61},";":{"d":"22,-166v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15xm38,-19r16,0r-2,4v-8,25,-17,49,-26,71r-1,2r-23,7r2,-7v8,-22,19,-53,24,-69v1,-3,0,-2,0,-2v2,-4,5,-6,10,-6","w":64},"<":{"d":"38,-91r118,63r0,22r-141,-76r0,-18r141,-77r0,21","w":170},"=":{"d":"189,-120r-170,0r0,-18r170,0r0,18xm189,-47r-170,0r0,-17r170,0r0,17","w":207},"[":{"d":"48,-231r0,249r32,0r0,17r-51,0r0,-283r51,0r0,17r-32,0","w":88},"\\":{"d":"14,-248r112,265r-21,0r-112,-265r21,0","w":118},"]":{"d":"9,-231r0,-17r51,0r0,283r-51,0r0,-17r31,0r0,-249r-31,0","w":88},"^":{"d":"101,-231r69,147r-21,0r-57,-123r-57,123r-21,0r69,-147r18,0","w":184},"_":{"d":"166,32r-170,0r0,-17r170,0r0,17","w":162},">":{"d":"133,-91r-119,-64r0,-22r141,77r0,18r-141,76r0,-21","w":170},"{":{"d":"57,-79v0,2,-1,4,-1,6r-6,50v-1,4,-1,8,-1,12v0,19,7,32,36,32r4,0r0,17r-4,0v-33,0,-55,-16,-55,-49v0,-4,0,-8,1,-13r7,-50r0,-5v0,-8,-2,-17,-24,-19r-4,-1r0,-16r4,-1v17,-2,24,-8,24,-20v0,-2,-1,-4,-1,-6r-6,-48v-1,-4,-1,-9,-1,-13v0,-33,22,-49,55,-49r4,0r0,17r-4,0v-29,0,-36,12,-36,31v0,4,0,9,1,13r7,50r0,5v0,11,-5,21,-17,28v11,7,17,16,17,29","w":97},"|":{"d":"48,94r-19,0r0,-368r19,0r0,368","w":77},"}":{"d":"40,-135v0,-2,1,-4,1,-6r7,-50v1,-4,1,-8,1,-12v0,-19,-8,-32,-37,-32r-3,0r0,-17r3,0v33,0,56,16,56,49v0,4,0,9,-1,13r-7,50v0,2,-1,4,-1,5v0,8,3,17,25,19r3,1r0,16r-3,1v-18,2,-25,8,-25,21v0,2,1,3,1,5r7,48v1,5,1,9,1,13v0,33,-23,49,-56,49r-3,0r0,-17r3,0v29,0,36,-12,36,-31v0,-4,1,-9,0,-13r-8,-50r0,-4v0,-11,6,-22,18,-29v-12,-7,-18,-16,-18,-29","w":97},"~":{"d":"98,-83v-31,-11,-43,-13,-50,-13v-14,0,-20,4,-20,19r0,4r-17,0r0,-4v0,-19,8,-37,40,-37v13,0,25,3,53,13v31,11,43,12,50,12v14,0,20,-3,20,-18r0,-4r17,0r0,4v0,18,-9,37,-41,37v-13,0,-24,-3,-52,-13","w":201},"`":{"d":"25,-250v6,0,9,4,11,7v7,12,15,28,23,41r3,5r-22,2r-2,-1v-8,-12,-20,-33,-28,-49r-3,-5r18,0","w":67},"@":{"d":"181,-97r10,-42v-5,-1,-12,-2,-21,-2v-40,0,-67,36,-67,78v0,25,14,34,25,34v32,0,47,-38,53,-68xm280,-112v0,56,-28,98,-68,98v-18,0,-32,-9,-36,-27v-13,20,-32,29,-52,29v-22,0,-42,-22,-42,-48v0,-57,39,-99,93,-99v14,0,23,2,35,7r3,2r-18,78v-2,7,-2,13,-2,18v0,15,6,22,20,22v24,0,47,-27,47,-75v0,-51,-30,-89,-90,-89v-74,0,-133,56,-133,127v0,60,39,97,94,97v26,0,46,-5,70,-19r4,-2r3,18r-2,1v-27,15,-51,19,-78,19v-63,0,-111,-46,-111,-111v0,-92,75,-147,159,-147v58,0,104,42,104,101","w":293},"K":{"d":"189,-235r-99,107r109,128r-28,0r-97,-116r-24,27r0,89r-21,0r0,-235r21,0r0,124r111,-124r28,0","w":200},"M":{"d":"144,-31r89,-204r28,0r1,235r-21,0r-1,-207r-86,198r-21,0r-84,-198r-1,207r-21,0r1,-235r28,0","w":290},"v":{"d":"92,-22r62,-152r22,0r-74,174r-21,0r-75,-174r24,0","w":178},"w":{"d":"203,-25r53,-149r22,0r-65,174r-20,0r-51,-150r-57,150r-20,0r-58,-174r23,0r46,149r57,-149r20,0","w":281},"x":{"d":"167,-174r-65,84r70,90r-27,0r-57,-78r-57,78r-26,0r69,-89r-66,-85r27,0r53,72r54,-72r25,0","w":171},"y":{"d":"15,62v29,-5,44,-15,65,-65r-74,-171r24,0r62,152r62,-152r22,0r-73,172v-27,64,-51,78,-86,83r-3,1r-3,-19","w":178},"z":{"d":"13,-17r98,-138r-91,0r0,-19r116,0r0,17r-98,138r104,0r0,19r-129,0r0,-17","w":154},"Z":{"d":"14,-18r127,-198r-115,0r0,-19r139,0r0,17r-127,199r136,0r0,19r-160,0r0,-18","w":183},"Y":{"d":"98,-122r65,-113r24,0r-78,129r0,106r-23,0r0,-105r-80,-130r26,0","w":187},"X":{"d":"107,-121r77,121r-26,0r-64,-103r-64,103r-25,0r76,-120r-73,-115r26,0r60,97r61,-97r24,0","w":184},"W":{"d":"234,-30r67,-205r21,0r-78,235r-20,0r-59,-205r-66,205r-21,0r-71,-235r23,0r59,205r66,-205r20,0","w":326},"V":{"d":"107,-24r78,-211r22,0r-90,235r-21,0r-90,-235r24,0"},"A":{"d":"105,-208r-41,113r82,0xm182,0r-29,-76r-96,0r-30,76r-22,0r90,-235r21,0r90,235r-24,0"},"N":{"d":"195,-61r0,-174r21,0r0,235r-25,0r-143,-209v0,12,1,24,1,35r0,174r-21,0r0,-235r24,0r143,209r0,-35","w":243},"\u00f3":{"d":"117,-250v-6,0,-9,4,-11,7v-7,12,-15,28,-23,41r-3,5r22,2r1,-1v8,-12,21,-33,29,-49r3,-5r-18,0xm186,-87v0,51,-33,91,-85,91v-52,0,-85,-40,-85,-91v0,-51,33,-91,85,-91v52,0,85,40,85,91xm101,-16v44,0,62,-36,62,-71v0,-35,-18,-71,-62,-71v-44,0,-62,36,-62,71v0,35,18,71,62,71","w":202},"\u00a0":{"w":83}}});
/*
 * Copyright (C) 2004-2008 dot colon. All rights reserved.
 */
Cufon.registerFont({"w":189,"face":{"font-family":"Vegur","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-13 -270 325 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":79},"~":{"d":"116,-109v30,15,36,16,44,16v9,0,14,-7,14,-19r31,0v0,30,-14,57,-45,57v-19,0,-32,-6,-61,-20v-30,-15,-36,-17,-44,-17v-9,0,-14,8,-14,20r-31,0v0,-30,14,-57,45,-57v19,0,32,6,61,20","w":215},"_":{"d":"189,50r-189,0r0,-31r189,0r0,31"},"^":{"d":"79,-228r41,0r65,141r-42,0r-44,-99r0,0r-45,99r-40,0","w":198},"]":{"d":"8,-214r0,-31r80,0r0,276r-80,0r0,-31r41,0r0,-214r-41,0","w":115},"\\":{"d":"40,-245r109,258r-41,0r-110,-258r42,0","w":147},"[":{"d":"107,-214r-41,0r0,214r41,0r0,31r-80,0r0,-276r80,0r0,31","w":115},"Z":{"d":"184,-40r0,40r-175,0r0,-39r111,-156r0,-1r-97,0r0,-39r152,0r0,38r-111,157r0,0r120,0"},"Y":{"d":"146,-235r51,0r-72,132r0,103r-48,0r0,-100r-74,-135r55,0r44,94r0,0","w":198},"X":{"d":"188,-235r-65,112r70,123r-55,0r-42,-87r-1,0r-42,87r-51,0r68,-119r-67,-116r56,0r38,80r1,0r38,-80r52,0","w":196},"9":{"d":"96,-229v45,0,83,35,83,96v0,83,-64,133,-141,137r-5,-39v47,-5,84,-29,92,-61r-1,0v-10,9,-26,14,-40,14v-42,0,-74,-28,-74,-68v0,-48,40,-79,86,-79xm97,-119v16,0,28,-11,28,-28v0,-26,-12,-43,-31,-43v-17,0,-31,10,-31,33v0,26,12,38,34,38","w":192},":":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28xm45,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":84},";":{"d":"31,-32v2,-8,9,-13,22,-13r28,0v-10,29,-23,67,-37,100r-41,4v12,-34,23,-72,28,-91xm56,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":95},"<":{"d":"54,-92r99,50r0,42r-139,-70r0,-42r139,-71r0,42r-99,48r0,1","w":168},"=":{"d":"206,-116r-189,0r0,-31r189,0r0,31xm206,-37r-189,0r0,-31r189,0r0,31","w":222},">":{"d":"114,-90r-99,-50r0,-43r139,71r0,42r-139,70r0,-41r99,-49r0,0","w":168},"?":{"d":"90,-25v0,-16,-12,-28,-28,-28v-16,0,-29,12,-29,28v0,16,13,29,29,29v16,0,28,-13,28,-29xm139,-188v0,21,-9,39,-39,75v-14,17,-17,24,-17,36r0,6r-44,0r0,-6v0,-22,6,-35,25,-59v21,-27,23,-36,23,-45v0,-11,-10,-18,-28,-18v-16,0,-32,5,-46,14r-4,-39v21,-10,38,-15,65,-15v37,0,65,20,65,51","w":154},"`":{"d":"9,-246r35,0v4,0,7,3,10,7v8,13,26,40,38,57r-38,2v-13,-17,-34,-47,-45,-66","w":100},"@":{"d":"176,-212v62,0,107,46,107,99v0,60,-32,95,-74,95v-19,0,-34,-7,-39,-24r-1,0v-10,18,-24,27,-45,27v-26,0,-47,-22,-47,-50v0,-53,37,-90,94,-90v16,0,39,5,49,11r-17,71v-4,18,1,28,12,28v20,0,36,-26,36,-61v0,-49,-28,-80,-81,-80v-69,0,-123,50,-123,115v0,58,33,89,84,89v24,0,47,-7,70,-19r3,25v-22,12,-47,19,-76,19v-68,0,-113,-42,-113,-110v0,-87,72,-145,161,-145xm169,-89r8,-33v-3,-1,-9,-2,-15,-2v-24,0,-43,21,-43,57v0,12,6,21,16,21v17,0,26,-10,34,-43","w":294},"A":{"d":"165,0r-22,-66r-72,0v-10,32,-22,66,-22,66r-47,0r83,-235r49,0r82,235r-51,0xm84,-105r46,0r-4,-13v-8,-24,-13,-45,-18,-69r-1,0v-4,24,-10,45,-18,69","w":218},"a":{"d":"95,-178v41,0,67,23,67,62r0,116r-48,0r-1,-22r0,0v-13,17,-26,26,-48,26v-22,0,-53,-19,-53,-58v0,-38,32,-59,72,-59v10,0,21,1,29,2r0,0r0,-4v0,-14,-10,-23,-31,-23v-17,0,-30,5,-45,12r-6,-40v20,-8,39,-12,64,-12xm113,-73r0,-8v-9,-1,-15,-2,-25,-2v-14,0,-24,8,-24,24v0,15,8,23,20,23v18,0,29,-18,29,-37","w":182},"b":{"d":"74,-22r-1,0r0,22r-48,0r0,-252r48,0r0,99r1,0v13,-15,33,-25,55,-25v48,0,79,38,79,89v0,55,-34,93,-79,93v-22,0,-42,-11,-55,-26xm73,-95r0,16v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51v-25,0,-42,18,-42,43","w":221},"d":{"d":"148,-252r48,0r0,252r-48,0r0,-22r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25r1,0r0,-99xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":221},"e":{"d":"177,-100v0,8,-1,17,-2,24r-113,0v0,27,18,40,47,40v13,0,33,-3,47,-9r5,40v-15,5,-36,9,-53,9v-59,0,-95,-36,-95,-91v0,-49,35,-91,90,-91v46,0,74,34,74,78xm99,-138v-18,0,-31,10,-35,30r65,0v0,-18,-9,-30,-30,-30","w":190},"c":{"d":"109,4v-57,0,-96,-35,-96,-90v0,-56,38,-92,96,-92v20,0,37,2,52,7r-5,40v-15,-5,-25,-7,-42,-7v-36,0,-49,27,-49,51v0,24,13,51,49,51v14,0,26,-2,40,-6r6,39v-17,4,-32,7,-51,7","w":173},"f":{"d":"38,-186v0,-44,28,-70,71,-70v13,0,23,2,29,3r-6,40v-5,-1,-10,-3,-17,-3v-19,0,-29,11,-29,28r0,14r42,0r0,39r-42,0r0,135r-48,0r0,-135r-30,0r0,-39r30,0r0,-12","w":137},"F":{"d":"72,0r-49,0r0,-235r145,0r0,39r-96,0r0,57r81,0r0,40r-81,0r0,99","w":171},"G":{"d":"169,-40r0,-53r-44,0r0,-39r92,0r0,124v-25,7,-54,12,-85,12v-66,0,-120,-41,-120,-122v0,-76,56,-121,134,-121v25,0,46,3,64,8r-6,40v-19,-5,-39,-8,-62,-8v-51,0,-78,30,-78,81v0,54,29,82,70,82v15,0,22,-1,35,-4","w":237},"H":{"d":"176,-235r48,0r0,235r-48,0r0,-103r-104,0r0,103r-49,0r0,-235r49,0r0,92r104,0r0,-92","w":247},"I":{"d":"72,0r-49,0r0,-235r49,0r0,235","w":95},"J":{"d":"138,-87v0,63,-40,91,-94,91v-13,0,-24,-1,-36,-4r5,-40v10,3,18,4,28,4v35,0,49,-18,49,-51r0,-148r48,0r0,148","w":156},"K":{"d":"204,-235r-90,103r97,132r-59,0r-70,-100r-1,0r-9,11r0,89r-49,0r0,-235r49,0r0,61v0,13,0,21,-1,34r0,0v5,-10,15,-23,24,-34r50,-61r59,0","w":210},"l":{"d":"73,0r-48,0r0,-252r48,0r0,252","w":98},"m":{"d":"230,-178v36,0,54,30,54,66r0,112r-48,0r0,-109v0,-18,-8,-29,-26,-29v-18,0,-32,16,-32,47r0,91r-48,0r0,-109v0,-19,-8,-29,-26,-29v-20,0,-31,19,-31,47r0,91r-48,0r0,-174r48,0r0,24r1,0v11,-18,26,-28,49,-28v25,0,40,11,49,32r1,0v13,-22,29,-32,57,-32","w":304},"N":{"d":"176,-235r46,0r0,235r-68,0r-58,-124v-8,-18,-15,-32,-28,-69r-1,0v1,19,1,51,1,69r0,124r-46,0r0,-235r68,0r57,120v9,18,16,36,30,73r0,0v-1,-37,-1,-55,-1,-73r0,-120","w":244},"o":{"d":"106,-178v55,0,93,40,93,91v0,51,-38,91,-93,91v-55,0,-93,-40,-93,-91v0,-51,38,-91,93,-91xm106,-36v24,0,41,-19,41,-51v0,-32,-17,-51,-41,-51v-24,0,-41,19,-41,51v0,32,17,51,41,51","w":212},"P":{"d":"72,-198r0,68v8,1,18,1,28,1v20,0,32,-15,32,-36v0,-22,-13,-34,-33,-34v-10,0,-17,0,-27,1xm23,0r0,-235v27,-2,48,-4,76,-4v53,0,85,28,85,70v0,48,-41,80,-85,80v-9,0,-19,-1,-27,-2r0,0r0,91r-49,0","w":187},"p":{"d":"73,78r-48,0r0,-252r48,0r0,21r1,0v13,-15,33,-25,55,-25v48,0,79,38,79,89v0,55,-34,93,-79,93v-22,0,-42,-11,-55,-26r-1,0r0,100xm73,-95r0,16v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51v-25,0,-42,18,-42,43","w":221},"Q":{"d":"203,-17r25,55r-52,0r-16,-37v-8,2,-18,3,-27,3v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121v73,0,122,54,122,121v0,41,-20,79,-52,101xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"q":{"d":"147,-153r1,0r0,-21r48,0r0,252r-48,0r0,-100r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":221},"r":{"d":"126,-178r0,43v-36,2,-53,17,-53,57r0,78r-48,0r0,-174r48,0r0,28r1,0v10,-18,28,-32,52,-32","w":132},"R":{"d":"72,-198r0,64v10,1,15,2,25,2v23,0,37,-14,37,-35v0,-21,-12,-32,-35,-32v-9,0,-16,0,-27,1xm23,0r0,-235v24,-2,49,-4,80,-4v51,0,83,29,83,62v0,28,-19,47,-43,57r0,0v17,9,24,18,33,51v6,26,14,47,22,69r-52,0v-6,-21,-14,-46,-19,-69v-4,-17,-14,-26,-29,-26v-9,0,-13,0,-26,1r0,94r-49,0","w":200},"S":{"d":"14,-175v0,-38,30,-64,82,-64v18,0,38,3,52,9r-5,39v-15,-6,-34,-8,-50,-8v-17,0,-27,9,-27,20v0,15,5,21,35,36v44,22,63,45,63,76v0,44,-40,71,-89,71v-19,0,-43,-4,-61,-9r5,-39v19,6,35,8,58,8v22,0,35,-11,35,-27v0,-13,-6,-23,-32,-36v-44,-22,-66,-42,-66,-76","w":174},"s":{"d":"72,-65v-40,-14,-57,-29,-57,-60v0,-28,22,-53,69,-53v16,0,33,3,46,8r-5,40v-12,-5,-26,-8,-40,-8v-11,0,-18,4,-18,11v0,8,4,11,11,14v48,18,61,33,61,61v0,33,-30,56,-67,56v-20,0,-42,-4,-58,-10r5,-40v14,6,30,10,46,10v15,0,23,-5,23,-12v0,-8,-4,-12,-16,-17","w":149},"M":{"d":"273,-235r1,235r-48,0r-1,-141v0,-14,1,-34,2,-49r-1,0v-3,15,-7,35,-12,49r-44,132r-50,0r-44,-132v-5,-14,-9,-34,-11,-48r-1,0v1,14,2,34,2,48r-1,141r-44,0r1,-235r70,0r38,117v5,16,12,37,17,64r0,0v5,-27,11,-48,17,-64r39,-117r70,0","w":295},"O":{"d":"133,-239v73,0,122,54,122,121v0,67,-49,122,-122,122v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"T":{"d":"203,-235r0,39r-76,0r0,196r-48,0r0,-196r-75,0r0,-39r199,0","w":206},"U":{"d":"204,-84v0,57,-40,88,-92,88v-52,0,-93,-32,-93,-81r0,-158r48,0r0,154v0,31,20,45,44,45v25,0,47,-12,47,-45r0,-154r46,0r0,151","w":222},"V":{"d":"169,-235r47,0r-82,235r-49,0r-82,-235r51,0r39,117v8,23,13,46,18,69r1,0v4,-23,10,-46,18,-69","w":218},"W":{"d":"279,-235r46,0r-66,235r-48,0r-33,-118v-5,-16,-8,-33,-13,-75r-1,0v-5,42,-10,59,-14,75r-32,118r-49,0r-65,-235r50,0r30,117v5,18,9,37,12,73r0,0v4,-36,8,-55,13,-73r33,-117r48,0r33,117v5,18,10,37,13,73r1,0v3,-36,6,-55,11,-73","w":327},"z":{"d":"15,-174r133,0r0,36r-79,98r0,0r86,0r0,40r-146,0r0,-36r80,-98r0,-1r-74,0r0,-39","w":165},"y":{"d":"72,2r-68,-176r51,0r28,80v6,17,10,33,13,49r1,0v3,-16,8,-32,14,-49r28,-80r47,0r-66,174v-23,58,-46,77,-98,81r-5,-39v28,-2,43,-10,55,-40"},"x":{"d":"177,-174r-57,83r63,91r-59,0r-33,-60r-1,0r-33,60r-54,0r60,-88r-59,-86r58,0r30,54r1,0r30,-54r54,0","w":186},"w":{"d":"158,-70v-5,-17,-10,-34,-14,-62r0,0v-4,29,-9,45,-14,62r-22,70r-49,0r-55,-174r51,0r20,71v4,16,8,32,11,58r1,0v4,-26,7,-42,12,-58r22,-71r50,0r22,71v5,16,8,32,12,58r1,0v3,-26,6,-42,11,-58r20,-71r47,0r-55,174r-49,0","w":287},"v":{"d":"139,-174r47,0r-66,174r-50,0r-66,-174r51,0r28,80v6,17,10,33,13,49r1,0v3,-16,8,-32,14,-49"},"u":{"d":"138,-79r0,-95r48,0r0,174r-48,0r0,-22r-1,0v-13,16,-32,26,-56,26v-36,0,-60,-25,-60,-67r0,-111r48,0r0,104v0,23,10,34,29,34v26,0,40,-15,40,-43","w":209},"t":{"d":"128,-174r0,39r-43,0r0,70v0,20,7,29,20,29v6,0,13,-1,20,-3r5,40v-13,2,-29,3,-43,3v-32,0,-51,-23,-51,-61r0,-78r-28,0r0,-39r28,0r0,-43r49,0r0,43r43,0","w":140},"{":{"d":"44,-108v24,8,37,23,33,49r-5,36v-3,21,9,27,31,27r0,31v-45,0,-74,-18,-68,-58r4,-34v3,-24,-7,-31,-29,-34r0,-31v22,-3,32,-11,29,-35r-4,-34v-6,-40,23,-57,68,-57r0,31v-22,0,-33,5,-30,26r5,36v4,26,-10,41,-34,47r0,0","w":112},"|":{"d":"66,90r-39,0r0,-360r39,0r0,360","w":92},"}":{"d":"69,-106v-24,-8,-37,-23,-33,-49r5,-36v3,-21,-9,-26,-31,-26r0,-31v45,0,74,17,68,57r-5,34v-3,24,8,32,30,35r0,31v-22,3,-33,10,-30,34r5,34v6,40,-23,58,-68,58r0,-31v22,0,33,-6,30,-27r-5,-36v-4,-26,10,-40,34,-46r0,-1","w":112},"g":{"d":"148,-174r48,0r0,163v0,57,-39,92,-97,92v-24,0,-50,-4,-68,-12r6,-40v20,9,39,13,60,13v32,0,51,-19,51,-51r0,-13r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25r1,0r0,-21xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":220},"h":{"d":"73,-153r1,0v13,-16,32,-25,56,-25v36,0,60,25,60,67r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-26,0,-40,15,-40,43r0,95r-48,0r0,-252r48,0r0,99","w":215},"i":{"d":"25,0r0,-174r48,0r0,174r-48,0xm49,-185v-15,0,-27,-13,-27,-28v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":98},"k":{"d":"179,-174r-69,78r79,96r-62,0r-49,-66r0,0r-5,6r0,60r-48,0r0,-252r48,0r0,113v0,9,0,18,-1,30r1,0v5,-10,13,-23,18,-30r28,-35r60,0","w":188},"j":{"d":"52,-186v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28xm28,4r0,-178r48,0r0,174v0,50,-33,81,-83,81r-6,-39v24,0,41,-13,41,-38","w":101},"n":{"d":"73,-95r0,95r-48,0r0,-174r48,0r0,21r1,0v13,-16,32,-25,56,-25v36,0,60,25,60,67r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-26,0,-40,15,-40,43","w":215},"E":{"d":"72,-40r97,0r0,40r-146,0r0,-235r143,0r0,39r-94,0r0,55r81,0r0,39r-81,0r0,62","w":177},"D":{"d":"23,-235v26,-2,56,-4,81,-4v84,0,127,48,127,115v0,76,-54,128,-127,128v-29,0,-57,-2,-81,-4r0,-235xm72,-198r0,161v10,1,21,1,32,1v48,0,76,-31,76,-85v0,-47,-21,-78,-76,-78v-9,0,-20,0,-32,1","w":243},"C":{"d":"12,-117v0,-78,57,-122,125,-122v20,0,44,2,62,8r-5,40v-17,-5,-37,-8,-54,-8v-54,0,-76,35,-76,81v0,46,22,82,76,82v17,0,37,-3,54,-8r5,39v-18,6,-42,9,-62,9v-68,0,-125,-43,-125,-121","w":205},"B":{"d":"143,-126v32,10,48,29,48,56v0,45,-39,74,-92,74v-21,0,-56,-2,-76,-4r0,-235v23,-2,56,-4,77,-4v50,0,83,22,83,58v0,25,-16,43,-40,55r0,0xm72,-198r0,58v9,1,18,1,30,1v19,0,29,-14,29,-31v0,-18,-8,-29,-34,-29v-14,0,-15,0,-25,1xm102,-36v24,0,37,-12,37,-32v0,-21,-12,-34,-37,-34v-12,0,-20,1,-30,2r0,63v11,1,18,1,30,1","w":203},"8":{"d":"133,-122v35,18,46,36,46,57v0,43,-41,69,-84,69v-43,0,-83,-21,-83,-63v0,-29,17,-45,47,-59r0,0v-26,-14,-38,-27,-38,-53v0,-28,27,-59,75,-59v48,0,76,27,76,55v0,23,-14,40,-39,52r0,1xm71,-170v0,14,9,22,28,32v16,-8,23,-18,23,-30v0,-13,-9,-22,-26,-22v-17,0,-25,11,-25,20xm95,-36v21,0,34,-13,34,-28v0,-18,-12,-30,-36,-40v-21,8,-31,19,-31,37v0,15,12,31,33,31","w":190},"7":{"d":"163,-226r0,38r-91,188r-49,0r90,-186r0,0r-107,0r0,-40r157,0","w":169},"6":{"d":"97,4v-45,0,-83,-35,-83,-96v0,-83,64,-133,141,-137r5,40v-47,5,-84,28,-92,60r1,0v10,-9,26,-13,40,-13v42,0,74,27,74,67v0,48,-40,79,-86,79xm96,-106v-16,0,-28,12,-28,29v0,26,12,42,31,42v17,0,31,-10,31,-33v0,-26,-12,-38,-34,-38","w":192},"5":{"d":"94,-150v45,0,76,28,76,69v0,49,-37,85,-102,85v-21,0,-43,-5,-57,-11r5,-39v18,8,37,10,59,10v26,0,43,-15,43,-38v0,-23,-12,-38,-36,-38v-6,0,-13,1,-19,4r-44,-3r5,-115r126,0r0,40r-83,0r-2,41r1,0v8,-3,18,-5,28,-5","w":185},"4":{"d":"162,-226r0,138r28,0r0,39r-28,0r0,49r-48,0r0,-49r-107,0r0,-40r89,-137r66,0xm114,-140v0,-13,0,-28,1,-42r-1,0v-6,16,-13,29,-21,42r-34,51r0,1r55,0r0,-52","w":200},"3":{"d":"65,4v-19,0,-40,-4,-55,-10r5,-40v19,7,35,10,55,10v24,0,41,-12,41,-29v0,-23,-15,-32,-59,-35r0,-39v31,-2,48,-10,48,-29v0,-13,-7,-22,-32,-22v-16,0,-31,5,-46,12r-6,-40v19,-9,43,-12,65,-12v46,0,73,22,73,49v0,27,-17,44,-49,55r0,1v35,10,56,27,56,57v0,47,-42,72,-96,72","w":175},"2":{"d":"166,-40r0,40r-158,0r0,-32r36,-40v60,-65,68,-79,68,-93v0,-15,-10,-25,-34,-25v-17,0,-34,5,-50,13r-5,-40v23,-8,47,-13,71,-13v43,0,70,21,70,55v0,31,-16,58,-56,100v-5,6,-21,21,-36,35r0,0r94,0","w":180},"0":{"d":"107,-230v54,0,93,48,93,117v0,69,-39,117,-93,117v-54,0,-93,-48,-93,-117v0,-69,39,-117,93,-117xm107,-36v26,0,43,-24,43,-77v0,-53,-17,-77,-43,-77v-26,0,-43,24,-43,77v0,53,17,77,43,77","w":213},"1":{"d":"115,-226r24,0r0,226r-48,0r0,-167r-40,15r-5,-40","w":190},"\/":{"d":"108,-245r40,0r-110,258r-40,0","w":145},".":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28","w":84},"-":{"d":"111,-108r0,31r-100,0r0,-31r100,0","w":121},",":{"d":"31,-32v2,-8,9,-13,22,-13r28,0v-10,29,-23,67,-37,100r-41,4v12,-34,23,-72,28,-91","w":92},"+":{"d":"127,-108r73,0r0,31r-73,0r0,77r-39,0r0,-77r-73,0r0,-31r73,0r0,-76r39,0r0,76","w":214},"*":{"d":"69,-235r39,0r-8,56r2,0r50,-24r13,37r-56,10r0,1r39,41r-32,23r-27,-49r-1,0r-27,49r-31,-23r38,-41r0,-1r-55,-10r12,-37r50,24r2,0","w":177},")":{"d":"32,-107v0,-54,-9,-99,-24,-141r31,0v17,33,34,83,34,141v0,58,-17,108,-34,141r-31,0v15,-42,24,-87,24,-141","w":93},"(":{"d":"62,-107v0,54,9,99,24,141r-31,0v-17,-33,-35,-83,-35,-141v0,-58,18,-108,35,-141r31,0v-15,42,-24,87,-24,141","w":93},"'":{"d":"53,-145r-33,0r-3,-94v0,-6,6,-7,15,-7r30,0","w":77},"&":{"d":"248,0r-64,0r-15,-17r-1,0v-19,17,-42,21,-73,21v-43,0,-83,-31,-83,-73v0,-36,13,-50,48,-70r0,0v-13,-13,-21,-26,-21,-44v0,-34,30,-56,65,-56v40,0,66,28,66,53v0,26,-12,40,-39,58r0,1r46,49r1,0v8,-14,10,-20,11,-43r45,0v-1,31,-9,55,-27,76xm104,-199v-8,0,-14,5,-14,14v0,10,7,20,13,27r1,0v10,-6,14,-14,14,-27v0,-9,-5,-14,-14,-14xm102,-36v16,0,27,-2,39,-10r0,-1r-52,-63r-1,0v-16,10,-25,19,-25,39v0,19,20,35,39,35","w":249},"%":{"d":"215,-233r33,0r-159,240r-32,0xm230,-119v34,0,61,25,61,61v0,36,-27,62,-61,62v-34,0,-61,-26,-61,-62v0,-36,27,-61,61,-61xm230,-27v11,0,19,-12,19,-31v0,-19,-8,-30,-19,-30v-11,0,-20,11,-20,30v0,19,9,31,20,31xm75,-230v34,0,61,26,61,62v0,36,-27,61,-61,61v-34,0,-61,-25,-61,-61v0,-36,27,-62,61,-62xm75,-138v11,0,19,-11,19,-30v0,-19,-8,-31,-19,-31v-11,0,-20,12,-20,31v0,19,9,30,20,30","w":304},"$":{"d":"159,-70v0,33,-25,55,-58,61r0,36r-31,0r0,-35v-16,-1,-35,-3,-48,-8r5,-40v20,6,35,9,54,9v18,0,27,-7,27,-18v0,-13,-3,-19,-26,-30v-44,-22,-59,-37,-59,-67v0,-28,19,-49,50,-55r0,-36r31,0r0,34v15,1,33,4,43,9r-6,40v-15,-6,-30,-9,-48,-9v-11,0,-18,4,-18,13v0,12,5,16,28,28v48,24,56,40,56,68","w":182},"#":{"d":"187,-129r-37,0r-6,32r33,0r0,22r-38,0r-14,68r-28,0r14,-68r-38,0r-13,68r-28,0r13,-68r-32,0r0,-22r37,0r7,-32r-34,0r0,-23r38,0r14,-67r28,0r-14,67r38,0r13,-67r28,0r-13,67r32,0r0,23xm116,-97r6,-32r-37,0r-7,32r38,0","w":200},"\"":{"d":"53,-145r-33,0r-3,-94v0,-6,6,-7,15,-7r30,0xm122,-145r-32,0r-4,-94v0,-6,7,-7,16,-7r30,0","w":147},"!":{"d":"73,-25v0,16,-12,29,-28,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28v16,0,28,12,28,28xm65,-71r-40,0r-3,-164r46,0","w":90},"L":{"d":"72,-40r113,0r0,40r-162,0r0,-235r49,0r0,195"},"\u00a0":{"w":79}}});
