/*
 * jQuery 1.2.1 - New Wave Javascript
 *
 * Copyright (c) 2007 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2007-09-16 23:42:06 -0400 (Sun, 16 Sep 2007) $
 * $Rev: 3353 $
 */
(function(){if(typeof jQuery!="undefined")var _jQuery=jQuery;var jQuery=window.jQuery=function(selector,context){return this instanceof jQuery?this.init(selector,context):new jQuery(selector,context);};if(typeof $!="undefined")var _$=$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(typeof selector=="string"){var m=quickExpr.exec(selector);if(m&&(m[1]||!context)){if(m[1])selector=jQuery.clean([m[1]],context);else{var tmp=document.getElementById(m[3]);if(tmp)if(tmp.id!=m[3])return jQuery().find(selector);else{this[0]=tmp;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.1",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(a){var ret=jQuery(a);ret.prevObject=this;return ret;},setArray:function(a){this.length=0;Array.prototype.push.apply(this,a);return this;},each:function(fn,args){return jQuery.each(this,fn,args);},index:function(obj){var pos=-1;this.each(function(i){if(this==obj)pos=i;});return pos;},attr:function(key,value,type){var obj=key;if(key.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],key)||undefined;else{obj={};obj[key]=value;}return this.each(function(index){for(var prop in obj)jQuery.attr(type?this.style:this,prop,jQuery.prop(this,obj[prop],type,index,prop));});},css:function(key,value){return this.attr(key,value,"curCSS");},text:function(e){if(typeof e!="object"&&e!=null)return this.empty().append(document.createTextNode(e));var t="";jQuery.each(e||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)t+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return t;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,1,function(a){this.appendChild(a);});},prepend:function(){return this.domManip(arguments,true,-1,function(a){this.insertBefore(a,this.firstChild);});},before:function(){return this.domManip(arguments,false,1,function(a){this.parentNode.insertBefore(a,this);});},after:function(){return this.domManip(arguments,false,-1,function(a){this.parentNode.insertBefore(a,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(t){var data=jQuery.map(this,function(a){return jQuery.find(t,a);});return this.pushStack(/[^+>] [^+>]/.test(t)||t.indexOf("..")>-1?jQuery.unique(data):data);},clone:function(events){var ret=this.map(function(){return this.outerHTML?jQuery(this.outerHTML)[0]:this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(t){return this.pushStack(jQuery.isFunction(t)&&jQuery.grep(this,function(el,index){return t.apply(el,[index]);})||jQuery.multiFilter(t,this));},not:function(t){return this.pushStack(t.constructor==String&&jQuery.multiFilter(t,this,true)||jQuery.grep(this,function(a){return(t.constructor==Array||t.jquery)?jQuery.inArray(a,t)<0:a!=t;}));},add:function(t){return this.pushStack(jQuery.merge(this.get(),t.constructor==String?jQuery(t).get():t.length!=undefined&&(!t.nodeName||jQuery.nodeName(t,"form"))?t:[t]));},is:function(expr){return expr?jQuery.multiFilter(expr,this).length>0:false;},hasClass:function(expr){return this.is("."+expr);},val:function(val){if(val==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,a=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){var val=jQuery.browser.msie&&!option.attributes["value"].specified?option.text:option.value;if(one)return val;a.push(val);}}return a;}else
return this[0].value.replace(/\r/g,"");}}else
return this.each(function(){if(val.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,val)>=0||jQuery.inArray(this.name,val)>=0);else if(jQuery.nodeName(this,"select")){var tmp=val.constructor==Array?val:[val];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,tmp)>=0||jQuery.inArray(this.text,tmp)>=0);});if(!tmp.length)this.selectedIndex=-1;}else
this.value=val;});},html:function(val){return val==undefined?(this.length?this[0].innerHTML:null):this.empty().append(val);},replaceWith:function(val){return this.after(val).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(fn){return this.pushStack(jQuery.map(this,function(elem,i){return fn.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,dir,fn){var clone=this.length>1,a;return this.each(function(){if(!a){a=jQuery.clean(args,this.ownerDocument);if(dir<0)a.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(a[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(document.createElement("tbody"));jQuery.each(a,function(){var elem=clone?this.cloneNode(true):this;if(!evalScript(0,elem))fn.call(obj,elem);});});}};function evalScript(i,elem){var script=jQuery.nodeName(elem,"script");if(script){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}else if(elem.nodeType==1)jQuery("script",elem).each(evalScript);return script;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},a=1,al=arguments.length,deep=false;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};}if(al==1){target=this;a=0;}var prop;for(;a<al;a++)if((prop=arguments[a])!=null)for(var i in prop){if(target==prop[i])continue;if(deep&&typeof prop[i]=='object'&&target[i])jQuery.extend(target[i],prop[i]);else if(prop[i]!=undefined)target[i]=prop[i];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,win={};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){if(window.execScript)window.execScript(data);else if(jQuery.browser.safari)window.setTimeout(data,0);else
eval.call(window,data);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?win:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?win:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(obj,fn,args){if(args){if(obj.length==undefined)for(var i in obj)fn.apply(obj[i],args);else
for(var i=0,ol=obj.length;i<ol;i++)if(fn.apply(obj[i],args)===false)break;}else{if(obj.length==undefined)for(var i in obj)fn.call(obj[i],i,obj[i]);else
for(var i=0,ol=obj.length,val=obj[0];i<ol&&fn.call(val,i,val)!==false;val=obj[++i]){}}return obj;},prop:function(elem,value,type,index,prop){if(jQuery.isFunction(value))value=value.call(elem,[index]);var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(prop)?value+"px":value;},className:{add:function(elem,c){jQuery.each((c||"").split(/\s+/),function(i,cur){if(!jQuery.className.has(elem.className,cur))elem.className+=(elem.className?" ":"")+cur;});},remove:function(elem,c){elem.className=c!=undefined?jQuery.grep(elem.className.split(/\s+/),function(cur){return!jQuery.className.has(c,cur);}).join(" "):"";},has:function(t,c){return jQuery.inArray(c,(t.className||t).toString().split(/\s+/))>-1;}},swap:function(e,o,f){for(var i in o){e.style["old"+i]=e.style[i];e.style[i]=o[i];}f.apply(e,[]);for(var i in o)e.style[i]=e.style["old"+i];},css:function(e,p){if(p=="height"||p=="width"){var old={},oHeight,oWidth,d=["Top","Bottom","Right","Left"];jQuery.each(d,function(){old["padding"+this]=0;old["border"+this+"Width"]=0;});jQuery.swap(e,old,function(){if(jQuery(e).is(':visible')){oHeight=e.offsetHeight;oWidth=e.offsetWidth;}else{e=jQuery(e.cloneNode(true)).find(":radio").removeAttr("checked").end().css({visibility:"hidden",position:"absolute",display:"block",right:"0",left:"0"}).appendTo(e.parentNode)[0];var parPos=jQuery.css(e.parentNode,"position")||"static";if(parPos=="static")e.parentNode.style.position="relative";oHeight=e.clientHeight;oWidth=e.clientWidth;if(parPos=="static")e.parentNode.style.position="static";e.parentNode.removeChild(e);}});return p=="height"?oHeight:oWidth;}return jQuery.curCSS(e,p);},curCSS:function(elem,prop,force){var ret,stack=[],swap=[];function color(a){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(a,null);return!ret||ret.getPropertyValue("color")=="";}if(prop=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(prop.match(/float/i))prop=styleFloat;if(!force&&elem.style[prop])ret=elem.style[prop];else if(document.defaultView&&document.defaultView.getComputedStyle){if(prop.match(/float/i))prop="float";prop=prop.replace(/([A-Z])/g,"-$1").toLowerCase();var cur=document.defaultView.getComputedStyle(elem,null);if(cur&&!color(elem))ret=cur.getPropertyValue(prop);else{for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(a=0;a<stack.length;a++)if(color(stack[a])){swap[a]=stack[a].style.display;stack[a].style.display="block";}ret=prop=="display"&&swap[stack.length-1]!=null?"none":document.defaultView.getComputedStyle(elem,null).getPropertyValue(prop)||"";for(a=0;a<swap.length;a++)if(swap[a]!=null)stack[a].style.display=swap[a];}if(prop=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var newProp=prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});ret=elem.currentStyle[prop]||elem.currentStyle[newProp];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left;var runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(a,doc){var r=[];doc=doc||document;jQuery.each(a,function(i,arg){if(!arg)return;if(arg.constructor==Number)arg=arg.toString();if(typeof arg=="string"){arg=arg.replace(/(<(\w+)[^>]*?)\/>/g,function(m,all,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i)?m:all+"></"+tag+">";});var s=jQuery.trim(arg).toLowerCase(),div=doc.createElement("div"),tb=[];var wrap=!s.indexOf("<opt")&&[1,"<select>","</select>"]||!s.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||s.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!s.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!s.indexOf("<td")||!s.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!s.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+arg+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){if(!s.indexOf("<table")&&s.indexOf("<tbody")<0)tb=div.firstChild&&div.firstChild.childNodes;else if(wrap[1]=="<table>"&&s.indexOf("<tbody")<0)tb=div.childNodes;for(var n=tb.length-1;n>=0;--n)if(jQuery.nodeName(tb[n],"tbody")&&!tb[n].childNodes.length)tb[n].parentNode.removeChild(tb[n]);if(/^\s/.test(arg))div.insertBefore(doc.createTextNode(arg.match(/^\s*/)[0]),div.firstChild);}arg=jQuery.makeArray(div.childNodes);}if(0===arg.length&&(!jQuery.nodeName(arg,"form")&&!jQuery.nodeName(arg,"select")))return;if(arg[0]==undefined||jQuery.nodeName(arg,"form")||arg.options)r.push(arg);else
r=jQuery.merge(r,arg);});return r;},attr:function(elem,name,value){var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(t){return(t||"").replace(/^\s+|\s+$/g,"");},makeArray:function(a){var r=[];if(typeof a!="array")for(var i=0,al=a.length;i<al;i++)r.push(a[i]);else
r=a.slice(0);return r;},inArray:function(b,a){for(var i=0,al=a.length;i<al;i++)if(a[i]==b)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(first){var r=[],done={};try{for(var i=0,fl=first.length;i<fl;i++){var id=jQuery.data(first[i]);if(!done[id]){done[id]=true;r.push(first[i]);}}}catch(e){r=first;}return r;},grep:function(elems,fn,inv){if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+"}");var result=[];for(var i=0,el=elems.length;i<el;i++)if(!inv&&fn(elems[i],i)||inv&&!fn(elems[i],i))result.push(elems[i]);return result;},map:function(elems,fn){if(typeof fn=="string")fn=eval("false||function(a){return "+fn+"}");var result=[];for(var i=0,el=elems.length;i<el;i++){var val=fn(elems[i],i);if(val!==null&&val!=undefined){if(val.constructor!=Array)val=[val];result=result.concat(val);}}return result;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",styleFloat:jQuery.browser.msie?"styleFloat":"cssFloat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength"}});jQuery.each({parent:"a.parentNode",parents:"jQuery.dir(a,'parentNode')",next:"jQuery.nth(a,2,'nextSibling')",prev:"jQuery.nth(a,2,'previousSibling')",nextAll:"jQuery.dir(a,'nextSibling')",prevAll:"jQuery.dir(a,'previousSibling')",siblings:"jQuery.sibling(a.parentNode.firstChild,a)",children:"jQuery.sibling(a.firstChild)",contents:"jQuery.nodeName(a,'iframe')?a.contentDocument||a.contentWindow.document:jQuery.makeArray(a.childNodes)"},function(i,n){jQuery.fn[i]=function(a){var ret=jQuery.map(this,n);if(a&&typeof a=="string")ret=jQuery.multiFilter(a,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(i,n){jQuery.fn[i]=function(){var a=arguments;return this.each(function(){for(var j=0,al=a.length;j<al;j++)jQuery(a[j])[n](this);});};});jQuery.each({removeAttr:function(key){jQuery.attr(this,key,"");this.removeAttribute(key);},addClass:function(c){jQuery.className.add(this,c);},removeClass:function(c){jQuery.className.remove(this,c);},toggleClass:function(c){jQuery.className[jQuery.className.has(this,c)?"remove":"add"](this,c);},remove:function(a){if(!a||jQuery.filter(a,[this]).r.length){jQuery.removeData(this);this.parentNode.removeChild(this);}},empty:function(){jQuery("*",this).each(function(){jQuery.removeData(this);});while(this.firstChild)this.removeChild(this.firstChild);}},function(i,n){jQuery.fn[i]=function(){return this.each(n,arguments);};});jQuery.each(["Height","Width"],function(i,name){var n=name.toLowerCase();jQuery.fn[n]=function(h){return this[0]==window?jQuery.browser.safari&&self["inner"+name]||jQuery.boxModel&&Math.max(document.documentElement["client"+name],document.body["client"+name])||document.body["client"+name]:this[0]==document?Math.max(document.body["scroll"+name],document.body["offset"+name]):h==undefined?(this.length?jQuery.css(this[0],n):null):this.css(n,h.constructor==String?h:h+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":"m[2]=='*'||jQuery.nodeName(a,m[2])","#":"a.getAttribute('id')==m[2]",":":{lt:"i<m[3]-0",gt:"i>m[3]-0",nth:"m[3]-0==i",eq:"m[3]-0==i",first:"i==0",last:"i==r.length-1",even:"i%2==0",odd:"i%2","first-child":"a.parentNode.getElementsByTagName('*')[0]==a","last-child":"jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a","only-child":"!jQuery.nth(a.parentNode.lastChild,2,'previousSibling')",parent:"a.firstChild",empty:"!a.firstChild",contains:"(a.textContent||a.innerText||jQuery(a).text()||'').indexOf(m[3])>=0",visible:'"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"',hidden:'"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"',enabled:"!a.disabled",disabled:"a.disabled",checked:"a.checked",selected:"a.selected||jQuery.attr(a,'selected')",text:"'text'==a.type",radio:"'radio'==a.type",checkbox:"'checkbox'==a.type",file:"'file'==a.type",password:"'password'==a.type",submit:"'submit'==a.type",image:"'image'==a.type",reset:"'reset'==a.type",button:'"button"==a.type||jQuery.nodeName(a,"button")',input:"/input|select|textarea|button/i.test(a.nodeName)",has:"jQuery.find(m[3],a).length",header:"/h\\d/i.test(a.nodeName)",animated:"jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length"}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&!context.nodeType)context=null;context=context||document;var ret=[context],done=[],last;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){var nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName.toUpperCase()))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var nodeName=m[2],merge={};m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName.toUpperCase()){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=jQuery.filter(m[3],r,true).r;else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(\d*)n\+?(\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"n+"+m[3]||m[3]),first=(test[1]||1)-0,last=test[2]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==1){if(last==0||node.nodeIndex==last)add=true;}else if((node.nodeIndex+last)%first==0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var f=jQuery.expr[m[1]];if(typeof f!="string")f=jQuery.expr[m[1]][m[2]];f=eval("false||function(a,i){return "+f+"}");r=jQuery.grep(r,f,not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(element,type,handler,data){if(jQuery.browser.msie&&element.setInterval!=undefined)element=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var parts=type.split(".");type=parts[0];handler.type=parts[1];var events=jQuery.data(element,"events")||jQuery.data(element,"events",{});var handle=jQuery.data(element,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(element,arguments);return val;});var handlers=events[type];if(!handlers){handlers=events[type]={};if(element.addEventListener)element.addEventListener(type,handle,false);else
element.attachEvent("on"+type,handle);}handlers[handler.guid]=handler;this.global[type]=true;},guid:1,global:{},remove:function(element,type,handler){var events=jQuery.data(element,"events"),ret,index;if(typeof type=="string"){var parts=type.split(".");type=parts[0];}if(events){if(type&&type.type){handler=type.handler;type=type.type;}if(!type){for(type in events)this.remove(element,type);}else if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(element.removeEventListener)element.removeEventListener(type,jQuery.data(element,"handle"),false);else
element.detachEvent("on"+type,jQuery.data(element,"handle"));ret=null;delete events[type];}}for(ret in events)break;if(!ret){jQuery.removeData(element,"events");jQuery.removeData(element,"handle");}}},trigger:function(type,data,element,donative,extra){data=jQuery.makeArray(data||[]);if(!element){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{var val,ret,fn=jQuery.isFunction(element[type]||null),evt=!data[0]||!data[0].preventDefault;if(evt)data.unshift(this.fix({type:type,target:element}));data[0].type=type;if(jQuery.isFunction(jQuery.data(element,"handle")))val=jQuery.data(element,"handle").apply(element,data);if(!fn&&element["on"+type]&&element["on"+type].apply(element,data)===false)val=false;if(evt)data.shift();if(extra&&extra.apply(element,data)===false)val=false;if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(element,'a')&&type=="click")){this.triggered=true;element[type]();}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var c=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in c){args[0].handler=c[j];args[0].data=c[j].data;if(!parts[1]||c[j].type==parts[1]){var tmp=c[j].apply(this,args);if(val!==false)val=tmp;if(tmp===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target&&event.srcElement)event.target=event.srcElement;if(jQuery.browser.safari&&event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var e=document.documentElement,b=document.body;event.pageX=event.clientX+(e&&e.scrollLeft||b.scrollLeft||0);event.pageY=event.clientY+(e&&e.scrollTop||b.scrollTop||0);}if(!event.which&&(event.charCode||event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(){var a=arguments;return this.click(function(e){this.lastToggle=0==this.lastToggle?1:0;e.preventDefault();return a[this.lastToggle].apply(this,[e])||false;});},hover:function(f,g){function handleHover(e){var p=e.relatedTarget;while(p&&p!=this)try{p=p.parentNode;}catch(e){p=this;};if(p==this)return false;return(e.type=="mouseover"?f:g).apply(this,[e]);}return this.mouseover(handleHover).mouseout(handleHover);},ready:function(f){bindReady();if(jQuery.isReady)f.apply(document,[jQuery]);else
jQuery.readyList.push(function(){return f.apply(this,[jQuery]);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}if(jQuery.browser.mozilla||jQuery.browser.opera)document.removeEventListener("DOMContentLoaded",jQuery.ready,false);if(!window.frames.length)jQuery(window).load(function(){jQuery("#__ie_init").remove();});}}});jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,o){jQuery.fn[o]=function(f){return f?this.bind(o,f):this.trigger(o);};});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(jQuery.browser.mozilla||jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);else if(jQuery.browser.msie){document.write("<scr"+"ipt id=__ie_init defer=true "+"src=//:><\/script>");var script=document.getElementById("__ie_init");if(script)script.onreadystatechange=function(){if(this.readyState!="complete")return;jQuery.ready();};script=null;}else if(jQuery.browser.safari)jQuery.safariTimer=setInterval(function(){if(document.readyState=="loaded"||document.readyState=="complete"){clearInterval(jQuery.safariTimer);jQuery.safariTimer=null;jQuery.ready();}},10);jQuery.event.add(window,"load",jQuery.ready);}jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);setTimeout(function(){self.each(callback,[res.responseText,status,res]);},13);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null},lastModified:{},ajax:function(s){var jsonp,jsre=/=(\?|%3F)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=s.data.replace(jsre,"="+jsonp);s.url=s.url.replace(jsre,"="+jsonp);s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get")s.url+=(s.url.match(/\?/)?"&":"?")+"_="+(new Date()).getTime();if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if(!s.url.indexOf("http")&&s.dataType=="script"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(!jsonp&&(s.success||s.complete)){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async);if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();return xml;function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock?this.oldblock:"";if(jQuery.css(this,"display")=="none")this.style.display="block";}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");if(this.oldblock=="none")this.oldblock="block";this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var opt=jQuery.speed(speed,easing,callback);return this[opt.queue===false?"each":"queue"](function(){opt=jQuery.extend({},opt);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(){var timers=jQuery.timers;return this.each(function(){for(var i=0;i<timers.length;i++)if(timers[i].elem==this)timers.splice(i--,1);}).dequeue();}});var queue=function(elem,type,array){if(!elem)return;var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.curCSS(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.css(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(){return self.step();}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timers.length==1){var timer=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length)clearInterval(timer);},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(){var t=(new Date()).getTime();if(t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var absolute=jQuery.css(elem,"position")=="absolute",parent=elem.parentNode,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522;if(elem.getBoundingClientRect){box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));if(msie){var border=jQuery("html").css("borderWidth");border=(border=="medium"||jQuery.boxModel&&parseInt(version)>=7)&&2||border;add(-border,-border);}}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&/^t[d|h]$/i.test(parent.tagName)||!safari2)border(offsetParent);if(safari2&&!absolute&&jQuery.css(offsetParent,"position")=="absolute")absolute=true;offsetParent=offsetParent.offsetParent;}while(parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table-row.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if(safari2&&absolute)add(-doc.body.offsetLeft,-doc.body.offsetTop);}results={top:top,left:left};}return results;function border(elem){add(jQuery.css(elem,"borderLeftWidth"),jQuery.css(elem,"borderTopWidth"));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}};})();

var NUMBER_OF_STARS = 10;

function init_rating()
{
    var ratings = document.getElementsByTagName('div');
    for (var i = 0; i < ratings.length; i++)
    {
        if (ratings[i].className != 'rating')
            continue;
            
        var rating = ratings[i].firstChild.nodeValue;
        ratings[i].removeChild(ratings[i].firstChild);
        if (rating > NUMBER_OF_STARS || rating < 0)
            continue;
        for (var j = 0; j < NUMBER_OF_STARS; j++)
        {
            var star = document.createElement('img');
            if (rating >= 1)
            {
                star.setAttribute('src', '/images/stars/rating_on.gif');
                star.className = 'on';
                rating--;
            }
            else if(rating == 0.5)
            {
                star.setAttribute('src', '/images/stars/rating_half.gif');
                star.className = 'half';
                rating = 0;
            }
            else
            {
                star.setAttribute('src', '/images/stars/rating_off.gif');
                star.className = 'off';
            }
            var widgetId = ratings[i].getAttribute('id').substr(7);
            star.setAttribute('id', 'star_'+widgetId+'_'+j);
            star.onmouseover = new Function("evt", "displayHover("+widgetId+", "+j+");");
            star.onmouseout = new Function("evt", "displayNormal("+widgetId+", "+j+");");
            ratings[i].appendChild(star);
        } 
    }
}

function displayHover(ratingId, star)
{
    for (var i = 0; i <= star; i++)
    {
        document.getElementById('star_'+ratingId+'_'+i).setAttribute('src', '/images/stars/rating_over.gif');
    }
}

function displayNormal(ratingId, star)
{
    for (var i = 0; i <= star; i++)
    {
        var status = document.getElementById('star_'+ratingId+'_'+i).className;
        document.getElementById('star_'+ratingId+'_'+i).setAttribute('src', '/images/stars/rating_'+status+'.gif');
    }
}


$(document).ready(function() {
		  $('#results_container').hide();
		  $('a.results-show').click(function() {
		 $('#results_container').slideDown('fast');
		 return false;
		  });
		  $('a.results-hide').click(function() {
		 $('#results_container').slideUp('fast');
		 return false;
		  });
		  $('a.results-toggle').click(function() {
		 $('#results_container').slideToggle(400);
		 return false;
		  });
		  $('a.admin-toggle').click(function() {
		 $('#admin_toggle').slideToggle(400);
		 return false;
		  });
		});
jQuery(document).ready(function($) {
	      $('a[rel*=account_window]').facebox({
	      }) 
	    })
	    
$(document).ready(function(){
  $("#setlist").textShadow();
  $("h1, h2, h3, h4, h5, p").textShadow();
})
$(document).ready(function(){
			 
				//Adjust panel height
				$.fn.adjustPanel = function(){ 
					$(this).find("ul, .subpanel").css({ 'height' : 'auto'}); //Reset subpanel and ul height
					var windowHeight = $(window).height(); //Get the height of the browser viewport
					var panelsub = $(this).find(".subpanel").height(); //Get the height of subpanel	
					var panelAdjust = windowHeight - 100; //Viewport height - 100px (Sets max height of subpanel)
					var ulAdjust =  panelAdjust - 25; //Calculate ul size after adjusting sub-panel (27px is the height of the base panel)
					
					if ( panelsub >= panelAdjust ) {	 //If subpanel is taller than max height...
						$(this).find(".subpanel").css({ 'height' : panelAdjust }); //Adjust subpanel to max height
						$(this).find("ul").css({ 'height' : ulAdjust}); //Adjust subpanel ul to new size
					}
					else if ( panelsub < panelAdjust ) { //If subpanel is smaller than max height...
						$(this).find("ul").css({ 'height' : 'auto'}); //Set subpanel ul to auto (default size)
					}
				};
				
				//Execute function on load
				$("#chatpanel").adjustPanel(); //Run the adjustPanel function on #chatpanel
				$("#chatpanel2").adjustPanel(); //Run the adjustPanel function on #chatpanel2
				$("#chatpanel3").adjustPanel(); //Run the adjustPanel function on #chatpanel2
				$("#alertpanel").adjustPanel(); //Run the adjustPanel function on #alertpanel
				
				//Each time the viewport is adjusted/resized, execute the function
				$(window).resize(function () { 
					$("#chatpanel").adjustPanel();
					$("#chatpanel2").adjustPanel();
					$("#chatpanel3").adjustPanel();
					$("#alertpanel").adjustPanel();
				});
				
				//Click event on Chat Panel + Alert Panel	
				$("#chatpanel a:first, #chatpanel2 a:first, #chatpanel3 a:first, #alertpanel a:first").click(function() { //If clicked on the first link of #chatpanel and #alertpanel...
					if($(this).next(".subpanel").is(':visible')){ //If subpanel is already active...
						$(this).next(".subpanel").hide(); //Hide active subpanel
						$("#footpanel li a").removeClass('active'); //Remove active class on the subpanel trigger
					}
					else { //if subpanel is not active...
						$(".subpanel").hide(); //Hide all subpanels
						$(this).next(".subpanel").toggle(); //Toggle the subpanel to make active
						$("#footpanel li a").removeClass('active'); //Remove active class on all subpanel trigger
						$(this).toggleClass('active'); //Toggle the active class on the subpanel trigger
					}
					return false; //Prevent browser jump to link anchor
				});
				
				//Click event outside of subpanel
				$(document).click(function() { //Click anywhere and...
					$(".subpanel").hide(); //hide subpanel
					$("#footpanel li a").removeClass('active'); //remove active class on subpanel trigger
				});
				$('.subpanel ul').click(function(e) { 
					e.stopPropagation(); //Prevents the subpanel ul from closing on click
				});
				
				//Delete icons on Alert Panel
				$("#alertpanel li").hover(function() {
					$(this).find("a.delete").css({'visibility': 'visible'}); //Show delete icon on hover
				},function() {
					$(this).find("a.delete").css({'visibility': 'hidden'}); //Hide delete icon on hover out
				});		
			});

function Youtube_Display(id) {
		jQuery.facebox({ ajax: 'scripts/yt_video_embed.php?youtube_id=' + id })
		return false;
	}
		
//create the Cross-browser XMLHttpRequest object
		function getFile(pURL) {
			
		   if (window.XMLHttpRequest) { // code for Mozilla, Safari, etc 
		   	
		      xmlhttp=new XMLHttpRequest();
		      xmlhttp.onreadystatechange=postFileReady;
		      xmlhttp.open("GET", pURL + '&ms=' + new Date().getTime(), true);
		      if(xmlhttp.readyState == 1)
		      $.facebox.settings.opacity = 0.4; 
		      $.facebox('<div style="width:600px;"><img src="/facebox/loading.gif" style="float:right;"/><div style="float:right;color:#ddd;font-size:20px;font-weight:bold;">Retrieving the shows you requested ... </div></div>');
		      xmlhttp.send(null);
		   } else if (window.ActiveXObject) { //IE 
		      xmlhttp=new ActiveXObject('Microsoft.XMLHTTP'); 
		      if (xmlhttp) {
		         xmlhttp.onreadystatechange=postFileReady;
		         xmlhttp.open('GET', pURL + '&ms=' + new Date().getTime(), true);
		         xmlhttp.send();
		      }
		   }
		}
		
		// function to handle asynchronous call
		function postFileReady() {
				 if (xmlhttp.readyState==4) { 
		      if (xmlhttp.status==200) { 
		      		$.facebox.close();
		         document.getElementById('results').innerHTML=xmlhttp.responseText;
		         jQuery(document).ready(function($) {
				      $('a[rel*=account_window]').facebox({
				      }) 
citydata = ['Adelaide',
'Albany',
'Albuquerque',
'Amarillo',
'Amsterdam',
'Anaheim',
'Ann Arbor',
'Antwerp',
'Arvika',
'Asheville',
'Athens',
'Atlanta',
'Auburn',
'Auckland',
'Austin',
'Balado',
'Baltimore',
'Barakaldo',
'Barcelona',
'Berkeley',
'Berlin',
'Biddinghuizen',
'Biella',
'Birmingham',
'Bogota',
'Boise',
'Bologna',
'Bordeaux',
'Boston',
'Boulder',
'Bozeman',
'Brisbane',
'Bristol',
'Brussels',
'Buenos Aires',
'Burlington',
'Calgary',
'Camber Sands',
'Carrboro',
'Charlotte',
'Chicago',
'Chico',
'Cincinnati',
'Cleveland',
'Cleveland Heights',
'Cologne',
'Columbus',
'Copenhagen',
'County Kildare',
'Dallas',
'Denver',
'Detroit',
'Dortmund',
'Dusseldorf',
'East Rutherford',
'Edmonton',
'El Paso',
'Fayetteville',
'Fort Lauderdale',
'Frankfurt',
'Fresno',
'Fribourg',
'Geneva',
'George',
'Glasgow',
'Glendale',
'Gold Coast',
'Grand Rapids',
'Groningen',
'Guadalajara',
'Hamburg',
'Hamilton',
'Hampton',
'Hasselt',
'Helsinki',
'Houston',
'Hultsfred',
'Illirska Bistrica',
'Indianapolis',
'Indio',
'Inglewood',
'Irvine',
'Kansas City',
'Kontich',
'Kortrijk',
'Las Vegas',
'Lawrence',
'Leeds',
'Liege',
'Lisbon',
'Ljubljana',
'London',
'Long Beach',
'Los Angeles',
'Luxembourg',
'Lyon',
'Madison',
'Madrid',
'Malmo',
'Manchester',
'Melbourne',
'Memphis',
'Mexico City',
'Miami',
'Milan',
'Milwaukee',
'Minneapolis',
'Monterrey',
'Montreal',
'Morrison',
'Moscow',
'Munich',
'Myrtle Beach',
'Naeba',
'Nagoya',
'Nashville',
'Neuhausen ob Eck',
'New Haven',
'New Orleans',
'New York',
'New York City',
'Newtown',
'Norman',
'Nottingham',
'Oakland',
'Omaha',
'Orangevale',
'Orlando',
'Osaka',
'Oslo',
'Ottawa',
'Paredes de Coura',
'Paris',
'Pensacola',
'Perth',
'Petaluma',
'Philadelphia',
'Philadelphia',
'Phoenix',
'Pittsburgh',
'Pontiac',
'Portland',
'Portsmouth',
'Prague',
'Providence',
'Quebec City',
'Raleigh',
'Rapid City',
'Reading',
'Rochester',
'Rome',
'Rosemont',
'Roskilde',
'Rotterdam',
'Sacramento',
'Salem',
'Salt Lake City',
'San Antonia',
'San Antonio',
'San Diego',
'San Francisco',
'San Fransisco',
'San Juan',
'San Luis Obispo',
'Santa Barbara',
'Santa Cruz',
'Santiago',
'Sao Paulo',
'Saskatoon',
'Sayreville',
'Scheebel',
'Seattle',
'Seinajoki',
'St. Louis',
'St. Paul',
'Stockholm',
'Stuttgart',
'Suffolk',
'Sydney',
'Tacoma',
'Tempe',
'Tilburg',
'Tokyo',
'Toronto',
'Tulsa',
'Turin',
'Turku',
'Vancouver',
'Ventura',
'Vienna',
'Warsaw',
'Washington',
'Weeze',
'Werchter',
'West Hollywood',
'Worchester',
'Zagreb',
'Zurich',
'Winnipeg'].sort();
			 AutoComplete_Create('cityinput', citydata); 
			 //AutoComplete_Create('cityinput', ['Buffalo' , 'Rochester']); 


				    })
		      }
		   }
		}
		
		
	function submitRating(evt)
        {
	    $("#showrating").html("<span style=color:#ddd;>Submitting...</span>");
            var tmp = evt.target.getAttribute('id').substr(5);
            var widgetId = tmp.substr(0, tmp.indexOf('_'));
            var starNbr = tmp.substr(tmp.indexOf('_')+1);
            $.get("/submitRating.php",
               { ratingID: widgetId, value: starNbr},
               function(data){
               	  //alert(data);
		//alert("ID" + widgetId);	
		 $.get("include/showrating.php?callnumber="+widgetId, { }, 
			function(data) {
				$("#showrating").html("");
		 		$("#showrating").html(data);
				jqueryInit();
			});
//		$("#showrating").load("include/showrating.php?callnumber=" + widgetId);
		jqueryInit();
               }
             );
        }
    function jqueryInit()
    {
    	if (document.getElementById('showrating')){
        init_rating();
        $('div.rating').children('img').bind('click', submitRating);
      }
    }
    $(document).ready(jqueryInit);
    $(document).ready(function() {
		$('.backtotop').click(function(){
			$('html, body').animate({scrollTop:0}, 'slow');
		});
	});

	function newCitySearch() {
		var cityname = $("input#cityinput").val();
		getFile('/view_city.php?city=' + cityname);
		return false;
	}
	
	/**
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
* 
* © Copyright 2005 Richard Heyes
*/

    /**
    * Global vars
    */
    __AutoComplete = new Array();

    // Basic UA detection
    isIE = document.all ? true : false;
    isGecko = navigator.userAgent.toLowerCase().indexOf('gecko') != -1;
    isOpera = navigator.userAgent.toLowerCase().indexOf('opera') != -1;


    /**
    * Attachs the autocomplete object to a form element. Sets
    * onkeypress event on the form element.
    * 
    * @param string formElement Name of form element to attach to
    * @param array  data        Array of strings of which to use as the autocomplete data
    */
    function AutoComplete_Create (id, data)
    {
        __AutoComplete[id] = {'data':data,
                              'isVisible':false,
                              'element':document.getElementById(id),
                              'dropdown':null,
                              'highlighted':null};

        __AutoComplete[id]['element'].setAttribute('autocomplete', 'off');
        __AutoComplete[id]['element'].onkeydown  = function(e) {return AutoComplete_KeyDown(this.getAttribute('id'), e);}
        __AutoComplete[id]['element'].onkeyup    = function(e) {return AutoComplete_KeyUp(this.getAttribute('id'), e);}
        __AutoComplete[id]['element'].onkeypress = function(e) {if (!e) e = window.event; if (e.keyCode == 13 || isOpera) return false;}
        __AutoComplete[id]['element'].ondblclick = function() {AutoComplete_ShowDropdown(this.getAttribute('id'));}
        __AutoComplete[id]['element'].onclick    = function(e) {if (!e) e = window.event; e.cancelBubble = true; e.returnValue = false;}

        // Hides the dropdowns when document clicked
        var docClick = function()
        {
           for (id in __AutoComplete) {
               AutoComplete_HideDropdown(id);
           }
        }

        if (document.addEventListener) {
            document.addEventListener('click', docClick, false);
        } else if (document.attachEvent) {
            document.attachEvent('onclick', docClick, false);
        }


        // Max number of items shown at once
        if (arguments[2] != null) {
            __AutoComplete[id]['maxitems'] = arguments[2];
            __AutoComplete[id]['firstItemShowing'] = 0;
            __AutoComplete[id]['lastItemShowing']  = arguments[2] - 1;
        }
        
        AutoComplete_CreateDropdown(id);
        
        // Prevent select dropdowns showing thru
        if (isIE) {
            __AutoComplete[id]['iframe'] = document.createElement('iframe');
            __AutoComplete[id]['iframe'].id = id +'_iframe';
            __AutoComplete[id]['iframe'].style.position = 'absolute';
            __AutoComplete[id]['iframe'].style.top = '0';
            __AutoComplete[id]['iframe'].style.left = '0';
            __AutoComplete[id]['iframe'].style.width = '0px';
            __AutoComplete[id]['iframe'].style.height = '0px';
            __AutoComplete[id]['iframe'].style.zIndex = '98';
            __AutoComplete[id]['iframe'].style.visibility = 'hidden';
            
            __AutoComplete[id]['element'].parentNode.insertBefore(__AutoComplete[id]['iframe'], __AutoComplete[id]['element']);
        }
    }


    /**
    * Creates the dropdown layer
    * 
    * @param string id The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_CreateDropdown(id)
    {
        var left  = AutoComplete_GetLeft(__AutoComplete[id]['element']);
        var top   = AutoComplete_GetTop(__AutoComplete[id]['element']) + __AutoComplete[id]['element'].offsetHeight;
        var width = __AutoComplete[id]['element'].offsetWidth;
    
        __AutoComplete[id]['dropdown'] = document.createElement('div');
        __AutoComplete[id]['dropdown'].className = 'autocomplete'; // Don't use setAttribute()
    
        __AutoComplete[id]['element'].parentNode.insertBefore(__AutoComplete[id]['dropdown'], __AutoComplete[id]['element']);
        
        // Position it
        __AutoComplete[id]['dropdown'].style.left       = left + 'px';
        __AutoComplete[id]['dropdown'].style.top        = top + 'px';
        __AutoComplete[id]['dropdown'].style.width      = width + 'px';
        __AutoComplete[id]['dropdown'].style.zIndex     = '99';
        __AutoComplete[id]['dropdown'].style.visibility = 'hidden';
    }
    
    
    /**
    * Gets left coord of given element
    * 
    * @param object element The element to get the left coord for
    */
    function AutoComplete_GetLeft(element)
    {
        var curNode = element;
        var left    = 0;

        do {
            left += curNode.offsetLeft;
            curNode = curNode.offsetParent;

        } while(curNode.tagName.toLowerCase() != 'body');

        return left;
    }
    
    
    /**
    * Gets top coord of given element
    * 
    * @param object element The element to get the top coord for
    */
    function AutoComplete_GetTop(element)
    {
        var curNode = element;
        var top    = 0;

        do {
            top += curNode.offsetTop;
            curNode = curNode.offsetParent;

        } while(curNode.tagName.toLowerCase() != 'body');

        return top;
    }

    
    /**
    * Shows the dropdown layer
    * 
    * @param string id The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_ShowDropdown(id)
    {
        AutoComplete_HideAll();

        var value = __AutoComplete[id]['element'].value;
        var toDisplay = new Array();
        var newDiv    = null;
        var text      = null;
        var numItems  = __AutoComplete[id]['dropdown'].childNodes.length;

        // Remove all child nodes from dropdown
        while (__AutoComplete[id]['dropdown'].childNodes.length > 0) {
            __AutoComplete[id]['dropdown'].removeChild(__AutoComplete[id]['dropdown'].childNodes[0]);
        }

        // Go thru data searching for matches
        for (i=0; i<__AutoComplete[id]['data'].length; ++i) {
            if (__AutoComplete[id]['data'][i].substr(0, value.length).toLowerCase() == value.toLowerCase()) {
                toDisplay[toDisplay.length] = __AutoComplete[id]['data'][i];
            }
        }
        
        // No matches?
        if (toDisplay.length == 0) {
            AutoComplete_HideDropdown(id);
            return;
        }



        // Add data to the dropdown layer
        for (i=0; i<toDisplay.length; ++i) {
            newDiv = document.createElement('div');
            newDiv.className = 'autocomplete_item'; // Don't use setAttribute()
            newDiv.setAttribute('id', 'autocomplete_item_' + i);
            newDiv.setAttribute('index', i);
            newDiv.style.zIndex = '99';
            
             // Scrollbars are on display ?
            if (toDisplay.length > __AutoComplete[id]['maxitems'] && navigator.userAgent.indexOf('MSIE') == -1) {
                newDiv.style.width = __AutoComplete[id]['element'].offsetWidth - 22 + 'px';
            }

            newDiv.onmouseover = function() {AutoComplete_HighlightItem(__AutoComplete[id]['element'].getAttribute('id'), this.getAttribute('index'));};
            newDiv.onclick     = function() {AutoComplete_SetValue(__AutoComplete[id]['element'].getAttribute('id')); AutoComplete_HideDropdown(__AutoComplete[id]['element'].getAttribute('id'));}
            
            text   = document.createTextNode(toDisplay[i]);
            newDiv.appendChild(text);
            
            __AutoComplete[id]['dropdown'].appendChild(newDiv);
        }
        
        
        // Too many items?
        if (toDisplay.length > __AutoComplete[id]['maxitems']) {
            __AutoComplete[id]['dropdown'].style.height = (__AutoComplete[id]['maxitems'] * 15) + 2 + 'px';
        
        } else {
            __AutoComplete[id]['dropdown'].style.height = '';
        }

        
        /**
        * Set left/top in case of document movement/scroll/window resize etc
        */
        __AutoComplete[id]['dropdown'].style.left = AutoComplete_GetLeft(__AutoComplete[id]['element']);
        __AutoComplete[id]['dropdown'].style.top  = AutoComplete_GetTop(__AutoComplete[id]['element']) + __AutoComplete[id]['element'].offsetHeight;


        // Show the iframe for IE
        if (isIE) {
            __AutoComplete[id]['iframe'].style.top    = __AutoComplete[id]['dropdown'].style.top;
            __AutoComplete[id]['iframe'].style.left   = __AutoComplete[id]['dropdown'].style.left;
            __AutoComplete[id]['iframe'].style.width  = __AutoComplete[id]['dropdown'].offsetWidth;
            __AutoComplete[id]['iframe'].style.height = __AutoComplete[id]['dropdown'].offsetHeight;
            
            __AutoComplete[id]['iframe'].style.visibility = 'visible';
        }


        // Show dropdown
        if (!__AutoComplete[id]['isVisible']) {
            __AutoComplete[id]['dropdown'].style.visibility = 'visible';
            __AutoComplete[id]['isVisible'] = true;
        }

        
        // If now showing less items than before, reset the highlighted value
        if (__AutoComplete[id]['dropdown'].childNodes.length != numItems) {
            __AutoComplete[id]['highlighted'] = null;
        }
    }
    
    
    /**
    * Hides the dropdown layer
    * 
    * @param string id The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_HideDropdown(id)
    {
        if (__AutoComplete[id]['iframe']) {
            __AutoComplete[id]['iframe'].style.visibility = 'hidden';
        }


        __AutoComplete[id]['dropdown'].style.visibility = 'hidden';
        __AutoComplete[id]['highlighted'] = null;
        __AutoComplete[id]['isVisible']   = false;
    }
    
    
    /**
    * Hides all dropdowns
    */
    function AutoComplete_HideAll()
    {
        for (id in __AutoComplete) {
            AutoComplete_HideDropdown(id);
        }
    }
    
    
    /**
    * Highlights a specific item
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    * @param int    index The index of the element in the dropdown to highlight
    */
    function AutoComplete_HighlightItem(id, index)
    {
        if (__AutoComplete[id]['dropdown'].childNodes[index]) {
            for (var i=0; i<__AutoComplete[id]['dropdown'].childNodes.length; ++i) {
                if (__AutoComplete[id]['dropdown'].childNodes[i].className == 'autocomplete_item_highlighted') {
                    __AutoComplete[id]['dropdown'].childNodes[i].className = 'autocomplete_item';
                }
            }
            
            __AutoComplete[id]['dropdown'].childNodes[index].className = 'autocomplete_item_highlighted';
            __AutoComplete[id]['highlighted'] = index;
        }
    }


    /**
    * Highlights the menu item with the given index
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    * @param int    index The index of the element in the dropdown to highlight
    */
    function AutoComplete_Highlight(id, index)
    {
        // Out of bounds checking
        if (index == 1 && __AutoComplete[id]['highlighted'] == __AutoComplete[id]['dropdown'].childNodes.length - 1) {
            __AutoComplete[id]['dropdown'].childNodes[__AutoComplete[id]['highlighted']].className = 'autocomplete_item';
            __AutoComplete[id]['highlighted'] = null;
        
        } else if (index == -1 && __AutoComplete[id]['highlighted'] == 0) {
            __AutoComplete[id]['dropdown'].childNodes[0].className = 'autocomplete_item';
            __AutoComplete[id]['highlighted'] = __AutoComplete[id]['dropdown'].childNodes.length;
        }

        // Nothing highlighted at the moment
        if (__AutoComplete[id]['highlighted'] == null) {
            __AutoComplete[id]['dropdown'].childNodes[0].className = 'autocomplete_item_highlighted';
            __AutoComplete[id]['highlighted'] = 0;

        } else {
            if (__AutoComplete[id]['dropdown'].childNodes[__AutoComplete[id]['highlighted']]) {
                __AutoComplete[id]['dropdown'].childNodes[__AutoComplete[id]['highlighted']].className = 'autocomplete_item';
            }

            var newIndex = __AutoComplete[id]['highlighted'] + index;

            if (__AutoComplete[id]['dropdown'].childNodes[newIndex]) {
                __AutoComplete[id]['dropdown'].childNodes[newIndex].className = 'autocomplete_item_highlighted';
                
                __AutoComplete[id]['highlighted'] = newIndex;
            }
        }
    }


    /**
    * Sets the input to a given value
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_SetValue(id)
    {
        __AutoComplete[id]['element'].value = __AutoComplete[id]['dropdown'].childNodes[__AutoComplete[id]['highlighted']].innerHTML;
    }
    
    
    /**
    * Checks if the dropdown needs scrolling
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_ScrollCheck(id)
    {
        // Scroll down, or wrapping around from scroll up
        if (__AutoComplete[id]['highlighted'] > __AutoComplete[id]['lastItemShowing']) {
            __AutoComplete[id]['firstItemShowing'] = __AutoComplete[id]['highlighted'] - (__AutoComplete[id]['maxitems'] - 1);
            __AutoComplete[id]['lastItemShowing']  = __AutoComplete[id]['highlighted'];
        }
        
        // Scroll up, or wrapping around from scroll down
        if (__AutoComplete[id]['highlighted'] < __AutoComplete[id]['firstItemShowing']) {
            __AutoComplete[id]['firstItemShowing'] = __AutoComplete[id]['highlighted'];
            __AutoComplete[id]['lastItemShowing']  = __AutoComplete[id]['highlighted'] + (__AutoComplete[id]['maxitems'] - 1);
        }
        
        __AutoComplete[id]['dropdown'].scrollTop = __AutoComplete[id]['firstItemShowing'] * 15;
    }


    /**
    * Function which handles the keypress event
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_KeyDown(id)
    {
        // Mozilla
        if (arguments[1] != null) {
            event = arguments[1];
        }

        var keyCode = event.keyCode;

        switch (keyCode) {

            // Return/Enter
            case 13:
                if (__AutoComplete[id]['highlighted'] != null) {
                    AutoComplete_SetValue(id);
                    AutoComplete_HideDropdown(id);
                }
                
                event.returnValue = false;
                event.cancelBubble = true;
                break;

            // Escape
            case 27:
                AutoComplete_HideDropdown(id);
                event.returnValue = false;
                event.cancelBubble = true;
                break;
            
            // Up arrow
            case 38:
                if (!__AutoComplete[id]['isVisible']) {
                    AutoComplete_ShowDropdown(id);
                }
                
                AutoComplete_Highlight(id, -1);
                AutoComplete_ScrollCheck(id, -1);
                return false;
                break;
            
            // Tab
            case 9:
                if (__AutoComplete[id]['isVisible']) {
                    AutoComplete_HideDropdown(id);
                }
                return;
            
            // Down arrow
            case 40:
                if (!__AutoComplete[id]['isVisible']) {
                    AutoComplete_ShowDropdown(id);
                }
                
                AutoComplete_Highlight(id, 1);
                AutoComplete_ScrollCheck(id, 1);
                return false;
                break;
        }
    }


    /**
    * Function which handles the keyup event
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_KeyUp(id)
    {
        // Mozilla
        if (arguments[1] != null) {
            event = arguments[1];
        }

        var keyCode = event.keyCode;

        switch (keyCode) {
            case 13:
                event.returnValue = false;
                event.cancelBubble = true;
                break;

            case 27:
                AutoComplete_HideDropdown(id);
                event.returnValue = false;
                event.cancelBubble = true;
                break;
            
            case 38:
            case 40:
                return false;
                break;

            default:
                AutoComplete_ShowDropdown(id);
                break;
        }
    }
    
    /**
    * Returns whether the dropdown is visible
    * 
    * @param string id    The form elements id. Used to identify the correct dropdown.
    */
    function AutoComplete_isVisible(id)
    {
        return __AutoComplete[id]['dropdown'].style.visibility == 'visible';
    }
	
	function getPageWidth() { 
	  var windowWidth; 
	  if( typeof( window.innerWidth ) == 'number' ) { 
		windowWidth = window.innerWidth; //Non-IE 
	  } else if( document.documentElement && 
	( document.documentElement.clientWidth ) ) { 
		windowWidth = document.documentElement.clientWidth; //IE 6+ in 
	'standards compliant mode' 
	  } else if( document.body && ( document.body.clientWidth || 
	document.body.clientHeight ) ) { 
		windowWidth = document.body.clientWidth; //IE 4 compatible 
	  } 
	  return windowWidth 
	} 

(function($) {
  $.facebox = function(data, klass) {
    $.facebox.loading()

    if (data.ajax) fillFaceboxFromAjax(data.ajax)
    else if (data.image) fillFaceboxFromImage(data.image)
    else if (data.div) fillFaceboxFromHref(data.div)
    else if ($.isFunction(data)) data.call($)
    else $.facebox.reveal(data, klass)
  }

  /*
   * Public, $.facebox methods
   */

  $.extend($.facebox, {
    settings: {
      opacity      : .8,
      overlay      : true,
      loadingImage : '/facebox/loading.gif',
      closeImage   : '/facebox/closelabel.gif',
      imageTypes   : [ 'png', 'jpg', 'jpeg', 'gif' ],
      faceboxHtml  : '\
    <div id="facebox" style="display:none;"> \
      <div class="popup"> \
        <table> \
          <tbody> \
            <tr> \
              <td class="tl"/><td class="b"/><td class="tr"/> \
            </tr> \
            <tr> \
              <td class="b"/> \
              <td class="body"> \
                <div class="content"> \
                </div> \
              </td> \
              <td class="b"/> \
            </tr> \
            <tr> \
              <td class="bl"/><td class="b"/><td class="br"/> \
            </tr> \
          </tbody> \
        </table> \
      </div> \
    </div>'
    },
	
	

    loading: function() {
      init()
      if ($('#facebox .loading').length == 1) return true
      showOverlay()

      $('#facebox .content').empty()
      $('#facebox .body').children().hide().end().
        append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/></div>')

      $('#facebox').css({
        top:	getPageScroll()[1] + (getPageHeight() / 10),
        left:	385.5
      }).show()

      $(document).bind('keydown.facebox', function(e) {
        if (e.keyCode == 27) $.facebox.close()
        return true
      })
      $(document).trigger('loading.facebox')
    },

    reveal: function(data, klass) {
      $(document).trigger('beforeReveal.facebox')
      if (klass) $('#facebox .content').addClass(klass)
      $('#facebox .content').append(data)
      $('#facebox .loading').remove()
      $('#facebox .body').children().fadeIn('normal')
      $('#facebox').css('left', $(window).width() / 2 - ($('#facebox table').width() / 2))
      $(document).trigger('reveal.facebox').trigger('afterReveal.facebox')
	   $(window).resize(function(){ 
                $("#facebox").css("left", getPageWidth() / 2 - ($("#facebox table").width() / 2)); 
          }); 
    },

    close: function() {
      $(document).trigger('close.facebox')
      return false
    }
  })

  /*
   * Public, $.fn methods
   */

  $.fn.facebox = function(settings) {
    init(settings)

    function clickHandler() {
      $.facebox.loading(true)

      // support for rel="facebox.inline_popup" syntax, to add a class
      // also supports deprecated "facebox[.inline_popup]" syntax
      var klass = this.rel.match(/facebox\[?\.(\w+)\]?/)
      if (klass) klass = klass[1]

      fillFaceboxFromHref(this.href, klass)
      return false
    }

    return this.click(clickHandler)
  }

  /*
   * Private methods
   */

  // called one time to setup facebox on this page
  function init(settings) {
    if ($.facebox.settings.inited) return true
    else $.facebox.settings.inited = true

    $(document).trigger('init.facebox')
    makeCompatible()

    var imageTypes = $.facebox.settings.imageTypes.join('|')
    $.facebox.settings.imageTypesRegexp = new RegExp('\.' + imageTypes + '$', 'i')

    if (settings) $.extend($.facebox.settings, settings)
    $('body').append($.facebox.settings.faceboxHtml)

    var preload = [ new Image(), new Image() ]
    preload[0].src = $.facebox.settings.closeImage
    preload[1].src = $.facebox.settings.loadingImage

    $('#facebox').find('.b:first, .bl, .br, .tl, .tr').each(function() {
      preload.push(new Image())
      preload.slice(-1).src = $(this).css('background-image').replace(/url\((.+)\)/, '$1')
    })

    $('#facebox .close').click($.facebox.close)
    $('#facebox .close_image').attr('src', $.facebox.settings.closeImage)
  }
  
  // getPageScroll() by quirksmode.com
  function getPageScroll() {
    var xScroll, yScroll;
    if (self.pageYOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    } else if (document.documentElement && document.documentElement.scrollTop) {	 // Explorer 6 Strict
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    } else if (document.body) {// all other Explorers
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;	
    }
    return new Array(xScroll,yScroll) 
  }

  // Adapted from getPageSize() by quirksmode.com
  function getPageHeight() {
    var windowHeight
    if (self.innerHeight) {	// all except Explorer
      windowHeight = self.innerHeight;
    } else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
      windowHeight = document.documentElement.clientHeight;
    } else if (document.body) { // other Explorers
      windowHeight = document.body.clientHeight;
    }	
    return windowHeight
  }

  // Backwards compatibility
  function makeCompatible() {
    var $s = $.facebox.settings

    $s.loadingImage = $s.loading_image || $s.loadingImage
    $s.closeImage = $s.close_image || $s.closeImage
    $s.imageTypes = $s.image_types || $s.imageTypes
    $s.faceboxHtml = $s.facebox_html || $s.faceboxHtml
  }

  // Figures out what you want to display and displays it
  // formats are:
  //     div: #id
  //   image: blah.extension
  //    ajax: anything else
  function fillFaceboxFromHref(href, klass) {
    // div
    if (href.match(/#/)) {
      var url    = window.location.href.split('#')[0]
      var target = href.replace(url,'')
      $.facebox.reveal($(target).clone().show(), klass)

    // image
    } else if (href.match($.facebox.settings.imageTypesRegexp)) {
      fillFaceboxFromImage(href, klass)
    // ajax
    } else {
      fillFaceboxFromAjax(href, klass)
    }
  }

  function fillFaceboxFromImage(href, klass) {
    var image = new Image()
    image.onload = function() {
      $.facebox.reveal('<div class="image"><img src="' + image.src + '" /></div>', klass)
    }
    image.src = href
  }

  function fillFaceboxFromAjax(href, klass) {
    $.get(href, function(data) { $.facebox.reveal(data, klass) })
  }

  function skipOverlay() {
    return $.facebox.settings.overlay == false || $.facebox.settings.opacity === null 
  }

  function showOverlay() {
    if (skipOverlay()) return

    if ($('facebox_overlay').length == 0) 
      $("body").append('<div id="facebox_overlay" class="facebox_hide"></div>')

    $('#facebox_overlay').hide().addClass("facebox_overlayBG")
      .css('opacity', $.facebox.settings.opacity)
      .click(function() { $(document).trigger('close.facebox') })
      .fadeIn(200)
    return false
  }

  function hideOverlay() {
    if (skipOverlay()) return

    $('#facebox_overlay').fadeOut(200, function(){
      $("#facebox_overlay").removeClass("facebox_overlayBG")
      $("#facebox_overlay").addClass("facebox_hide") 
      $("#facebox_overlay").remove()
    })
    
    return false
  }

  /*
   * Bindings
   */

  $(document).bind('close.facebox', function() {
    $(document).unbind('keydown.facebox')
    $('#facebox').fadeOut(function() {
      $('#facebox .content').removeClass().addClass('content')
      hideOverlay()
      $('#facebox .loading').remove()
    })
  })

})(jQuery);

(function($) {

	$.fn.textShadow = function(option) {

		if (!$.browser.msie) return;

		var IE6 = $.browser.version < 7;

		return this.each(function() {

			var el = $(this);

			var shadow = el.textShadowParse(this.currentStyle["text-shadow"]);

			shadow = $.extend(shadow, option);



			el.textShadowRemove();



			if (shadow.x == 0 && shadow.y == 0 && shadow.radius == 0) return;



			if (el.css("position")=="static") {

				el.css({position:"relative"});

			}

			el.css({zIndex:"0"});

			if (IE6) {

				el.css({zoom:"1"});

			}

			

			var span=document.createElement("span");

			$(span).addClass("jQueryTextShadow");

			$(span).html(el.html());

			$(span).css({

				padding:		this.currentStyle["padding"],	

				width:		el.width(),

				position:	"absolute",

				zIndex:		"-1",

				color:		shadow.color!=null?shadow.color:el.css("color"),

				left:			(-parseInt(shadow.radius)+parseInt(shadow.x))+"px",

				top:			(-parseInt(shadow.radius)+parseInt(shadow.y))+"px"

			});

			

			if (shadow.radius != 0) {

				if (shadow.opacity != null) {

					$(span).css("filter", "progid:DXImageTransform.Microsoft.Blur(pixelradius="+parseInt(shadow.radius)+", enabled='true', makeShadow='true', ShadowOpacity="+shadow.opacity+")");

				} else {

					$(span).css("filter", "progid:DXImageTransform.Microsoft.Blur(pixelradius="+parseInt(shadow.radius)+", enabled='true')");

				}

			}	

			el.append(span);

		

	  });

	};

	

	$.fn.textShadowParse = function(value) 

	{

		value = String(value)

			.replace(/^\s+|\s+$/gi, '')

			.replace(/\s*!\s*important/i, '')

			.replace(/\(\s*([^,\)]+)\s*,\s*([^,\)]+)\s*,\s*([^,\)]+)\s*,\s*([^\)]+)\s*\)/g, '($1/$2/$3/$4)')

			.replace(/\(\s*([^,\)]+)\s*,\s*([^,\)]+)\s*,\s*([^\)]+)\s*\)/g, '($1/$2/$3)')

	

		var shadow = {

			x      : 0,

			y      : 0,

			radius : 0,

			color  : null

		};



		if (value.length > 1 || value[0].toLowerCase() != 'none') {

			value = value.replace(/\//g, ',');

			var color;

			if ( value.match(/(\#[0-9a-f]{6}|\#[0-9a-f]{3}|(rgb|hsb)a?\([^\)]*\)|\b[a-z]+\b)/i) && (color = RegExp.$1) ) {

				shadow.color = color.replace(/^\s+/, '');

				value = value.replace(shadow.color, '');

			}



			value = value

				.replace(/^\s+|\s+$/g, '')

				.split(/\s+/)

				.map(function(item) {

						return (item || '').replace(/^0[a-z]*$/, '') ? item : 0 ;

					});



			switch (value.length)

			{

				case 1:

					shadow.x = shadow.y = value[0];

					break;

				case 2:

					shadow.x = value[0];

					shadow.y = value[1];

					break;

				case 3:

					shadow.x = value[0];

					shadow.y = value[1];

					shadow.radius = value[2];

					break;

			}

			if ((!shadow.x && !shadow.y && !shadow.radius) || shadow.color == 'transparent') {

				shadow.x = shadow.y = shadow.radius = 0;

				shadow.color = null;

			}

		}



		return shadow;

	};



	$.fn.textShadowRemove = function() {

		if (!$.browser.msie) return;

		return this.each(function() {

			$(this).children("span.jQueryTextShadow").remove();

		});

	};

})(jQuery);



if(typeof Array.prototype.map == 'undefined') {

	Array.prototype.map = function(fnc) {

		var a = new Array(this.length);

		for (var i = 0; i < this.length; i++) {

			a[i] = fnc(this[i]);

		}

		return a;

	}

}


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * copyright 1994-1996, Jos Buivenga
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Delicious","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"0 -279 266 72","underline-thickness":"7.2","underline-position":"-46.8","stemh":"22","stemv":"27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"75,-17v1,25,-44,31,-44,2v-1,-26,44,-30,44,-2xm70,-252v-10,59,-5,127,-6,194r-22,0v-3,-65,-11,-130,1,-190","w":95},"\"":{"d":"45,-255v9,25,0,52,-3,79r-11,0v-3,-27,-12,-54,-3,-79r17,0xm95,-255v9,25,0,52,-3,79r-12,0v-2,-27,-10,-54,-3,-79r18,0","w":124},"#":{"d":"117,-100r7,-55r-41,0r-7,55r41,0xm135,-243r22,0r-8,64r30,0r-2,24r-32,0r-6,55r27,0r-3,23r-27,0r-10,74r-21,0r9,-74r-41,0r-9,67r-21,0r8,-67r-29,0r4,-23r28,0r7,-55r-25,0r3,-24r25,0r9,-71r22,0r-9,71r41,0","w":200},"$":{"d":"95,-92r0,72v34,-11,30,-60,0,-72xm78,-136r0,-73v-18,3,-28,16,-28,34v0,21,13,29,28,39xm147,-56v0,32,-21,55,-52,60r0,22r-17,0r0,-21v-18,0,-39,-6,-54,-15r8,-22v13,6,32,14,46,15r0,-85v-28,-18,-56,-33,-56,-71v0,-35,21,-57,56,-59r0,-20r17,0r0,21v15,2,32,8,44,17r-10,19v-9,-7,-22,-11,-34,-13r0,82v29,18,52,31,52,70","w":160},"%":{"d":"91,-184v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26xm64,-232v17,-1,32,12,51,11v39,-3,35,-17,59,-6r-80,227r-24,0r76,-210v-14,7,-38,7,-38,7v13,27,-11,67,-44,67v-26,0,-47,-22,-47,-48v0,-26,21,-48,47,-48xm234,-42v0,26,-22,47,-48,47v-26,0,-47,-21,-47,-47v0,-26,21,-48,47,-48v26,0,48,22,48,48xm213,-42v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26","w":251},"&":{"d":"149,-176v2,-31,-5,-54,-35,-55v-18,0,-36,10,-36,30v0,31,40,24,71,25xm46,-85v1,23,4,61,25,68v10,-2,34,-36,59,-20r-5,20v-27,-11,-28,21,-54,22v-41,0,-56,-56,-56,-89v0,-36,19,-84,60,-85v-14,-6,-25,-16,-25,-32v4,-65,122,-66,124,2r0,23r36,0r0,20r-35,0r0,120v-4,21,21,22,35,14r6,17v-28,19,-69,10,-69,-30r0,-121v-63,-5,-105,9,-101,71","w":226},"(":{"d":"111,30r-3,23v-60,-45,-91,-97,-91,-173v0,-64,36,-125,90,-159r3,20v-97,64,-94,223,1,289","w":120,"k":{"J":-7}},")":{"d":"14,-279v54,34,91,95,91,159v0,76,-31,128,-91,173r-3,-23v95,-66,98,-225,1,-289","w":122},"*":{"d":"95,-243r-12,41r54,-19r0,23r-47,15r38,58r-25,0r-28,-44r-27,44r-24,0r35,-58r-46,-15r0,-23r54,19r-13,-41r41,0","w":152},"+":{"d":"153,-79r-58,0r0,62r-21,0r0,-62r-58,0r0,-22r58,0r0,-62r21,0r0,62r58,0r0,22","w":169},",":{"d":"10,40v16,-25,25,-35,23,-65v0,0,10,-6,17,-6v11,0,23,16,23,16v0,0,-14,31,-46,66","w":92,"k":{"Q":9,"O":9,"C":9}},"-":{"d":"88,-103r0,22r-69,0r0,-22r69,0","w":108},".":{"d":"70,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":92,"k":{"Q":9,"O":9,"G":9,"C":9}},"\/":{"d":"122,-273r-93,326r-23,0r93,-326r23,0","w":128,"k":{"\/":36}},"0":{"d":"81,-159v-35,0,-45,43,-45,71v0,28,10,71,45,71v35,0,45,-43,45,-71v0,-28,-10,-71,-45,-71xm152,-88v0,44,-20,93,-71,93v-51,0,-71,-49,-71,-93v0,-44,20,-94,71,-94v51,0,71,50,71,94"},"1":{"d":"108,0r-27,0r0,-151r-45,0r0,-17v25,0,43,-11,72,-8r0,176"},"2":{"d":"137,-132v-1,47,-43,84,-74,108r80,0r0,24r-116,0r-5,-22v32,-17,87,-72,87,-110v0,-42,-61,-27,-82,-6r-5,-21v33,-35,117,-34,115,27"},"3":{"d":"26,40v46,-4,88,-22,88,-68v0,-40,-46,-35,-81,-32r0,-21v29,-2,41,-21,61,-32v19,-10,23,-48,-7,-46v-13,0,-40,13,-52,20r-7,-19v32,-25,109,-42,109,18v0,28,-28,44,-50,56v29,0,54,19,54,50v0,66,-56,95,-115,94r0,-20"},"4":{"d":"152,0r-24,0r0,50r-25,0r0,-50r-90,0r-2,-23v20,-56,53,-106,88,-153r30,0r0,153r23,0r0,23xm103,-23r0,-120v-26,37,-48,78,-65,120r65,0"},"5":{"d":"24,39v43,-1,90,-24,89,-68v-1,-41,-52,-38,-83,-26r10,-121r90,0r0,21r-65,0r-6,73v38,-9,80,7,81,47v2,60,-53,96,-116,95r0,-21"},"6":{"d":"121,-79v0,-41,-45,-50,-75,-32v-8,37,-2,95,38,95v33,0,37,-37,37,-63xm119,-231r10,18v-36,23,-63,41,-78,83v45,-21,97,1,97,52v0,42,-19,83,-66,83v-51,0,-65,-56,-65,-97v0,-66,46,-112,102,-139"},"7":{"d":"139,-176v5,87,-35,177,-79,239r-24,-10v40,-53,77,-139,77,-206r-92,0r0,-23r118,0"},"8":{"d":"121,-59v0,-30,-23,-37,-45,-50v-43,14,-47,94,6,94v24,0,39,-22,39,-44xm114,-174v0,-23,-12,-33,-34,-33v-21,0,-33,18,-33,37v0,21,13,31,30,40v21,-10,37,-17,37,-44xm148,-61v0,42,-30,66,-70,66v-34,0,-63,-26,-63,-61v0,-28,18,-50,43,-62v-21,-13,-37,-26,-37,-53v0,-35,28,-56,61,-56v35,0,57,18,57,54v0,24,-20,43,-41,52v27,14,50,25,50,60"},"9":{"d":"117,-66v8,-36,3,-89,-37,-94v-53,4,-52,106,1,104v12,0,26,-4,36,-10xm113,-46v-45,22,-98,-5,-98,-52v0,-41,18,-84,66,-84v51,0,66,60,66,101v0,67,-57,119,-115,142r-7,-21v41,-21,72,-41,88,-86"},":":{"d":"70,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm70,-127v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":92},";":{"d":"9,40v16,-25,25,-35,23,-65v0,0,10,-6,17,-6v11,0,23,16,23,16v0,0,-14,31,-46,66xm70,-127v1,27,-44,31,-44,2v-1,-26,44,-30,44,-2","w":92},"<":{"d":"96,-36r-17,14r-67,-68r66,-68r17,14r-53,54","w":108},"=":{"d":"153,-73r0,22r-137,0r0,-22r137,0xm153,-127r0,22r-137,0r0,-22r137,0","w":172},">":{"d":"12,-36r17,14r67,-68r-66,-68r-17,14r53,54","w":108},"?":{"d":"70,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm59,-58r-22,0v-7,-55,17,-89,43,-118v15,-16,21,-49,-8,-51v-10,0,-21,1,-31,3r0,-20v36,-12,83,-4,79,38v-6,58,-72,69,-61,148","w":128},"@":{"d":"179,-165v-9,-11,-22,-17,-36,-17v-30,0,-40,53,-40,75v0,11,3,27,17,27v14,0,32,-13,44,-20xm190,-53v-17,1,-33,-11,-28,-30v-13,11,-29,26,-47,26v-24,0,-36,-24,-36,-46v0,-40,15,-99,65,-99v16,0,30,8,39,21r4,-15r23,0r-27,116v0,7,4,10,10,10v32,0,55,-50,55,-77v0,-60,-45,-94,-103,-94v-61,0,-106,55,-106,114v0,63,47,113,111,113v35,0,70,-15,92,-43r16,9v-22,33,-68,54,-108,54v-75,0,-135,-59,-135,-134v0,-69,61,-133,131,-133v68,0,120,44,120,114v0,39,-34,94,-76,94","w":285},"A":{"d":"92,-197r-27,100r54,0xm179,0r-29,0r-24,-73r-68,0r-24,73r-30,0r72,-227r31,0","w":183,"k":{"y":9,"w":9,"v":9,"Y":20,"W":6,"V":10,"T":14}},"B":{"d":"138,-66v0,-46,-39,-42,-80,-42r0,84v37,13,81,0,80,-42xm125,-170v0,-36,-32,-35,-67,-34r0,73v37,3,67,-5,67,-39xm29,-227v62,-4,127,0,125,57v0,19,-15,44,-34,49v31,2,46,26,46,55v1,70,-77,82,-137,62r0,-223","w":180},"C":{"d":"170,-15v-16,13,-42,20,-63,20v-66,0,-87,-63,-87,-118v0,-53,26,-119,88,-119v19,0,42,5,58,15r-10,19v-15,-8,-31,-12,-48,-12v-43,0,-59,64,-59,98v0,38,12,94,60,94v16,0,36,-5,49,-15","w":178,"k":{",":9}},"D":{"d":"93,-204r-36,0r0,181r34,0v48,0,57,-51,57,-89v0,-37,-7,-92,-55,-92xm94,-227v65,0,83,59,83,114v0,55,-22,113,-86,113r-62,0r0,-227r65,0","w":196},"E":{"d":"145,-227r0,24r-87,0r0,72r67,0r0,25r-67,0r0,81r91,0r0,25r-120,0r0,-227r116,0","w":163},"F":{"d":"135,-227r0,24r-77,0r0,72r61,0r0,25r-61,0r0,106r-29,0r0,-227r106,0","w":148,"k":{"o":5,"e":5,"c":5,"a":7,"A":14,".":46,",":46}},"G":{"d":"167,-4v-17,7,-41,9,-59,9v-66,0,-88,-62,-88,-118v0,-53,26,-119,88,-119v24,0,38,5,59,15r-11,19v-14,-9,-31,-12,-48,-12v-41,0,-59,60,-59,98v0,38,12,94,60,94v10,0,22,-1,31,-5r0,-74r27,0r0,93","w":188,"k":{",":9}},"H":{"d":"168,0r-28,0r0,-106r-82,0r0,106r-29,0r0,-227r29,0r0,96r82,0r0,-96r28,0r0,227","w":197},"I":{"d":"57,-227r0,227r-28,0r0,-227r28,0","w":85},"J":{"d":"59,10v0,29,-26,43,-51,49r-6,-20v15,-5,29,-13,29,-31r0,-235r28,0r0,237","w":88},"K":{"d":"172,0r-29,0r-85,-95r0,95r-29,0r0,-227r29,0r0,104r79,-104r30,0r-87,117r92,101r0,9","w":174,"k":{"Q":4,"O":4,"G":4,"C":4}},"L":{"d":"56,-227r0,203r78,0r0,24r-105,0r0,-227r27,0","w":137,"k":{"y":10,"Y":23,"W":13,"V":16,"T":20}},"M":{"d":"238,-227r0,227r-28,0r1,-185r-65,185r-25,0r-65,-186v4,53,1,128,2,186r-29,0r0,-227r38,0r67,192r66,-192r38,0","w":267},"N":{"d":"171,0r-30,0r-85,-185v5,58,1,124,2,185r-29,0r0,-227r38,0r77,174v-4,-55,-1,-116,-2,-174r29,0r0,227","w":199},"O":{"d":"99,-208v-39,0,-50,66,-50,95v0,29,11,95,50,95v39,0,50,-66,50,-95v0,-29,-11,-95,-50,-95xm99,-232v59,0,78,71,78,119v0,48,-19,118,-78,118v-59,0,-79,-70,-79,-118v0,-48,20,-119,79,-119","w":197,"k":{"T":7,".":9,",":9}},"P":{"d":"133,-157v-2,-40,-34,-50,-75,-47r0,92v35,22,77,-5,75,-45xm29,-227v69,-3,131,1,133,70v2,55,-51,92,-104,69r0,88r-29,0r0,-227","w":176,"k":{"o":4,"e":4,"c":4,"a":7,"A":15,".":52,",":52}},"Q":{"d":"121,2v15,15,34,29,59,22r-8,28v-41,6,-59,-29,-82,-47v-53,-6,-70,-72,-70,-118v0,-48,20,-119,79,-119v59,0,78,71,78,119v0,41,-14,100,-56,115xm99,-208v-39,0,-50,66,-50,95v0,29,11,95,50,95v39,0,50,-66,50,-95v0,-29,-11,-95,-50,-95","w":197,"k":{"T":7,".":9,",":9}},"R":{"d":"133,-157v-2,-40,-34,-50,-75,-47r0,92v34,21,77,-4,75,-45xm173,0r-28,0r-75,-83v-4,-1,-8,-3,-12,-5r0,88r-29,0r0,-227v69,-3,132,1,133,70v0,36,-19,67,-56,74r67,74r0,9","w":181,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":6}},"S":{"d":"16,-173v0,-64,86,-77,116,-33r-16,14v-18,-25,-72,-24,-72,15v0,53,97,48,97,121v0,62,-81,78,-120,40r12,-20v23,26,81,25,81,-21v0,-47,-98,-49,-98,-116","w":156},"T":{"d":"142,-202r-55,0r0,202r-28,0r0,-202r-55,0r0,-25r138,0r0,25","w":145,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-6,"Q":7,"O":7,"G":7,"C":7,"A":14,";":33,":":33,".":33,"-":27,",":33}},"U":{"d":"172,-227v-6,96,30,232,-72,232v-102,0,-65,-136,-72,-232r29,0r0,139v0,29,6,70,43,70v38,0,44,-40,44,-70r0,-139r28,0","w":200},"V":{"d":"182,-227r-74,227r-32,0r-74,-227r31,0r60,192r59,-192r30,0","w":183,"k":{"y":4,"u":11,"r":11,"o":9,"i":6,"e":9,"c":9,"a":11,"A":10,";":20,":":20,".":33,"-":13,",":33}},"W":{"d":"252,-227r-53,227r-31,0r-40,-183r-41,183r-30,0r-53,-227r30,0r38,185r41,-185r29,0r42,185v6,-63,27,-125,39,-185r29,0","w":254,"k":{"u":4,"r":4,"o":11,"e":11,"c":11,"a":6,"A":6,";":13,":":13,".":20,"-":6,",":20}},"X":{"d":"173,0r-33,0r-54,-90r-51,90r-31,0r67,-116r-66,-111r32,0r50,83r48,-83r30,0r-63,109","w":177},"Y":{"d":"165,-227r-66,144r0,83r-28,0r0,-83r-66,-144r30,0r51,113r50,-113r29,0","w":169,"k":{"z":5,"v":5,"u":11,"t":11,"s":13,"q":14,"p":11,"o":16,"n":11,"m":11,"i":13,"e":16,"c":16,"a":18,"Q":9,"O":9,"G":9,"C":9,"A":20,";":33,":":33,".":46,"-":27,",":46}},"Z":{"d":"144,-227r0,25v-35,58,-68,117,-99,177r109,0r0,25r-141,0r0,-24v31,-60,63,-120,98,-178r-90,0r0,-25r123,0","w":164},"[":{"d":"66,-264r0,21r-34,0r0,278r34,0r0,21r-56,0r0,-320r56,0","w":89,"k":{"J":-7}},"\\":{"d":"120,53r-22,0r-94,-326r23,0","w":120},"]":{"d":"80,-264r0,320r-56,0r0,-21r33,0r0,-278r-33,0r0,-21r56,0","w":89},"^":{"d":"198,-115r-25,0r-61,-111r-61,111r-25,0v41,-71,76,-140,76,-140r20,0","w":224},"_":{"d":"162,27r0,22r-162,0r0,-22r162,0"},"a":{"d":"67,-16v32,-2,46,-40,43,-74r-63,27v-11,18,-4,49,20,47xm163,-2v-21,16,-54,3,-52,-25v-6,21,-29,32,-50,32v-44,2,-57,-49,-35,-80r84,-36v2,-27,-2,-48,-28,-48v-18,0,-37,12,-48,25r-10,-16v25,-40,114,-49,114,16r0,110v-1,10,10,14,18,9","w":167},"b":{"d":"135,-94v0,-25,-5,-65,-38,-65v-14,0,-31,9,-40,20r0,108v8,9,24,14,36,14v36,0,42,-50,42,-77xm163,-98v0,50,-16,103,-76,103v-19,0,-42,-9,-57,-21r0,-234r27,0r0,87v10,-12,29,-19,44,-19v44,0,62,47,62,84","w":181},"c":{"d":"139,-15v-13,11,-33,20,-50,20v-50,0,-71,-48,-71,-91v0,-42,20,-96,70,-96v16,0,34,7,46,18r-12,16v-9,-7,-21,-12,-33,-12v-32,0,-44,44,-44,70v0,28,11,74,46,74v12,0,29,-10,39,-16","w":148},"d":{"d":"85,-16v54,0,42,-79,43,-137v-9,-4,-22,-7,-32,-7v-44,0,-50,44,-50,78v0,23,9,66,39,66xm158,5v-18,3,-29,-15,-28,-31v-5,21,-29,31,-49,31v-44,0,-63,-46,-63,-83v0,-52,17,-104,76,-104v12,0,22,3,34,6r0,-74r28,0r0,217v0,7,-1,20,9,21","w":184},"e":{"d":"126,-117v0,-20,-13,-43,-36,-43v-23,0,-37,23,-41,43r77,0xm154,-97r-108,0v-1,31,8,81,43,81v14,0,38,-15,50,-23r8,18v-15,13,-40,26,-61,26v-97,0,-89,-187,7,-187v41,0,65,39,61,85","w":169},"f":{"d":"99,-233v-1,0,-39,2,-39,33r0,24r35,0r0,20r-35,0r0,156r-27,0r0,-156r-24,-3r0,-17r24,0r0,-28v0,-41,43,-49,61,-51","w":102,"k":{"f":6}},"g":{"d":"156,-155r-26,0v19,38,1,79,-36,89v-10,3,-40,12,-40,26v22,26,99,-5,99,49v0,41,-43,63,-79,63v-27,0,-60,-9,-60,-42v0,-23,18,-33,36,-43v-41,-7,-20,-50,8,-54v-23,-8,-38,-31,-38,-55v-2,-45,46,-73,87,-54r49,0r0,21xm79,-83v43,-1,44,-79,0,-80v-43,1,-44,79,0,80xm126,12v-6,-38,-86,-25,-85,12v7,46,85,30,85,-12","w":163},"h":{"d":"158,0r-27,0r0,-134v3,-43,-62,-19,-74,-7r0,141r-27,0r0,-250r27,0r0,87v12,-9,38,-19,57,-19v37,0,44,21,44,48r0,134","w":186},"i":{"d":"56,-176r0,176r-26,0r0,-176r26,0xm22,-226v0,-24,40,-25,40,0v0,24,-40,25,-40,0","w":85},"j":{"d":"56,21v0,29,-25,41,-50,48r-6,-19v13,-5,30,-16,30,-32r0,-194r26,0r0,197xm22,-226v0,-24,40,-25,40,0v0,24,-40,25,-40,0","w":85},"k":{"d":"168,0r-29,0r-82,-98r0,98r-27,0r0,-250r27,0r0,147r64,-73r32,0r-65,76r80,94r0,6","w":169},"l":{"d":"54,-250v3,85,-9,181,11,250r-29,0v-18,-71,-5,-166,-9,-250r27,0","w":84},"m":{"d":"249,0r-28,0r0,-134v3,-39,-51,-25,-68,-9r0,143r-27,0r0,-134v2,-40,-52,-24,-69,-7r0,141r-27,0r0,-176r27,0r0,13v24,-20,70,-31,90,0v32,-26,102,-30,102,29r0,134","w":277},"n":{"d":"158,0r-27,0r0,-134v4,-44,-63,-18,-74,-7r0,141r-27,0r0,-176r27,0r0,13v12,-9,38,-19,57,-19v37,0,44,21,44,48r0,134","w":186},"o":{"d":"88,-160v-30,0,-43,45,-43,72v0,27,13,72,43,72v30,0,43,-45,43,-72v0,-27,-13,-72,-43,-72xm88,-182v49,0,70,53,70,94v0,41,-22,93,-70,93v-48,0,-70,-52,-70,-93v0,-41,21,-94,70,-94","w":175},"p":{"d":"140,-94v0,-25,-6,-66,-39,-66v-15,0,-32,11,-43,21v1,53,-10,123,43,123v34,0,39,-53,39,-78xm105,-182v44,0,63,47,63,84v0,42,-12,103,-65,103v-20,0,-37,-8,-45,-27r0,85r-28,0r0,-239r28,0r0,13v12,-11,31,-19,47,-19","w":185},"q":{"d":"85,-17v56,0,43,-78,44,-137v-48,-20,-83,16,-83,60v0,25,4,77,39,77xm156,63r-27,0r0,-85v-9,19,-26,27,-46,27v-48,0,-65,-50,-65,-90v0,-43,20,-97,71,-97v23,0,45,5,67,11r0,234","w":185},"r":{"d":"95,-182v30,0,12,16,8,30v-11,-10,-39,0,-46,14r0,138r-27,0r0,-176r27,0r0,14v8,-8,16,-20,38,-20","w":114,"k":{"o":2,"e":2,"c":2,".":33,"-":6,",":33}},"s":{"d":"134,-46v-3,58,-80,64,-113,31r10,-20v20,20,72,32,77,-8v-9,-47,-94,-34,-91,-92v3,-56,87,-61,114,-22r-14,14v-18,-21,-68,-29,-73,7v13,43,92,33,90,90","w":151},"t":{"d":"95,-22v11,21,5,27,-31,27v-17,0,-31,-10,-31,-40r0,-121r-24,-3r0,-17r25,0r0,-32r25,0r0,32r36,0r0,20r-35,0r0,120v-4,28,27,17,35,14","w":110},"u":{"d":"165,-13r-9,18v-13,0,-23,-7,-25,-20v-31,28,-102,34,-102,-27r0,-134r27,0r0,134v0,15,2,25,20,25v16,0,42,-9,54,-20r0,-139r27,0r0,149v0,6,0,13,8,14","w":186},"v":{"d":"158,-176v-14,59,-36,122,-63,176r-27,0r-64,-176r29,0r49,145v21,-46,39,-95,49,-145r27,0","k":{".":27,",":27}},"w":{"d":"235,-176v-10,60,-26,119,-48,176r-29,0r-25,-90v-6,-21,-11,-54,-11,-54v-3,34,-24,107,-34,144r-30,0r-54,-176r29,0r40,143r35,-143r28,0r38,143v15,-47,26,-94,35,-143r26,0","w":241,"k":{".":20,",":20}},"x":{"d":"148,0r-30,0r-43,-69r-42,69r-29,0r56,-91r-53,-85r30,0r38,61r37,-61r29,0r-51,83","w":152},"y":{"d":"159,-176v-15,59,-49,176,-87,220v-11,13,-26,19,-42,23r-6,-21v22,-6,37,-23,46,-43r-66,-179r29,0r41,115v4,12,8,24,10,36v20,-49,35,-100,48,-151r27,0","w":163,"k":{".":27,",":27}},"z":{"d":"142,0r-130,0r0,-23v27,-45,56,-90,91,-130r-84,0r0,-23r116,0r0,23v-33,41,-64,85,-91,130r98,0r0,23","w":153},"{":{"d":"104,39r-4,19v-35,-1,-56,6,-56,-46v0,-42,4,-106,-30,-107r0,-17v34,0,30,-65,30,-107v0,-53,21,-45,56,-46r4,19v-27,0,-38,-6,-38,33r0,63v0,32,-27,47,-27,47v0,0,27,14,27,46v0,38,-21,112,38,96","w":119,"k":{"J":-7}},"|":{"d":"51,-272r0,278r-22,0r0,-278r22,0","w":79},"}":{"d":"104,-95v-33,1,-29,66,-29,107v0,53,-22,45,-57,46r-4,-19v27,0,39,5,39,-32r0,-64v0,-32,27,-46,27,-46v0,0,-27,-15,-27,-47v0,-30,11,-97,-17,-96r-22,0r4,-19v36,1,57,-8,57,46v0,41,-5,106,29,107r0,17","w":119},"~":{"d":"53,-89v-4,-27,10,-44,31,-44v35,0,83,49,103,3v5,28,-10,45,-31,45v-35,-2,-83,-49,-103,-4","w":239},"'":{"d":"45,-255v9,25,0,52,-3,79r-11,0v-3,-27,-12,-54,-3,-79r17,0","w":74},"`":{"d":"94,-218r-12,16v-23,-12,-47,-28,-66,-46r23,-23v14,20,35,39,55,53","w":121},"\u00a0":{"w":108}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * copyright 1994-1996, Jos Buivenga
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Delicious","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-1 -280 268 71","underline-thickness":"7.2","underline-position":"-46.8","stemh":"32","stemv":"38","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"78,-22v1,31,-53,38,-53,4v-1,-31,53,-38,53,-4xm76,-252v-11,56,-6,120,-7,185r-33,0v-2,-61,-9,-122,1,-180","w":95},"\"":{"d":"98,-259v10,27,2,58,-2,88r-22,0v-3,-30,-12,-61,-2,-88r26,0xm51,-259v10,27,2,58,-2,88r-22,0v-3,-30,-12,-60,-3,-88r27,0","w":124},"#":{"d":"181,-182r-2,35r-30,0r-5,39r23,0r-3,35r-25,0r-9,72r-33,0r10,-72r-27,0r-9,63r-33,0r9,-63r-30,0r5,-35r30,0r5,-39r-25,0r5,-35r24,0r7,-67r33,0r-8,67r27,0r7,-61r33,0r-7,61r28,0xm116,-147r-27,0r-5,39r27,0","w":200},"$":{"d":"73,-199v-28,7,-21,46,0,56r0,-56xm89,-31v22,-10,19,-44,0,-54r0,54xm89,-133v30,21,55,29,55,74v0,33,-23,58,-55,63r0,22r-16,0r0,-21v-18,-1,-40,-10,-53,-22r18,-28v9,7,24,16,35,17r0,-68v-26,-15,-58,-39,-58,-76v0,-34,25,-57,58,-60r0,-20r16,0r0,21v18,2,38,12,49,27r-21,21v-7,-8,-18,-13,-28,-16r0,66","w":156},"%":{"d":"234,-45v0,28,-22,50,-50,50v-28,0,-51,-22,-51,-50v0,-28,23,-51,51,-51v28,0,50,23,50,51xm203,-45v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,19,-8,19,-19xm67,-232v17,-1,28,12,47,12v18,0,40,-6,57,-12r27,7r-113,225r-35,0r103,-205v-11,9,-23,11,-37,11v7,36,-17,62,-49,63v-28,0,-51,-22,-51,-50v0,-28,23,-51,51,-51xm86,-181v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,19,-8,19,-19","w":251},"&":{"d":"143,-176v1,-24,-1,-44,-27,-44v-16,0,-30,5,-30,23v0,26,32,20,57,21xm140,-145v-53,-8,-84,14,-84,58v0,11,2,62,17,62v7,-2,28,-30,53,-19r-7,25v-22,-5,-22,24,-46,24v-43,0,-59,-56,-59,-91v0,-36,18,-76,57,-82v-50,-25,-5,-81,40,-81v40,0,73,23,66,73r34,0r0,31r-34,0r0,105v-2,18,20,15,30,9r9,25v-30,22,-76,10,-76,-33r0,-106","w":226},"(":{"d":"114,20r-3,35v-61,-46,-98,-95,-98,-174v0,-68,40,-126,97,-161r4,32v-92,59,-90,207,0,268","w":120,"k":{"J":-7}},")":{"d":"108,-119v0,79,-35,128,-97,174r-4,-35v90,-62,93,-208,1,-268r4,-32v57,35,96,93,96,161","w":122},"*":{"d":"140,-193r-42,13r38,58r-39,0r-22,-36r-23,36r-38,0r37,-58r-41,-13r0,-34r48,20r-12,-39r56,0r-10,39r48,-20r0,34","w":152},"+":{"d":"156,-74r-56,0r0,59r-31,0r0,-59r-55,0r0,-32r55,0r0,-59r31,0r0,59r56,0r0,32","w":169},",":{"d":"78,-14v-13,25,-31,50,-51,70r-22,-16v12,-19,28,-40,23,-66v17,-16,41,-7,50,12","w":92,"k":{"Q":9,"O":9,"C":9}},"-":{"d":"93,-76r-78,0r0,-32r78,0r0,32","w":108},".":{"d":"73,-22v0,15,-12,27,-27,27v-14,0,-25,-9,-25,-23v0,-30,53,-38,52,-4","w":92,"k":{"Q":9,"O":9,"G":9,"C":9}},"\/":{"d":"127,-270r-92,321r-34,0r92,-321r34,0","w":128,"k":{"\/":36}},"0":{"d":"153,-88v0,46,-22,93,-72,93v-97,-1,-96,-187,0,-187v50,0,72,44,72,94xm117,-88v0,-36,-14,-60,-36,-60v-22,0,-36,24,-36,60v0,32,14,60,36,60v22,0,36,-17,36,-60"},"1":{"d":"114,0r-37,0r0,-140r-42,0r0,-28v26,0,48,-11,79,-8r0,176"},"2":{"d":"147,0r-121,0r-7,-28v27,-15,84,-66,84,-99v0,-36,-55,-19,-72,-2r-8,-30v33,-35,118,-33,118,30v0,39,-31,75,-62,95r68,0r0,34"},"3":{"d":"144,-35v0,70,-59,95,-121,95r0,-29v36,-1,83,-17,83,-61v0,-35,-46,-27,-77,-25r0,-29v30,0,42,-20,61,-31v14,-8,17,-34,-4,-34v-16,0,-51,19,-51,19r-9,-28v33,-28,113,-36,114,19v0,24,-26,46,-44,53v27,3,48,25,48,51"},"4":{"d":"154,0r-21,0r0,50r-36,0r0,-50r-85,0r-2,-29v21,-53,53,-101,87,-147r37,0r0,143r20,0r0,33xm97,-33r0,-88v-18,27,-36,56,-48,88r48,0"},"5":{"d":"143,-36v-1,65,-58,98,-121,95r0,-28v37,0,83,-18,83,-61v0,-38,-50,-26,-78,-18r10,-128r97,0r0,32r-63,0r-3,57v40,-8,75,11,75,51"},"6":{"d":"151,-80v0,43,-21,85,-69,85v-52,0,-67,-56,-67,-98v0,-68,48,-112,105,-140r14,26v-32,20,-56,36,-73,72v43,-24,90,10,90,55xm114,-81v0,-33,-36,-40,-60,-26v-5,30,-2,80,30,80v28,0,30,-33,30,-54"},"7":{"d":"140,-176v4,87,-32,175,-76,239r-32,-16v36,-51,71,-127,73,-190r-84,0r0,-33r119,0"},"8":{"d":"80,-135v27,-8,40,-62,0,-63v-18,0,-25,15,-25,31v0,16,12,25,25,32xm113,-62v0,-21,-20,-32,-36,-41v-34,12,-37,78,5,78v19,0,31,-19,31,-37xm109,-120v67,21,46,125,-30,125v-36,0,-66,-27,-66,-64v0,-29,14,-46,37,-60v-53,-24,-32,-115,32,-108v65,-7,80,86,27,107"},"9":{"d":"148,-80v0,67,-58,117,-116,140r-10,-28v34,-17,63,-38,80,-73v-43,20,-90,-8,-90,-55v0,-42,20,-86,68,-86v56,0,68,57,68,102xm109,-69v5,-31,1,-76,-31,-82v-42,5,-40,90,2,89v9,0,20,-3,29,-7"},":":{"d":"73,-22v0,15,-12,27,-27,27v-14,0,-25,-9,-25,-23v0,-30,53,-38,52,-4xm73,-125v0,15,-12,27,-27,27v-14,0,-25,-10,-25,-24v0,-15,13,-27,28,-27v14,0,24,10,24,24","w":92},";":{"d":"77,-14v-13,25,-31,50,-51,70r-22,-16v12,-19,28,-40,23,-66v17,-16,41,-7,50,12xm76,-125v0,15,-13,27,-28,27v-14,0,-24,-10,-24,-24v0,-15,12,-27,27,-27v14,0,25,10,25,24","w":92},"<":{"d":"103,-39r-26,21r-71,-72r71,-72r25,21r-52,51","w":108},"=":{"d":"158,-98r-143,0r0,-33r143,0r0,33xm158,-48r-143,0r0,-32r143,0r0,32","w":172},">":{"d":"102,-90r-71,72r-26,-21r52,-51r-51,-51r25,-21","w":108},"?":{"d":"75,-22v0,30,-53,38,-52,4v0,-15,12,-27,27,-27v14,0,25,9,25,23xm78,-249v50,-2,56,66,25,92v-17,25,-43,44,-37,90r-33,0v-13,-68,37,-84,53,-134v2,-25,-32,-17,-49,-12r0,-30v13,-4,27,-6,41,-6","w":128},"@":{"d":"191,-76v28,-3,46,-38,45,-70v0,-56,-38,-84,-91,-84v-55,0,-95,51,-95,103v0,100,136,137,193,65r19,17v-30,35,-68,50,-113,50v-74,0,-133,-59,-133,-133v0,-69,60,-132,130,-132v72,0,122,40,122,114v0,45,-35,93,-83,93v-14,0,-30,-10,-31,-25v-11,9,-32,21,-46,21v-25,0,-31,-33,-31,-52v0,-55,52,-120,100,-76r3,-10r30,0r-26,109v0,5,2,10,7,10xm172,-162v-7,-4,-20,-11,-28,-11v-25,0,-36,47,-36,69v0,8,2,18,11,18v9,0,30,-12,38,-17","w":285},"A":{"d":"180,0r-40,0r-22,-65r-52,0r-21,65r-41,0r72,-227r32,0xm109,-100r-17,-70r-17,70r34,0","w":183,"k":{"y":9,"w":9,"v":9,"Y":20,"W":6,"V":10,"T":14}},"B":{"d":"169,-68v1,73,-81,85,-143,63r0,-222v62,0,128,-7,131,55v0,20,-13,41,-31,50v26,4,43,28,43,54xm118,-167v1,-31,-25,-27,-52,-27r0,58v29,2,52,-3,52,-31xm130,-68v-1,-37,-31,-34,-64,-34r0,70v31,9,65,-2,64,-36","w":180},"C":{"d":"170,-15v-16,13,-42,20,-63,20v-66,0,-88,-62,-88,-118v0,-53,28,-119,89,-119v18,0,43,5,58,16r-15,27v-12,-7,-30,-10,-43,-10v-33,0,-50,56,-50,87v0,32,8,84,50,84v14,0,32,-5,44,-14","w":178,"k":{",":9}},"D":{"d":"179,-113v0,56,-24,113,-88,113r-65,0r0,-227r68,0v65,0,85,59,85,114xm139,-112v0,-31,-4,-81,-46,-81r-28,0r0,159r26,0v42,0,48,-46,48,-78","w":196},"E":{"d":"152,0r-126,0r0,-227r122,0r0,35r-83,0r0,56r64,0r0,36r-64,0r0,64r87,0r0,36","w":163},"F":{"d":"139,-192r-74,0r0,56r58,0r0,36r-58,0r0,100r-39,0r0,-227r113,0r0,35","w":148,"k":{"o":5,"e":5,"c":5,"a":7,"A":14,".":46,",":46}},"G":{"d":"171,-213r-16,28v-13,-9,-33,-14,-48,-14v-36,0,-50,58,-50,87v0,40,20,101,75,81r0,-73r37,0r0,99v-18,8,-42,10,-62,10v-66,0,-89,-61,-89,-118v0,-54,27,-119,89,-119v20,0,48,6,64,19","w":188,"k":{",":9}},"H":{"d":"171,0r-40,0r0,-100r-65,0r0,100r-39,0r0,-227r39,0r0,91r65,0r0,-91r40,0r0,227","w":197},"I":{"d":"62,0r-39,0r0,-227r39,0r0,227","w":85},"J":{"d":"64,5v0,31,-30,46,-56,54r-9,-27v12,-5,26,-14,26,-29r0,-230r39,0r0,232","w":88},"K":{"d":"172,0r-36,0r-70,-80r0,80r-39,0r0,-227r39,0r0,87r63,-87r42,0r-83,116r84,95r0,16","w":174,"k":{"Q":4,"O":4,"G":4,"C":4}},"L":{"d":"134,0r-108,0r0,-227r37,0r0,192r71,0r0,35","w":137,"k":{"y":10,"Y":23,"W":13,"V":16,"T":20}},"M":{"d":"239,0r-40,0r0,-125r3,-26r-52,151r-33,0r-52,-151v6,45,2,101,3,151r-40,0r0,-227r47,0r59,174v16,-59,40,-117,59,-174r46,0r0,227","w":267},"N":{"d":"173,0r-38,0r-72,-159v6,41,2,111,3,159r-39,0r0,-227r46,0r50,115v6,13,11,32,11,32r0,-147r39,0r0,227","w":199},"O":{"d":"179,-113v0,53,-22,118,-80,118v-59,0,-81,-65,-81,-118v0,-53,23,-119,81,-119v58,0,80,66,80,119xm140,-113v0,-35,-8,-85,-41,-85v-33,0,-42,50,-42,85v0,35,9,84,42,84v33,0,41,-49,41,-84","w":197,"k":{"T":7,".":9,",":9}},"P":{"d":"165,-155v1,53,-50,91,-102,73r0,82r-40,0r0,-227v73,-2,142,-2,142,72xm125,-155v-1,-33,-30,-40,-62,-38r0,77v30,15,63,-8,62,-39","w":176,"k":{"o":4,"e":4,"c":4,"a":7,"A":15,".":52,",":52}},"Q":{"d":"180,11r-7,39v-40,7,-63,-24,-86,-45v-50,-8,-69,-68,-69,-118v0,-53,23,-119,81,-119v103,0,105,196,25,233v17,13,35,16,56,10xm140,-113v0,-35,-8,-85,-41,-85v-33,0,-42,50,-42,85v0,35,9,84,42,84v33,0,41,-49,41,-84","w":197,"k":{"T":7,".":9,",":9}},"R":{"d":"175,0r-35,0r-74,-81r0,81r-39,0r0,-227r52,0v63,0,86,32,86,72v0,34,-21,69,-54,72r64,67r0,16xm125,-155v2,-27,-22,-41,-59,-38r0,78v27,12,64,-7,59,-40","w":181,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":6}},"S":{"d":"144,-59v0,64,-85,82,-124,42r18,-28v19,21,68,25,67,-14v0,-38,-90,-44,-90,-113v0,-65,91,-78,123,-32r-21,21v-16,-20,-63,-27,-63,9v0,48,90,42,90,115","w":156},"T":{"d":"142,-191r-50,0r0,191r-39,0r0,-191r-49,0r0,-36r138,0r0,36","w":145,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-6,"Q":7,"O":7,"G":7,"C":7,"A":14,";":33,":":33,".":33,"-":27,",":33}},"U":{"d":"175,-227v-5,98,28,232,-75,232v-103,0,-68,-135,-74,-232r40,0r0,138v0,24,2,60,34,60v32,0,35,-36,35,-60r0,-138r40,0","w":200},"V":{"d":"181,-227r-70,227r-39,0r-70,-227r42,0r48,168r48,-168r41,0","w":183,"k":{"y":4,"u":11,"r":11,"o":9,"i":6,"e":9,"c":9,"a":11,"A":10,";":20,":":20,".":33,"-":13,",":33}},"W":{"d":"252,-227r-52,227r-39,0r-34,-158v-7,57,-23,105,-33,158r-39,0r-52,-227r40,0v10,53,27,102,32,160v5,-58,24,-106,34,-160r37,0v11,53,29,102,34,160v5,-58,22,-107,32,-160r40,0","w":254,"k":{"u":4,"r":4,"o":11,"e":11,"c":11,"a":6,"A":6,";":13,":":13,".":20,"-":6,",":20}},"X":{"d":"175,0r-45,0r-43,-81r-41,81r-43,0r63,-116r-62,-111r44,0r39,75r38,-75r42,0r-58,109","w":177},"Y":{"d":"165,-227r-61,142r0,85r-39,0r0,-85r-60,-142r42,0r38,103r40,-103r40,0","w":169,"k":{"z":5,"v":5,"u":11,"t":11,"s":13,"q":14,"p":11,"o":16,"n":11,"m":11,"i":13,"e":16,"c":16,"a":18,"Q":9,"O":9,"G":9,"C":9,"A":20,";":33,":":33,".":46,"-":27,",":46}},"Z":{"d":"154,0r-141,0r0,-31v26,-54,54,-107,84,-160r-77,0r0,-36r125,0r0,32v-30,52,-60,105,-87,159r96,0r0,36","w":164},"[":{"d":"71,56r-66,0r0,-319r66,0r0,32r-32,0r0,255r32,0r0,32","w":89,"k":{"J":-7}},"\\":{"d":"125,51r-34,0r-92,-321r34,0","w":120},"]":{"d":"84,56r-65,0r0,-32r32,0r0,-255r-32,0r0,-32r65,0r0,319","w":89},"^":{"d":"204,-113r-38,0r-54,-98r-54,98r-38,0r79,-144r26,0","w":224},"_":{"d":"162,54r-162,0r0,-32r162,0r0,32"},"a":{"d":"163,-3v-21,15,-53,8,-57,-18v-20,42,-92,31,-92,-24v0,-11,5,-26,10,-36r78,-33v2,-20,-1,-35,-21,-35v-16,0,-35,10,-46,21r-13,-22v26,-40,118,-49,118,19r0,102v-1,8,8,13,13,7xm66,-26v25,0,39,-30,37,-56r-51,21v-5,15,-4,35,14,35","w":167},"b":{"d":"101,-182v96,5,87,187,-10,187v-23,0,-45,-9,-63,-23r0,-232r38,0r0,87v8,-9,23,-19,35,-19xm128,-95v0,-19,-4,-53,-30,-53v-10,0,-25,11,-32,18r0,95v8,5,19,9,28,9v29,0,34,-47,34,-69","w":181},"c":{"d":"144,-19v-14,13,-38,24,-57,24v-48,0,-72,-49,-72,-91v0,-44,23,-96,73,-96v18,0,40,8,52,22r-19,22v-8,-7,-22,-12,-33,-12v-25,0,-35,40,-35,60v0,21,8,63,36,63v13,0,32,-10,42,-18","w":148},"d":{"d":"169,-22r-11,27v-14,4,-37,-11,-35,-27v-35,58,-107,11,-107,-58v0,-50,15,-102,70,-102v15,0,34,6,34,6r0,-74r37,0r0,213v0,11,1,15,12,15xm84,-27v42,-7,36,-67,36,-116v0,0,-19,-6,-32,-6v-29,0,-33,36,-33,65v0,17,4,55,29,57","w":184},"e":{"d":"157,-90r-103,0v-1,25,6,63,34,63v15,0,35,-10,47,-19r13,24v-15,13,-42,27,-62,27v-101,0,-93,-191,7,-187v43,2,70,41,64,92xm119,-122v-1,-17,-11,-32,-29,-32v-18,0,-27,16,-31,32r60,0","w":169},"f":{"d":"101,-227v0,0,-35,2,-35,32r0,19r32,0r0,31r-32,0r0,145r-38,0r0,-145r-23,-4r0,-27r23,0r0,-21v0,-55,67,-57,67,-57","w":102,"k":{"f":6}},"g":{"d":"157,-144r-21,0v16,43,-7,84,-53,87v-6,1,-21,4,-21,16v4,12,33,7,48,7v24,0,45,14,45,40v0,42,-42,65,-80,65v-29,0,-63,-11,-63,-45v0,-18,20,-32,33,-38v-11,-1,-22,-13,-22,-25v0,-14,13,-24,26,-29v-55,-26,-31,-123,33,-116v22,2,47,8,75,6r0,32xm81,-87v35,0,32,-66,-1,-67v-19,0,-25,16,-25,32v0,18,5,35,26,35xm119,9v0,-20,-29,-12,-48,-14v0,0,-22,11,-22,26v0,18,14,23,27,23v21,0,43,-13,43,-35","w":163},"h":{"d":"161,0r-38,0r0,-130v0,-14,-2,-19,-14,-19v-16,0,-35,12,-44,19r0,130r-38,0r0,-250r38,0r0,87v12,-9,33,-19,48,-19v40,0,48,25,48,52r0,130","w":186},"i":{"d":"61,0r-37,0r0,-176r37,0r0,176xm68,-222v1,30,-50,33,-50,2v-1,-30,50,-33,50,-2","w":85},"j":{"d":"62,15v0,35,-33,48,-55,55r-8,-27v13,-4,25,-15,25,-30r0,-189r38,0r0,191xm68,-222v1,30,-50,33,-50,2v-1,-30,50,-33,50,-2","w":85},"k":{"d":"168,0r-36,0r-67,-83r0,83r-38,0r0,-250r38,0r0,131r50,-57r46,0r-65,75r72,87r0,14","w":169},"l":{"d":"71,0r-39,0v-17,-51,-8,-176,-10,-250r37,0v4,86,-10,181,12,250","w":84},"m":{"d":"251,0r-38,0r0,-132v-1,-33,-42,-10,-52,-1r0,133r-38,0r0,-127v2,-42,-48,-11,-58,-3r0,130r-38,0r0,-176r38,0r0,12v18,-20,73,-25,86,3v11,-7,31,-21,49,-21v40,0,51,22,51,50r0,132","w":277},"n":{"d":"161,0r-38,0r0,-130v0,-14,-2,-19,-14,-19v-16,0,-35,12,-44,19r0,130r-38,0r0,-176r38,0r0,13v12,-9,33,-19,48,-19v40,0,48,25,48,52r0,130","w":186},"o":{"d":"88,-182v96,3,97,184,0,187v-97,-3,-96,-184,0,-187xm122,-88v0,-32,-13,-61,-34,-61v-21,0,-34,29,-34,61v0,32,13,61,34,61v21,0,34,-29,34,-61","w":175},"p":{"d":"170,-96v0,43,-12,101,-67,101v-15,0,-30,-5,-37,-18r0,76r-38,0r0,-239r38,0r0,13v4,-4,19,-19,39,-19v45,0,65,47,65,86xm131,-93v0,-20,-3,-55,-30,-55v-15,0,-27,10,-35,18v1,44,-10,103,35,103v27,0,30,-47,30,-66","w":185},"q":{"d":"158,63r-38,0r0,-76v-8,10,-24,18,-37,18v-49,0,-68,-45,-68,-87v0,-44,22,-100,73,-100v31,0,70,14,70,14r0,231xm85,-27v47,0,33,-68,35,-118v0,0,-20,-6,-33,-4v-27,4,-33,41,-33,63v0,19,5,59,31,59","w":185},"r":{"d":"92,-182v37,0,14,21,15,41v0,0,-11,-6,-20,-6v-9,0,-23,16,-23,16r0,131r-38,0r0,-176r38,0r0,13v0,0,16,-19,28,-19","w":114,"k":{"o":2,"e":2,"c":2,".":33,"-":6,",":33}},"s":{"d":"102,-46v-12,-41,-87,-30,-86,-84v1,-59,88,-67,117,-27r-20,19v-16,-18,-55,-23,-60,5v17,37,88,29,86,84v-2,61,-83,67,-118,33r14,-25v17,14,63,30,67,-5","w":150},"t":{"d":"103,-5v-30,21,-74,9,-74,-34r0,-106r-23,-4r0,-27r24,0r0,-32r36,0r0,32r32,0r0,32r-31,0r0,104v0,6,0,13,9,13v8,0,18,-5,18,-5","w":110},"u":{"d":"167,-15r-11,20v-12,-1,-25,-12,-28,-21v-31,29,-101,33,-101,-29r0,-131r37,0r0,131v1,33,45,10,58,-1r0,-130r38,0r0,143v0,12,7,18,7,18","w":186},"v":{"d":"160,-176v-17,60,-38,119,-65,176r-28,0r-64,-176r41,0r38,122v16,-40,29,-80,38,-122r40,0","k":{".":27,",":27}},"w":{"d":"237,-176v-8,62,-30,126,-52,176r-36,0r-18,-65v-5,-18,-9,-48,-9,-48v-3,25,-20,85,-28,113r-38,0r-54,-176r40,0r33,119r28,-119r36,0r31,119v12,-39,24,-84,28,-119r39,0","w":241,"k":{".":20,",":20}},"x":{"d":"150,0r-43,0r-31,-60r-31,60r-41,0r51,-91r-48,-85r42,0r27,53r27,-53r41,0r-48,83","w":152},"y":{"d":"21,40v25,-8,32,-18,44,-40r-61,-176r40,0v10,33,32,99,32,99v4,12,7,24,9,36v15,-44,27,-89,36,-135r38,0v-21,68,-43,237,-130,245","w":163,"k":{".":27,",":27}},"z":{"d":"143,0r-131,0r0,-30v24,-41,52,-83,76,-113r-69,0r0,-33r117,0r0,30v-24,31,-59,80,-78,112r85,0r0,34","w":153},"{":{"d":"109,28r-6,30v-39,0,-61,6,-64,-50v-2,-39,8,-99,-28,-99r0,-25v36,0,26,-61,28,-99v2,-57,24,-50,64,-50r6,30v-22,2,-40,-10,-37,25v4,41,1,99,-25,107v27,9,28,65,25,107v-2,33,15,22,37,24","w":119,"k":{"J":-7}},"|":{"d":"56,5r-32,0r0,-276r32,0r0,276","w":79},"}":{"d":"108,-91v-35,0,-26,61,-28,99v-2,57,-25,50,-65,50r-6,-30v22,-2,40,9,38,-24v-3,-41,-3,-97,24,-107v-25,-8,-28,-67,-24,-107v3,-35,-15,-23,-38,-25r6,-30v40,0,62,-7,65,50v2,39,-8,99,28,99r0,25","w":119},"~":{"d":"190,-138v0,35,8,58,-32,58v-31,0,-52,-24,-74,-24v-22,0,-34,23,-34,23v0,-35,-6,-49,34,-57v28,0,51,23,74,23v22,0,32,-23,32,-23","w":239},"'":{"d":"50,-259v10,27,2,58,-2,88r-22,0v-3,-30,-12,-60,-3,-88r27,0","w":74},"`":{"d":"100,-221r-17,25v-26,-14,-52,-30,-73,-51r30,-31v16,22,38,41,60,57","w":121},"\u00a0":{"w":108}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * -4.0, I1995 Jos Buivenga
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Delicious","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-22 -279 292 71.2","underline-thickness":"7.2","underline-position":"-46.8","slope":"-11","stemh":"22","stemv":"28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"60,-17v1,26,-44,30,-44,2v0,-12,11,-22,23,-22v12,0,21,8,21,20xm91,-252v-21,59,-25,127,-37,194r-22,0v9,-66,9,-135,31,-190","w":90},"\"":{"d":"110,-255v6,32,-9,54,-15,80r-12,-1v1,-29,-2,-61,10,-79r17,0xm60,-255v6,32,-9,54,-15,80r-12,-1v1,-28,0,-60,10,-79r17,0","w":102},"#":{"d":"117,-100r7,-55r-41,0r-7,55r41,0xm135,-243r22,0r-8,64r30,0r-2,24r-32,0r-6,55r27,0r-3,23r-27,0r-10,74r-21,0r9,-74r-41,0r-9,67r-21,0r8,-67r-29,0r4,-23r28,0r7,-55r-25,0r3,-24r25,0r9,-71r22,0r-9,71r41,0","w":200},"$":{"d":"155,-214r-13,19v-9,-7,-21,-11,-32,-13r-13,82v22,16,42,27,42,58v0,37,-27,66,-63,72r-3,22r-16,0r3,-21v-17,0,-38,-6,-52,-15r11,-21v12,7,30,13,44,14r14,-85v-23,-16,-46,-29,-46,-61v0,-38,29,-67,66,-69r3,-20r17,0r-4,21v14,1,32,8,42,17xm94,-209v-38,4,-45,59,-12,73xm80,-20v32,-9,43,-56,11,-72","w":154},"%":{"d":"91,-184v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26xm64,-232v17,-1,32,12,51,11v39,-3,35,-17,59,-6r-80,227r-24,0r76,-210v-14,7,-38,7,-38,7v13,27,-11,67,-44,67v-26,0,-47,-22,-47,-48v0,-26,21,-48,47,-48xm234,-42v0,26,-22,47,-48,47v-26,0,-47,-21,-47,-47v0,-26,21,-48,47,-48v26,0,48,22,48,48xm213,-42v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26v15,0,27,-11,27,-26","w":251},"&":{"d":"292,-124v0,77,-78,129,-149,129v-63,0,-122,-40,-122,-108v0,-62,52,-114,112,-124r3,20v-52,12,-100,66,-82,128r55,-45v29,-24,123,-90,46,-116r7,-15v23,5,55,23,49,51v-24,56,-105,104,-149,144v56,101,241,18,196,-97r-31,0r-3,-12v35,-19,68,0,68,45","w":316},"(":{"d":"142,-258v-96,50,-137,216,-46,287r-11,14v-112,-86,-55,-266,57,-322r0,21","w":126,"k":{"J":-7}},")":{"d":"-4,29v86,-48,143,-211,45,-287r6,-21v84,56,83,180,24,260v-20,27,-41,46,-68,64","w":122},"*":{"d":"140,-199r-49,19r26,55r-24,0r-20,-42r-35,42r-20,-6r43,-51r-46,-16r9,-22r45,18r-7,-41r43,0r-18,44r48,-20","w":142},"+":{"d":"153,-79r-58,0r0,62r-21,0r0,-62r-58,0r0,-22r58,0r0,-62r21,0r0,62r58,0r0,22","w":169},",":{"d":"62,-9v-14,22,-35,42,-55,59r-15,-14v14,-15,35,-39,32,-61v17,-10,32,2,38,16","w":92,"k":{"T":18,"Q":11,"O":11,"C":11}},"-":{"d":"89,-81r-69,0r0,-22r69,0r0,22","w":108},".":{"d":"58,-17v1,26,-44,30,-44,2v0,-12,11,-22,23,-22v12,0,21,8,21,20","w":92,"k":{"Q":11,"O":11,"G":11,"C":11}},"\/":{"d":"150,-273r-145,326r-22,0r144,-326r23,0","w":132,"k":{"\/":36}},"0":{"d":"153,-113v0,50,-27,118,-86,118v-41,0,-58,-35,-58,-71v0,-50,30,-116,87,-116v41,0,57,33,57,69xm127,-111v0,-23,-6,-48,-34,-48v-40,0,-58,58,-58,90v0,23,7,52,35,52v41,0,57,-62,57,-94"},"1":{"d":"118,-176r-28,176r-27,0r24,-150r-45,0r3,-18v25,0,44,-11,73,-8"},"2":{"d":"17,-22v42,-25,92,-62,104,-114v-5,-37,-54,-22,-73,-5r-9,-18v33,-29,111,-40,111,22v0,44,-57,93,-92,113r80,0r-4,24r-116,0"},"3":{"d":"150,-147v0,32,-35,50,-59,63v24,0,47,16,47,42v0,67,-64,102,-124,102r-4,-20v41,-1,100,-26,100,-75v0,-34,-43,-27,-72,-25r-2,-21v25,2,49,-23,67,-32v19,-9,31,-46,0,-46v-13,0,-40,12,-52,18r-7,-17v29,-22,106,-45,106,11"},"4":{"d":"150,-176r-24,153r23,0r-4,23r-23,0v-5,21,-10,42,-22,60r-20,-9v8,-17,12,-33,16,-51r-90,0r2,-23v33,-54,71,-104,113,-153r29,0xm119,-140v-28,35,-59,76,-84,117r64,0"},"5":{"d":"13,39v48,0,99,-30,99,-74v0,-38,-50,-29,-79,-20r30,-121r89,0r-3,21r-65,0r-17,73v33,-9,74,2,74,42v-1,61,-70,102,-126,100"},"6":{"d":"149,-90v0,51,-30,96,-81,96v-40,0,-51,-37,-51,-70v0,-81,56,-136,126,-167r7,18v-55,27,-105,73,-108,150v0,20,8,47,32,47v34,0,47,-39,48,-73v0,-34,-42,-38,-66,-25v14,-13,21,-24,42,-24v29,0,51,18,51,48"},"7":{"d":"154,-176v-10,89,-63,180,-118,241r-18,-16v46,-50,95,-135,106,-202r-92,0r4,-23r118,0"},"8":{"d":"12,-46v1,-34,24,-62,53,-72v-57,-27,-19,-109,42,-109v27,0,49,11,49,41v0,32,-22,53,-50,65v81,29,27,127,-40,127v-31,0,-54,-20,-54,-52xm131,-183v0,-19,-13,-24,-30,-24v-41,-1,-54,65,-15,77v24,-10,45,-23,45,-53xm73,-15v39,1,67,-61,29,-81v-7,-4,-14,-9,-21,-13v-22,11,-42,31,-42,57v0,20,13,37,34,37"},"9":{"d":"94,-161v-35,0,-50,41,-51,74v-1,34,42,36,67,25v-15,13,-19,24,-42,24v-33,0,-56,-24,-50,-60v7,-44,30,-84,79,-84v50,0,59,53,50,98v-14,68,-63,111,-124,139r-9,-17v54,-25,109,-79,109,-149v0,-19,-4,-50,-29,-50"},":":{"d":"58,-17v1,26,-44,30,-44,2v0,-12,11,-22,23,-22v12,0,21,8,21,20xm76,-126v0,12,-11,22,-23,22v-11,0,-21,-9,-21,-21v0,-12,11,-22,23,-22v12,0,21,9,21,21","w":92},";":{"d":"61,-9v-14,22,-35,42,-55,59r-15,-14v14,-15,35,-39,32,-61v17,-10,32,2,38,16xm80,-127v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":92},"<":{"d":"96,-36r-17,14r-67,-68r66,-68r17,14r-53,54","w":108},"=":{"d":"153,-105r-137,0r0,-22r137,0r0,22xm153,-51r-137,0r0,-22r137,0r0,22","w":172},">":{"d":"12,-36r17,14r67,-68r-66,-68r-17,14r53,54","w":108},"?":{"d":"65,-17v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm59,-59r-22,0v-1,-47,32,-90,62,-119v13,-12,31,-50,-1,-50v-27,0,-51,4,-63,-15r17,-18v18,27,93,-9,92,42v-2,37,-34,61,-53,84v-27,32,-26,40,-32,76","w":143},"@":{"d":"179,-165v-9,-11,-22,-17,-36,-17v-30,0,-40,53,-40,75v0,11,3,27,17,27v14,0,32,-13,44,-20xm190,-53v-17,1,-33,-11,-28,-30v-13,11,-29,26,-47,26v-24,0,-36,-24,-36,-46v0,-40,15,-99,65,-99v16,0,30,8,39,21r4,-15r23,0r-27,116v0,7,4,10,10,10v32,0,55,-50,55,-77v0,-60,-45,-94,-103,-94v-61,0,-106,55,-106,114v0,63,47,113,111,113v35,0,70,-15,92,-43r16,9v-22,33,-68,54,-108,54v-75,0,-135,-59,-135,-134v0,-69,61,-133,131,-133v68,0,120,44,120,114v0,39,-34,94,-76,94","w":285},"A":{"d":"167,0r-29,0r-11,-73r-69,0r-36,73r-30,0r108,-227r31,0xm123,-97r-12,-100r-43,100r55,0","w":185,"k":{"y":9,"w":9,"v":9,"Y":16,"V":10,"T":14}},"B":{"d":"125,-121v25,1,39,19,39,43v0,74,-81,98,-149,74r36,-222v54,1,115,-12,116,46v0,25,-17,52,-42,59xm139,-177v0,-32,-33,-27,-63,-27r-12,73v42,4,74,-9,75,-46xm135,-76v-1,-39,-40,-31,-74,-32r-13,84v41,15,88,-7,87,-52","w":178},"C":{"d":"21,-82v0,-87,74,-190,165,-135r-13,18v-77,-41,-123,48,-123,117v0,31,11,65,47,65v17,0,37,-6,51,-16r10,18v-18,13,-44,21,-66,21v-52,0,-71,-42,-71,-88","w":177},"D":{"d":"77,0r-62,0r36,-227r66,0v49,0,68,35,68,80v0,65,-32,147,-108,147xm156,-146v0,-30,-9,-58,-44,-58r-36,0r-28,181r33,0v59,0,75,-77,75,-123","w":198},"E":{"d":"168,-227r-4,24r-88,0r-11,72r67,0r-3,25r-68,0r-13,81r92,0r-4,25r-121,0r36,-227r117,0","w":160},"F":{"d":"158,-227r-4,24r-78,0r-11,72r61,0r-3,25r-62,0r-17,106r-29,0r36,-227r107,0","w":149,"k":{"o":5,"e":5,"c":5,"a":5,"A":14,".":46,",":46}},"G":{"d":"21,-82v0,-88,75,-190,166,-135r-15,19v-74,-45,-122,48,-122,116v0,31,11,65,47,65v10,0,23,-1,33,-5r11,-75r27,0r-15,93v-18,7,-41,10,-60,10v-53,0,-72,-41,-72,-88","w":186},"H":{"d":"191,-227r-36,227r-29,0r17,-106r-82,0r-17,106r-29,0r36,-227r29,0r-15,96r82,0r15,-96r29,0","w":197},"I":{"d":"80,-227r-36,227r-29,0r36,-227r29,0","w":85},"J":{"d":"80,-227r-38,237v-5,29,-33,43,-59,49r-3,-20v16,-5,31,-13,34,-31r37,-235r29,0","w":85},"K":{"d":"163,-229v4,23,-4,40,-18,55r-61,62r76,103r0,9r-30,0r-71,-95r-15,95r-29,0r36,-227r29,0r-16,103r58,-60v11,-11,13,-23,12,-40","w":163,"k":{"Q":4,"O":4,"G":4,"C":4}},"L":{"d":"126,-22r-3,22r-108,0r36,-227r28,0r-33,205r80,0","w":134,"k":{"y":10,"Y":23,"W":13,"V":16,"T":16}},"M":{"d":"261,-227r-36,227r-29,0r32,-185r-92,185r-25,0r-39,-186v-6,65,-19,124,-28,186r-29,0r36,-227r39,0r39,192v28,-67,63,-128,94,-192r38,0","w":267},"N":{"d":"193,-227r-36,227r-29,0r-56,-186v-6,65,-19,124,-28,186r-29,0r36,-227r38,0r50,173v6,-61,18,-115,26,-173r28,0","w":199},"O":{"d":"155,-148v0,-25,-6,-60,-38,-60v-52,0,-68,91,-68,131v0,25,6,59,38,59v53,0,68,-90,68,-130xm83,6v-49,0,-62,-49,-62,-89v0,-56,31,-149,100,-149v48,0,62,48,62,88v0,57,-31,150,-100,150","w":196,"k":{"T":7,".":9,",":9}},"P":{"d":"175,-170v1,64,-59,107,-117,81r-14,89r-29,0r36,-227v61,-1,122,-5,124,57xm145,-166v-1,-35,-32,-40,-68,-38r-15,92v40,23,85,-9,83,-54","w":174,"k":{"o":4,"e":4,"c":4,"a":4,"A":13,".":52,",":52}},"Q":{"d":"179,-144v0,83,-40,143,-118,172v29,20,67,24,105,11r-6,29v-53,11,-85,-8,-124,-32r-3,-12v15,-8,31,-16,45,-25v-41,-10,-61,-43,-61,-84v0,-57,31,-147,100,-147v48,0,62,48,62,88xm151,-148v0,-25,-6,-60,-38,-60v-52,0,-68,84,-68,124v0,37,17,61,54,66v39,-30,52,-83,52,-130","w":188,"k":{"T":7,".":9}},"R":{"d":"175,-170v0,41,-29,79,-70,87r56,74r-2,9r-28,0r-61,-83v-4,-1,-8,-3,-12,-5r-14,88r-29,0r36,-227v60,-1,124,-5,124,57xm145,-166v-1,-35,-33,-40,-68,-38r-15,92v38,25,84,-14,83,-54","w":179,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":5}},"S":{"d":"151,-207r-17,14v-21,-29,-76,-18,-75,22v0,44,79,45,79,103v0,67,-85,95,-129,53r15,-20v27,29,85,16,85,-26v0,-41,-80,-46,-80,-102v0,-65,87,-92,122,-44","w":154},"T":{"d":"161,-226r-4,25r-56,0r-32,201r-28,0r32,-201r-55,0r4,-25r139,0","w":140,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-4,"Q":7,"O":7,"G":7,"C":7,"A":14,";":18,":":18,".":18,"-":27,",":18}},"U":{"d":"192,-227v-21,91,-4,228,-109,233v-51,2,-65,-45,-57,-94r22,-139r29,0r-24,164v0,23,7,45,34,45v38,0,49,-39,54,-70r22,-139r29,0","w":195},"V":{"d":"180,-227v0,40,1,72,-15,101r-69,126r-33,0r-38,-227r32,0r28,192v26,-58,74,-101,65,-192r30,0","w":174,"k":{"y":-4,";":4,":":4,".":18,",":18}},"W":{"d":"271,-227v3,43,-6,71,-20,100r-63,127r-29,0v-4,-61,-11,-122,-12,-183r-70,183r-31,0r-17,-227r30,0r10,161v1,8,0,16,-1,24r71,-185r29,0r12,185v19,-61,66,-100,60,-185r31,0","w":267,"k":{";":4,":":4,".":18,",":20}},"X":{"d":"187,-219r-74,101r52,118r-33,0r-39,-90r-66,90r-26,0r0,-8r80,-108r-48,-111r32,0r37,83r61,-83r24,0r0,8","w":178},"Y":{"d":"173,-215v-63,45,-76,132,-91,215r-28,0r13,-80v-2,-39,-14,-107,-51,-130r19,-20v30,22,49,62,49,109v8,-44,38,-91,72,-112","w":155,"k":{"s":7,"q":14,"o":16,"e":16,"c":16,"a":16,"Y":-10,"A":11,";":25,":":25,".":25,"-":18,",":25}},"Z":{"d":"157,-227r-3,25r-118,177r111,0r-4,25r-139,0r0,-24r117,-178r-81,0r2,-25r115,0","w":159},"[":{"d":"110,-264r-4,21r-33,0r-44,278r33,0r-3,21r-56,0r51,-320r56,0","w":103,"k":{"J":-7}},"\\":{"d":"120,53r-22,0r-94,-326r23,0","w":120},"]":{"d":"105,-264r-51,320r-55,0r3,-21r33,0r44,-278r-33,0r3,-21r56,0","w":104},"^":{"d":"198,-115r-25,0r-61,-111r-61,111r-25,0v41,-71,76,-140,76,-140r20,0v0,0,34,67,76,140","w":224},"_":{"d":"162,49r-162,0r0,-22r162,0r0,22"},"a":{"d":"160,-176r-22,154v0,9,10,11,17,7r4,13v-26,19,-61,-4,-46,-37v-10,22,-41,44,-65,44v-27,0,-32,-27,-32,-49v0,-52,31,-138,94,-138v17,0,33,3,50,6xm132,-157v-62,-20,-85,71,-87,111v0,9,1,27,14,27v54,0,68,-79,73,-138","w":176},"b":{"d":"72,5v-18,0,-40,-9,-54,-21r37,-234r27,0r-13,87v12,-11,30,-19,47,-19v36,0,50,32,50,64v0,57,-29,123,-94,123xm138,-117v0,-20,-6,-42,-30,-42v-15,0,-32,10,-43,20r-17,108v8,10,20,14,33,14v40,0,57,-68,57,-100","w":182},"c":{"d":"147,-164r-14,17v-8,-6,-22,-12,-32,-12v-39,0,-57,57,-57,88v0,23,8,55,37,55v13,0,36,-16,46,-25r11,14v-16,17,-41,32,-65,32v-39,0,-57,-35,-57,-69v0,-51,29,-117,88,-117v14,0,32,8,43,17","w":149},"d":{"d":"79,5v-43,0,-63,-32,-63,-72v0,-55,31,-115,92,-115v12,0,26,5,33,15v5,-26,11,-57,-2,-78r22,-9v31,52,-4,125,-9,186v-3,40,-29,73,-73,73xm138,-144v-7,-10,-20,-16,-32,-16v-47,0,-62,59,-62,96v0,24,9,48,37,48v56,0,42,-82,57,-128","w":180},"e":{"d":"152,-143v0,45,-72,63,-107,70v-1,26,5,57,32,57v18,0,38,-13,50,-26r11,15v-18,19,-40,32,-67,32v-39,0,-55,-35,-55,-69v0,-53,32,-118,92,-118v25,0,44,12,44,39xm122,-145v0,-12,-10,-15,-20,-15v-30,0,-50,40,-55,65v25,-5,75,-17,75,-50","w":157},"f":{"d":"42,-176v0,-41,13,-85,60,-71r-2,19v-28,-6,-29,24,-30,52r29,0r0,20r-30,1v-10,120,-5,165,-50,222r-15,-9v35,-65,25,-103,37,-214r-25,-3r3,-17r23,0","w":96,"k":{"f":9}},"g":{"d":"144,-177v-6,52,-8,101,-34,139v18,3,30,20,30,41v0,44,-55,66,-92,66v-20,0,-55,-4,-55,-31v0,-27,35,-56,57,-69r12,17v-12,8,-41,32,-41,47v0,14,17,17,28,17v23,0,64,-16,64,-44v0,-19,-16,-29,-34,-29r-1,-8v11,-13,26,-31,30,-48v-24,38,-89,29,-89,-26v0,-66,59,-89,125,-72xm118,-159v-44,-15,-74,16,-72,52v0,15,8,27,25,27v34,0,46,-42,47,-79","w":159},"h":{"d":"121,-159v-23,1,-50,27,-60,46r-18,113r-27,0r39,-250r28,0r-17,107v13,-19,39,-39,63,-39v65,0,28,85,24,131v-3,26,-13,39,-31,57r-16,-14v29,-32,33,-85,33,-136v0,-12,-6,-15,-18,-15","w":183},"i":{"d":"71,-176r-29,176r-26,0r28,-176r27,0xm87,-228v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2","w":84},"j":{"d":"87,-228v1,26,-44,30,-44,2v-1,-26,44,-30,44,-2xm70,-176r-31,197v-3,29,-34,41,-58,48r-3,-19v14,-5,32,-16,35,-32r31,-194r26,0","w":84},"k":{"d":"59,-103v31,-3,78,-13,78,-44v0,-11,-9,-14,-18,-13r-2,-22v27,-5,50,6,50,33v0,37,-41,55,-73,56r65,93r-34,0r-67,-98r-16,98r-26,0r39,-250r27,0","w":172},"l":{"d":"82,-250r-32,211v0,9,1,26,5,35r-25,7v-17,-87,19,-170,25,-253r27,0","w":87},"m":{"d":"235,0r-27,0r22,-143v0,-12,-6,-16,-18,-16v-19,0,-45,28,-55,43r-18,116r-27,0r22,-142v0,-13,-8,-17,-20,-17v-19,0,-43,30,-53,45r-18,114r-27,0r28,-176r27,0r-5,33v9,-16,38,-39,57,-39v23,0,41,12,39,37v10,-17,33,-37,54,-37v29,0,45,16,40,48","w":277},"n":{"d":"144,0r-27,0r22,-144v0,-11,-5,-15,-16,-15v-25,0,-51,25,-62,46r-18,113r-27,0r28,-176r27,0r-5,33v11,-18,39,-39,63,-39v30,0,43,17,37,48","w":186},"o":{"d":"73,5v-41,0,-57,-37,-57,-73v0,-48,32,-114,87,-114v41,0,57,38,57,74v0,48,-32,113,-87,113xm133,-111v0,-22,-7,-49,-34,-49v-41,0,-56,63,-56,95v0,22,7,49,34,49v41,0,56,-63,56,-95","w":176},"p":{"d":"94,6v-19,0,-36,-9,-41,-28r-14,85r-27,0r29,-188r-25,14r3,-19r26,-16r5,-30r27,0r-2,13v13,-8,36,-19,51,-19v36,0,51,33,51,64v0,47,-26,124,-83,124xm148,-117v0,-19,-5,-43,-28,-43v-12,0,-37,14,-48,20v-5,42,-33,124,23,124v39,0,53,-71,53,-101","w":192},"q":{"d":"170,-171r-37,234r-28,0r14,-85v-11,18,-29,28,-50,28v-38,0,-53,-32,-53,-66v0,-50,30,-122,88,-122v32,0,66,11,66,11xm140,-154v0,0,-19,-5,-29,-5v-50,0,-66,56,-66,96v0,19,5,47,29,47v59,0,55,-84,66,-138","w":186},"r":{"d":"134,-165r-21,24v-16,-28,-38,8,-51,23r-19,118r-27,0r28,-176r28,0r-6,32v12,-23,50,-58,68,-21","w":125,"k":{"o":4,"e":4,"c":4,"a":6,".":33,"-":6,",":33}},"s":{"d":"141,-157r-15,13v-19,-21,-69,-24,-75,10v9,38,76,31,76,79v0,62,-80,76,-119,39r14,-18v21,22,74,27,78,-13v-8,-41,-78,-31,-77,-79v0,-61,89,-74,118,-31","w":148},"t":{"d":"114,-176r-3,20r-35,0r-19,120v-4,31,29,19,42,7r8,17v-24,25,-86,25,-78,-23r20,-121r-24,-3r3,-17r25,0r5,-32r26,0r-6,32r36,0","w":121},"u":{"d":"171,-176r-25,156v0,4,2,7,6,7v-5,6,-7,14,-13,18v-21,0,-25,-22,-17,-39v-14,19,-39,39,-64,39v-29,0,-42,-17,-37,-47r21,-134r27,0r-22,144v0,12,7,15,17,15v25,0,48,-25,61,-44r18,-115r28,0","w":182},"v":{"d":"143,-179v10,28,7,56,-7,79r-60,100r-28,0r-36,-176r30,0r25,145v19,-43,73,-80,49,-142","w":152,"k":{".":18,",":18}},"w":{"d":"230,-179v7,25,8,54,-4,76r-57,103r-29,0v-5,-47,-15,-93,-13,-144v-13,52,-38,97,-57,144r-30,0r-26,-176r29,0r18,143r57,-143r28,0r16,143v17,-42,62,-81,41,-140","w":238,"k":{".":18,",":18}},"x":{"d":"144,-179v14,47,-31,66,-51,91r42,88r-30,0r-32,-68r-53,68r-24,0r0,-7r66,-84r-39,-85r30,0r29,67v14,-18,49,-31,36,-65","w":151},"y":{"d":"145,-179v9,24,11,52,-3,72v-42,60,-63,149,-138,174r-7,-18v25,-10,41,-26,55,-49r-37,-176r29,0r26,146v18,-36,44,-64,56,-105v0,-12,-4,-28,-8,-39","w":155,"k":{".":18,",":18}},"z":{"d":"146,-176r-3,22v-39,42,-75,86,-110,131r101,0r-3,23r-127,0r1,-26v33,-45,69,-87,107,-128r-92,0r3,-22r123,0","w":148},"{":{"d":"127,-246v-59,-10,-43,55,-54,96v-5,19,-17,38,-34,47v38,25,8,80,8,127v0,20,18,14,35,15r-7,19v-36,5,-59,-9,-49,-46v3,-35,28,-95,-13,-107r3,-17v74,-13,0,-167,110,-153","w":127,"k":{"J":-7}},"|":{"d":"51,6r-22,0r0,-278r22,0r0,278","w":79},"}":{"d":"106,-112r-3,17v-73,14,-1,167,-110,153r-1,-19v82,10,18,-118,88,-142v-38,-26,-11,-82,-8,-128v1,-19,-19,-15,-35,-15r7,-19v37,-5,59,10,49,46v-2,37,-30,94,13,107","w":110},"~":{"d":"190,-130v-3,26,-11,48,-38,45v-35,-4,-80,-48,-103,-4v3,-25,13,-46,39,-44v35,3,79,47,102,3","w":200},"'":{"d":"60,-255v6,32,-9,54,-15,80r-12,-1v1,-28,0,-60,10,-79r17,0","w":53},"`":{"d":"91,-218r-14,16v-38,-22,-59,-46,-59,-46r26,-23v0,0,15,27,47,53","w":91},"\u00a0":{"w":108}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * -4.0, I1995 Jos Buivenga
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Delicious","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-27 -284 292 71","underline-thickness":"7.2","underline-position":"-46.8","slope":"-11","stemh":"35","stemv":"39","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"94,-252v-7,1,-32,139,-32,185r-32,0v3,-67,0,-127,22,-181xm67,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3","w":90},"\"":{"d":"64,-255v6,32,-8,54,-14,79r-21,0v1,-29,-1,-61,10,-79r25,0xm114,-255v6,32,-8,54,-14,79r-20,0v0,-30,-2,-61,9,-79r25,0","w":102},"#":{"d":"180,-183r-3,36r-29,0r-5,38r23,0r-3,37r-24,0r-9,72r-34,0r9,-72r-24,0r-9,63r-33,0r9,-63r-29,0r5,-37r29,0r4,-38r-25,0r7,-36r23,0r6,-66r34,0r-7,66r24,0r7,-60r33,0r-7,60r28,0xm115,-147r-25,0r-4,38r24,0","w":200},"$":{"d":"87,-85r-7,50v19,-8,25,-37,7,-50xm75,-147r8,-47v-20,6,-26,33,-8,47xm71,27r-22,0r3,-22v-27,-3,-46,-21,-46,-21r22,-29v0,0,14,11,30,14r10,-69v-21,-14,-49,-37,-44,-68v6,-34,28,-59,64,-63r3,-19r22,0r-3,19v24,5,40,25,40,25r-24,20v0,0,-8,-7,-22,-10r-9,64v20,13,42,27,42,61v0,39,-27,69,-63,75","w":154},"%":{"d":"234,-45v0,28,-22,51,-50,51v-28,0,-51,-23,-51,-51v0,-28,23,-51,51,-51v28,0,50,23,50,51xm203,-45v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,20,20,20v11,0,19,-9,19,-20xm116,-194v7,36,-17,62,-49,63v-28,0,-51,-22,-51,-50v0,-41,51,-67,83,-40v27,-5,55,-16,80,-4r-80,225r-35,0r71,-194r-19,0xm86,-181v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,19,-8,19,-19","w":251},"&":{"d":"292,-124v0,77,-77,128,-147,129v-65,1,-124,-41,-124,-109v0,-63,51,-112,111,-124r5,33v-45,12,-82,53,-74,101r97,-82v28,-22,21,-48,-7,-58r9,-21v0,0,54,13,54,50v0,16,-12,34,-30,49r-110,94v55,78,200,14,173,-87r-24,0r-5,-21v0,0,15,-7,26,-7v40,0,46,26,46,53","w":316},"(":{"d":"142,-248v-89,58,-123,204,-38,270r-18,24v-98,-76,-73,-258,56,-330r0,36","w":126,"k":{"J":-7}},")":{"d":"75,-19v-22,33,-47,52,-69,68r-12,-28v31,-24,35,-28,50,-48v56,-74,48,-178,-9,-222r9,-35v82,61,90,175,31,265","w":122},"*":{"d":"141,-193r-43,14r25,54r-36,0r-14,-33r-29,35r-31,-10r40,-47r-40,-13r13,-31r36,18r-6,-37r57,0r-18,37r38,-18","w":142},"+":{"d":"153,-73r-53,0r0,56r-31,0r0,-56r-53,0r0,-34r53,0r0,-56r31,0r0,56r53,0r0,34","w":169},",":{"d":"41,-31v30,10,24,24,12,40v-9,12,-47,43,-47,43r-16,-17v11,-13,30,-37,29,-60v0,0,15,-6,22,-6","w":92,"k":{"T":18,"Q":11,"O":11,"C":11}},"-":{"d":"90,-77r-71,0r0,-30r71,0r0,30","w":108},".":{"d":"67,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3","w":92,"k":{"Q":11,"O":11,"G":11,"C":11}},"\/":{"d":"148,-273r-142,326r-33,0r139,-326r36,0","w":132,"k":{"\/":36}},"0":{"d":"153,-111v0,50,-28,116,-85,116v-42,0,-59,-37,-59,-72v0,-47,28,-115,86,-115v42,0,58,36,58,71xm116,-109v0,-21,-6,-38,-25,-38v-30,0,-45,46,-45,77v0,19,6,42,24,42v34,0,46,-48,46,-81"},"1":{"d":"120,-176r-26,176r-35,0r21,-139r-39,0r4,-29v26,1,44,-11,75,-8"},"2":{"d":"18,-31v39,-25,78,-47,95,-102v0,-8,-5,-14,-17,-14v-14,0,-26,5,-46,17r-14,-26v23,-16,35,-26,65,-26v21,0,43,6,49,32v10,44,-38,91,-69,115r61,0r-6,35r-116,0"},"3":{"d":"9,32v48,-3,97,-26,93,-68v-2,-28,-36,-18,-65,-17r-3,-32v32,5,42,-19,64,-31v12,-7,25,-28,4,-32v-11,0,-37,13,-50,18r-11,-26v34,-21,110,-50,110,14v0,26,-27,44,-48,57v14,2,37,10,37,42v-2,62,-54,103,-125,102"},"4":{"d":"153,-176r-23,144r22,0r-6,32r-22,0v-5,21,-10,44,-22,62r-29,-12v7,-15,10,-34,14,-50r-81,0v1,-18,3,-36,13,-45v29,-45,62,-89,96,-131r38,0xm106,-115v-19,27,-37,55,-55,83r42,0"},"5":{"d":"11,32v45,-2,93,-25,93,-69v0,-30,-52,-18,-72,-13r28,-126r94,0r-5,33r-59,0r-13,56v30,-7,67,7,66,43v-1,64,-60,102,-126,104"},"6":{"d":"152,-207v-51,28,-95,67,-99,141v0,19,7,38,22,38v27,0,37,-39,37,-62v0,-22,-20,-23,-44,-23r31,-30v21,0,50,16,50,52v0,47,-30,97,-79,97v-42,0,-53,-41,-53,-73v-1,-84,61,-136,124,-166"},"7":{"d":"154,-176v-7,93,-62,181,-114,243r-25,-23v41,-47,85,-120,97,-185r-83,0r6,-35r119,0"},"8":{"d":"103,-227v30,0,53,16,53,46v0,30,-20,48,-43,62v68,26,22,125,-45,125v-33,0,-56,-23,-56,-56v0,-29,21,-54,45,-68v-48,-32,-11,-109,46,-109xm86,-137v16,-6,34,-22,35,-39v0,-14,-9,-19,-22,-19v-28,1,-41,48,-13,58xm109,-68v0,-19,-15,-24,-28,-33v-17,9,-31,26,-31,46v0,15,8,28,24,28v20,0,35,-23,35,-41"},"9":{"d":"13,31v52,-28,100,-68,100,-142v0,-19,-6,-37,-23,-37v-25,0,-37,39,-37,62v0,22,20,23,44,23r-31,30v-21,0,-50,-16,-50,-52v0,-47,29,-97,79,-97v43,0,54,41,54,73v-1,80,-62,138,-125,166"},":":{"d":"67,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3xm81,-123v2,31,-54,38,-53,3v-2,-30,54,-37,53,-3","w":92},";":{"d":"41,-31v30,10,24,24,12,40v-9,12,-47,43,-47,43r-16,-17v11,-13,30,-37,29,-60v0,0,15,-6,22,-6xm81,-123v2,31,-54,38,-53,3v-2,-30,54,-37,53,-3","w":92},"<":{"d":"99,-41r-24,21r-66,-70r66,-70r24,21r-47,48","w":108},"=":{"d":"153,-96r-137,0r0,-31r137,0r0,31xm153,-51r-137,0r0,-31r137,0r0,31","w":172},">":{"d":"99,-90r-66,70r-24,-21r47,-50r-47,-48r24,-21","w":108},"?":{"d":"142,-199v-7,37,-70,75,-70,112v0,0,-1,8,-3,20r-33,0v0,-68,51,-90,70,-139v2,-15,-22,-10,-35,-11v-22,0,-37,-22,-37,-22r21,-23v2,8,29,16,47,12v41,0,43,34,40,51xm70,-21v1,30,-54,36,-54,3v-1,-31,54,-37,54,-3","w":142},"@":{"d":"191,-76v31,0,46,-40,45,-70v0,-54,-36,-84,-91,-84v-54,0,-95,51,-95,103v0,57,42,100,99,103v45,2,73,-17,94,-38r19,17v-28,32,-65,50,-113,50v-75,-1,-133,-58,-133,-133v0,-69,60,-132,130,-132v77,0,122,44,122,114v-1,52,-37,91,-83,93v-15,0,-30,-11,-31,-25v0,0,-31,24,-49,21v-28,-4,-34,-49,-24,-83v10,-34,25,-60,66,-60v14,0,30,15,30,15r3,-10r30,0r-25,101v-3,8,-2,18,6,18xm172,-162v0,0,-18,-11,-28,-11v-19,0,-27,26,-31,40v-3,10,-14,52,10,46v11,-3,34,-16,34,-16","w":285},"A":{"d":"168,0r-41,0r-9,-65r-54,0r-29,65r-42,0r106,-227r34,0xm114,-100r-8,-70r-28,70r36,0","w":185,"k":{"y":9,"w":9,"v":9,"Y":16,"W":6,"V":10,"T":14}},"B":{"d":"164,-78v-3,76,-81,97,-149,73r34,-222v56,0,118,-9,119,50v0,27,-20,47,-37,55v22,5,33,21,33,44xm129,-173v2,-24,-23,-21,-46,-21r-8,58v31,3,52,-11,54,-37xm125,-78v-2,-28,-31,-22,-56,-23r-11,69v33,11,69,-11,67,-46","w":178},"C":{"d":"17,-85v0,-73,40,-147,107,-147v40,0,57,16,57,16r-19,28v0,0,-15,-10,-41,-10v-44,0,-64,66,-65,113v0,24,7,56,37,56v21,0,45,-14,45,-14r15,27v-17,13,-43,21,-64,21v-53,0,-72,-40,-72,-90","w":177},"D":{"d":"182,-112v-20,104,-67,119,-168,112r36,-227r66,0v55,0,79,45,66,115xm145,-145v2,-35,-20,-54,-61,-47r-25,157v70,14,84,-64,86,-110","w":198},"E":{"d":"168,-227r-5,35r-79,0r-9,56r59,0r-6,36r-59,0r-10,64r83,0r-6,36r-122,0r35,-227r119,0","w":160},"F":{"d":"158,-227r-5,35r-69,0r-9,56r55,0r-5,36r-56,0r-15,100r-40,0r35,-227r109,0","w":148,"k":{"o":5,"e":5,"c":5,"a":5,"A":14,".":46,",":46}},"G":{"d":"121,-198v-44,0,-65,66,-65,113v0,24,8,56,38,56v8,0,23,-3,23,-3r12,-72r38,0r-16,99v0,0,-33,10,-62,10v-54,0,-72,-40,-72,-90v0,-64,40,-147,107,-147v39,0,58,16,58,16r-20,28v0,0,-15,-10,-41,-10","w":186},"H":{"d":"192,-227r-35,227r-41,0r16,-100r-61,0r-16,100r-40,0r35,-227r40,0r-14,91r61,0r15,-91r40,0","w":196},"I":{"d":"84,-227r-34,227r-39,0r33,-227r40,0","w":85},"J":{"d":"84,-227r-35,233v5,35,-56,54,-65,53v0,-12,-11,-31,4,-33v12,-5,21,-11,23,-23r33,-230r40,0","w":85},"K":{"d":"161,-230v0,0,11,37,-16,64r-55,55r70,94r0,17r-38,0r-56,-79r-12,79r-40,0r35,-227r40,0r-13,84v19,-22,54,-40,47,-79","w":163,"k":{"Q":4,"O":4,"G":4,"C":4}},"L":{"d":"128,-35r-5,35r-108,0r36,-227r39,0r-31,192r69,0","w":133,"k":{"y":10,"Y":23,"W":13,"V":16,"T":16}},"M":{"d":"262,-227r-36,227r-41,0r25,-151v-15,48,-47,106,-69,151r-34,0v-10,-50,-24,-96,-28,-151r-24,151r-41,0r36,-227r48,0v10,57,28,110,33,172v19,-59,57,-117,83,-172r48,0","w":266},"N":{"d":"194,-227r-35,227r-38,0r-44,-158v-3,52,-16,108,-23,158r-40,0r36,-227r46,0r39,151v1,-49,13,-105,19,-151r40,0","w":199},"O":{"d":"120,-232v49,0,64,49,64,90v0,55,-31,147,-99,147v-49,0,-64,-49,-64,-90v0,-55,31,-147,99,-147xm145,-150v0,-19,-4,-46,-29,-46v-44,0,-57,88,-57,120v0,20,4,45,29,45v45,0,57,-87,57,-119","w":196,"k":{"T":7,".":9,",":9}},"P":{"d":"174,-153v-7,51,-55,90,-107,72r-13,81r-40,0r35,-227r51,0v59,0,79,37,74,74xm89,-111v39,4,79,-83,8,-82r-13,0r-12,78v0,0,9,4,17,4","w":174,"k":{"o":4,"e":4,"c":4,"a":4,"A":13,".":52,",":52}},"Q":{"d":"179,-141v0,77,-34,134,-99,164v18,21,74,8,89,1r-8,43v0,0,-49,13,-90,-11r-36,-20r-4,-21r38,-17v-36,-13,-52,-46,-52,-83v0,-54,28,-147,98,-147v51,0,64,53,64,91xm140,-145v0,-21,-2,-51,-28,-51v-44,0,-57,77,-57,112v0,31,14,51,42,56v32,-27,43,-74,43,-117","w":188,"k":{"T":7,".":9}},"R":{"d":"175,-166v0,37,-24,75,-62,82r49,67r-2,17r-35,0r-58,-80r-13,80r-40,0r35,-227v63,-1,126,-6,126,61xm135,-163v0,-25,-23,-30,-51,-29r-12,76v33,15,63,-15,63,-47","w":178,"k":{"o":2,"e":2,"c":2,"Y":5,"V":4,"T":5}},"S":{"d":"150,-206r-24,20v0,0,-11,-11,-30,-11v-30,0,-42,36,-18,53v26,18,59,29,59,73v0,44,-33,76,-77,76v-31,0,-54,-21,-54,-21r22,-29v0,0,16,15,35,15v31,1,47,-40,21,-58v-25,-17,-66,-39,-60,-80v5,-37,33,-64,74,-64v30,0,52,26,52,26","w":154},"T":{"d":"160,-226r-6,37r-49,0r-29,189r-39,0r29,-189r-50,0r6,-37r138,0","w":140,"k":{"y":8,"w":9,"u":16,"s":16,"r":16,"o":23,"i":10,"e":23,"c":23,"a":23,"T":-4,"Q":7,"O":7,"G":7,"C":7,"A":14,";":18,":":18,".":18,"-":27,",":18}},"U":{"d":"191,-227v-21,90,-4,232,-108,232v-55,0,-67,-49,-59,-96r21,-136r40,0r-22,139v-4,28,-5,57,23,57v26,0,39,-25,44,-60r21,-136r40,0","w":195},"V":{"d":"176,-227v10,107,-49,157,-80,227r-39,0r-37,-227r42,0r24,168v23,-49,58,-89,49,-168r41,0","w":174,"k":{"y":-4,"o":7,"e":7,"c":7,"a":7,"A":6,";":4,":":4,".":18,",":18}},"W":{"d":"145,-168v-2,23,-55,147,-60,168r-40,0r-17,-227r42,0r6,160v12,-55,41,-110,59,-160r38,0r8,160v19,-53,57,-84,47,-160r41,0v2,43,-3,74,-18,104r-62,123r-37,0v-3,-79,-13,-130,-7,-168","w":266,"k":{"A":6,";":4,":":4,".":18,"-":6,",":20}},"X":{"d":"187,-211r-67,94r50,117r-45,0r-34,-80r-56,80r-33,0r0,-17r73,-100r-47,-110r43,0r32,74r52,-74r32,0r0,16","w":178},"Y":{"d":"60,-83v-3,-47,-13,-99,-50,-122r27,-27v24,14,47,53,47,89v8,-34,33,-74,65,-91r26,26v-66,41,-77,138,-89,208r-39,0v4,-28,13,-83,13,-83","w":154,"k":{"z":5,"v":5,"u":7,"t":7,"s":7,"q":14,"p":7,"o":16,"n":7,"m":7,"e":16,"c":16,"a":16,"Y":-10,"A":11,";":25,":":25,".":25,"-":18,",":25}},"Z":{"d":"162,-227r-4,33r-101,157r96,0r-5,37r-139,0r0,-32r100,-158r-68,0r3,-37r118,0","w":159},"[":{"d":"111,-264r-5,34r-30,0r-36,252r29,0r-5,34r-62,0r47,-320r62,0","w":103,"k":{"J":-7}},"\\":{"d":"122,53r-33,0r-87,-326r33,0","w":120},"]":{"d":"106,-264r-47,320r-62,0r6,-34r29,0r37,-252r-30,0r5,-34r62,0","w":104},"^":{"d":"203,-115r-38,0v-26,-47,-44,-78,-53,-93v-8,15,-26,46,-53,93r-38,0r78,-140r26,0v0,0,33,64,78,140","w":224},"_":{"d":"162,49r-162,0r0,-22r162,0r0,22"},"a":{"d":"162,-3v0,0,-17,8,-30,8v-20,-1,-26,-18,-22,-37v0,0,-21,37,-57,37v-29,0,-36,-29,-36,-52v0,-48,28,-135,92,-135v16,0,32,3,53,7v0,6,-18,130,-18,130v-2,12,-4,19,1,19v18,-5,10,15,17,23xm122,-147v-51,-9,-62,67,-65,101v0,9,-1,15,9,15v16,0,42,-38,46,-57v4,-19,10,-59,10,-59","w":176},"b":{"d":"78,-27v34,0,48,-55,48,-92v0,-42,-43,-28,-55,-7r-15,91v0,0,7,8,22,8xm75,5v-29,0,-57,-24,-57,-24r35,-231r38,0r-13,87v0,0,16,-19,36,-19v37,0,53,28,53,66v0,54,-31,121,-92,121","w":182},"c":{"d":"16,-67v0,-55,42,-115,86,-115v31,0,41,15,45,19r-22,24v0,0,-7,-10,-26,-10v-18,0,-45,37,-45,77v0,26,10,44,27,44v17,0,40,-22,40,-22r17,21v0,0,-27,34,-61,34v-40,1,-61,-32,-61,-72","w":149},"d":{"d":"81,5v-44,0,-65,-34,-65,-74v0,-69,63,-141,115,-100v5,-6,5,-69,-3,-71r30,-14v35,50,1,122,-5,184v-4,39,-28,75,-72,75xm126,-136v0,0,-16,-12,-26,-12v-29,0,-45,47,-45,81v0,18,5,40,27,40v44,0,33,-71,44,-109","w":180},"e":{"d":"152,-139v0,43,-63,62,-97,68v-1,17,4,45,23,45v24,0,43,-18,43,-18r16,22v0,0,-26,27,-65,27v-40,0,-56,-36,-56,-71v0,-52,30,-116,89,-116v29,0,47,12,47,43xm113,-141v0,-7,-5,-9,-11,-9v-23,0,-38,30,-43,47v19,-4,54,-14,54,-38","w":157},"f":{"d":"80,-250v34,0,18,14,18,33v-25,-8,-22,26,-23,41r24,0r0,31r-26,0v-8,81,-4,163,-48,212r-22,-14v29,-54,24,-126,32,-198r-21,-4r4,-27r20,0v0,-29,7,-74,42,-74","w":96,"k":{"l":4,"i":7,"f":9}},"g":{"d":"146,-176v-2,35,-11,105,-29,136v16,5,24,25,24,40v0,48,-55,69,-90,69v-21,0,-57,-2,-57,-36v0,-36,56,-68,56,-68r15,22v0,0,-32,27,-32,40v0,9,12,11,19,11v23,0,52,-15,52,-35v0,-13,-7,-24,-24,-24r-2,-13v12,-9,13,-12,18,-26v0,0,-20,11,-32,11v-33,0,-46,-25,-46,-54v0,-45,24,-79,72,-79v22,0,56,6,56,6xm108,-149v-34,-10,-54,11,-52,45v0,13,5,20,16,20v28,-2,34,-36,36,-65","w":159},"h":{"d":"126,-182v77,2,25,81,28,128v-5,30,-11,38,-31,59r-23,-19v24,-29,19,-75,28,-117v3,-14,-2,-16,-12,-16v-14,0,-38,26,-47,42r-16,105r-38,0r38,-250r38,0r-16,102v0,0,20,-34,51,-34","w":183},"i":{"d":"76,-176r-27,176r-37,0r26,-176r38,0xm37,-220v0,-13,12,-25,26,-25v13,0,24,10,24,23v1,30,-49,33,-50,2","w":83},"j":{"d":"76,-176r-28,185v-8,45,-33,53,-65,62r-4,-29v14,-5,28,-12,30,-29r29,-189r38,0xm37,-220v0,-13,12,-25,26,-25v13,0,24,10,24,23v1,30,-49,33,-50,2","w":83},"k":{"d":"69,-112v23,0,58,-14,58,-32v0,-7,-2,-10,-16,-10r-3,-25v0,0,13,-3,26,-3v24,0,33,16,33,34v0,35,-33,57,-63,57r63,91r-49,0r-53,-82r-13,82r-37,0r38,-250r38,0","w":172},"l":{"d":"85,-250v-8,68,-37,186,-22,244r-36,10v-17,-58,12,-185,20,-254r38,0","w":86},"m":{"d":"235,0r-38,0r20,-132v1,-10,0,-16,-10,-16v-18,0,-45,37,-45,37r-17,111r-38,0r21,-132v2,-10,2,-16,-11,-16v-13,0,-38,28,-46,41r-17,107r-39,0r28,-176r39,0r-5,28v11,-18,29,-34,53,-34v23,0,37,10,37,32v13,-18,28,-32,51,-32v36,0,42,21,37,52","w":277},"n":{"d":"166,-130r-21,130r-38,0r21,-132v2,-14,-2,-16,-11,-16v-17,0,-37,26,-48,43r-16,105r-38,0r27,-176r39,0r-5,28v10,-17,29,-34,50,-34v42,0,44,25,40,52","w":186},"o":{"d":"75,5v-42,0,-59,-38,-59,-74v0,-47,32,-113,86,-113v42,0,58,40,58,76v0,47,-31,111,-85,111xm122,-112v0,-16,-3,-36,-24,-36v-34,0,-44,58,-44,84v0,16,3,36,24,36v34,0,44,-58,44,-84","w":175},"p":{"d":"63,-14r-12,77r-39,0r26,-166r-24,14r5,-34r25,-15r5,-38r39,0r-2,13v8,-6,27,-19,39,-19v48,0,57,49,51,87v-6,44,-27,100,-80,100v-14,0,-27,-6,-33,-19xm81,-127v-4,23,-24,99,17,99v26,0,36,-47,39,-66v2,-15,7,-54,-17,-54v-9,0,-31,15,-39,21","w":192},"q":{"d":"171,-170r-36,233r-39,0r13,-77v-8,11,-24,19,-37,19v-42,0,-55,-32,-55,-69v0,-48,32,-118,86,-118v30,0,68,12,68,12xm129,-145v-52,-17,-76,41,-73,81v0,14,3,35,21,35v40,-2,45,-73,52,-116","w":186},"r":{"d":"136,-161r-25,31v-10,-11,-23,-7,-37,19v-15,29,-13,75,-21,111r-38,0r27,-176r38,0r-4,26v10,-24,45,-51,60,-11","w":124,"k":{"o":4,"e":4,"c":4,"a":6,".":33,"-":6,",":33}},"s":{"d":"143,-156r-22,20v0,0,-13,-13,-35,-13v-28,0,-35,28,-11,35v28,16,63,24,52,72v-6,24,-28,47,-69,47v-26,0,-50,-21,-50,-21r20,-27v9,14,62,25,63,-4v-8,-37,-79,-29,-69,-86v6,-33,37,-49,68,-49v33,0,53,26,53,26","w":148},"t":{"d":"113,-176r-5,31r-29,0r-16,109v3,18,26,4,33,-4r11,26v-24,30,-87,26,-80,-26r15,-105r-20,-3r5,-28r22,0r4,-32r34,0r-4,32r30,0","w":120},"u":{"d":"21,-47r20,-129r38,0r-21,131v-2,14,2,17,11,17v17,0,36,-26,48,-43r16,-105r38,0r-23,146v-2,12,9,14,9,14r-13,21v0,0,-22,3,-30,-10v-4,-7,-1,-24,-1,-24v-11,16,-32,34,-53,34v-42,0,-43,-25,-39,-52","w":182},"v":{"d":"143,-180v0,0,18,45,-5,84r-57,96r-34,0r-35,-176r40,0r20,126r36,-63v11,-18,2,-51,-2,-59","w":152,"k":{".":18,",":18}},"w":{"d":"230,-180v0,0,16,45,-7,85r-54,95r-36,0r-10,-120v-7,38,-32,85,-46,120r-37,0r-27,-176r41,0r12,125r46,-125r38,0r12,125v14,-38,51,-68,32,-121","w":238,"k":{".":18,",":18}},"x":{"d":"144,-180v0,0,13,35,-10,58r-36,36r42,86r-43,0r-25,-59r-44,59r-31,0r0,-15r60,-76r-39,-85r42,0r23,59v13,-17,36,-22,25,-56","w":151},"y":{"d":"145,-180v11,28,10,62,-5,85v-39,59,-57,142,-134,162r-9,-27v24,-10,39,-21,52,-44r-36,-172r41,0r21,127v20,-40,57,-76,33,-123","w":154,"k":{".":18,",":18}},"z":{"d":"147,-176r-4,30v-33,35,-64,72,-92,111r85,0r-4,35r-129,0r2,-32v27,-39,57,-76,88,-111r-75,0r4,-33r125,0","w":148},"{":{"d":"127,-233v-25,1,-36,-8,-39,25v-4,38,-10,93,-35,106v23,17,11,72,4,105v-7,33,12,21,33,23r-11,32v-39,0,-60,5,-55,-52v3,-30,24,-93,-12,-95r4,-29v37,0,38,-79,41,-97v12,-56,27,-50,69,-50","w":126,"k":{"J":-7}},"|":{"d":"56,5r-32,0r0,-276r32,0r0,276","w":79},"}":{"d":"107,-118r-4,29v-35,1,-34,62,-41,97v-11,56,-28,50,-69,50r-1,-32v25,-3,34,12,39,-25v5,-37,9,-92,34,-105v-21,-18,-10,-74,-3,-106v7,-35,-12,-20,-33,-23r11,-32v39,0,59,-4,54,53v-2,31,-23,93,13,94","w":110},"~":{"d":"196,-152r-10,50v-21,35,-73,-2,-101,-2v-10,0,-17,5,-40,36r8,-45v12,-12,15,-20,38,-20v26,0,43,19,63,19v10,0,18,-5,42,-38","w":200},"'":{"d":"64,-255v6,32,-8,54,-14,79r-21,0v1,-29,-1,-61,10,-79r25,0","w":52},"`":{"d":"94,-222r-19,22v-37,-21,-56,-42,-60,-47r32,-27v0,0,16,27,47,52","w":91},"\u00a0":{"w":108}}});
	
		function TMSjukeboxTrack() {
			var newwindow2=window.open('','name','height=330,width=270');
			newwindow2.document.write('<html lang="en"><head><title>The Marble Shrine - External Player</title>');
			newwindow2.document.write('<link rel="stylesheet" href="css/style.css">');
			newwindow2.document.write('</head><body style="background-color:#252525 !important;"><div style="padding:10px;text-align:center;">');
			newwindow2.document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="150" height="295">');
			newwindow2.document.write('<param name="movie" value="http://bandcamp.com/EmbeddedPlayer.swf/track=<?php echo $song_embed; ?>/size=tall/bgcol=252525/linkcol=FFA200/" />');
			newwindow2.document.write('<param name="quality" value="high" /><param name="allowScriptAccess" value="never" />');
			newwindow2.document.write('<param name="allowNetworking" value="always" />');
			newwindow2.document.write('<param name="wmode" value="transparent" />');
			newwindow2.document.write('<param name="bgcolor" value="#252525" />');
			newwindow2.document.write('<embed src="http://bandcamp.com/EmbeddedPlayer.swf/track=<?php echo $song_embed; ?>/size=tall/bgcol=252525/linkcol=FFA200/" width="150" height="295" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality=high allowScriptAccess=never allowNetworking=always wmode=transparent bgcolor=#252525 ></embed>');
			newwindow2.document.write('<noembed><a href="http://omardigital.rodriguezlopezproductions.com/album/omar-rodriguez-lopez-lydia-lunch">Welcome to My Church by Omar Rodriguez Lopez</a></noembed>');
			newwindow2.document.write('</object>');
			newwindow2.document.write('<p style="padding:5px;"><a href="javascript:self.close()" style="color:#FFA200;text-decoration:none;font-weight:bold;font-size:12px;">Close the Pop Up Player</a></p></div>');
			newwindow2.document.write('</body></html>');
			newwindow2.document.close();
			}
		function TMSjukeboxAlbum() {
			var newwindow2=window.open('','name','height=340,width=270');
			newwindow2.document.write('<html lang="en"><head><title>The Marble Shrine - External Player</title>');
			newwindow2.document.write('<link rel="stylesheet" href="css/style.css">');
			newwindow2.document.write('</head><body style="background-color:#252525 !important;"><div style="padding:10px;text-align:center;">');
			newwindow2.document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="150" height="295">');
			newwindow2.document.write('<param name="movie" value="http://bandcamp.com/EmbeddedPlayer.swf/album=<?php echo $album_embed; ?>/size=tall/bgcol=252525/linkcol=FFA200/" />');
			newwindow2.document.write('<param name="quality" value="high" /><param name="allowScriptAccess" value="never" />');
			newwindow2.document.write('<param name="allowNetworking" value="always" />');
			newwindow2.document.write('<param name="wmode" value="transparent" />');
			newwindow2.document.write('<param name="bgcolor" value="#252525" />');
			newwindow2.document.write('<embed src="http://bandcamp.com/EmbeddedPlayer.swf/album=<?php echo $album_embed; ?>/size=tall/bgcol=252525/linkcol=FFA200/" width="150" height="295" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality=high allowScriptAccess=never allowNetworking=always wmode=transparent bgcolor=#252525 ></embed>');
			newwindow2.document.write('<noembed><a href="http://omardigital.rodriguezlopezproductions.com/album/omar-rodriguez-lopez-lydia-lunch">Welcome to My Church by Omar Rodriguez Lopez</a></noembed>');
			newwindow2.document.write('</object>');
			newwindow2.document.write('<p style="padding:5px;"><a href="javascript:self.close()" style="color:#FFA200;text-decoration:none;font-weight:bold;font-size:12px;">Close the Pop Up player</a></p></div>');
			newwindow2.document.write('</body></html>');
			newwindow2.document.close();
			}
