(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;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.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},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,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return 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){if(this.nodeType==3)return;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(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],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){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;function evalScript(i,elem){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);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;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){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData: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?windowData: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(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,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(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;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&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)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(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});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",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",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"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:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return 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!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;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){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))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 merge={};nodeName=m[2].toUpperCase();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){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=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);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])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-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==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},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(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=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 events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];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(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}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 handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===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.target=event.srcElement||document;if(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 doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?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;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};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);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(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;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}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,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});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,dataType:"html",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);self.each(callback,[res.responseText,status,res]);}});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,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/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+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}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.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){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 undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{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");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}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();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");}return xml;},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||r.status==1223||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||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).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");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 optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);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)||(type&&type.constructor==Array)){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(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";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(){if(opt.queue!==false)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:[],timerId:null,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.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(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(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=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(jQuery.timerId);jQuery.timerId=null;}},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(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||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 parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/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&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();


(function($) {

	$.fn.easySlider = function(options){
	  
		// default configuration properties
		var defaults = {			
			prevId: 		'prevBtn',
			prevText: 		'',
			nextId: 		'nextBtn',	
			nextText: 		'',
			controlsShow:	true,
			controlsBefore:	'',
			controlsAfter:	'',	
			controlsFade:	true,
			firstId: 		'firstBtn',
			firstText: 		'First',
			firstShow:		false,
			lastId: 		'lastBtn',	
			lastText: 		'Last',
			lastShow:		false,				
			vertical:		false,
			speed: 			800,
			auto:			false,
			pause:			2000,
			continuous:		false, 
			numeric: 		false,
			numericId: 		'controls'
		}; 
		
		var options = $.extend(defaults, options);  
				
		this.each(function() {  
			var obj = $(this); 				
			var s = $("li", obj).length;
			var w = $("li", obj).width(); 
			var h = $("li", obj).height(); 
			var clickable = true;
			obj.width(w); 
			obj.height(h); 
			obj.css("overflow","hidden");
			var ts = s-1;
			var t = 0;
			$("ul", obj).css('width',s*w);			
			
			if(options.continuous){
				$("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));
				$("ul", obj).append($("ul li:nth-child(2)", obj).clone());
				$("ul", obj).css('width',(s+1)*w);
			};				
			
			if(!options.vertical) $("li", obj).css('float','left');
								
			if(options.controlsShow){
				var html = options.controlsBefore;				
				if(options.numeric){
					html += '<ol id="'+ options.numericId +'"></ol>';
				} else {
					if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';
					html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';
					html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';
					if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>';				
				};
				
				html += options.controlsAfter;						
				$(obj).after(html);										
			};
			
			if(options.numeric){									
				for(var i=0;i<s;i++){						
					$(document.createElement("li"))
						.attr('id',options.numericId + (i+1))
						.html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')
						.appendTo($("#"+ options.numericId))
						.click(function(){							
							animate($("a",$(this)).attr('rel'),true);
						}); 												
				};							
			} else {
				$("a","#"+options.nextId).click(function(){		
					animate("next",true);
				});
				$("a","#"+options.prevId).click(function(){		
					animate("prev",true);				
				});	
				$("a","#"+options.firstId).click(function(){		
					animate("first",true);
				});				
				$("a","#"+options.lastId).click(function(){		
					animate("last",true);				
				});				
			};
			
			function setCurrent(i){
				i = parseInt(i)+1;
				$("li", "#" + options.numericId).removeClass("current");
				$("li#" + options.numericId + i).addClass("current");
			};
			
			function adjust(){
				if(t>ts) t=0;		
				if(t<0) t=ts;	
				if(!options.vertical) {
					$("ul",obj).css("margin-left",(t*w*-1));
				} else {
					$("ul",obj).css("margin-left",(t*h*-1));
				}
				clickable = true;
				if(options.numeric) setCurrent(t);
			};
			
			function animate(dir,clicked){
				if (clickable){
					clickable = false;
					var ot = t;				
					switch(dir){
						case "next":
							t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;						
							break; 
						case "prev":
							t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;
							break; 
						case "first":
							t = 0;
							break; 
						case "last":
							t = ts;
							break; 
						default:
							t = dir;
							break; 
					};	
					var diff = Math.abs(ot-t);
					var speed = diff*options.speed;						
					if(!options.vertical) {
						p = (t*w*-1);
						$("ul",obj).animate(
							{ marginLeft: p }, 
							{ queue:false, duration:speed, complete:adjust }
						);				
					} else {
						p = (t*h*-1);
						$("ul",obj).animate(
							{ marginTop: p }, 
							{ queue:false, duration:speed, complete:adjust }
						);					
					};
					
					if(!options.continuous && options.controlsFade){					
						if(t==ts){
							$("a","#"+options.nextId).hide();
							$("a","#"+options.lastId).hide();
						} else {
							$("a","#"+options.nextId).show();
							$("a","#"+options.lastId).show();					
						};
						if(t==0){
							$("a","#"+options.prevId).hide();
							$("a","#"+options.firstId).hide();
						} else {
							$("a","#"+options.prevId).show();
							$("a","#"+options.firstId).show();
						};					
					};				
					
					if(clicked) clearTimeout(timeout);
					if(options.auto && dir=="next" && !clicked){;
						timeout = setTimeout(function(){
							animate("next",false);
						},diff*options.speed+options.pause);
					};
			
				};
				
			};
			// init
			var timeout;
			if(options.auto){;
				timeout = setTimeout(function(){
					animate("next",false);
				},options.pause);
			};		
			
			if(options.numeric) setCurrent(0);
		
			if(!options.continuous && options.controlsFade){					
				$("a","#"+options.prevId).hide();
				$("a","#"+options.firstId).hide();				
			};				
			
		});
	  
	};

})(jQuery);




			$(document).ready(function(){	
				$("#slider").easySlider({
					auto: true, 
					moveby:1,
					continuous: true
				});
			});	


			var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());

Cufon.registerFont({"w":200,"face":{"font-family":"title","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-10 -291 338 77","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"28,-257v-2,68,5,126,12,185r21,0v7,-59,15,-117,12,-185r-45,0xm26,0r48,0r0,-45r-48,0r0,45","w":100},"\"":{"d":"30,-156r37,0r0,-101r-37,0r0,101xm93,-156r37,0r0,-101r-37,0r0,101","w":159},"#":{"d":"178,-103r-30,0r6,-46r35,0r0,-27r-31,0r10,-76r-29,0r-10,76r-40,0r11,-76r-29,0r-11,76r-37,0r0,27r34,0r-7,46r-38,0r0,27r34,0r-10,76r28,0r11,-76r40,0r-11,76r29,0r11,-76r34,0r0,-27xm125,-149r-6,46r-40,0r6,-46r40,0"},"$":{"d":"109,-110v37,0,58,46,32,72v-8,7,-18,11,-32,12r0,-84xm93,-26v-33,0,-45,-19,-46,-52r-41,0v-1,51,36,84,87,84r0,28r16,0r0,-28v49,-2,86,-30,85,-81v-1,-53,-42,-68,-85,-80r0,-76v25,1,37,13,38,38r41,0v0,-45,-34,-70,-79,-70r0,-28r-16,0r0,28v-46,2,-80,23,-81,70v-1,54,40,67,81,80r0,87xm93,-159v-32,-2,-54,-39,-30,-63v6,-7,17,-9,30,-9r0,72"},"%":{"d":"94,9r28,0r139,-270r-27,0xm210,-67v0,41,18,72,60,72v42,1,61,-30,60,-72v0,-41,-20,-71,-60,-71v-40,0,-60,30,-60,71xm270,-18v-38,-1,-38,-96,0,-97v40,0,38,96,0,97xm30,-185v0,42,18,71,60,71v41,0,60,-30,60,-71v0,-41,-19,-72,-60,-72v-41,0,-60,31,-60,72xm89,-137v-23,0,-27,-23,-27,-48v0,-25,5,-48,27,-49v40,0,39,98,0,97","w":360},"&":{"d":"105,-161v-20,-16,-40,-69,4,-72v25,-1,34,36,18,53v-5,6,-12,12,-22,19xm143,-56v-16,37,-90,41,-90,-15v0,-31,22,-34,39,-48xm12,-71v-6,82,118,99,153,42r23,29r50,0r-49,-60v11,-17,17,-39,20,-63r-36,0v-2,14,-3,24,-8,35r-40,-48v24,-13,47,-33,47,-66v0,-36,-28,-62,-64,-61v-35,0,-64,25,-63,61v0,27,12,37,26,56v-30,16,-56,35,-59,75","w":233},"'":{"d":"32,-156r36,0r0,-101r-36,0r0,101","w":100},"(":{"d":"18,-97v0,71,22,119,51,166r34,0v-61,-94,-55,-243,0,-332r-34,0v-29,46,-50,99,-51,166","w":100},")":{"d":"82,-97v0,-72,-22,-118,-51,-166r-34,0v61,94,55,243,0,332r34,0v29,-45,50,-99,51,-166","w":100},"*":{"d":"47,-192r-25,34r20,14r24,-36r26,36r19,-14r-25,-34r41,-14r-9,-23r-39,15r0,-43r-25,0r0,43r-39,-15r-8,23","w":133},"+":{"d":"90,-109r-73,0r0,36r73,0r0,73r36,0r0,-73r73,0r0,-36r-73,0r0,-73r-36,0r0,73","w":216},",":{"d":"26,57v44,-7,55,-51,49,-106r-50,0r0,49r25,0v0,18,-10,31,-24,35r0,22","w":100},"-":{"d":"18,-78r104,0r0,-39r-104,0r0,39","w":140},".":{"d":"25,0r50,0r0,-49r-50,0r0,49","w":100},"\/":{"d":"-8,6r39,0r104,-269r-40,0","w":126},"0":{"d":"100,-223v60,7,51,114,36,166v-5,16,-17,28,-36,28v-42,0,-46,-50,-46,-97v0,-47,4,-92,46,-97xm187,-126v0,-69,-18,-131,-87,-131v-69,0,-87,62,-87,131v0,69,18,131,87,131v69,0,87,-62,87,-131"},"1":{"d":"93,-252v-6,29,-37,43,-74,42r0,32r62,0r0,178r45,0r0,-252r-33,0"},"2":{"d":"103,-223v47,-3,51,60,25,84v-42,39,-114,60,-114,139r172,0r0,-37r-123,0v29,-54,120,-61,123,-143v3,-76,-102,-101,-144,-50v-15,18,-23,41,-23,70r41,0v3,-35,9,-61,43,-63"},"3":{"d":"138,-187v-1,29,-25,39,-56,39r0,31v37,-1,66,6,66,43v0,27,-21,45,-48,45v-31,0,-48,-23,-48,-54r-41,0v1,53,34,89,89,88v51,-1,87,-27,89,-77v1,-34,-20,-56,-46,-64v67,-28,31,-121,-44,-121v-50,0,-82,38,-83,86r41,0v0,-27,15,-52,42,-52v23,0,39,15,39,36"},"4":{"d":"188,-92r-32,0r0,-160r-39,0r-108,152r0,40r108,0r0,60r39,0r0,-60r32,0r0,-32xm40,-92r77,-111r0,111r-77,0"},"5":{"d":"188,-85v7,-72,-82,-108,-126,-66r13,-64r100,0r0,-37r-131,0r-27,138r41,0v16,-41,95,-23,89,29v-4,33,-13,56,-47,56v-27,0,-44,-17,-46,-43r-41,0v1,48,38,77,88,77v56,-1,82,-37,87,-90"},"6":{"d":"147,-82v0,27,-17,53,-44,53v-29,1,-46,-24,-46,-53v0,-29,18,-51,46,-51v27,0,44,24,44,51xm105,-223v22,0,35,15,37,35r41,0v-4,-42,-32,-69,-76,-69v-70,0,-94,60,-95,130v-1,75,18,132,92,132v53,0,80,-34,84,-86v7,-77,-98,-114,-135,-55v5,-42,8,-87,52,-87"},"7":{"d":"91,0v8,-95,43,-160,94,-218r0,-34r-172,0r0,37r130,0v-47,56,-89,122,-97,215r45,0"},"8":{"d":"148,-74v0,28,-21,47,-48,47v-27,0,-48,-19,-48,-47v0,-27,20,-44,48,-44v28,0,48,17,48,44xm11,-74v-1,49,39,79,89,79v50,0,89,-30,89,-79v0,-33,-19,-55,-46,-62v21,-7,35,-26,36,-52v0,-45,-32,-69,-79,-69v-47,0,-79,23,-78,69v0,26,15,45,35,52v-27,7,-45,30,-46,62xm60,-186v1,-23,17,-39,40,-39v24,0,40,15,40,39v0,23,-16,37,-40,37v-24,0,-40,-14,-40,-37"},"9":{"d":"53,-171v0,-28,16,-52,44,-52v30,0,46,24,46,52v0,29,-17,53,-46,53v-27,0,-44,-25,-44,-53xm95,-29v-22,0,-35,-15,-37,-35r-41,0v4,43,32,69,76,69v70,0,94,-60,95,-130v1,-74,-17,-131,-89,-132v-53,-1,-87,35,-87,86v0,79,99,113,135,55v-4,42,-8,87,-52,87"},":":{"d":"25,-134r50,0r0,-48r-50,0r0,48xm25,0r50,0r0,-49r-50,0r0,49","w":100},";":{"d":"26,57v44,-7,55,-51,49,-106r-50,0r0,49r25,0v0,18,-10,31,-24,35r0,22xm25,-134r50,0r0,-48r-50,0r0,48","w":100},"<":{"d":"199,-34r-134,-57r134,-57r0,-37r-182,81r0,26r182,81r0,-37","w":216},"=":{"d":"199,-146r-182,0r0,37r182,0r0,-37xm199,-73r-182,0r0,37r182,0r0,-37","w":216},">":{"d":"17,-34r0,37r182,-81r0,-26r-182,-81r0,37r134,57","w":216},"?":{"d":"183,-190v0,-73,-99,-95,-142,-49v-16,16,-23,37,-23,64r41,0v0,-32,13,-54,43,-54v31,-1,47,40,30,63v-20,28,-57,41,-52,96r39,0v-4,-63,64,-58,64,-120xm75,0r48,0r0,-45r-48,0r0,45"},"@":{"d":"179,-142v-2,33,-18,61,-49,64v-18,2,-29,-14,-29,-33v0,-32,18,-63,50,-63v15,0,29,16,28,32xm71,-107v-3,54,64,72,93,36v1,12,9,21,21,21v52,0,85,-48,85,-108v0,-68,-53,-105,-120,-105v-78,0,-129,51,-132,130v-4,105,100,169,195,123v19,-10,34,-25,46,-43r-25,0v-18,20,-46,36,-81,36v-68,0,-107,-46,-107,-115v0,-64,40,-108,104,-108v57,0,96,31,96,87v0,38,-14,71,-47,77v-11,-1,-7,-14,-4,-24r26,-95r-25,0r-6,20v-7,-16,-21,-26,-41,-26v-50,0,-76,42,-78,94","w":288},"A":{"d":"80,-102r40,-111r39,111r-79,0xm-3,0r47,0r24,-68r103,0r24,68r48,0r-99,-257r-48,0","w":240,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"B":{"d":"195,-77v0,56,-72,37,-123,40r0,-80v52,3,123,-15,123,40xm229,-193v1,-87,-119,-60,-202,-64r0,257v91,-2,213,19,213,-72v0,-37,-20,-59,-48,-67v22,-9,36,-26,37,-54xm184,-185v0,49,-65,34,-112,36r0,-71v45,4,112,-17,112,35","w":253},"C":{"d":"137,-226v38,0,56,21,64,51r45,0v-6,-56,-49,-88,-109,-88v-80,0,-116,55,-123,134v-12,130,171,184,222,73v6,-13,9,-27,10,-42r-44,0v-3,37,-25,68,-65,67v-55,-2,-78,-42,-78,-98v0,-56,23,-95,78,-97","w":259},"D":{"d":"202,-129v0,80,-48,99,-130,92r0,-183v81,-6,130,11,130,91xm247,-129v0,-78,-36,-128,-113,-128r-107,0r0,257r107,0v77,-2,113,-51,113,-129","w":259},"E":{"d":"27,0r188,0r0,-39r-143,0r0,-75r130,0r0,-37r-130,0r0,-67r140,0r0,-39r-185,0r0,257","w":226},"F":{"d":"27,0r45,0r0,-114r117,0r0,-37r-117,0r0,-67r133,0r0,-39r-178,0r0,257","w":213,"k":{"A":20,".":46,",":46}},"G":{"d":"139,6v39,0,56,-13,77,-36r7,30r29,0r0,-135r-110,0r0,34r69,0v-1,43,-27,71,-72,70v-55,-2,-79,-43,-79,-98v0,-55,24,-95,79,-97v35,-1,62,20,66,51r44,0v-6,-54,-51,-88,-110,-88v-81,0,-124,55,-124,134v0,79,43,135,124,135","w":273},"H":{"d":"26,0r45,0r0,-116r117,0r0,116r45,0r0,-257r-45,0r0,102r-117,0r0,-102r-45,0r0,257","w":259},"I":{"d":"27,0r45,0r0,-257r-45,0r0,257","w":100},"J":{"d":"81,6v125,0,75,-155,85,-263r-45,0r0,177v-1,31,-5,49,-36,49v-33,0,-36,-26,-35,-59r-45,0v-3,58,20,96,76,96","w":193},"K":{"d":"27,0r45,0r0,-86r37,-37r84,123r56,0r-109,-154r102,-103r-55,0r-115,117r0,-117r-45,0r0,257","w":246},"L":{"d":"27,0r176,0r0,-39r-131,0r0,-218r-45,0r0,257","w":206,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"27,0r42,0r1,-198r71,198r38,0r72,-198r0,198r42,0r0,-257r-62,0r-70,201r-71,-201r-63,0r0,257","w":320},"N":{"d":"26,0r42,0r1,-189r117,189r48,0r0,-257r-43,0r-1,189r-117,-189r-47,0r0,257","w":259},"O":{"d":"260,-129v0,-78,-43,-134,-123,-134v-80,0,-123,54,-123,134v0,80,43,135,123,135v81,0,123,-56,123,-135xm59,-129v0,-56,23,-97,78,-97v55,0,78,43,78,97v0,55,-23,98,-78,98v-55,0,-78,-42,-78,-98","w":273},"P":{"d":"183,-178v0,53,-60,42,-111,43r0,-85v50,2,111,-14,111,42xm228,-177v-2,-52,-31,-81,-87,-80r-114,0r0,257r45,0r0,-99v81,3,160,2,156,-78","w":240,"k":{"A":27,".":61,",":61}},"Q":{"d":"137,-226v81,-4,97,116,56,169r-32,-27r-21,25r26,22v-63,22,-110,-26,-107,-92v2,-56,23,-95,78,-97xm14,-129v-5,102,93,164,183,120r38,32r22,-24r-33,-29v22,-21,36,-58,36,-99v0,-78,-43,-134,-123,-134v-80,0,-119,54,-123,134","w":273},"R":{"d":"72,-220v50,4,118,-17,118,39v0,55,-68,39,-118,41r0,-80xm245,0v-25,-31,1,-119,-52,-123v26,-9,42,-30,42,-65v2,-91,-120,-66,-208,-69r0,257r45,0r0,-106r67,0v63,-7,42,65,58,106r48,0","w":253,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"122,-31v-38,0,-66,-17,-65,-55r-45,0v2,62,42,92,107,92v72,0,128,-56,89,-120v-24,-38,-98,-30,-133,-58v-21,-25,3,-54,39,-54v34,0,53,13,55,45r45,0v-2,-56,-41,-79,-98,-82v-67,-3,-118,56,-81,115v22,35,106,29,135,58v18,31,-9,59,-48,59","w":233},"T":{"d":"3,-218r81,0r0,218r45,0r0,-218r82,0r0,-39r-208,0r0,39","w":213,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":36,"A":33,";":30,":":30,".":40,"-":46,",":40}},"U":{"d":"130,-33v-48,0,-61,-27,-61,-74r0,-150r-45,0r0,164v0,64,41,99,106,99v65,0,106,-35,105,-99r0,-164r-45,0r0,150v2,48,-13,74,-60,74","w":259},"V":{"d":"84,0r50,0r88,-257r-46,0r-67,203r-64,-203r-47,0","w":219,"k":{"y":6,"u":13,"r":13,"o":20,"i":-4,"e":20,"a":20,"A":20,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"70,0r46,0r54,-197r51,197r46,0r71,-257r-46,0r-49,197r-50,-197r-46,0r-53,197r-46,-197r-46,0","w":339,"k":{"u":6,"r":6,"o":6,"e":6,"a":13,"A":9,";":6,":":6,".":27,"-":10,",":27}},"X":{"d":"90,-133r-91,133r51,0r66,-98r64,98r54,0r-91,-133r85,-124r-50,0r-61,91r-58,-91r-54,0","w":233},"Y":{"d":"94,0r45,0r0,-101r96,-156r-50,0r-67,115r-68,-115r-52,0r96,156r0,101","w":233,"k":{"v":20,"u":31,"q":37,"p":31,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":40,"-":40,",":40}},"Z":{"d":"20,-218r138,0r-150,181r0,37r211,0r0,-39r-153,0r149,-184r0,-34r-195,0r0,39","w":226},"[":{"d":"26,69r80,0r0,-33r-41,0r0,-267r41,0r0,-32r-80,0r0,332","w":106},"\\":{"d":"31,-263r-39,0r103,269r40,0","w":126},"]":{"d":"81,-263r-81,0r0,32r42,0r0,267r-42,0r0,33r81,0r0,-332","w":106},"^":{"d":"67,-121r41,-89r41,89r37,0r-65,-131r-26,0r-65,131r37,0","w":216},"_":{"d":"180,45r0,-18r-180,0r0,18r180,0","w":180},"`":{"d":"-10,-263r51,51r30,0r-33,-51r-48,0","w":86},"a":{"d":"90,-27v-17,-1,-37,-5,-37,-24v-1,-42,57,-25,83,-42v5,42,-9,68,-46,66xm197,-28v-11,2,-20,0,-20,-13r0,-96v2,-70,-126,-67,-150,-22v-5,8,-8,18,-9,30r41,0v0,-36,77,-43,80,-5v-8,53,-127,-5,-127,85v0,64,96,65,128,31v1,26,37,26,57,18r0,-28"},"b":{"d":"114,-159v34,-1,52,33,52,66v-1,37,-15,66,-52,66v-34,0,-52,-30,-52,-66v0,-37,17,-66,52,-66xm120,-191v-24,1,-46,13,-56,29r0,-95r-41,0r0,257r39,0r0,-26v11,21,33,31,65,31v55,-2,80,-42,80,-97v0,-55,-31,-100,-87,-99","w":219},"c":{"d":"105,-159v24,0,39,14,42,35r41,0v-2,-43,-39,-67,-84,-67v-59,0,-91,43,-91,100v0,80,89,124,148,77v15,-13,23,-32,27,-56r-41,0v-3,24,-19,43,-44,43v-35,0,-48,-29,-49,-64v-1,-41,14,-67,51,-68"},"d":{"d":"105,-27v-34,0,-51,-30,-51,-64v1,-38,15,-68,52,-68v34,0,51,30,51,66v-1,37,-16,66,-52,66xm100,5v27,0,47,-13,58,-30r0,25r39,0r0,-257r-41,0r-1,95v-11,-18,-34,-30,-62,-29v-54,2,-80,39,-80,97v-1,57,31,99,87,99","w":219},"e":{"d":"13,-93v-10,106,152,135,175,35r-39,0v-8,35,-61,41,-82,15v-9,-11,-13,-23,-13,-39r136,0v5,-63,-27,-109,-87,-109v-57,0,-84,40,-90,98xm54,-109v-3,-43,54,-68,82,-35v9,10,12,21,13,35r-95,0"},"f":{"d":"114,-255v-50,-10,-90,9,-80,69r-31,0r0,30r31,0r0,156r41,0r0,-156r35,0r0,-30r-35,0v-6,-32,12,-46,39,-36r0,-33","w":113,"k":{"f":6}},"g":{"d":"153,-97v0,36,-15,64,-50,65v-31,1,-49,-28,-49,-62v0,-37,14,-64,49,-65v34,-1,50,29,50,62xm153,-4v10,54,-84,65,-93,20r-41,0v5,41,38,57,83,58v58,0,92,-27,92,-84r0,-176r-41,0v-1,8,2,19,-1,25v-9,-19,-30,-30,-55,-30v-55,0,-83,37,-84,93v0,59,27,96,83,98v27,0,45,-17,57,-33r0,29","w":213},"h":{"d":"185,-128v9,-69,-97,-81,-122,-34r0,-95r-41,0r0,257r41,0v4,-63,-21,-159,45,-159v62,0,27,103,36,159r41,0r0,-128","w":206},"i":{"d":"23,0r41,0r0,-186r-41,0r0,186xm23,-218r41,0r0,-39r-41,0r0,39","w":86},"j":{"d":"-8,72v45,8,72,-12,72,-56r0,-202r-41,0r0,200v2,25,-7,30,-31,26r0,32xm23,-218r41,0r0,-39r-41,0r0,39","w":86},"k":{"d":"23,0r41,0r0,-67r24,-23r57,90r50,0r-78,-118r71,-68r-50,0r-74,75r0,-146r-41,0r0,257","w":193},"l":{"d":"23,0r41,0r0,-257r-41,0r0,257","w":86},"m":{"d":"171,-160v-14,-42,-94,-39,-109,0r-2,0r0,-26r-38,0r0,186r41,0v5,-61,-20,-159,40,-159v25,0,33,13,33,39r0,120r41,0v6,-60,-23,-159,40,-159v29,0,34,19,34,50r0,109r41,0r0,-129v9,-73,-97,-78,-121,-31","w":313},"n":{"d":"185,-128v9,-72,-100,-81,-124,-30v-3,-7,0,-19,-1,-28r-38,0r0,186r41,0v4,-63,-21,-159,45,-159v62,0,27,103,36,159r41,0r0,-128","w":206},"o":{"d":"160,-93v0,37,-17,66,-53,66v-36,0,-53,-29,-53,-66v0,-37,17,-66,53,-66v36,0,53,29,53,66xm13,-93v0,57,37,98,94,98v57,0,94,-41,94,-98v0,-57,-37,-98,-94,-98v-57,0,-94,41,-94,98","w":213},"p":{"d":"114,-159v34,-1,52,33,52,66v-1,37,-15,66,-52,66v-34,0,-52,-30,-52,-66v0,-37,17,-66,52,-66xm120,-191v-27,0,-48,11,-58,30r0,-25r-39,0r0,255r41,0r0,-93v11,18,35,29,63,29v55,-2,80,-42,80,-97v0,-55,-31,-100,-87,-99","w":219},"q":{"d":"105,-27v-36,-1,-50,-30,-51,-66v-1,-34,17,-67,51,-66v36,1,52,28,52,66v0,38,-16,67,-52,66xm93,5v29,1,50,-12,63,-29r0,93r41,0r0,-255r-39,0v-1,8,2,19,-1,25v-10,-19,-30,-30,-57,-30v-56,-1,-88,43,-87,99v0,57,25,95,80,97","w":219},"r":{"d":"131,-190v-38,-6,-60,15,-71,40r0,-36r-38,0r0,186r41,0v0,-70,-14,-167,68,-150r0,-40","w":126,"k":{"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"136,-52v0,39,-86,32,-83,-8r-41,0v0,44,37,65,82,65v45,0,83,-16,83,-60v0,-38,-29,-46,-60,-55v-22,-6,-60,-5,-60,-30v0,-30,71,-24,71,6r43,0v-1,-74,-156,-79,-156,-4v0,38,28,47,60,55v23,6,61,7,61,31","w":186},"t":{"d":"112,-32v-19,3,-43,3,-37,-24r0,-100r37,0r0,-30r-37,0r0,-56r-41,0r0,56r-31,0r0,30r31,0v5,74,-29,182,78,156r0,-32","w":119},"u":{"d":"91,5v24,0,44,-17,54,-31r0,26r40,0r0,-186r-41,0v-6,63,23,161,-46,159v-60,-2,-27,-103,-35,-159r-41,0v4,83,-25,191,69,191","w":206},"v":{"d":"71,0r46,0r67,-186r-43,0r-46,143r-47,-143r-45,0","w":186,"k":{".":27,",":27}},"w":{"d":"62,0r43,0r35,-138r35,138r42,0r58,-186r-41,0r-39,139r-33,-139r-42,0r-35,139r-37,-139r-43,0","w":280,"k":{".":20,",":20}},"x":{"d":"1,0r49,0r45,-69r48,69r49,0r-71,-100r63,-86r-48,0r-40,57r-39,-57r-50,0r65,88","w":193},"y":{"d":"19,72v57,11,79,-21,94,-62r72,-196r-42,0r-48,139r-49,-139r-45,0r71,185v-6,26,-19,50,-53,38r0,35","w":186,"k":{".":33,",":33}},"z":{"d":"15,-154r96,0r-103,125r0,29r164,0r0,-32r-112,0r106,-125r0,-29r-151,0r0,32","w":180},"{":{"d":"32,-140v1,20,-17,24,-33,27r0,32v46,-3,31,58,33,100v2,40,33,55,79,50r0,-33v-24,2,-40,-1,-40,-25v0,-48,9,-107,-37,-109v47,0,37,-61,37,-108v0,-23,16,-28,40,-25r0,-32v-46,-4,-79,9,-79,49r0,74","w":106},"|":{"d":"22,77r36,0r0,-360r-36,0r0,360","w":79},"}":{"d":"74,19v2,-42,-13,-103,34,-100r0,-32v-45,1,-32,-58,-34,-101v-2,-40,-33,-53,-79,-49r0,32v24,-2,40,1,40,25v0,49,-10,109,38,109v-21,3,-38,13,-38,38v0,41,22,106,-40,95r0,33v46,4,77,-9,79,-50","w":106},"~":{"d":"38,-60v25,-61,91,22,133,-8v6,-5,13,-13,20,-23r-13,-31v-9,12,-15,24,-31,25v-33,-5,-70,-41,-104,-16v-7,6,-13,13,-18,22","w":216},"\u00a0":{"w":100}}});
Cufon.registerFont({"w":226,"face":{"font-family":"title","font-weight":750,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 4 2 2 2 2 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-13 -295 347 77","underline-thickness":"18","underline-position":"-18","stemh":"52","stemv":"61","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":113},"!":{"d":"20,0r0,-67r67,0r0,67r-67,0xm85,-257v3,66,-9,117,-17,172r-29,0v-8,-55,-20,-106,-17,-172r63,0","w":106},"\"":{"d":"22,-127r0,-130r52,0r0,130r-52,0xm106,-127r0,-130r52,0r0,130r-52,0","w":180},"#":{"d":"133,-146r-29,0r-6,40r29,0xm191,-106r0,38r-28,0r-9,68r-41,0r9,-68r-29,0r-9,68r-42,0r9,-68r-26,0r0,-38r32,0r5,-40r-26,0r0,-38r32,0r9,-67r41,0r-9,67r29,0r10,-67r41,0r-9,67r22,0r0,38r-28,0r-5,40r22,0"},"$":{"d":"107,-103v-44,-12,-98,-23,-98,-80v0,-56,51,-77,98,-79r0,-33r17,0r0,33v48,3,93,28,93,84r-67,0v1,-18,-11,-27,-26,-31r0,49v47,12,100,24,101,81v0,60,-48,82,-101,84r0,33r-17,0r0,-33v-56,-2,-105,-26,-105,-90r67,0v1,26,15,36,38,39r0,-57xm107,-165r0,-46v-14,0,-31,7,-31,24v0,12,13,17,31,22xm124,-98r0,52v16,-1,34,-8,34,-25v0,-14,-13,-21,-34,-27"},"%":{"d":"259,-66v0,14,0,40,20,40v19,0,19,-26,19,-40v0,-14,0,-40,-19,-40v-20,0,-20,26,-20,40xm217,-66v0,-39,21,-69,62,-69v42,0,61,28,61,69v0,41,-17,69,-61,69v-43,0,-62,-29,-62,-69xm27,-185v0,-39,21,-69,62,-69v42,0,61,28,61,69v0,41,-17,69,-61,69v-43,0,-62,-29,-62,-69xm129,10r-35,0r145,-271r36,0xm69,-185v0,14,0,40,20,40v19,0,19,-26,19,-40v0,-14,0,-40,-19,-40v-20,0,-20,26,-20,40","w":366},"&":{"d":"120,-168v24,-8,36,-49,2,-51v-31,2,-19,40,-2,51xm190,0r-18,-22v-52,49,-160,29,-160,-51v0,-37,28,-61,59,-75v-48,-38,-12,-114,50,-114v39,0,73,25,73,66v0,30,-18,51,-44,64r27,32v5,-8,8,-16,9,-25r53,0v-3,23,-13,45,-29,62r54,63r-74,0xm139,-63r-38,-45v-13,6,-30,19,-30,34v0,36,50,37,68,11","w":259},"(":{"d":"58,-262r52,0v-52,99,-53,225,0,325r-52,0v-60,-105,-59,-221,0,-325","w":106},")":{"d":"-3,-262r52,0v59,104,60,220,0,325r-52,0v52,-100,52,-226,0,-325","w":106},"*":{"d":"107,-180r28,37r-29,22r-27,-39r-26,39r-29,-21r29,-38r-44,-13r11,-34r42,16r0,-46r36,0r0,46r41,-16r11,34","w":159},"+":{"d":"82,-117r0,-65r52,0r0,65r65,0r0,52r-65,0r0,65r-52,0r0,-65r-65,0r0,-52r65,0","w":216},",":{"d":"23,0r0,-67r67,0r0,59v0,52,-40,68,-67,71r0,-29v20,-5,27,-15,30,-34r-30,0","w":113},"-":{"d":"129,-72r-112,0r0,-52r112,0r0,52","w":146},".":{"d":"23,0r0,-67r67,0r0,67r-67,0","w":113},"\/":{"d":"-3,5r97,-267r56,0r-97,267r-56,0","w":146},"0":{"d":"112,3v-71,0,-99,-62,-99,-129v0,-67,28,-128,99,-128v73,0,102,61,102,128v0,67,-29,129,-102,129xm113,-46v40,0,42,-47,42,-80v0,-33,-2,-78,-42,-78v-39,0,-41,45,-41,78v0,33,2,80,41,80"},"1":{"d":"98,-154r-60,0r0,-45v36,1,71,-13,74,-52r51,0r0,251r-65,0r0,-154"},"2":{"d":"210,-175v0,71,-79,81,-116,123r119,0r0,52r-201,0v-3,-63,63,-103,104,-127v20,-12,33,-25,33,-42v0,-20,-12,-32,-32,-32v-32,0,-42,24,-42,51r-57,0v-4,-62,36,-104,98,-104v50,0,94,25,94,79"},"3":{"d":"93,-111r0,-42v26,0,56,2,56,-26v0,-16,-16,-25,-36,-25v-25,0,-38,12,-38,35r-58,0v1,-56,43,-85,96,-85v44,0,94,18,94,69v1,23,-14,44,-35,50v29,8,43,28,43,58v0,57,-52,80,-102,80v-58,0,-107,-30,-103,-94r58,0v-1,30,14,45,45,45v21,0,40,-9,40,-31v0,-34,-29,-37,-60,-34"},"4":{"d":"59,-108r64,0v-1,-26,2,-57,-1,-81xm182,-108r33,0r0,52r-33,0r0,56r-61,0r0,-56r-110,0r0,-57r112,-138r59,0r0,143"},"5":{"d":"8,-78r61,0v6,48,82,38,82,-9v0,-44,-59,-55,-79,-22r-56,0r25,-142r158,0r0,52r-111,0v-2,15,-9,33,-9,46v49,-42,133,-9,133,63v0,62,-45,93,-103,93v-55,0,-97,-21,-101,-81"},"6":{"d":"153,-186v-3,-16,-14,-23,-30,-23v-34,-1,-51,38,-49,64v42,-59,140,-15,140,56v0,59,-46,92,-101,92v-74,0,-100,-63,-100,-127v0,-71,34,-130,110,-130v45,0,80,22,88,68r-58,0xm75,-85v0,22,15,39,39,39v26,0,43,-18,43,-39v0,-23,-15,-42,-43,-42v-23,0,-39,19,-39,42"},"7":{"d":"58,0v-6,-49,55,-180,84,-195r-120,0r0,-56r182,0r0,49v-30,20,-90,143,-80,202r-66,0"},"8":{"d":"114,-209v-20,0,-38,8,-38,29v0,40,75,40,76,0v0,-21,-18,-29,-38,-29xm10,-74v-1,-30,22,-53,49,-60v-24,-6,-38,-27,-38,-51v0,-50,51,-69,93,-69v43,0,93,19,93,69v1,24,-16,45,-37,52v29,6,47,27,47,59v0,55,-53,77,-103,77v-49,0,-104,-18,-104,-77xm114,-113v-22,0,-42,12,-42,36v0,25,20,35,42,35v21,0,42,-9,42,-35v0,-23,-19,-36,-42,-36"},"9":{"d":"74,-65v2,15,18,23,34,23v32,1,47,-33,45,-63v-42,58,-140,15,-140,-59v0,-53,44,-90,96,-90v73,0,105,56,105,123v0,72,-30,134,-110,134v-46,0,-78,-22,-87,-68r57,0xm111,-123v26,0,42,-19,42,-42v0,-23,-16,-39,-42,-39v-23,0,-40,18,-40,39v0,23,14,42,40,42"},":":{"d":"23,0r0,-67r67,0r0,67r-67,0xm90,-187r0,67r-67,0r0,-67r67,0","w":113},";":{"d":"90,-187r0,67r-67,0r0,-67r67,0xm23,0r0,-67r67,0r0,59v0,52,-40,68,-67,71r0,-29v20,-5,27,-15,30,-34r-30,0","w":113},"<":{"d":"199,3r-182,-69r0,-51r182,-68r0,55r-110,39r110,38r0,56","w":216},"=":{"d":"199,-72r0,51r-182,0r0,-51r182,0xm199,-162r0,52r-182,0r0,-52r182,0","w":216},">":{"d":"17,3r0,-56r110,-38r-110,-39r0,-55r182,68r0,51","w":216},"?":{"d":"66,0r0,-67r66,0r0,67r-66,0xm71,-85v-11,-66,58,-61,58,-104v0,-14,-11,-22,-24,-22v-22,0,-32,14,-31,38r-63,0v1,-57,38,-89,94,-89v45,0,90,23,90,73v0,35,-17,48,-44,65v-19,12,-24,17,-24,39r-56,0","w":206},"@":{"d":"186,-176r3,-17r34,0r-16,86v-2,6,-4,20,3,20v15,0,33,-16,33,-55v0,-58,-39,-87,-94,-87v-60,0,-98,42,-98,101v0,91,107,126,172,79r35,0v-66,102,-245,49,-245,-79v0,-76,61,-134,137,-134v63,0,125,41,125,108v0,82,-67,104,-89,104v-14,1,-20,-7,-23,-17v-29,40,-94,5,-94,-47v0,-61,75,-114,117,-62xm139,-91v42,4,71,-67,8,-67v-38,-3,-51,66,-8,67","w":288},"A":{"d":"-3,0r96,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm127,-186v-12,28,-19,61,-30,90r59,0","w":253,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":18,"T":33}},"B":{"d":"90,-205r0,49v33,-3,79,12,79,-24v0,-38,-46,-22,-79,-25xm23,0r0,-257v88,7,213,-29,213,64v0,23,-14,42,-34,52v27,8,45,32,45,61v0,106,-126,76,-224,80xm90,-113r0,59v37,-2,90,11,90,-28v0,-43,-51,-29,-90,-31","w":259},"C":{"d":"261,-165r-67,0v-4,-26,-24,-40,-52,-40v-43,0,-60,37,-60,76v0,39,17,77,60,77v32,0,49,-18,52,-48r67,0v-4,67,-53,105,-118,105v-78,0,-128,-59,-128,-134v0,-75,50,-133,128,-133v56,0,116,35,118,97","w":273},"D":{"d":"90,-199r0,141v64,3,103,-8,103,-72v0,-60,-41,-73,-103,-69xm23,0r0,-257r111,0v79,0,126,47,126,127v0,84,-48,130,-126,130r-111,0","w":273},"E":{"d":"23,0r0,-257r205,0r0,54r-138,0r0,45r126,0r0,51r-126,0r0,49r141,0r0,58r-208,0","w":246},"F":{"d":"23,0r0,-257r189,0r0,54r-122,0r0,52r106,0r0,52r-106,0r0,99r-67,0","w":219,"k":{"A":20,".":46,",":46}},"G":{"d":"260,-141r0,141r-43,0r-4,-28v-73,81,-200,3,-200,-101v0,-75,50,-133,128,-133v53,0,111,27,117,92r-67,0v-3,-22,-24,-35,-51,-35v-43,0,-60,37,-60,76v0,39,17,77,60,77v33,0,55,-16,59,-39r-47,0r0,-50r108,0","w":280},"H":{"d":"22,0r0,-257r67,0r0,94r88,0r0,-94r67,0r0,257r-67,0r0,-106r-88,0r0,106r-67,0","w":266},"I":{"d":"23,0r0,-257r67,0r0,257r-67,0","w":113},"J":{"d":"190,-257r0,176v0,58,-30,86,-90,86v-72,-1,-92,-43,-90,-107r63,0v-1,26,-1,52,26,50v15,0,24,-9,24,-34r0,-171r67,0","w":213},"K":{"d":"23,0r0,-257r67,0r0,99r85,-99r83,0r-95,101r107,156r-84,0r-69,-108r-27,29r0,79r-67,0","w":266},"L":{"d":"23,0r0,-257r67,0r0,199r120,0r0,58r-187,0","w":219,"k":{"y":20,"Y":46,"W":27,"V":40,"T":46}},"M":{"d":"23,0r0,-257r99,0r45,171r44,-171r99,0r0,257r-63,0r-1,-195r-54,195r-51,0r-55,-195r0,195r-63,0","w":333},"N":{"d":"22,0r0,-257r69,0r90,158r0,-158r63,0r0,257r-69,0r-90,-160r0,160r-63,0","w":266},"O":{"d":"80,-129v0,39,17,77,60,77v43,0,60,-38,60,-77v0,-39,-17,-76,-60,-76v-43,0,-60,37,-60,76xm13,-129v0,-75,46,-133,127,-133v81,0,127,58,127,133v0,75,-46,134,-127,134v-81,0,-127,-59,-127,-134","w":280},"P":{"d":"90,-203r0,65v37,-1,81,8,81,-32v0,-41,-43,-32,-81,-33xm23,0r0,-257v99,3,213,-25,215,83v2,86,-65,92,-148,88r0,86r-67,0","w":246,"k":{"A":27,".":46,",":46}},"Q":{"d":"133,-73r30,-32r25,25v25,-46,13,-125,-48,-125v-43,0,-60,37,-60,76v0,43,24,86,73,75xm266,-5r-31,32r-35,-35v-92,43,-187,-24,-187,-121v0,-75,46,-133,127,-133v121,0,161,148,95,227","w":280},"R":{"d":"90,-203r0,58v38,-2,88,11,87,-31v-1,-37,-51,-25,-87,-27xm186,0v-16,-35,5,-94,-45,-94r-51,0r0,94r-67,0r0,-257v94,5,221,-26,221,72v0,28,-13,55,-40,65v49,16,28,77,48,120r-66,0","w":259,"k":{"Y":13,"W":6,"V":-2,"T":6}},"S":{"d":"8,-86r67,0v1,30,20,40,49,40v20,0,41,-8,41,-27v0,-23,-37,-27,-74,-37v-36,-10,-75,-26,-75,-74v0,-107,208,-106,208,4r-67,0v1,-23,-22,-31,-42,-31v-14,0,-32,5,-32,22v0,20,37,24,74,34v37,10,75,28,75,74v0,65,-55,86,-112,86v-59,0,-112,-25,-112,-91","w":240},"T":{"d":"227,-257r0,58r-77,0r0,199r-67,0r0,-199r-77,0r0,-58r221,0","w":233,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,"A":33,";":31,":":31,".":40,"-":46,",":40}},"U":{"d":"245,-257r0,151v0,75,-34,111,-112,111v-78,0,-112,-36,-112,-111r0,-151r67,0r0,155v0,33,12,50,45,50v33,0,45,-17,45,-50r0,-155r67,0","w":266},"V":{"d":"237,-257r-83,257r-77,0r-81,-257r70,0r51,191r50,-191r70,0","w":233,"k":{"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,"A":18,";":18,":":18,".":46,"-":20,",":46}},"W":{"d":"347,-257r-71,257r-67,0r-36,-177r-35,177r-69,0r-69,-257r67,0r37,188r38,-188r63,0r38,188r37,-188r67,0","w":346,"k":{"y":6,"u":13,"r":13,"o":13,"i":6,"e":13,"a":20,"A":13,";":5,":":13,".":33,"-":6,",":33}},"X":{"d":"-3,0r92,-135r-84,-122r79,0r43,80r45,-80r77,0r-83,122r90,135r-81,0r-48,-86r-53,86r-77,0","w":253},"Y":{"d":"247,-257r-93,161r0,96r-67,0r0,-96r-94,-161r76,0r51,104r51,-104r76,0","w":240,"k":{"v":20,"u":27,"q":33,"p":27,"o":33,"i":5,"e":33,"a":33,"A":27,";":24,":":24,".":40,"-":40,",":40}},"Z":{"d":"9,0r0,-55r131,-144r-123,0r0,-58r210,0r0,52r-135,147r139,0r0,58r-222,0","w":240},"[":{"d":"25,63r0,-325r106,0r0,51r-49,0r0,222r49,0r0,52r-106,0","w":133},"\\":{"d":"53,-262r97,267r-56,0r-97,-267r56,0","w":146},"]":{"d":"108,-262r0,325r-105,0r0,-52r48,0r0,-222r-48,0r0,-51r105,0","w":133},"^":{"d":"74,-120r-57,0r58,-131r66,0r58,131r-58,0r-33,-85","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"18,-129v1,-46,43,-64,89,-63v44,0,87,9,87,62v0,46,-6,93,7,130r-62,0v-3,-6,-2,-12,-3,-18v-36,38,-126,33,-126,-33v0,-60,67,-55,109,-65v10,-2,16,-5,16,-17v0,-30,-60,-25,-60,4r-57,0xm135,-87v-18,10,-63,4,-63,33v0,15,11,22,25,22v29,0,39,-16,38,-55","w":213},"b":{"d":"117,-145v-16,0,-37,11,-37,50v0,33,9,54,37,54v48,-1,51,-103,0,-104xm21,0r0,-257r61,0r0,91v13,-17,31,-26,54,-26v53,0,79,45,79,94v0,53,-25,103,-84,103v-23,1,-38,-11,-52,-27r0,22r-58,0"},"c":{"d":"202,-118r-60,0v0,-16,-15,-27,-30,-27v-57,0,-51,102,-3,104v22,0,32,-12,35,-32r59,0v-6,50,-44,78,-94,78v-56,0,-97,-37,-97,-95v0,-59,37,-102,97,-102v47,0,88,25,93,74","w":213},"d":{"d":"206,-257r0,257r-59,0r0,-22v-12,18,-30,27,-52,27v-59,0,-83,-50,-83,-103v0,-49,25,-94,78,-94v23,0,41,8,54,25r0,-90r62,0xm110,-145v-53,1,-49,103,0,104v53,-1,49,-105,0,-104"},"e":{"d":"210,-78r-137,0v-4,44,60,57,76,21r58,0v-12,43,-51,62,-93,62v-61,0,-102,-36,-102,-99v0,-57,45,-98,100,-98v67,0,101,51,98,114xm73,-113r76,0v-1,-21,-16,-38,-37,-38v-22,0,-35,15,-39,38","w":219},"f":{"d":"34,0r0,-147r-30,0r0,-40r30,0v-4,-66,39,-74,100,-69r0,43v-22,-3,-43,-3,-39,26r37,0r0,40r-37,0r0,147r-61,0","w":133,"k":{"f":6}},"g":{"d":"77,6v4,16,13,20,33,20v35,0,34,-33,31,-61v-11,17,-29,27,-49,27v-57,0,-82,-40,-82,-93v0,-75,92,-125,133,-62r0,-24r58,0r0,164v0,30,-6,89,-93,89v-43,0,-85,-10,-92,-60r61,0xm143,-98v0,-24,-9,-47,-36,-47v-49,0,-49,90,-1,90v26,0,37,-20,37,-43","w":219},"h":{"d":"21,0r0,-257r61,0r0,96v10,-19,35,-31,57,-31v62,0,68,45,68,72r0,120r-62,0r0,-109v0,-18,-6,-33,-30,-33v-55,0,-26,90,-33,142r-61,0"},"i":{"d":"84,-257r0,47r-61,0r0,-47r61,0xm23,0r0,-187r61,0r0,187r-61,0","w":106},"j":{"d":"84,-257r0,47r-61,0r0,-47r61,0xm84,-187r0,187v3,60,-36,66,-93,63r0,-50v17,0,32,1,32,-17r0,-183r61,0","w":106},"k":{"d":"21,0r0,-257r61,0r0,132r56,-62r70,0r-68,71r77,116r-74,0r-45,-75r-16,15r0,60r-61,0","w":213},"l":{"d":"23,0r0,-257r61,0r0,257r-61,0","w":106},"m":{"d":"21,0r0,-187r59,0v1,8,-2,20,1,26v19,-39,88,-44,108,-1v15,-20,32,-30,58,-30v100,0,56,108,66,192r-61,0r0,-110v0,-20,-10,-32,-26,-32v-26,0,-29,21,-29,51r0,91r-61,0r0,-106v0,-22,-6,-36,-23,-36v-47,0,-27,95,-31,142r-61,0","w":333},"n":{"d":"21,0r0,-187r59,0v1,8,-2,20,1,26v12,-19,36,-31,58,-31v62,0,68,45,68,72r0,120r-62,0r0,-109v0,-18,-6,-33,-30,-33v-55,0,-26,90,-33,142r-61,0"},"o":{"d":"12,-93v0,-56,40,-99,98,-99v58,0,98,43,98,99v0,56,-40,98,-98,98v-58,0,-98,-42,-98,-98xm110,-145v-51,2,-51,102,0,104v52,-2,51,-102,0,-104","w":219},"p":{"d":"21,63r0,-250r58,0v1,7,-2,17,1,22v12,-18,29,-27,51,-27v59,0,84,50,84,103v0,49,-26,94,-79,94v-23,0,-41,-8,-54,-25r0,83r-61,0xm117,-145v-16,0,-37,11,-37,50v0,33,9,54,37,54v48,-1,51,-103,0,-104"},"q":{"d":"206,-187r0,250r-62,0r0,-84v-13,17,-31,26,-54,26v-53,0,-78,-45,-78,-94v0,-53,24,-103,83,-103v22,0,40,9,52,27r0,-22r59,0xm110,-145v-50,1,-52,103,-1,104v16,0,38,-12,38,-51v0,-25,-8,-53,-37,-53"},"r":{"d":"23,0r0,-187r59,0v1,10,-2,25,1,33v11,-28,36,-40,70,-35r0,56v-34,-14,-69,9,-69,40r0,93r-61,0","w":153,"k":{"q":6,"o":6,"g":6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"128,-132v0,-16,-13,-20,-28,-21v-10,0,-26,1,-26,14v0,17,41,21,69,27v37,8,48,36,48,51v0,50,-48,66,-90,66v-45,0,-89,-15,-91,-67r58,0v-2,33,62,39,62,8v0,-15,-20,-17,-30,-20v-39,-10,-87,-11,-87,-61v0,-45,48,-57,85,-57v41,0,84,11,86,60r-56,0","w":200},"t":{"d":"133,-187r0,40r-38,0r0,85v-1,21,20,18,38,17r0,45v-58,6,-99,1,-99,-64r0,-83r-31,0r0,-40r31,0r0,-56r61,0r0,56r38,0","w":140},"u":{"d":"206,-187r0,187r-59,0v-1,-8,2,-20,-1,-26v-12,19,-35,31,-57,31v-96,3,-63,-108,-69,-192r61,0r0,109v0,25,11,33,31,33v13,0,33,-9,33,-42r0,-100r61,0"},"v":{"d":"194,-187r-62,187r-71,0r-62,-187r64,0r35,124r34,-124r62,0","w":193,"k":{".":27,",":27}},"w":{"d":"300,-187r-58,187r-62,0r-31,-124r-29,124r-62,0r-58,-187r62,0r32,121r27,-121r58,0r28,121r31,-121r62,0","w":299,"k":{".":20,",":20}},"x":{"d":"-3,0r65,-98r-59,-89r68,0r26,45r26,-45r65,0r-58,88r66,99r-68,0r-32,-54r-31,54r-68,0","w":193},"y":{"d":"196,-187r-74,204v-16,51,-52,46,-107,46r0,-50v23,1,47,0,46,-21v-15,-63,-44,-120,-64,-179r65,0r36,122r36,-122r62,0","w":193,"k":{".":33,",":33}},"z":{"d":"8,0r0,-48r93,-92r-86,0r0,-47r164,0r0,47r-93,93r100,0r0,47r-178,0","w":193},"{":{"d":"128,-262r0,43v-48,-9,-34,41,-34,82v0,29,-28,32,-41,36v15,1,41,4,41,38v0,35,-21,88,34,82r0,44v-51,1,-90,4,-91,-54r0,-62v0,-23,-23,-25,-32,-25r0,-43v9,0,32,-2,32,-22r0,-68v1,-57,41,-52,91,-51","w":133},"|":{"d":"14,77r0,-360r52,0r0,360r-52,0","w":79},"}":{"d":"5,63r0,-44v48,9,34,-41,34,-82v0,-35,28,-35,41,-39v-15,-1,-41,-7,-41,-35v0,-35,21,-88,-34,-82r0,-43v50,0,91,-7,91,51r0,68v0,20,23,22,32,22r0,43v-9,0,-32,2,-32,25r0,62v-1,58,-39,56,-91,54","w":133},"~":{"d":"70,-129v25,0,56,23,77,24v15,0,22,-13,31,-26r13,47v-10,15,-23,31,-45,31v-35,0,-90,-51,-108,2r-13,-47v8,-15,21,-31,45,-31","w":216},"'":{"d":"27,-127r0,-130r52,0r0,130r-52,0","w":106},"`":{"d":"52,-261r35,54r-43,0r-57,-54r65,0","w":106},"\u00a0":{"w":113}}});

		Cufon.replace('h1');
		Cufon.replace('h2');
		Cufon.replace('h3');
		Cufon.replace('h4');
		Cufon.replace('h5');
		Cufon.replace('h6');
