(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}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);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",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;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);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 this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},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;}if(value.constructor==Number)value+='';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=jQuery.makeArray(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[0]?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===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&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.fn.init.prototype=jQuery.fn;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);}function now(){return+new Date;}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==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};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&&/^[\s[]?function/.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.insertBefore(script,head.firstChild);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){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var 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,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;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":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(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 left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}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+='';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 notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}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){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;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))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)ret[ret.length]=value;}return ret.concat.apply([],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,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});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");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}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,re=quickChild,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=[],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&&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)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});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({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&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,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.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;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},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;event.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;event.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){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,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){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;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.call(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:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._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=now();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:{url:location.href,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){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="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&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){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 xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);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(jQuery.isFunction(a[j])?a[j]():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.apply(this,arguments):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),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(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.call(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){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",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].call(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:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(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.call(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=now();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=now();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)this.options.complete.call(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.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},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),css=jQuery.curCSS,fixed=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&&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(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&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,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;(function(){var $$;$$=jQuery.fn.flash=function(htmlOptions,pluginOptions,replace,update){var block=replace||$$.replace;pluginOptions=$$.copy($$.pluginOptions,pluginOptions);if(!$$.hasFlash(pluginOptions.version)){if(pluginOptions.expressInstall&&$$.hasFlash(6,0,65)){var expressInstallOptions={flashvars:{MMredirectURL:location,MMplayerType:'PlugIn',MMdoctitle:jQuery('title').text()}};}else if(pluginOptions.update){block=update||$$.update;}else{return this;}}
htmlOptions=$$.copy($$.htmlOptions,expressInstallOptions,htmlOptions);return this.each(function(){block.call(this,$$.copy(htmlOptions));});};$$.copy=function(){var options={},flashvars={};for(var i=0;i<arguments.length;i++){var arg=arguments[i];if(arg==undefined)continue;jQuery.extend(options,arg);if(arg.flashvars==undefined)continue;jQuery.extend(flashvars,arg.flashvars);}
options.flashvars=flashvars;return options;};$$.hasFlash=function(){if(/hasFlash\=true/.test(location))return true;if(/hasFlash\=false/.test(location))return false;var pv=$$.hasFlash.playerVersion().match(/\d+/g);var rv=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String($$.pluginOptions.version).match(/\d+/g);for(var i=0;i<3;i++){pv[i]=parseInt(pv[i]||0);rv[i]=parseInt(rv[i]||0);if(pv[i]<rv[i])return false;if(pv[i]>rv[i])return true;}
return true;};$$.hasFlash.playerVersion=function(){try{try{var axo=new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6');try{axo.AllowScriptAccess='always';}
catch(e){return'6,0,0';}}catch(e){}
return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g,',').match(/^,?(.+),?$/)[1];}catch(e){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1];}}catch(e){}}
return'0,0,0';};$$.htmlOptions={height:240,flashvars:{},pluginspage:'http://www.adobe.com/go/getflashplayer',src:'#',type:'application/x-shockwave-flash',width:320};$$.pluginOptions={expressInstall:false,update:true,version:'6.0.65'};$$.replace=function(htmlOptions){this.innerHTML='<div class="alt">'+this.innerHTML+'</div>';jQuery(this).addClass('flash-replaced').prepend($$.transform(htmlOptions));};$$.update=function(htmlOptions){var url=String(location).split('?');url.splice(1,0,'?hasFlash=true&');url=url.join('');var msg='<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+url+'">Click here.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+'</span>';jQuery(this).addClass('flash-update').prepend(msg);};function toAttributeString(){var s='';for(var key in this)
if(typeof this[key]!='function')
s+=key+'="'+this[key]+'" ';return s;};function toFlashvarsString(){var s='';for(var key in this)
if(typeof this[key]!='function')
s+=key+'='+encodeURIComponent(this[key])+'&';return s.replace(/&$/,'');};$$.transform=function(htmlOptions){htmlOptions.toString=toAttributeString;if(htmlOptions.flashvars)htmlOptions.flashvars.toString=toFlashvarsString;return'<embed '+String(htmlOptions)+'/>';};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};});}})();;(function($){var m=$.scrollTo=function(b,h,f){$(window).scrollTo(b,h,f)};m.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1};m.window=function(b){return $(window).scrollable()};$.fn.scrollable=function(){return this.map(function(){var b=this,h=!b.nodeName||$.inArray(b.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!h)return b;var f=(b.contentWindow||b).document||b.ownerDocument||b;return $.browser.safari||f.compatMode=='BackCompat'?f.body:f.documentElement})};$.fn.scrollTo=function(l,j,a){if(typeof j=='object'){a=j;j=0}if(typeof a=='function')a={onAfter:a};if(l=='max')l=9e9;a=$.extend({},m.defaults,a);j=j||a.speed||a.duration;a.queue=a.queue&&a.axis.length>1;if(a.queue)j/=2;a.offset=n(a.offset);a.over=n(a.over);return this.scrollable().each(function(){var k=this,o=$(k),d=l,p,g={},q=o.is('html,body');switch(typeof d){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px)?$/.test(d)){d=n(d);break}d=$(d,this);case'object':if(d.is||d.style)p=(d=$(d)).offset()}$.each(a.axis.split(''),function(b,h){var f=h=='x'?'Left':'Top',i=f.toLowerCase(),c='scroll'+f,r=k[c],s=h=='x'?'Width':'Height';if(p){g[c]=p[i]+(q?0:r-o.offset()[i]);if(a.margin){g[c]-=parseInt(d.css('margin'+f))||0;g[c]-=parseInt(d.css('border'+f+'Width'))||0}g[c]+=a.offset[i]||0;if(a.over[i])g[c]+=d[s.toLowerCase()]()*a.over[i]}else g[c]=d[i];if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],u(s));if(!b&&a.queue){if(r!=g[c])t(a.onAfterFirst);delete g[c]}});t(a.onAfter);function t(b){o.animate(g,j,a.easing,b&&function(){b.call(this,l,a)})};function u(b){var h='scroll'+b;if(!q)return k[h];var f='client'+b,i=k.ownerDocument.documentElement,c=k.ownerDocument.body;return Math.max(i[h],c[h])-Math.min(i[f],c[f])}}).end()};function n(b){return typeof b=='object'?b:{top:b,left:b}}})(jQuery);;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);;(function(a){var b=a.serialScroll=function(c){return a(window).serialScroll(c)};b.defaults={duration:1e3,axis:"x",event:"click",start:0,step:1,lock:!0,cycle:!0,constant:!0};a.fn.serialScroll=function(c){return this.each(function(){var t=a.extend({},b.defaults,c),s=t.event,i=t.step,r=t.lazy,e=t.target?this:document,u=a(t.target||this,e),p=u[0],m=t.items,h=t.start,g=t.interval,k=t.navigation,l;if(!r){m=d()}if(t.force){f({},h)}a(t.prev||[],e).bind(s,-i,q);a(t.next||[],e).bind(s,i,q);if(!p.ssbound){u.bind("prev.serialScroll",-i,q).bind("next.serialScroll",i,q).bind("goto.serialScroll",f)}if(g){u.bind("start.serialScroll",function(v){if(!g){o();g=!0;n()}}).bind("stop.serialScroll",function(){o();g=!1})}u.bind("notify.serialScroll",function(x,w){var v=j(w);if(v>-1){h=v}});p.ssbound=!0;if(t.jump){(r?u:d()).bind(s,function(v){f(v,j(v.target))})}if(k){k=a(k,e).bind(s,function(v){v.data=Math.round(d().length/k.length)*k.index(this);f(v,this)})}function q(v){v.data+=h;f(v,this)}function f(B,z){if(!isNaN(z)){B.data=z;z=p}var C=B.data,v,D=B.type,A=t.exclude?d().slice(0,-t.exclude):d(),y=A.length,w=A[C],x=t.duration;if(D){B.preventDefault()}if(g){o();l=setTimeout(n,t.interval)}if(!w){v=C<0?0:y-1;if(h!=v){C=v}else{if(!t.cycle){return}else{C=y-v-1}}w=A[C]}if(!w||t.lock&&u.is(":animated")||D&&t.onBefore&&t.onBefore(B,w,u,d(),C)===!1){return}if(t.stop){u.queue("fx",[]).stop()}if(t.constant){x=Math.abs(x/i*(h-C))}u.scrollTo(w,x,t).trigger("notify.serialScroll",[C])}function n(){u.trigger("next.serialScroll")}function o(){clearTimeout(l)}function d(){return a(m,p)}function j(w){if(!isNaN(w)){return w}var x=d(),v;while((v=x.index(w))==-1&&w!=p){w=w.parentNode}return v}})}})(jQuery);var showLightbox=function(box){if(typeof box=='string'){box=document.getElementById(box);}
if(!document.getElementById('lightboxOverlay')){var LBoverlay=document.createElement('div');LBoverlay.id='lightboxOverlay';LBoverlay.className='lightboxAsset';document.body.appendChild(LBoverlay);var LBdiv=document.createElement('div');LBdiv.id='lightboxActual';LBdiv.className='lightboxAsset';document.body.appendChild(LBdiv);}
var LBactual=document.getElementById('lightboxActual');var lightBox=jQuery(LBactual);lightBox.css({'position':'absolute','top':'0','left':'-2000px','display':'block'});;var closeImg='<img id=\'lightboxClose\' src=\'/v4_shared/i/lightbox/close.png\' onclick=\'closeLightbox()\' />';if(jQuery(box).hasClass('lighboxNoCloseButton')){closeImg='';}
jQuery('#lightboxOverlay').click(function(){if(!jQuery(box).hasClass('lighboxNoCloseButton')){closeLightbox();}}).css({'position':'absolute','display':'block','top':'0px','left':'0px','width':'100%','height':jQuery(document).height()+document.body.scrollTop+'px','opacity':0,'background-color':'#000','z-index':'999999'}).fadeTo(600,0.6);if(jQuery.browser.msie){LBactual.innerHTML=closeImg+'<table id="lightboxShadowTable" style="position: static; width: 0" cellpadding="0" cellspacing="0" border="0"><tr><td  style="background:transparent url(/v4_shared/i/lightbox/shadow_topleft.png); " height="19"   >&nbsp;</td><td  style="background:transparent url(/v4_shared/i/lightbox/shadow_topcenter.png) repeat-x; " >&nbsp;</td><td style="background:transparent url(/v4_shared/i/lightbox/shadow_topright.png) no-repeat; "><img src="/v4_shared/i/lightbox/shadow_topright.png" width="21" height="19"/></td></tr><tr><td width="21" style="background:transparent url(/v4_shared/i/lightbox/shadow_middleleft.png) repeat-y; "><img src="/v4_shared/i/lightbox/shadow_middleleft.png" alt=""></td><td valign="top" style="background:#ffffff; padding: 0">'+box.innerHTML+'</td><td width="21"style="background:transparent url(/v4_shared/i/lightbox/shadow_middleright.png); " >&nbsp;</td></tr><tr><td width="21" height="20" style="background:transparent url(/v4_shared/i/lightbox/shadow_bottomleft.png); ">&nbsp;</td><td style="background:transparent url(/v4_shared/i/lightbox/shadow_bottomcenter.png) repeat-x;"  >&nbsp;</td><td style="width:21px; height:20px; background:transparent url(/v4_shared/i/lightbox/shadow_bottomright.png);">&nbsp;</td></tr></table>';jQuery('#lightboxClose').css({'right':'-1px','top':'-1px'});}else{lightBox.css({'-moz-box-shadow':'0px 2px 10px #000','-webkit-box-shadow':'0px 2px 10px #000','box-shadow':'0px 2px 0px #000','padding':'10px 16px'});lightBox.css({'background-color':'#f8f8f8','-moz-border-radius':'5px','-webkit-border-radius':'5px','border-radius':'5px'});LBactual.innerHTML=closeImg+box.innerHTML;jQuery('#lightboxClose').css({'right':'-12px','top':'-13px'});}
if(typeof Cufon!='undefined'){Cufon.refresh();}
var pageScroll=document.body.scrollTop||document.documentElement.scrollTop;jQuery('#lightboxClose').css({'position':'absolute','cursor':'pointer','z-index':'999999999'});var leftPos=((jQuery('#lightboxOverlay').width()/2)-(lightBox.width()/2));lightBox.css({'position':'absolute','top':(50+pageScroll)+'px','left':leftPos+'px','z-index':'99999999','color':'#606060'}).fadeIn();$('table td',lightBox).css({'padding':'0'})};var closeLightbox=function(){jQuery('.lightboxAsset').each(function(){jQuery('embed,object',this).remove();jQuery(this).fadeOut(300);});jQuery('select').css({'visibility':'visible'});};jQuery('.triggerLightbox').click(function(e){e.preventDefault();showLightbox(this.getAttribute('rel'));})
jQuery(document).ready(function(){jQuery('.helpBubble').click(function(){var fhb=document.getElementById('floatingHelpBubble');if(fhb&&jQuery(fhb).is(':visible'))
jQuery(fhb).fadeOut(200);else{var helpIcon=this;if(!fhb){fhb=document.createElement('div');fhb.id='floatingHelpBubble';document.body.appendChild(fhb);}
var helpTxt=helpIcon.getAttribute('longdesc');fhb.innerHTML='<span style="color:#fff;">'+helpTxt+'</span>';var targetOffset=jQuery(helpIcon).offset();jQuery(fhb).css({'display':'none','background':'transparent url(/v4_shared/i/help_bubble/background.png) no-repeat bottom left','border-top':'1px #666 solid','padding':'5px 10px 18px 10px','font-size':'11px','line-height':'13px','color':'#000','width':'161px','position':'absolute','cursor':'pointer','opacity':'0.9'});jQuery(fhb).css({'top':(targetOffset.top-jQuery(fhb).height()-25)+'px','left':(targetOffset.left-156)+'px'}).hide().fadeIn(200);jQuery(document).one('click',function(){jQuery(fhb).fadeOut(200);});}
return false});});var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerFont({"w":125,"face":{"font-family":"verveine regular","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 0 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"2","cap-height":"6","bbox":"-18.8517 -275.487 253 139.036","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":90},"!":{"d":"58,-34v1,9,-3,14,-11,13v-18,-3,-20,-15,-20,-33v1,-57,23,-121,29,-165v4,-13,33,-5,33,6v1,31,-34,137,-31,179xm37,-9v20,0,25,34,3,34v-23,-6,-28,-30,-3,-34","w":96},"\"":{"d":"45,-124v-7,2,-14,-2,-13,-11v2,-30,13,-67,10,-101v-1,-8,12,-9,22,-8v21,18,2,59,0,85v-3,22,-9,33,-19,35xm103,-124v-7,2,-14,-2,-13,-11v2,-30,13,-67,10,-101v-1,-8,12,-9,22,-8v21,18,2,59,0,85v-3,22,-9,33,-19,35","w":142},"#":{"d":"94,-27v-5,28,-4,62,-13,81v-41,9,-19,-45,-17,-77v0,-1,1,-2,1,-3v-12,-1,-24,2,-37,3v-12,-8,-9,-39,14,-32v7,-1,16,-3,27,-3r13,-57v-18,-2,-33,1,-49,3v-10,-14,-6,-38,19,-33v13,-2,23,-2,38,-2v7,-23,6,-54,19,-72v12,-6,27,2,24,15r-13,57r46,2v7,-24,7,-55,20,-73v10,-8,26,3,23,14r-14,61v18,2,45,-5,44,17v-1,23,-31,13,-51,13r-11,58v19,3,51,-9,51,16v0,26,-33,12,-57,13v-6,26,-5,58,-14,81v-18,9,-30,-3,-25,-28v3,-17,7,-34,8,-54v-15,0,-31,-2,-46,0xm101,-59r46,1r12,-56r-47,-2","w":258},"$":{"d":"23,-17v0,-18,30,-4,45,-9v3,-12,9,-47,0,-56v-20,-17,-55,-30,-48,-66v5,-26,36,-38,64,-44v11,-10,0,-44,22,-42v24,2,6,29,10,42v11,7,44,27,17,36v-8,3,-13,-8,-19,-7v-9,13,-5,47,-9,67v13,15,52,16,53,44v-8,30,-29,40,-58,49v0,23,10,61,-14,65v-25,-2,-14,-38,-18,-62v-12,-8,-45,1,-45,-17xm76,-109v2,-18,9,-38,8,-54v-43,2,-36,43,-8,54xm104,-65v-4,6,-4,26,-3,37v8,-5,23,-8,23,-21v-3,-7,-11,-14,-20,-16","w":177},"%":{"d":"101,-50v26,-50,36,-190,88,-162v-36,78,-57,169,-86,253v-31,18,-30,-10,-19,-32v3,-19,12,-40,17,-59xm32,-204v12,-10,18,-27,41,-26v27,1,42,20,39,51v-5,49,-73,92,-91,27v-5,-19,-6,-49,11,-52xm84,-190v3,-32,-24,-18,-30,-4v-13,8,-16,42,1,49v17,-6,27,-23,29,-45xm198,44v-47,4,-46,-81,-10,-90v8,11,20,8,33,4v16,4,31,13,32,32v-7,30,-26,51,-55,54xm229,-12v-17,-19,-60,17,-34,29v15,-4,32,-12,34,-29","w":264},"&":{"d":"156,-1v6,6,-3,16,-12,11v-20,-5,-24,-17,-39,-29v-16,15,-34,39,-64,34v-51,-9,-8,-78,9,-97v-28,-40,-27,-130,40,-125v40,23,0,92,-15,122v6,11,21,20,29,30v7,-11,10,-23,12,-37v-1,-6,-13,-5,-13,-13v5,-14,32,-12,51,-12v12,0,19,4,22,13v-3,11,-22,10,-32,14v-4,21,-12,37,-23,52v12,11,24,25,35,37xm82,-176v-24,-10,-28,25,-24,53v1,6,3,12,5,18v6,-21,24,-44,19,-71xm51,-10v18,-2,25,-16,35,-27v-3,-10,-15,-17,-21,-24v-7,14,-26,34,-14,51","w":177},"'":{"d":"45,-124v-7,2,-14,-2,-13,-11v2,-30,13,-67,10,-101v-1,-8,12,-9,22,-8v21,18,2,59,0,85v-3,22,-9,33,-19,35","w":84},"(":{"d":"113,-226v-40,83,-62,119,-62,197v0,37,8,66,36,77v10,2,15,18,1,16v-78,-8,-75,-107,-52,-182v12,-15,22,-130,72,-114v3,2,5,4,5,6","w":118},")":{"d":"30,68v-8,6,-29,-2,-25,-15v74,-71,77,-194,25,-284v-1,-6,10,-11,15,-11v52,28,56,113,47,193v-5,41,-26,80,-62,117","w":118},"*":{"d":"82,-230v6,-14,26,-40,44,-19v-8,16,-20,27,-30,41v16,18,42,25,50,50v-16,32,-45,-10,-61,-19v-12,22,18,76,-13,84v-22,-4,-16,-37,-17,-63v-6,18,-30,16,-29,-7v6,-16,19,-27,29,-40v-12,-14,-42,-15,-37,-43v15,-12,27,6,38,12v-7,-23,8,-53,27,-32v2,11,-2,22,-1,36","w":155},"+":{"d":"91,-88v-30,-4,-70,9,-73,-19v6,-24,53,-6,74,-11v6,-27,-19,-66,16,-68v19,6,8,43,14,67r64,-5v13,5,13,34,-8,30v-20,0,-38,3,-56,5r-4,72v-6,11,-29,11,-29,-3v0,-22,4,-47,2,-68","w":217},",":{"d":"38,55v-22,14,-39,-12,-22,-33v7,-23,17,-52,19,-76v2,-15,35,-16,33,3v-5,46,-16,74,-30,106","w":88},"-":{"d":"55,-76v-22,5,-53,8,-39,-24v28,-9,66,-8,101,-12v18,-2,18,23,9,31","w":143},".":{"d":"52,-40v17,3,14,34,-5,30v-15,1,-30,-28,-9,-31","w":95},"\/":{"d":"60,-9v-11,19,-29,73,-56,38v45,-105,122,-186,184,-275v13,-10,37,6,25,22r-62,82","w":207},"0":{"d":"74,-176v84,11,52,175,-22,175v-29,0,-45,-33,-44,-67v2,-46,16,-114,66,-108xm55,-26v34,-22,56,-83,25,-120v-3,-2,-6,-3,-8,-3v-33,22,-49,92,-17,123","w":134},"1":{"d":"58,-160r-4,172v0,5,-2,7,-6,7v-37,2,-29,-28,-29,-57v0,-51,3,-103,3,-153v0,-7,9,-11,16,-11v13,0,21,14,20,42","w":84},"2":{"d":"116,-1v-8,24,-55,15,-88,15v-15,0,-24,-5,-28,-15v25,-55,58,-102,76,-163v0,-10,-3,-15,-8,-15v-11,7,-28,30,-18,47v0,4,-5,11,-10,10v-2,0,-26,-14,-24,-26v5,-31,29,-56,62,-59v19,-2,25,19,25,37v0,59,-43,106,-62,152v30,3,73,-9,75,17"},"3":{"d":"103,-196v6,30,-39,61,-47,79v51,-1,69,50,49,94v-17,36,-35,65,-62,95v-14,16,-34,17,-42,-1v-3,-15,32,-27,34,-33v31,-38,51,-57,46,-114v-2,-25,-34,-9,-54,-6v-2,-6,-26,-13,-15,-27r53,-69v-24,1,-57,19,-56,-18v21,-5,47,-13,70,-14v15,0,22,5,24,14","w":124},"4":{"d":"70,-7v-26,-2,-89,25,-66,-23r80,-166v10,-18,34,-8,28,15v1,43,-16,97,-10,137v19,0,32,4,29,19v-2,6,-13,6,-22,6v-23,4,-9,78,-14,99v0,5,-3,7,-9,8v-39,-4,-5,-60,-16,-95xm41,-33v8,0,22,-6,29,-7r2,-61v-11,21,-25,43,-31,68","w":141},"5":{"d":"63,84v-11,13,-33,4,-34,-11v0,-14,20,-15,22,-24v20,-33,29,-75,13,-112v-8,-17,-57,-5,-55,-26v1,-27,12,-65,31,-113v9,-14,24,3,32,5v19,-2,63,-24,60,9v-10,12,-64,21,-76,28v-9,23,-14,42,-16,57v48,17,61,29,61,80v0,44,-14,78,-38,107"},"6":{"d":"55,4v-34,-2,-56,-41,-44,-85v20,-69,40,-136,97,-163v5,-2,28,17,13,24v-42,20,-55,58,-76,114v5,0,21,-10,27,-9v65,15,37,111,-17,119xm71,-89v-6,1,-23,17,-28,4v-12,12,-6,53,4,61v24,-4,48,-47,24,-65","w":129},"7":{"d":"73,62v-41,4,-16,-70,-13,-104v-13,-3,-25,3,-36,5v-2,-5,-26,-15,-12,-23v7,-11,44,-10,52,-15r12,-90v-20,-2,-38,6,-54,12v0,-3,-22,-13,-15,-23v22,-14,59,-17,88,-24v7,0,11,3,14,8v1,35,-20,82,-13,117v19,-10,47,8,21,22r-26,8v-8,27,-6,86,-18,107","w":135},"8":{"d":"109,-45v0,38,-22,66,-63,66v-37,0,-50,-35,-33,-71v14,-29,38,-52,45,-86v-2,-36,-27,-102,22,-94v30,-17,58,12,40,45r-31,58v8,22,20,53,20,82xm81,-169v9,-9,12,-29,-1,-32v-10,2,-5,29,1,32xm45,-1v34,-9,48,-57,25,-93v-12,19,-38,49,-39,71v0,7,5,21,14,22","w":136},"9":{"d":"8,41v-1,-9,16,-3,18,-3v48,-15,60,-88,60,-147v-6,6,-10,11,-11,17v-24,19,-71,7,-68,-31v2,-31,28,-86,68,-78v7,5,14,12,27,11v36,77,6,204,-43,246v-19,11,-49,0,-51,-15xm40,-106v23,-8,45,-45,41,-68v-6,4,-17,-7,-17,4v-9,5,-37,40,-24,64","w":131},":":{"d":"47,-134v16,3,15,30,-5,30v-14,0,-31,-26,-9,-31v8,1,13,1,14,1xm43,-42v14,2,14,34,-5,30v-18,1,-31,-34,-3,-31","w":72},";":{"d":"69,-134v16,2,15,34,-4,30v-16,1,-30,-28,-9,-31xm45,55v-22,14,-39,-11,-23,-33v7,-22,18,-51,19,-76v1,-16,37,-15,34,3v-6,36,-15,79,-30,106","w":108},"<":{"d":"103,-15v-7,26,-39,1,-42,-10v-17,-21,-40,-39,-49,-67v0,-6,2,-12,7,-17v40,-34,54,-52,80,-60v10,1,7,21,2,26v-20,22,-40,40,-59,52v0,7,65,63,61,76","w":120},"=":{"d":"20,-98v-12,-1,-12,-25,-3,-29v36,-10,78,-13,121,-16v18,-1,20,22,10,31v-45,3,-88,6,-128,14xm62,-36v-26,3,-61,15,-48,-22v38,-10,77,-12,124,-16v19,-2,19,21,10,30v-25,1,-57,5,-86,8","w":164},">":{"d":"15,-143v-6,-7,-7,-35,10,-24v20,13,50,41,71,58v24,42,-39,67,-52,99v-10,11,-29,9,-31,-5v-2,-13,61,-69,60,-76v-19,-12,-37,-31,-58,-52","w":114},"?":{"d":"62,-207v39,-30,82,21,61,71v-15,37,-46,68,-61,105v-5,12,-27,17,-32,5v-1,-35,68,-114,68,-149v0,-14,-15,-18,-23,-5v-7,11,-18,17,-22,40v-4,20,-34,10,-32,-9v2,-27,20,-42,41,-58xm55,26v-4,22,-36,18,-37,-7v4,-17,38,-9,37,7","w":136},"@":{"d":"121,16v-17,0,-29,-16,-34,-29v-11,16,-30,35,-55,20v-20,-12,-7,-38,2,-60v9,-12,36,-60,61,-61v10,2,23,4,24,16v1,26,-15,70,2,85v34,-24,59,-165,-5,-173v-32,-4,-47,33,-71,43v-7,0,-10,-1,-10,-6v16,-37,53,-66,77,-64v36,2,72,49,69,99v-4,56,-14,120,-60,130xm59,-21v12,-2,34,-31,28,-52v-10,1,-50,40,-28,52","w":200},"A":{"d":"123,-80v6,32,37,74,7,90v-27,-2,-24,-55,-35,-74v-25,2,-49,1,-51,27v-9,20,-4,73,-30,67v-34,-8,11,-68,8,-85v1,-4,-10,-11,-10,-13v-2,-8,15,-6,16,-11r41,-132v1,-3,4,-5,9,-5v23,4,22,34,26,59v4,28,15,54,19,77xm89,-86v-2,-21,-7,-40,-11,-59v-7,20,-14,40,-19,60v4,-1,14,-1,30,-1","w":147},"B":{"d":"33,-232v82,-6,149,77,72,120v-16,9,-33,22,-5,29v52,29,26,93,-15,111v-16,6,-42,35,-57,13r3,-120v-12,-4,-8,-22,3,-23v0,-34,6,-70,1,-101v-11,-2,-17,-7,-21,-15v-1,-11,10,-13,19,-14xm64,-120v38,-6,69,-73,7,-83v-12,11,-3,53,-7,83xm70,4v32,-9,44,-81,-10,-75v2,26,-8,63,2,81v3,-2,6,-4,8,-6","w":142},"C":{"d":"118,25v11,5,4,26,-7,23v-58,-18,-101,-62,-98,-141v2,-68,37,-112,89,-124v18,-4,31,26,9,29v-90,14,-83,164,-21,199v5,5,20,10,28,14","w":128},"D":{"d":"51,13v-23,14,-25,-13,-25,-37r1,-148v-7,-5,-22,-23,-4,-25v66,-6,135,86,83,149v-18,22,-37,43,-55,61xm57,-31v44,-45,63,-97,1,-127","w":131},"E":{"d":"130,-101v-6,21,-51,9,-70,19v-5,17,-7,31,-7,42v-3,34,53,29,76,21v6,0,11,7,11,18v0,11,-10,15,-24,13v-65,6,-108,-21,-90,-94v-21,-14,5,-16,3,-34v0,-6,1,-14,2,-25v-24,-2,-26,-25,-7,-31v36,-12,76,-44,119,-24v9,33,-54,24,-78,41v-3,10,-5,25,-5,42v22,7,64,-12,70,12","w":147},"F":{"d":"70,-93v16,5,38,-11,59,-9v5,0,7,2,7,6v-4,24,-40,30,-66,35v-4,42,12,102,-15,122v-34,-12,-10,-68,-17,-109v-3,-10,-27,-8,-16,-27v7,1,9,-10,15,-6v7,-29,2,-60,1,-96v-15,-1,-33,-28,-7,-32v35,-5,97,-32,132,-32v8,0,16,4,16,12v0,17,-17,26,-32,17v-28,3,-55,19,-77,26r0,93","w":150},"G":{"d":"129,-112v51,-7,12,50,11,81r-3,62v0,6,-4,9,-12,9v-36,0,-16,-55,-15,-87v-20,17,-36,31,-65,36v-29,-2,-47,-40,-32,-76v15,-38,33,-78,61,-115v14,-18,26,-27,37,-27v30,0,11,25,-3,31v-30,38,-77,93,-69,158v20,4,41,-22,76,-47v4,-2,7,-22,14,-25","w":162},"H":{"d":"117,30v-43,-1,-21,-64,-21,-103v-13,-1,-27,-6,-39,-2v-6,23,-9,52,-10,84v-22,7,-30,-8,-28,-32r14,-154v13,-15,34,2,31,24v-5,30,-14,66,34,54v6,-30,15,-62,15,-98v0,-18,24,-14,28,-4r-19,224v0,3,-1,8,-5,7","w":150},"I":{"d":"17,3v0,-64,13,-125,10,-191v4,-12,19,-4,28,-4v7,65,-8,129,-7,198v-3,15,-31,12,-31,-3","w":68},"J":{"d":"8,20v50,-38,40,-152,31,-228v15,-21,34,-2,34,23v0,96,11,212,-65,231v-16,4,-40,-22,-18,-27v6,1,12,3,18,1","w":88},"K":{"d":"23,-55v0,-47,4,-101,-4,-142v4,-11,29,-7,30,3r4,78r66,-73v10,-2,25,-1,24,8v-8,27,-74,86,-84,104v29,19,63,34,88,57v8,7,-5,19,-14,19v-30,-14,-44,-28,-79,-47v-3,23,15,64,-10,69v-27,-7,-21,-43,-21,-76","w":151},"L":{"d":"103,-59v15,-7,32,5,23,17v-30,19,-55,43,-89,57v-7,-3,-17,-11,-16,-24r8,-201v13,-11,35,-3,28,21r-6,161v13,-4,38,-24,52,-31","w":130},"M":{"d":"178,14v-40,0,-28,-68,-31,-116r-30,87v-34,27,-46,-32,-54,-67v-3,-13,-3,-13,-4,-19r-34,124v-36,4,-20,-30,-9,-63v15,-48,27,-89,33,-149v1,0,4,-15,10,-13v37,1,12,59,26,95v6,19,8,45,19,58v19,-53,34,-101,44,-153v1,-4,4,-6,10,-6v33,2,14,49,17,87v4,52,6,95,15,129v0,4,-4,6,-12,6","w":201},"N":{"d":"54,-151v-13,66,14,163,-13,193v-27,-2,-20,-38,-21,-68v-1,-54,6,-136,12,-192v1,-13,28,-9,33,1v23,42,38,108,59,154r14,-156v2,-12,27,-7,30,1r-15,218v-3,18,-25,18,-33,-1v-22,-48,-42,-103,-62,-155v-2,0,-4,2,-4,5","w":175},"O":{"d":"12,-81v0,-48,33,-113,82,-79v43,7,59,71,30,105v-14,17,-28,35,-56,35v-32,0,-56,-26,-56,-61xm91,-132v-12,6,-22,25,-35,11v-25,14,-16,71,10,76v36,-2,59,-68,25,-87","w":149},"P":{"d":"58,-59v-7,29,9,77,-11,95v-25,-5,-21,-38,-21,-66v0,-54,11,-116,0,-165v-7,-1,-10,-20,-2,-21v59,-1,117,33,94,91v-15,39,-27,52,-60,66xm59,-93v25,-26,52,-56,24,-82r-26,-10","w":129},"Q":{"d":"156,30v4,14,-15,20,-25,9v-15,-15,-28,-34,-40,-54v-9,7,-22,20,-36,20v-36,-2,-49,-31,-48,-70v1,-33,14,-115,53,-126v3,0,24,-11,29,-10v36,9,41,59,38,104v-1,20,-29,53,-10,74v6,17,39,47,39,53xm50,-21v44,-17,3,-54,4,-86v0,-6,4,-10,12,-9v19,-2,20,25,27,36v13,-26,11,-68,-2,-95v-46,6,-55,63,-55,113v0,16,1,35,14,41","w":147},"R":{"d":"45,22v-52,6,-9,-77,-20,-135v4,-51,-16,-107,46,-103v37,3,64,59,34,90v-8,14,-23,20,-33,32v29,35,73,59,95,100v0,6,-5,9,-17,12v-27,-20,-66,-68,-95,-93xm90,-159v7,-22,-17,-40,-33,-26v-4,20,1,42,0,69v20,-15,29,-29,33,-43","w":167},"S":{"d":"78,-81v31,47,22,115,-33,119v-15,-5,-15,-22,1,-25v15,-3,13,-24,15,-36v4,-28,-46,-109,-46,-139v0,-38,18,-68,52,-72v23,-3,38,23,13,30v-35,-2,-41,57,-21,83","w":109},"T":{"d":"80,-229v34,13,66,-8,98,-6v4,0,5,1,5,5v6,0,10,2,10,6v-11,31,-50,18,-88,30v-2,30,-5,58,-6,82r-1,122v-1,4,-4,6,-8,6v-24,-1,-26,-29,-25,-56r6,-150v-29,2,-76,9,-70,-21v22,-8,63,-7,79,-18","w":194},"U":{"d":"24,-166v-1,-25,19,-25,33,-16v3,59,-10,121,5,171v30,-31,29,-104,50,-146v6,-13,1,-49,23,-47v8,0,14,3,18,8v-5,45,-25,95,-33,136v-7,32,-25,80,-63,84v-56,-23,-31,-121,-33,-190","w":159},"V":{"d":"143,-218v6,-14,38,-4,29,11v-26,46,-60,165,-77,240v-26,11,-29,-24,-36,-46v-6,-18,-12,-40,-18,-66v-12,-48,-23,-85,-35,-111v10,-17,17,-12,34,0v21,47,34,109,45,162v11,-69,35,-136,58,-190","w":171},"W":{"d":"148,14v-49,22,-44,-63,-52,-114v-8,33,-15,93,-31,112v-58,-5,-29,-134,-55,-193v-2,-16,24,-17,30,-4v8,41,12,92,18,151r24,-108v1,-19,16,-20,27,-12v14,33,17,85,23,127v10,-51,15,-117,36,-156v6,-11,30,-2,29,9v-22,52,-33,129,-49,188","w":192},"X":{"d":"22,26v-31,8,-24,-26,-12,-43v13,-39,30,-76,50,-110v-6,-17,-24,-36,-40,-56v5,-14,31,-17,39,2v8,6,14,32,21,12v13,-14,19,-61,51,-53v6,3,8,6,8,11v-15,32,-36,59,-47,86v4,11,40,66,43,85v-32,29,-45,-33,-60,-50v-15,20,-38,96,-53,116","w":133},"Y":{"d":"46,40v-34,0,-15,-53,-6,-75r23,-58v-14,-40,-30,-71,-45,-103v1,-13,17,-12,27,-7v13,23,25,47,35,72v10,-28,18,-63,33,-84v6,-8,21,-6,27,2v-16,83,-72,147,-80,240v-1,8,-5,13,-14,13","w":135},"Z":{"d":"40,-186v37,-1,98,-9,94,31v-17,48,-56,80,-85,117v36,11,66,17,92,20v12,2,10,24,-1,27v-33,-2,-84,-11,-120,-25v-8,-3,-13,-7,-12,-19v31,-36,74,-83,94,-122v-25,-18,-85,17,-94,-17v3,-11,18,-11,32,-12","w":151},"[":{"d":"89,-231v23,1,45,0,48,21v-10,25,-90,-22,-72,52r5,157v3,33,63,-6,66,22v-2,24,-31,25,-56,23v-20,-1,-44,-6,-39,-29v-10,-65,-7,-143,-10,-216v4,-25,25,-32,58,-30","w":140},"\\":{"d":"179,3v17,21,2,46,-21,35r-62,-114r-104,-158v-10,-15,12,-35,26,-21r114,175","w":192},"]":{"d":"30,2v5,-23,43,-15,61,-23v-13,-60,-13,-133,-22,-196v-23,-3,-59,17,-65,-13v0,-5,5,-11,11,-10r72,-11v37,21,12,103,24,158v6,29,12,55,15,84v-4,30,-54,18,-75,30v-11,-1,-20,-9,-21,-19","w":140},"^":{"d":"53,-250v-2,-19,30,-41,35,-10v7,46,46,70,59,112v4,13,-21,25,-29,10v-13,-25,-27,-50,-45,-71r-45,105v-26,10,-27,-22,-17,-43v14,-33,31,-66,42,-103","w":151},"_":{"d":"176,34v-48,1,-97,5,-139,11v-13,2,-32,10,-31,-9v1,-4,0,-14,6,-15v54,-10,102,-13,154,-18v18,-2,18,21,10,31","w":194},"`":{"d":"19,-232v-7,-15,7,-22,22,-11v19,28,51,60,62,93v-43,-1,-63,-53,-84,-82","w":132},"a":{"d":"7,-31v0,-53,48,-129,105,-91v22,29,12,89,29,127v0,8,-7,10,-15,10v-25,-7,-21,-52,-28,-78v-9,30,-30,63,-63,67v-21,3,-28,-15,-28,-35xm91,-108v-36,-4,-50,52,-54,84v29,-14,41,-53,54,-84","w":148},"b":{"d":"55,-238v-2,30,-9,56,-9,87v0,21,-3,44,-1,64v11,-20,22,-45,51,-45v31,0,34,36,34,70v0,50,-53,83,-98,55v-29,-54,-12,-144,-9,-216v-4,-18,22,-31,32,-15xm91,-103v-22,14,-35,42,-38,76v29,21,52,-22,45,-58v-1,-7,-2,-17,-7,-18","w":142},"c":{"d":"88,-120v-11,19,-50,12,-46,47v2,28,15,52,43,54v5,0,10,4,9,10v-35,33,-92,-23,-81,-74v6,-29,25,-51,58,-51v13,0,14,3,17,14","w":102},"d":{"d":"114,-225v-5,80,5,156,28,213v0,10,-7,14,-15,13v-28,-2,-23,-41,-32,-61v-8,30,-21,60,-54,63v-24,2,-35,-19,-35,-42v0,-44,23,-84,59,-95v8,0,13,3,19,5r-2,-98v1,-17,33,-17,32,2xm79,-95v-15,-1,-6,-12,-15,-12v-15,19,-36,51,-25,83v28,-8,33,-43,40,-71","w":149},"e":{"d":"67,6v-38,-2,-55,-28,-55,-66v0,-39,16,-75,54,-75v23,0,38,13,38,33v0,32,-28,50,-62,42v-8,41,38,55,62,27v5,1,11,5,9,12v-5,20,-21,28,-46,27xm78,-99v3,-16,-20,-18,-26,-6v-4,7,-8,15,-8,26v17,4,34,-4,34,-20","w":116},"f":{"d":"53,118v-36,-17,-16,-85,-22,-139v-14,3,-29,-1,-28,-15v1,-10,19,-7,27,-11r5,-125v2,-29,3,-63,30,-66v14,-2,22,18,8,26v-15,40,-12,97,-15,149v0,6,1,7,7,6v15,3,39,-17,44,4v-5,21,-43,13,-49,32v0,43,4,88,6,128v1,9,-6,10,-13,11","w":110},"g":{"d":"87,-40v-10,20,-24,37,-51,40v-14,-7,-32,-18,-29,-38v14,-37,30,-102,82,-90v3,9,14,-2,25,5v2,80,29,204,-30,243v-10,6,-31,8,-32,-7v36,-24,46,-88,35,-153xm42,-27v27,-13,36,-48,43,-82v-32,9,-40,44,-50,75v0,4,2,6,7,7","w":136},"h":{"d":"85,-132v34,4,32,49,36,81v2,18,21,51,-2,56v-39,-8,-18,-75,-36,-105v-23,16,-28,54,-33,88v-1,7,-3,15,-9,15v-26,2,-26,-26,-26,-51v0,-61,-5,-134,7,-186v48,-7,11,76,19,127r0,25v10,-20,19,-46,44,-50","w":135},"i":{"d":"39,-185v-20,1,-33,-26,-8,-28v18,-3,31,28,8,28xm46,-127v-2,41,5,83,10,118v-1,6,-3,8,-7,13v-32,4,-30,-30,-31,-56r-4,-70v0,-17,28,-17,32,-5","w":68},"j":{"d":"34,-175v-16,-1,-25,-8,-23,-26v11,-7,36,-5,36,12v0,8,-3,15,-13,14xm15,-130v20,-24,37,0,37,31v0,91,17,205,-48,238v-17,1,-28,-19,-13,-27v43,-49,36,-163,24,-242","w":73},"k":{"d":"51,-45v-1,23,14,59,-14,60v-37,-8,-16,-79,-16,-131v0,-35,-5,-73,-1,-105v11,-15,36,-10,35,15r-3,128v24,-11,34,-71,69,-51v0,26,-31,49,-41,67v12,25,45,33,59,54v-2,10,-9,17,-21,14v-27,-6,-45,-37,-67,-51","w":137},"l":{"d":"51,-207v-4,66,-8,151,8,206v0,7,-9,11,-15,11v-38,-17,-31,-87,-28,-139r4,-78v0,-9,5,-14,15,-13v8,1,16,4,16,13","w":72},"m":{"d":"17,-9v8,-48,-15,-111,11,-125v23,3,17,32,17,56v14,-22,24,-69,59,-56v16,18,14,54,23,80v15,-31,20,-70,59,-77v33,6,15,63,27,90v3,15,16,46,-9,47v-31,-12,-19,-67,-30,-100v-16,31,-32,63,-44,99v-45,11,-22,-70,-45,-102v-23,23,-26,67,-41,97v-9,8,-26,2,-27,-9","w":230},"n":{"d":"26,-133v34,-4,20,47,22,82v19,-25,21,-72,58,-79v34,22,24,88,42,127v-5,16,-33,13,-32,-6v-7,-27,-7,-61,-20,-82v-24,28,-19,85,-63,92v-30,-10,-6,-77,-15,-120v1,-6,3,-12,8,-14","w":153},"o":{"d":"123,-87v0,49,-22,89,-67,89v-67,0,-54,-128,5,-136v24,12,62,16,62,47xm53,-24v27,-5,36,-30,38,-60v1,-14,-12,-19,-24,-20v-27,4,-40,66,-14,80","w":129},"p":{"d":"126,-66v0,40,-29,64,-75,63v-3,39,9,92,-7,119v-25,10,-25,-17,-25,-46r0,-141r-3,-59v5,-21,33,-14,34,4v43,-15,76,21,76,60xm54,-27v47,3,51,-72,10,-78v-24,4,-12,43,-14,71v0,4,2,7,4,7","w":133},"q":{"d":"129,-99v-1,70,-13,139,-9,218v-1,9,-2,15,-8,20v-49,-9,-23,-78,-23,-134v0,-12,1,-25,2,-38v-11,13,-23,35,-45,35v-52,0,-33,-71,-8,-90v18,-15,35,-33,69,-33v15,0,16,13,22,22xm44,-25v25,-13,50,-42,53,-73v-28,8,-62,40,-53,73","w":146},"r":{"d":"51,-31v13,31,-29,61,-33,26v-4,-40,3,-88,-4,-123v11,-21,33,-6,31,14r1,19v16,-11,19,-40,42,-44v13,0,18,4,22,13v-19,30,-51,53,-59,95","w":111},"s":{"d":"58,-150v-38,47,21,88,22,138v0,28,-29,56,-55,38v-8,-6,-10,-17,1,-20v11,12,27,-1,24,-18v-8,-36,-31,-59,-37,-96v2,-27,6,-54,36,-53v4,-1,8,8,9,11","w":87},"t":{"d":"69,9v-42,-6,-18,-73,-28,-117v-23,19,-63,-21,-22,-21v40,0,17,-58,23,-100v-1,-8,3,-13,10,-13v34,3,14,58,20,92v17,-1,60,-13,37,19v-21,7,-44,6,-41,40v3,30,8,60,12,87v1,8,-5,11,-11,13","w":117},"u":{"d":"66,3v-57,26,-53,-46,-50,-104v1,-18,-2,-41,16,-41v27,0,13,40,13,63v0,19,2,40,3,54v27,-16,41,-61,50,-95v-3,-19,26,-22,32,-8v-2,42,-8,93,15,114v0,9,-8,10,-16,11v-21,-5,-24,-26,-27,-49v-11,20,-19,41,-36,55","w":146},"v":{"d":"127,-119v-30,31,-41,76,-62,114v-32,21,-41,-32,-45,-67v-1,-15,-11,-32,-10,-49v1,-14,30,-9,33,1v0,24,7,46,11,66v18,-23,20,-70,50,-80v14,0,23,2,23,15"},"w":{"d":"54,-9v-22,22,-31,-6,-34,-34r-8,-67v0,-10,0,-19,10,-19v35,1,15,47,27,76v14,-19,16,-49,37,-62v31,3,17,52,32,75v18,-25,16,-73,37,-94v35,-7,18,34,10,52v-11,26,-18,58,-35,79v-36,17,-39,-34,-50,-56v-8,17,-16,35,-26,50","w":181},"x":{"d":"24,24v-42,-18,9,-59,17,-85r-37,-64v24,-34,42,20,56,38v16,-16,23,-45,49,-49v24,-4,18,25,4,32v-13,14,-26,26,-35,42v13,18,31,31,38,54v-1,7,-8,12,-19,11v-14,-7,-21,-30,-34,-38v-16,16,-18,49,-39,59","w":130},"y":{"d":"27,-135v39,1,0,81,28,112v22,-13,30,-44,32,-76v2,-15,1,-36,15,-38v37,7,6,69,17,118v-3,69,-16,131,-80,141v-9,1,-26,-13,-13,-18v46,-16,69,-68,63,-124v-6,12,-17,27,-34,27v-48,0,-40,-71,-40,-119v0,-10,1,-23,12,-23","w":137},"z":{"d":"14,-5v9,-45,47,-67,61,-107v-23,2,-60,23,-67,-6v8,-22,43,-16,69,-22v18,1,31,5,28,26v-5,41,-35,63,-52,94v13,15,36,-6,58,-4v22,2,14,26,-1,28v-24,4,-45,14,-72,11v-11,-2,-27,-6,-24,-20"},"{":{"d":"103,92v-71,3,-30,-106,-77,-141v-13,-19,15,-24,18,-41v31,-51,-15,-173,66,-170v16,1,33,4,35,20v-2,13,-21,10,-32,6v-38,1,-24,51,-27,90v-2,33,-7,66,-28,81v16,30,26,64,31,105v-2,18,9,32,24,22v17,7,4,28,-10,28","w":119},"|":{"d":"42,81v-29,-11,-9,-69,-17,-111r12,-223v3,-16,34,-15,34,4r-9,319v-1,8,-11,11,-20,11","w":96},"}":{"d":"60,-57v-53,-48,39,-201,-48,-174v-3,1,-8,-6,-8,-8v1,-16,18,-23,35,-23v66,0,35,99,35,162v0,28,24,28,35,44v1,18,-26,13,-23,35v-8,56,-16,113,-74,121v-16,2,-30,-18,-14,-28v56,21,54,-75,62,-129","w":121},"~":{"d":"59,-141v-20,-1,-26,20,-39,27v-6,0,-10,-5,-10,-12v0,-19,15,-39,34,-40v37,-3,57,19,90,20v11,-3,10,-20,13,-33v10,-6,24,4,23,15v-2,21,-7,43,-31,43v-31,0,-50,-19,-80,-20","w":180},"\u00a3":{"d":"190,-10v-12,31,-87,15,-139,15v-20,0,-36,-5,-37,-25v30,-21,63,-45,51,-107v-19,3,-45,4,-45,-22v0,-15,26,-4,40,-9v1,-49,12,-90,63,-90v13,0,17,12,17,27v0,7,-7,5,-13,5v-28,0,-43,25,-36,54v21,0,56,-16,67,6v-6,24,-44,16,-65,28v3,37,5,77,-17,97v31,4,71,1,101,-2v10,0,13,14,13,23","w":194},"\u20ac":{"d":"107,-10v34,8,62,-21,85,-7v-19,40,-112,44,-132,5v-14,-16,-20,-38,-20,-68v0,-12,-20,-8,-21,-24v-1,-21,26,-13,29,-31v21,-50,40,-112,105,-114v10,0,17,22,3,24v-40,15,-66,51,-76,92v23,-4,42,-11,68,-14v26,-3,39,23,9,29r-81,15v-5,5,-11,18,-3,25v24,-5,64,-25,85,-6v2,32,-40,16,-63,31v-6,1,-16,-1,-16,8v6,15,12,30,28,35","w":216},"\u00a0":{"w":90}}});Cufon.registerFont({"w":199,"face":{"font-family":"Avant Garde Medium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 0 0 0 0 0 0 0","ascent":"267","descent":"-93","x-height":"5","bbox":"0 -353 347 93","underline-thickness":"18","underline-position":"-18","stemh":"34","stemv":"37","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":99,"k":{"Y":22,"W":9,"V":29,"T":9,"A":7}},"\u00a0":{"w":99},"!":{"d":"69,-44r0,44r-38,0r0,-44r38,0xm69,-266r0,200r-38,0r0,-200r38,0","w":99},"\"":{"d":"40,-160r-26,0r-7,-106r40,0xm103,-160r-26,0r-6,-106r39,0","w":117},"#":{"d":"178,-104r-1,31r-33,0r-10,73r-32,0r10,-73r-36,0r-11,73r-32,0r11,-73r-33,0r1,-31r36,0r6,-44r-32,0r0,-31r36,0r10,-73r32,0r-10,73r37,0r10,-73r32,0r-10,73r30,0r-1,31r-33,0r-6,44r29,0xm123,-148r-37,0r-6,44r37,0"},"$":{"d":"84,-296r34,0r0,40v30,4,53,25,54,62r-38,0v-1,-18,-10,-30,-31,-30v-21,0,-31,18,-31,34v0,24,17,28,43,35v15,4,60,15,60,71v0,25,-11,66,-57,74r0,40r-34,0r0,-40v-31,-8,-57,-29,-60,-73r38,0v3,32,24,41,40,41v25,0,36,-20,36,-42v0,-30,-29,-36,-46,-41v-16,-4,-57,-14,-57,-65v0,-21,10,-56,49,-66r0,-40"},"%":{"d":"184,-60v0,18,15,34,33,34v18,0,33,-16,33,-34v0,-18,-15,-33,-33,-33v-18,0,-33,15,-33,33xm152,-60v0,-36,29,-64,65,-64v36,0,65,28,65,64v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65xm19,-206v0,-36,29,-64,65,-64v36,0,65,28,65,64v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65xm51,-206v0,18,15,34,33,34v18,0,33,-16,33,-34v0,-18,-15,-33,-33,-33v-18,0,-33,15,-33,33xm238,-266r-153,266r-24,0r152,-266r25,0","w":301},"&":{"d":"233,-164r-43,88r53,55r-26,26r-46,-47v-9,13,-32,47,-77,47v-87,0,-114,-125,-31,-155v-47,-33,-21,-124,42,-121v67,3,97,101,22,131r35,35r29,-59r42,0xm99,-166v20,-11,33,-19,33,-39v-2,-44,-55,-40,-55,2v0,11,4,20,22,37xm145,-69r-56,-55v-15,5,-38,17,-38,49v0,22,16,44,43,44v32,0,46,-29,51,-38","w":246},"(":{"d":"129,46r0,47v-46,-23,-109,-89,-109,-184v0,-77,46,-149,106,-181r0,47v-27,24,-67,61,-67,134v0,80,47,118,70,137","w":146},")":{"d":"18,-225r0,-47v47,24,109,90,109,184v0,77,-47,149,-107,181r0,-47v27,-24,68,-61,68,-134v0,-80,-47,-118,-70,-137","w":146},"*":{"d":"91,-215r0,-51r25,0r-1,51r49,-16r8,24r-50,15r32,42r-21,14r-30,-42r-30,42r-20,-14r31,-42r-49,-15r7,-24","w":206},"+":{"d":"89,-110r0,-72r38,0r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0","w":216},",":{"d":"69,-44v-3,45,13,73,-38,90r0,-23v6,-1,15,-7,14,-23r-14,0r0,-44r38,0","w":99,"k":{" ":25}},"-":{"d":"101,-85r-101,0r0,-38r101,0r0,38","w":100},"\u00ad":{"d":"101,-85r-101,0r0,-38r101,0r0,38","w":100},".":{"d":"69,0r-38,0r0,-44r38,0r0,44","w":99,"k":{" ":25}},"\/":{"d":"56,36r-41,0r103,-302r41,0","w":179},"0":{"d":"99,5v-95,0,-85,-92,-85,-186v0,-68,53,-91,87,-91v40,0,85,30,85,88r0,98v1,49,-30,91,-87,91xm101,-29v64,-2,48,-88,48,-155v0,-47,-35,-54,-49,-54v-19,0,-49,11,-49,54r0,98v0,55,44,57,50,57"},"1":{"d":"130,-266r0,266r-37,0r0,-232r-40,0r0,-34r77,0"},"2":{"d":"181,0r-166,0r0,-31r105,-107v35,-25,32,-96,-22,-99v-23,-1,-50,19,-47,62r-38,0v-1,-78,56,-96,84,-96v51,0,84,42,84,86v0,35,-19,56,-37,75r-74,76r111,0r0,34"},"3":{"d":"8,-78r37,0v2,47,43,49,50,49v30,0,48,-26,48,-49v-1,-33,-28,-52,-63,-48r0,-37r13,0v39,0,38,-37,38,-38v-2,-39,-60,-61,-71,1r-37,0v4,-60,55,-71,74,-71v68,0,94,95,47,125v75,49,25,151,-50,151v-45,0,-86,-34,-86,-83"},"4":{"d":"163,-266r0,190r29,0r0,34r-29,0r0,42r-37,0r0,-42r-122,0r0,-36r122,-188r37,0xm48,-76r78,0r-1,-128"},"5":{"d":"44,-266r121,0r0,34r-90,0r-11,59v53,-33,127,16,127,83v0,49,-36,95,-91,95v-50,0,-86,-36,-91,-86r37,0v6,69,107,67,107,-6v0,-32,-19,-63,-51,-63v-30,0,-43,19,-48,28r-33,-8"},"6":{"d":"104,-266r44,0r-56,87v59,-11,101,34,101,88v0,53,-38,96,-91,96v-95,-2,-106,-103,-73,-154xm46,-89v0,33,24,60,56,60v32,0,54,-28,54,-58v0,-34,-24,-60,-54,-60v-31,0,-56,27,-56,58"},"7":{"d":"26,-266r154,0r0,34r-98,232r-41,0r100,-232r-115,0r0,-34"},"8":{"d":"148,-147v75,56,25,152,-48,152v-41,0,-85,-32,-85,-83v0,-41,24,-61,35,-69v-9,-9,-22,-22,-22,-51v0,-43,35,-73,72,-73v39,0,72,33,72,73v0,31,-15,43,-24,51xm100,-164v45,-1,48,-71,0,-73v-21,0,-35,17,-35,36v0,17,13,37,35,37xm147,-76v0,-31,-25,-50,-47,-50v-28,0,-47,24,-47,49v0,26,21,48,46,48v28,0,48,-25,48,-47"},"9":{"d":"96,0r-45,0r57,-87v-56,7,-102,-29,-102,-89v0,-51,39,-95,92,-95v94,0,111,93,72,154xm98,-120v75,-1,68,-119,0,-117v-32,0,-54,27,-54,57v0,32,23,60,54,60"},":":{"d":"69,0r-38,0r0,-44r38,0r0,44xm69,-156r-38,0r0,-44r38,0r0,44","w":99},";":{"d":"69,-44v-3,45,13,73,-38,90r0,-23v6,-1,15,-7,14,-23r-14,0r0,-44r38,0xm69,-156r-38,0r0,-44r38,0r0,44","w":99},"<":{"d":"199,-34r0,37r-182,-79r0,-31r182,-78r0,37r-134,57","w":216},"=":{"d":"199,-149r0,37r-182,0r0,-37r182,0xm199,-71r0,38r-182,0r0,-38r182,0","w":216},">":{"d":"17,-34r134,-57r-134,-57r0,-37r182,78r0,31r-182,79r0,-37","w":216},"?":{"d":"92,-234v-31,0,-38,20,-43,44r-37,0v8,-120,162,-93,160,-1v0,34,-16,49,-32,63v-26,23,-28,42,-31,60r-37,0v-2,-64,63,-80,63,-121v0,-25,-20,-45,-43,-45xm109,-44r0,44r-37,0r0,-44r37,0","w":186},"@":{"d":"185,-197r26,0r-18,104v1,6,4,9,9,9v24,0,39,-26,39,-68v0,-58,-42,-92,-98,-92v-68,0,-110,50,-110,111v0,45,22,110,114,110v43,0,73,-12,86,-21r14,22v-37,21,-68,27,-100,27v-104,0,-143,-73,-143,-138v0,-82,61,-138,139,-138v72,0,127,44,127,118v0,52,-30,97,-69,97v-9,0,-28,-5,-31,-22v-43,46,-104,19,-104,-43v0,-41,28,-81,70,-81v34,0,39,21,45,25xm173,-142v0,-25,-15,-33,-35,-33v-22,0,-44,20,-44,53v0,23,13,38,32,38v31,0,47,-26,47,-58","w":273},"A":{"d":"242,0r-41,0r-30,-78r-96,0r-29,78r-41,0r101,-266r35,0xm89,-114r69,0r-35,-102","w":246,"k":{"y":18,"w":23,"v":25,"u":7,"Y":29,"W":22,"V":37,"U":14,"T":9,"Q":14,"O":18,"G":14,"C":14}},"B":{"d":"27,0r0,-266r69,0v75,0,83,54,83,73v0,30,-14,43,-23,51v11,6,39,24,39,65v0,27,-15,77,-88,77r-80,0xm156,-77v-2,-43,-43,-47,-90,-43r0,84r42,0v39,0,48,-27,48,-41xm66,-231r0,75r32,0v36,0,42,-22,42,-37v0,-51,-39,-35,-74,-38","w":208,"k":{"A":4}},"C":{"d":"273,-198r-47,0v-8,-9,-31,-38,-74,-38v-55,0,-99,46,-99,102v0,92,117,139,171,68r47,0v-69,127,-258,69,-257,-68v1,-109,120,-178,218,-112v24,17,34,36,41,48","w":281,"k":{"A":14}},"D":{"d":"246,-132v4,81,-67,132,-138,132r-85,0r0,-266r87,0v91,-3,132,61,136,134xm62,-231r0,195v81,3,145,-3,145,-96v0,-40,-25,-99,-98,-99r-47,0","w":263,"k":{"Y":16,"W":11,"V":18,"A":18,".":18,",":18}},"E":{"d":"167,0r-144,0r0,-266r144,0r0,35r-105,0r0,79r105,0r0,35r-105,0r0,81r105,0r0,36","w":187},"F":{"d":"62,0r-39,0r0,-266r135,0r0,35r-96,0r0,80r96,0r0,36r-96,0r0,115","w":173,"k":{"e":7,"a":7,"A":27,".":63,",":63}},"G":{"d":"269,-199r-45,0v-11,-12,-34,-37,-73,-37v-55,0,-98,48,-98,104v0,59,49,101,99,101v8,0,65,0,91,-66r-124,0r0,-35r169,0v-1,89,-73,137,-138,137v-78,0,-136,-62,-136,-137v0,-77,59,-139,136,-139v45,0,93,24,119,72","w":299,"k":{"Y":5,".":14,",":14}},"H":{"d":"215,0r-39,0r0,-116r-110,0r0,116r-39,0r0,-266r39,0r0,114r110,0r0,-114r39,0r0,266","w":241},"I":{"d":"66,0r-39,0r0,-266r39,0r0,266","w":92},"J":{"d":"40,-53v21,43,68,22,68,-20r0,-193r39,0r0,191v7,96,-133,106,-147,22r40,0","w":175,"k":{"a":7,"A":11,".":5}},"K":{"d":"221,0r-48,0r-102,-134r0,134r-39,0r0,-266r39,0r1,132r101,-132r48,0r-104,132","w":222,"k":{"y":9,"u":13,"o":16,"e":7,"O":11}},"L":{"d":"160,0r-132,0r0,-266r39,0r0,230r93,0r0,36","w":159,"k":{"y":8,"Y":29,"W":20,"V":41,"T":17}},"M":{"d":"310,0r-39,0r-1,-225r-90,225r-23,0r-91,-225r0,225r-39,0r0,-266r61,0r80,204r80,-204r62,0r0,266","w":336},"N":{"d":"239,0r-41,0r-132,-206r0,206r-39,0r0,-266r42,0r131,202r0,-202r39,0r0,266","w":265},"O":{"d":"291,-132v0,73,-60,137,-139,137v-80,0,-138,-65,-138,-138v0,-72,57,-138,138,-138v79,0,139,63,139,139xm252,-132v0,-47,-34,-104,-100,-104v-69,0,-99,61,-99,103v0,44,31,102,99,102v69,0,100,-59,100,-101","w":304,"k":{"Y":14,"X":11,"W":7,"V":16,"T":5,"A":22,".":18,",":18}},"P":{"d":"62,-105r0,105r-39,0r0,-266r77,0v64,0,94,32,94,80v0,61,-55,88,-132,81xm62,-231r0,90r38,0v44,0,56,-25,56,-45v0,-20,-12,-45,-56,-45r-38,0","w":201,"k":{"o":7,"e":7,"a":7,"A":36,".":86,",":86}},"Q":{"d":"294,-31r0,36v-34,0,-52,-11,-67,-20v-94,56,-213,-12,-213,-119v0,-77,59,-137,137,-137v78,0,137,63,137,138v0,47,-22,78,-33,93v13,7,20,9,39,9xm192,-42v-50,-36,-76,-43,-120,-30v20,37,86,53,120,30xm224,-64v9,-11,25,-32,25,-69v0,-54,-42,-103,-97,-103v-63,0,-112,60,-96,131v73,-23,111,-1,168,41","w":301},"R":{"d":"106,-266v67,-2,95,33,95,85v0,71,-59,82,-76,82r74,99r-48,0r-89,-123r0,123r-39,0r0,-266r83,0xm62,-231r0,102r27,0v16,0,73,-1,73,-52v0,-22,-15,-50,-59,-50r-41,0","w":213,"k":{"Y":4,"W":-4,"V":4,"T":-5}},"S":{"d":"6,-79r39,0v0,9,5,48,44,48v24,0,42,-17,42,-45v-1,-53,-88,-46,-99,-73v-38,-44,-16,-122,57,-122v44,0,76,29,76,74r-39,0v0,-30,-21,-39,-37,-39v-23,0,-36,22,-36,37v0,26,24,32,36,36v33,13,81,23,81,87v0,46,-32,81,-81,81v-37,0,-83,-25,-83,-84","w":179},"T":{"d":"93,0r-39,0r0,-231r-51,0r0,-35r141,0r0,35r-51,0r0,231","w":146,"k":{"y":11,"w":20,"u":17,"r":11,"o":18,"e":18,"a":25,"O":5,"A":9,";":10,":":5,".":33,"-":27,",":30}},"U":{"d":"116,5v-51,0,-90,-35,-90,-91r0,-180r39,0r0,179v0,49,37,56,51,56v14,0,50,-7,50,-56r0,-179r39,0r0,180v1,55,-38,91,-89,91","w":231,"k":{"A":14,".":7,",":7}},"V":{"d":"135,0r-23,0r-108,-266r42,0r77,199r78,-199r41,0","w":246,"k":{"u":20,"o":36,"i":13,"e":36,"a":37,"O":16,"G":7,"A":37,";":12,":":6,".":52,"-":32,",":52}},"W":{"d":"246,0r-34,0r-49,-186r-49,186r-34,0r-74,-266r40,0r52,200r51,-200r28,0r52,199r52,-199r39,0","w":326,"k":{"y":7,"u":11,"o":17,"i":4,"e":17,"a":18,"O":7,"A":21,";":12,":":5,".":38,"-":18,",":38}},"X":{"d":"183,0r-67,-102r-67,102r-45,0r88,-134r-88,-132r46,0r66,100r67,-100r46,0r-89,132r88,134r-45,0","w":233},"Y":{"d":"126,0r-39,0r0,-96r-82,-170r43,0r59,125r58,-125r43,0r-82,170r0,96","w":213,"k":{"u":31,"o":32,"i":5,"e":32,"a":33,"O":14,"A":29,";":8,":":4,".":52,"-":38,",":52}},"Z":{"d":"165,0r-164,0r0,-36r116,-195r-109,0r0,-35r153,0r0,35r-115,195r119,0r0,36","w":166},"[":{"d":"118,48r0,45v-41,-16,-73,-55,-73,-98r0,-163v0,-60,41,-92,73,-104r0,44v-32,20,-34,44,-34,64r0,146v0,17,-1,45,34,66","w":146},"\\":{"d":"124,36r-104,-302r41,0r104,302r-41,0","w":179},"]":{"d":"28,93r0,-45v35,-21,35,-49,35,-66r0,-146v0,-20,-3,-44,-35,-64r0,-44v32,12,74,44,74,104r0,163v0,43,-33,82,-74,98","w":146},"^":{"d":"61,-128r-37,0r67,-138r34,0r67,138r-37,0r-47,-101","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"225,0r-37,0v-1,-10,2,-23,-1,-31v-14,24,-40,36,-67,36v-138,0,-144,-207,0,-210v29,-1,52,14,68,34r0,-28r37,0r0,199xm189,-99v0,-42,-30,-72,-69,-72v-93,0,-88,141,-1,142v39,0,70,-32,70,-70","w":249,"k":{"t":-2,"p":-7,"b":-2}},"b":{"d":"61,0r-37,0r0,-266r38,0r0,94v54,-70,172,-21,172,72v0,88,-109,145,-173,71r0,29xm60,-100v1,95,138,90,137,0v0,-37,-29,-71,-68,-71v-41,0,-69,36,-69,71","w":247,"k":{"y":7,"v":7,"u":4}},"c":{"d":"214,-133r-41,0v-6,-13,-20,-38,-56,-38v-92,0,-86,140,-1,142v28,0,47,-16,56,-37r42,0v-15,44,-54,71,-98,71v-136,-1,-132,-211,0,-210v57,0,90,42,98,72","w":225,"k":{"y":7,"k":5}},"d":{"d":"223,0r-34,0v-1,-9,2,-21,-1,-28v-16,22,-42,33,-71,33v-134,0,-140,-207,0,-210v29,-1,53,13,69,30r0,-91r37,0r0,266xm189,-99v0,-42,-30,-72,-69,-72v-93,0,-88,141,-1,142v39,0,70,-32,70,-70","w":247},"e":{"d":"217,-84r-166,0v14,69,99,68,123,21r37,0v-43,114,-197,72,-197,-37v0,-60,46,-105,102,-105v60,1,111,51,101,121xm51,-112r129,0v-2,-29,-28,-59,-64,-59v-36,0,-63,30,-65,59","w":231,"k":{"y":7,"w":7,"v":7}},"f":{"d":"63,0r-38,0r0,-165r-17,0r0,-34r17,0v-4,-46,26,-70,73,-67r0,34v-30,1,-37,10,-35,33r35,0r0,34r-35,0r0,165","w":99,"k":{"o":7,"l":11,"i":11,"f":5,"a":7,".":18,",":18}},"g":{"d":"227,-199r0,172v0,66,-40,105,-108,105v-46,0,-81,-25,-98,-63r42,0v6,8,21,29,57,29v39,0,73,-21,69,-70v-7,9,-27,31,-69,31v-66,0,-106,-56,-106,-105v0,-44,35,-105,107,-105v30,0,56,14,69,29r0,-23r37,0xm190,-99v0,-108,-140,-84,-139,-1v0,36,29,71,69,71v49,0,70,-44,70,-70","w":250,"k":{"a":5}},"h":{"d":"118,-205v50,2,83,32,83,87r0,118r-38,0r0,-108v0,-15,1,-63,-49,-63v-31,0,-53,22,-53,62r0,109r-37,0r0,-266r37,0r1,88v18,-27,48,-27,56,-27","w":223,"k":{"y":11}},"i":{"d":"62,-199r0,199r-38,0r0,-199r38,0xm62,-266r0,44r-38,0r0,-44r38,0","w":85},"j":{"d":"66,-199r0,193v8,47,-25,82,-62,84r0,-39v25,-2,25,-20,25,-45r0,-193r37,0xm66,-266r0,44r-37,0r0,-44r37,0","w":89},"k":{"d":"137,-199r44,0r-72,94r84,105r-47,0r-81,-103r0,103r-37,0r0,-266r37,0r1,163","w":196,"k":{"y":9,"o":16,"e":13}},"l":{"d":"62,-266r0,266r-38,0r0,-266r38,0","w":85,"k":{"w":7}},"m":{"d":"244,-205v52,1,82,31,82,85r0,120r-38,0r0,-111v0,-17,-2,-60,-47,-60v-48,0,-47,43,-47,60r0,111r-38,0v-4,-69,21,-171,-45,-171v-49,0,-49,45,-49,60r0,111r-38,0r0,-199r35,0r0,21v7,-8,21,-27,58,-27v24,0,52,12,62,34v6,-10,20,-34,65,-34","w":349,"k":{"y":7,"u":7}},"n":{"d":"118,-205v50,2,83,32,83,87r0,118r-38,0r0,-108v0,-15,1,-63,-49,-63v-31,0,-53,22,-53,62r0,109r-37,0r0,-199r35,0r0,21v20,-27,51,-27,59,-27","w":224,"k":{"y":5,"v":11,"u":5}},"o":{"d":"229,-100v0,49,-40,105,-108,105v-67,0,-107,-56,-107,-106v0,-54,45,-104,107,-104v60,0,108,48,108,105xm192,-100v0,-35,-29,-71,-71,-71v-42,0,-70,35,-70,71v0,36,28,71,70,71v40,0,71,-33,71,-71","w":243,"k":{"y":7,"x":5,"w":7,"v":11,".":9,",":9}},"p":{"d":"24,67r0,-266r34,0v1,9,-2,23,1,30v18,-26,45,-36,71,-36v135,1,136,209,2,210v-42,0,-62,-21,-70,-34r0,96r-38,0xm196,-99v0,-36,-28,-72,-69,-72v-39,0,-66,34,-66,71v0,40,30,71,68,71v35,0,67,-28,67,-70","w":246,"k":{"y":7,".":9,",":9}},"q":{"d":"223,-199r0,266r-37,0r-1,-95v-14,20,-40,33,-67,33v-138,0,-135,-211,-1,-210v47,0,67,29,72,32r0,-26r34,0xm189,-99v0,-39,-28,-72,-69,-72v-42,0,-69,34,-69,71v0,38,29,71,70,71v40,0,68,-34,68,-70","w":247},"r":{"d":"111,-166v-29,2,-50,16,-49,57r0,109r-38,0r0,-199r35,0v1,6,-2,14,1,18v16,-22,42,-24,51,-24r0,39","w":115,"k":{"y":-14,"v":-14,"u":-7,"t":-14,"s":-7,"q":3,"p":-7,"o":7,"n":-8,"m":-10,"l":-7,"k":-7,"i":-7,"e":1,"d":2,"c":3,".":26,"-":22,",":27}},"s":{"d":"140,-147r-37,0v0,-31,-50,-32,-49,-2v0,17,14,21,31,26v15,5,60,16,60,64v0,35,-25,64,-67,64v-25,0,-71,-16,-71,-71r38,0v-5,42,61,51,62,9v0,-18,-16,-23,-35,-30v-22,-8,-56,-18,-56,-60v0,-30,25,-58,63,-58v23,0,60,14,61,58","w":152,"k":{"t":-5,".":-7,",":-7}},"t":{"d":"66,-165r0,165r-38,0r0,-165r-27,0r0,-34r27,0r0,-67r38,0r0,67r33,0r0,34r-33,0","w":99},"u":{"d":"107,5v-56,0,-84,-29,-83,-96r0,-108r37,0r0,108v0,49,22,62,50,62v31,0,52,-20,52,-64r0,-106r38,0r0,199r-35,0r0,-22v-10,17,-34,27,-59,27","w":224,"k":{"z":-5}},"v":{"d":"189,-199r-79,199r-26,0r-79,-199r40,0r53,142r51,-142r40,0","w":193,"k":{"o":7,"e":7,"a":11,".":32,",":32}},"w":{"d":"282,-199r-74,199r-21,0r-44,-134r-43,134r-21,0r-74,-199r40,0r45,129r41,-129r25,0r42,129r44,-129r40,0","w":286,"k":{"o":11,"h":-5,"e":7,"a":11,".":32,",":32}},"x":{"d":"136,-199r45,0r-65,97r70,102r-44,0r-49,-71r-49,71r-43,0r69,-102r-67,-97r46,0r44,65","w":186,"k":{"i":-5}},"y":{"d":"203,-199r-110,266r-39,0r29,-71r-79,-195r40,0r59,154r60,-154r40,0","w":206,"k":{"o":11,"e":7,"a":11,".":31,",":36}},"z":{"d":"10,-199r128,0r0,36r-90,129r97,0r0,34r-144,0r0,-29r96,-136r-87,0r0,-34","w":146},"{":{"d":"5,-83r0,-31v12,0,33,-8,33,-30r0,-74v3,-42,33,-51,73,-48r0,28v-54,-10,-35,54,-35,99v0,31,-27,37,-36,41v11,1,36,7,36,42r0,73v-3,19,12,30,35,26r0,28v-41,3,-73,-5,-73,-48r0,-74v0,-24,-21,-32,-33,-32","w":119},"|":{"d":"80,-266r40,0r0,302r-40,0r0,-302"},"}":{"d":"115,-112r0,31v-12,0,-33,8,-33,30r0,74v-3,42,-33,51,-73,48r0,-28v54,10,35,-54,35,-99v0,-31,27,-37,36,-41v-11,-1,-36,-7,-36,-42r0,-73v3,-19,-12,-30,-35,-26r0,-28v40,-3,73,6,73,48r0,74v0,24,21,32,33,32","w":119},"~":{"d":"70,-121v23,0,56,24,77,25v14,0,23,-13,31,-26r13,29v-11,15,-23,31,-45,31v-37,0,-90,-50,-108,2r-13,-30v8,-15,21,-31,45,-31","w":216},"\u00a3":{"d":"154,-98r40,0v10,47,-7,98,-79,98r-100,0r0,-34r48,0v14,-26,7,-70,-19,-84r-41,0r0,-34r15,0v-27,-53,12,-119,80,-119v39,0,77,24,87,72r-41,0v-4,-12,-13,-38,-48,-38v-45,0,-62,62,-36,85r79,0r0,34r-50,0v15,4,25,60,14,84v49,4,66,-32,51,-64"},"'":{"d":"52,-160r-25,0r-8,-106r40,0","w":78},"\u2013":{"d":"167,-85r-154,0r0,-38r154,0r0,38","w":180},"`":{"d":"60,-293r81,44r-16,29r-80,-46"},"\u2014":{"d":"347,-85r-334,0r0,-38r334,0r0,38","w":360},"\u00c1":{"d":"242,0r-41,0r-30,-78r-96,0r-29,78r-41,0r101,-266r35,0xm89,-114r69,0r-35,-102xm98,-278r-16,-27r81,-46r16,29","w":246},"\u00c9":{"d":"167,0r-144,0r0,-266r144,0r0,35r-105,0r0,79r105,0r0,35r-105,0r0,81r105,0r0,36xm68,-280r-15,-27r80,-46r16,29","w":187},"\u00cd":{"d":"66,0r-39,0r0,-266r39,0r0,266xm35,-280r-15,-27r80,-46r16,29","w":92},"\u00d3":{"d":"291,-132v0,73,-60,137,-139,137v-80,0,-138,-65,-138,-138v0,-72,57,-138,138,-138v79,0,139,63,139,139xm252,-132v0,-47,-34,-104,-100,-104v-69,0,-99,61,-99,103v0,44,31,102,99,102v69,0,100,-59,100,-101xm127,-280r-15,-27r80,-46r16,29","w":304},"\u00da":{"d":"116,5v-51,0,-90,-35,-90,-91r0,-180r39,0r0,179v0,49,37,56,51,56v14,0,50,-7,50,-56r0,-179r39,0r0,180v1,55,-38,91,-89,91xm99,-280r-15,-27r80,-46r16,29","w":231},"\u00e1":{"d":"225,0r-37,0v-1,-10,2,-23,-1,-31v-14,24,-40,36,-67,36v-138,0,-144,-207,0,-210v29,-1,52,14,68,34r0,-28r37,0r0,199xm189,-99v0,-42,-30,-72,-69,-72v-93,0,-88,141,-1,142v39,0,70,-32,70,-70xm99,-220r-15,-27r80,-46r16,29","w":249},"\u00e9":{"d":"217,-84r-166,0v14,69,99,68,123,21r37,0v-43,114,-197,72,-197,-37v0,-60,46,-105,102,-105v60,1,111,51,101,121xm51,-112r129,0v-2,-29,-28,-59,-64,-59v-36,0,-63,30,-65,59xm90,-220r-15,-27r80,-46r16,29","w":231},"\u00ed":{"d":"62,-199r0,199r-38,0r0,-199r38,0xm32,-220r-15,-27r80,-46r16,29","w":85},"\u00f3":{"d":"229,-100v0,49,-40,105,-108,105v-67,0,-107,-56,-107,-106v0,-54,45,-104,107,-104v60,0,108,48,108,105xm192,-100v0,-35,-29,-71,-71,-71v-42,0,-70,35,-70,71v0,36,28,71,70,71v40,0,71,-33,71,-71xm96,-220r-15,-27r80,-46r16,29","w":243},"\u00fa":{"d":"107,5v-56,0,-84,-29,-83,-96r0,-108r37,0r0,108v0,49,22,62,50,62v31,0,52,-20,52,-64r0,-106r38,0r0,199r-35,0r0,-22v-10,17,-34,27,-59,27xm96,-220r-15,-27r80,-46r16,29","w":224},"\u20ac":{"d":"184,-256r0,39v-9,-10,-26,-19,-52,-19v-36,0,-55,24,-60,59r99,0r-10,30r-93,0r0,25r85,0r-10,31r-71,0v0,64,79,74,112,41r0,40v-8,6,-27,15,-57,15v-49,0,-82,-30,-91,-96r-28,0r10,-31r15,0v-1,-6,-1,-18,0,-25r-25,0r10,-30r17,0v8,-55,36,-95,92,-95v27,0,48,9,57,16"}}});Cufon.registerFont({"w":201,"face":{"font-family":"Avant Garde Demi","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"6","bbox":"-1 -368 347 90","underline-thickness":"18","underline-position":"-18","stemh":"44","stemv":"48","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"26,-68r0,-198r48,0r0,198r-48,0xm26,0r0,-46r48,0r0,46r-48,0","w":100},"\"":{"d":"45,-160r-29,0r-9,-106r48,0xm113,-160r-29,0r-9,-106r48,0","w":129},"#":{"d":"178,-105r-1,34r-31,0r-10,71r-36,0r10,-71r-33,0r-10,71r-36,0r10,-71r-31,0r2,-34r34,0r6,-42r-31,0r2,-34r34,0r9,-71r36,0r-9,71r32,0r10,-71r36,0r-10,71r28,0r-1,34r-31,0r-6,42r27,0xm121,-147r-33,0r-6,42r33,0"},"$":{"d":"21,-90r47,0v1,24,21,31,32,31v14,0,32,-10,32,-31v0,-24,-16,-29,-39,-35v-83,-19,-79,-115,-13,-137r0,-47r46,0r0,47v25,8,43,31,46,62r-45,0v-2,-7,-6,-22,-24,-22v-11,0,-24,10,-24,25v0,20,14,24,45,34v13,4,56,17,56,73v0,42,-26,65,-54,73r0,48r-46,0r0,-47v-59,-20,-59,-57,-59,-74"},"%":{"d":"13,-207v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-35,0,-65,-29,-65,-65xm53,-207v0,13,11,25,25,25v13,0,25,-11,25,-25v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25xm166,-60v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-30,65,-65,65v-35,0,-65,-28,-65,-65xm206,-60v0,14,11,25,25,25v13,0,25,-11,25,-25v0,-14,-12,-25,-25,-25v-14,0,-25,11,-25,25xm81,0r110,-266r37,0r-111,266r-36,0","w":309},"&":{"d":"185,-157r53,0r-46,80r47,51r-35,31r-36,-40v-10,13,-31,40,-68,40v-41,0,-88,-30,-88,-84v0,-46,34,-66,50,-75v-12,-14,-22,-28,-22,-50v0,-42,34,-68,68,-68v37,0,68,27,68,66v0,41,-30,59,-42,66r25,27xm104,-174v13,-7,27,-14,27,-30v0,-10,-5,-22,-23,-22v-30,0,-27,39,-4,52xm134,-71r-41,-45v-10,5,-33,15,-33,39v0,23,19,36,37,36v21,0,31,-19,37,-30","w":244},"(":{"d":"126,57v-50,-23,-94,-64,-99,-164v-3,-72,43,-145,99,-164r0,51v-36,29,-50,73,-50,113v0,60,32,99,50,112r0,52","w":136},")":{"d":"13,-271v51,22,95,63,100,163v4,72,-45,145,-100,165r0,-52v36,-29,50,-73,50,-113v0,-60,-32,-99,-50,-112r0,-51","w":136},"*":{"d":"80,-239r18,-33r20,14r-20,30r37,-2r-1,24r-36,-1r20,30r-22,12r-16,-33r-17,33r-22,-12r20,-30r-37,1r0,-24r37,2r-20,-30r20,-14","w":158},"+":{"d":"86,-113r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0r0,-69r-69,0r0,-44r69,0","w":216},",":{"d":"26,0r0,-48r48,0r0,51v0,38,-28,48,-47,48r0,-24v10,-1,24,-8,21,-27r-22,0","w":100},"-":{"d":"26,-83r0,-42r100,0r0,42r-100,0","w":151},"\u00ad":{"d":"26,-83r0,-42r100,0r0,42r-100,0","w":151},".":{"d":"26,0r0,-48r48,0r0,48r-48,0","w":100},"\/":{"d":"2,36r113,-302r48,0r-113,302r-48,0","w":165},"0":{"d":"101,5v-47,-1,-89,-32,-89,-91r0,-96v3,-121,176,-120,178,0r0,98v0,58,-42,89,-89,89xm143,-88v0,-55,15,-138,-41,-138v-23,0,-43,16,-43,46r0,91v0,41,26,49,42,49v14,0,42,-6,42,-48"},"1":{"d":"83,0r0,-221r-34,0r0,-45r82,0r0,266r-48,0"},"2":{"d":"102,-226v-31,1,-42,22,-41,51r-48,0v-3,-51,29,-97,87,-97v54,0,88,44,88,88v0,46,-70,108,-105,139r105,0r0,45r-172,0r0,-45r95,-89v26,-24,29,-40,29,-52v0,-28,-20,-40,-38,-40"},"3":{"d":"83,-127r0,-46v22,1,41,-4,42,-28v0,-19,-12,-25,-24,-25v-18,0,-23,16,-24,24r-48,0v5,-62,54,-70,71,-70v41,0,72,35,72,72v0,30,-16,42,-23,47v42,18,43,61,43,69v-1,113,-177,119,-182,4r48,0v8,57,83,50,86,-3v1,-23,-20,-47,-61,-44"},"4":{"d":"5,-79r123,-187r40,0r0,181r28,0r0,45r-28,0r0,40r-48,0r0,-40r-115,0r0,-39xm57,-85r63,0r0,-100"},"5":{"d":"21,-127r25,-139r121,0r0,45r-85,0r-9,49v60,-29,120,25,120,85v0,49,-39,92,-93,92v-47,0,-89,-38,-91,-84r48,0v11,65,88,39,88,-8v0,-22,-17,-47,-45,-47v-20,0,-30,11,-36,19"},"6":{"d":"104,-266r56,0r-59,90v49,-7,92,29,92,86v0,57,-43,95,-92,95v-73,0,-115,-91,-71,-158xm100,-133v-61,2,-54,94,1,93v61,-1,55,-95,-1,-93"},"7":{"d":"30,0r99,-221r-107,0r0,-45r157,0r0,45r-96,221r-53,0"},"8":{"d":"51,-148v-42,-31,-22,-124,50,-124v71,0,93,93,49,124v11,6,40,23,40,67v0,49,-43,86,-89,86v-46,0,-89,-37,-89,-86v0,-44,28,-61,39,-67xm129,-198v0,-16,-12,-28,-28,-28v-15,0,-28,12,-28,28v0,15,13,29,28,29v16,0,28,-14,28,-29xm142,-81v0,-23,-18,-41,-41,-41v-23,0,-41,18,-41,41v0,23,18,41,41,41v23,0,41,-18,41,-41"},"9":{"d":"98,0r-57,0r59,-90v-49,7,-91,-29,-91,-86v0,-57,43,-95,92,-95v73,0,115,91,71,158xm101,-133v62,-1,54,-94,0,-93v-60,0,-55,95,0,93"},":":{"d":"26,0r0,-48r48,0r0,48r-48,0xm26,-152r0,-48r48,0r0,48r-48,0","w":100},";":{"d":"26,0r0,-48r48,0r0,51v0,38,-28,48,-47,48r0,-24v10,-1,24,-8,21,-27r-22,0xm26,-152r0,-48r48,0r0,48r-48,0","w":100},"<":{"d":"199,-39r0,42r-182,-77r0,-34r182,-77r0,41r-126,53","w":216},"=":{"d":"199,-153r0,43r-182,0r0,-43r182,0xm199,-72r0,43r-182,0r0,-43r182,0","w":216},">":{"d":"17,-39r126,-52r-126,-53r0,-41r182,77r0,34r-182,77r0,-42","w":216},"?":{"d":"117,-67r-48,0v-1,-35,6,-58,33,-83v16,-15,27,-24,27,-40v0,-28,-21,-34,-34,-34v-28,0,-31,21,-33,35r-48,0v6,-83,78,-83,82,-83v41,0,81,30,81,82v0,17,-4,37,-37,66v-14,12,-26,27,-23,57xm69,0r0,-48r48,0r0,48r-48,0"},"@":{"d":"130,-79v28,0,46,-33,46,-57v0,-18,-10,-31,-27,-31v-28,0,-47,31,-47,56v0,19,10,32,28,32xm185,-172v4,-5,4,-14,7,-20r29,0r-27,106v0,4,2,7,7,7v18,0,41,-31,41,-65v0,-56,-42,-87,-93,-87v-59,0,-101,48,-101,106v0,97,125,137,183,71r27,0v-59,104,-240,56,-240,-72v0,-73,60,-130,132,-130v63,0,120,43,120,107v0,69,-58,100,-85,100v-12,0,-19,-8,-22,-20v-28,41,-92,12,-92,-38v0,-45,30,-90,77,-90v17,0,31,7,37,25","w":266},"A":{"d":"3,0r110,-266r39,0r112,266r-55,0r-28,-69r-96,0r-28,69r-54,0xm133,-197v-13,25,-20,55,-31,82r61,0","w":266},"B":{"d":"198,-79v0,85,-88,81,-173,79r0,-266v78,-4,158,-1,158,70v0,33,-22,46,-30,51v18,6,45,21,45,66xm75,-117r0,71v32,-2,65,9,74,-35v0,-11,-6,-36,-49,-36r-25,0xm75,-220r0,57v26,-1,53,6,58,-29v4,-22,-27,-31,-58,-28","w":208},"C":{"d":"217,-74r57,0v-21,49,-72,79,-123,79v-77,0,-139,-64,-139,-139v0,-73,61,-138,138,-138v44,0,100,24,126,82r-56,0v-47,-65,-158,-34,-158,56v0,50,41,93,88,93v36,0,55,-20,67,-33","w":280},"D":{"d":"237,-132v1,79,-62,139,-153,132r-61,0r0,-266r60,0v66,0,95,18,110,31v25,22,44,61,44,103xm187,-132v0,-60,-49,-95,-115,-88r0,174v67,7,116,-31,115,-86","w":252},"E":{"d":"22,0r0,-266r143,0r0,46r-94,0r0,65r90,0r0,46r-90,0r0,63r94,0r0,46r-143,0","w":187},"F":{"d":"22,0r0,-266r136,0r0,46r-87,0r0,65r83,0r0,46r-83,0r0,109r-49,0","w":172},"G":{"d":"120,-90r0,-46r174,0v3,82,-64,141,-141,141v-76,0,-143,-58,-143,-138v0,-78,67,-139,142,-139v67,0,115,46,129,84r-59,0v-12,-18,-37,-38,-72,-38v-60,0,-91,51,-91,93v0,41,31,92,94,92v33,0,64,-18,79,-49r-112,0","w":302},"H":{"d":"26,0r0,-266r49,0r0,108r95,0r0,-108r50,0r0,266r-50,0r0,-112r-95,0r0,112r-49,0","w":244},"I":{"d":"26,0r0,-266r49,0r0,266r-49,0","w":100},"J":{"d":"98,-266r49,0r0,190v0,71,-52,81,-72,81v-49,0,-68,-34,-74,-68r49,0v3,14,12,22,24,22v21,0,24,-20,24,-31r0,-194","w":172},"K":{"d":"32,0r0,-266r49,0r1,115r83,-115r58,0r-100,131r100,135r-58,0r-84,-117r0,117r-49,0","w":223},"L":{"d":"26,0r0,-266r49,0r0,220r82,0r0,46r-131,0","w":158},"M":{"d":"23,0r0,-266r68,0r72,201r70,-201r68,0r0,266r-49,0r-1,-200r-68,200r-42,0r-69,-200r0,200r-49,0","w":324},"N":{"d":"25,0r0,-266r56,0r111,193r0,-193r50,0r0,266r-56,0r-111,-194r0,194r-50,0","w":266},"O":{"d":"12,-132v0,-79,63,-140,139,-140v76,0,140,61,140,140v0,76,-63,137,-140,137v-77,0,-139,-61,-139,-137xm61,-133v0,49,39,92,90,92v51,0,90,-43,90,-92v0,-51,-40,-93,-90,-93v-50,0,-90,42,-90,93","w":302},"P":{"d":"196,-184v0,61,-57,91,-121,82r0,102r-49,0r0,-266r67,0v50,-7,103,28,103,82xm75,-220r0,72v32,-1,72,5,72,-36v0,-42,-40,-35,-72,-36"},"Q":{"d":"297,-41r0,46v-33,2,-59,-13,-71,-22v-90,59,-214,-11,-214,-115v0,-79,63,-140,139,-140v75,0,139,61,139,138v0,47,-19,72,-29,85v15,9,23,8,36,8xm187,-49v-46,-33,-67,-41,-111,-33v29,43,72,49,111,33xm62,-128v66,-21,165,48,160,51v7,-10,19,-24,19,-56v0,-53,-41,-93,-90,-93v-57,0,-93,49,-89,98","w":302},"R":{"d":"201,-184v2,34,-37,87,-70,86r72,98r-59,0r-72,-102r0,102r-49,0r0,-266v91,-2,174,-6,178,82xm72,-220r0,81r32,0v41,0,48,-27,48,-41v0,-15,-9,-40,-48,-40r-32,0","w":208},"S":{"d":"128,-74v0,-64,-115,-26,-114,-122v0,-93,148,-107,157,0r-50,0v-3,-43,-58,-37,-58,-3v0,23,18,28,45,37v22,7,69,24,69,82v0,58,-44,85,-86,85v-34,0,-84,-22,-87,-81r52,0v4,51,72,42,72,2","w":187},"T":{"d":"51,0r0,-220r-49,0r0,-46r148,0r0,46r-49,0r0,220r-50,0","w":151},"U":{"d":"211,-97v2,59,-35,102,-95,102v-41,0,-69,-22,-80,-38v-30,-45,-11,-159,-16,-233r49,0r0,169v0,13,0,56,46,56v46,0,46,-43,46,-56r0,-169r50,0r0,169","w":230},"V":{"d":"107,0r-104,-266r52,0r72,202r71,-202r52,0r-103,266r-40,0","w":252},"W":{"d":"80,0r-77,-266r50,0r47,186r45,-186r36,0r46,186r46,-186r51,0r-78,266r-39,0r-44,-176r-44,176r-39,0","w":324},"X":{"d":"1,0r92,-133r-92,-133r59,0r62,92r64,-92r57,0r-92,133r92,133r-57,0r-64,-92r-62,92r-59,0","w":244},"Y":{"d":"87,0r0,-98r-88,-168r54,0r58,122r59,-122r54,0r-88,168r0,98r-49,0","w":223},"Z":{"d":"7,-40r102,-180r-97,0r0,-46r154,0r0,42r-101,178r108,0r0,46r-166,0r0,-40","w":180},"[":{"d":"102,-271r0,52v-14,7,-29,13,-29,67r0,96v0,48,18,55,29,60r0,53v-101,-33,-78,-116,-78,-219v0,-86,59,-103,78,-109","w":115},"\\":{"d":"83,-266r113,302r-48,0r-113,-302r48,0","w":230},"]":{"d":"13,57r0,-53v35,1,29,-111,29,-163v0,-48,-18,-55,-29,-60r0,-52v101,33,78,115,78,218v0,86,-59,104,-78,110","w":115},"^":{"d":"69,-135r-43,0r63,-131r38,0r63,131r-43,0r-39,-89","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"221,-200r0,200r-44,0r0,-25v-57,61,-167,26,-167,-76v0,-61,45,-106,100,-106v43,0,63,30,67,32r0,-25r44,0xm175,-100v0,-41,-30,-63,-58,-63v-80,1,-75,128,0,126v33,0,58,-26,58,-63","w":237},"b":{"d":"17,0r0,-266r48,0r0,84v62,-62,163,2,163,81v0,40,-27,107,-100,107v-39,0,-55,-17,-67,-30r0,24r-44,0xm62,-103v0,87,118,86,118,3v0,-39,-29,-63,-59,-63v-37,0,-59,31,-59,60","w":237},"c":{"d":"166,-65r54,0v-32,107,-206,88,-207,-36v0,-61,51,-106,106,-106v25,0,80,11,101,73r-54,0v-6,-10,-17,-29,-47,-29v-29,0,-58,22,-58,63v0,56,75,90,105,35","w":230},"d":{"d":"222,-266r0,266r-43,0v-1,-7,2,-18,-1,-24v-9,14,-30,30,-64,30v-51,0,-102,-42,-102,-106v0,-94,108,-138,163,-82r0,-84r47,0xm60,-102v0,37,28,65,59,65v78,-1,76,-127,0,-126v-36,0,-59,33,-59,61","w":237},"e":{"d":"217,-78r-155,0v2,13,21,41,55,41v21,0,37,-9,46,-26r50,0v-12,36,-49,69,-96,69v-61,0,-106,-47,-106,-105v0,-57,42,-108,105,-108v74,0,115,63,101,129xm60,-117r111,0v-12,-61,-92,-65,-111,0","w":230},"f":{"d":"22,-200v-2,-28,29,-83,79,-72r0,47v-18,0,-30,1,-31,25r28,0r0,43r-28,0r0,157r-48,0r0,-157r-17,0r0,-43r17,0","w":100},"g":{"d":"178,-200r46,0r0,163v0,96,-71,118,-109,118v-41,0,-83,-21,-100,-66r54,0v19,22,42,22,50,22v26,1,61,-21,60,-63v-6,9,-24,32,-65,32v-49,0,-102,-41,-102,-108v0,-63,50,-105,101,-105v42,0,58,25,65,32r0,-25xm176,-102v0,-28,-22,-61,-58,-61v-29,0,-59,23,-59,61v1,84,117,86,117,0","w":237},"h":{"d":"19,0r0,-266r48,0r0,80v6,-6,22,-21,52,-21v22,0,49,12,62,31v32,49,10,109,16,176r-48,0r0,-102v0,-22,-1,-61,-41,-61v-40,0,-41,44,-41,61r0,102r-48,0","w":216},"i":{"d":"19,0r0,-200r48,0r0,200r-48,0xm19,-222r0,-44r48,0r0,44r-48,0","w":86},"j":{"d":"26,-200r48,0r0,191v0,44,-26,76,-68,76r0,-47v15,-2,20,-4,20,-30r0,-190xm26,-222r0,-44r48,0r0,44r-48,0","w":93},"k":{"d":"29,0r0,-266r48,0r0,160r64,-94r55,0r-72,98r82,102r-61,0r-68,-94r0,94r-48,0","w":208},"l":{"d":"19,0r0,-266r48,0r0,266r-48,0","w":86},"m":{"d":"234,-163v-60,0,-37,99,-41,163r-48,0v-7,-62,24,-163,-40,-163v-38,0,-38,42,-38,63r0,100r-48,0r0,-200r44,0v1,5,-2,14,1,17v14,-22,81,-44,110,8v36,-57,111,-27,130,-1v23,31,13,120,15,176r-48,0r0,-111v0,-12,1,-52,-37,-52","w":338},"n":{"d":"109,-163v-26,0,-42,34,-42,68r0,95r-48,0r0,-200r45,0r0,17v19,-26,88,-37,115,4v35,52,12,109,18,179r-48,0r0,-99v0,-17,0,-64,-40,-64","w":216},"o":{"d":"116,6v-59,0,-107,-49,-107,-106v0,-60,50,-107,107,-107v57,0,105,46,105,107v0,66,-50,106,-105,106xm116,-37v35,0,58,-30,58,-62v0,-79,-117,-89,-117,-1v0,38,29,63,59,63","w":230},"p":{"d":"17,67r0,-267r44,0v1,7,-2,18,1,24v71,-80,164,2,164,75v0,59,-43,107,-100,107v-34,0,-48,-13,-61,-25r0,86r-48,0xm62,-100v0,44,35,63,58,63v26,0,59,-22,59,-63v0,-37,-28,-63,-58,-63v-30,0,-59,24,-59,63","w":237},"q":{"d":"177,-200r44,0r0,267r-48,0r0,-86v-76,68,-162,-6,-162,-83v0,-57,46,-105,101,-105v42,0,56,23,65,32r0,-25xm59,-101v0,40,29,64,59,64v34,0,57,-31,57,-63v0,-31,-23,-63,-58,-63v-34,0,-58,29,-58,62","w":237},"r":{"d":"23,0r0,-200r44,0r0,18v9,-14,20,-26,47,-25r0,47v-44,2,-43,36,-43,48r0,112r-48,0","w":115},"s":{"d":"146,-145r-47,0v-6,-30,-37,-19,-37,0v0,12,8,14,34,22v25,8,56,20,56,60v-2,73,-88,90,-130,43v-12,-15,-14,-31,-15,-43r49,0v2,9,6,26,26,26v15,0,22,-13,22,-21v0,-15,-11,-17,-45,-29v-23,-8,-45,-25,-45,-58v0,-80,128,-83,132,0","w":158},"t":{"d":"31,0r0,-157r-23,0r0,-43r23,0r0,-66r48,0r0,66r29,0r0,43r-29,0r0,157r-48,0","w":108},"u":{"d":"100,6v-105,-2,-79,-110,-82,-206r48,0r0,102v0,16,0,61,42,61v61,0,35,-102,40,-163r48,0r0,200r-44,0v-1,-6,2,-16,-1,-20v-8,11,-20,26,-51,26","w":216},"v":{"d":"82,0r-81,-200r52,0r49,133r46,-133r52,0r-81,200r-37,0"},"w":{"d":"76,0r-72,-200r51,0r37,122r33,-122r38,0r33,122r37,-122r51,0r-73,200r-30,0r-38,-130r-38,130r-29,0","w":288},"x":{"d":"1,0r71,-103r-62,-97r54,0r36,60r37,-60r53,0r-61,97r71,103r-57,0r-43,-68r-42,68r-57,0"},"y":{"d":"39,67r37,-86r-73,-181r55,0r45,128r48,-128r55,0r-115,267r-52,0","w":208},"z":{"d":"7,0r0,-44r89,-112r-79,0r0,-44r136,0r0,44r-89,112r95,0r0,44r-152,0","w":165},"{":{"d":"-1,-84r0,-36v9,0,35,-1,35,-21r0,-78v7,-48,37,-53,80,-50r0,32v-50,-9,-31,58,-31,100v0,29,-29,32,-45,36v18,1,45,4,45,38r0,76v-2,17,11,27,31,23r0,33v-44,2,-80,-1,-80,-50r0,-78v0,-23,-26,-25,-35,-25","w":122},"|":{"d":"84,-270r48,0r0,360r-48,0r0,-360","w":216},"}":{"d":"123,-120r0,36v-9,0,-34,2,-34,25r0,78v-7,49,-37,53,-81,50r0,-33v50,9,31,-58,31,-99v0,-35,29,-35,45,-39v-18,-1,-45,-7,-45,-35r0,-76v2,-17,-10,-28,-31,-24r0,-32v44,-2,81,0,81,50r0,78v0,20,25,21,34,21","w":122},"~":{"d":"70,-124v24,0,56,23,77,24v14,0,23,-13,32,-25r13,35v-12,15,-24,32,-46,32v-35,0,-90,-49,-109,0r-13,-34v9,-16,22,-32,46,-32","w":216},"\u00a3":{"d":"14,0r0,-45r50,0v17,-30,1,-52,-14,-67r-51,0r0,-45r20,0v-19,-55,21,-115,81,-115v56,0,85,53,85,77r-49,0v-4,-21,-22,-31,-36,-31v-38,1,-48,45,-28,69r75,0r0,45r-40,0v12,17,14,47,7,67v37,-2,46,-25,37,-54r48,0v11,45,-10,99,-83,99r-102,0"},"'":{"d":"54,-160r-29,0r-9,-106r48,0","w":79},"\u2013":{"d":"13,-83r0,-42r154,0r0,42r-154,0","w":180},"`":{"d":"18,-270r21,-36r79,48r-19,33","w":151},"\u2014":{"d":"13,-83r0,-42r334,0r0,42r-334,0","w":360},"\u00c1":{"d":"3,0r110,-266r39,0r112,266r-55,0r-28,-69r-96,0r-28,69r-54,0xm133,-197v-13,25,-20,55,-31,82r61,0xm109,-286r-19,-33r80,-49r20,37","w":266},"\u00c9":{"d":"22,0r0,-266r143,0r0,46r-94,0r0,65r90,0r0,46r-90,0r0,63r94,0r0,46r-143,0xm69,-286r-19,-33r80,-49r20,37","w":187},"\u00cd":{"d":"26,0r0,-266r49,0r0,266r-49,0xm35,-286r-19,-33r80,-49r20,37","w":100},"\u00d3":{"d":"12,-132v0,-79,63,-140,139,-140v76,0,140,61,140,140v0,76,-63,137,-140,137v-77,0,-139,-61,-139,-137xm61,-133v0,49,39,92,90,92v51,0,90,-43,90,-92v0,-51,-40,-93,-90,-93v-50,0,-90,42,-90,93xm127,-286r-19,-33r80,-49r20,37","w":302},"\u00da":{"d":"211,-97v2,59,-35,102,-95,102v-41,0,-69,-22,-80,-38v-30,-45,-11,-159,-16,-233r49,0r0,169v0,13,0,56,46,56v46,0,46,-43,46,-56r0,-169r50,0r0,169xm103,-286r-19,-33r80,-49r21,37","w":230},"\u00e1":{"d":"221,-200r0,200r-44,0r0,-25v-57,61,-167,26,-167,-76v0,-61,45,-106,100,-106v43,0,63,30,67,32r0,-25r44,0xm175,-100v0,-41,-30,-63,-58,-63v-80,1,-75,128,0,126v33,0,58,-26,58,-63xm94,-225r-19,-33r80,-48r21,36","w":237},"\u00e9":{"d":"217,-78r-155,0v2,13,21,41,55,41v21,0,37,-9,46,-26r50,0v-12,36,-49,69,-96,69v-61,0,-106,-47,-106,-105v0,-57,42,-108,105,-108v74,0,115,63,101,129xm60,-117r111,0v-12,-61,-92,-65,-111,0xm91,-225r-19,-33r80,-48r20,36","w":230},"\u00ed":{"d":"19,0r0,-200r48,0r0,200r-48,0xm28,-225r-19,-33r80,-48r20,36","w":86},"\u00f3":{"d":"116,6v-59,0,-107,-49,-107,-106v0,-60,50,-107,107,-107v57,0,105,46,105,107v0,66,-50,106,-105,106xm116,-37v35,0,58,-30,58,-62v0,-79,-117,-89,-117,-1v0,38,29,63,59,63xm91,-225r-19,-33r80,-48r20,36","w":230},"\u00fa":{"d":"100,6v-105,-2,-79,-110,-82,-206r48,0r0,102v0,16,0,61,42,61v61,0,35,-102,40,-163r48,0r0,200r-44,0v-1,-6,2,-16,-1,-20v-8,11,-20,26,-51,26xm96,-225r-19,-33r80,-48r20,36","w":216},"\u20ac":{"d":"34,-173v1,-56,34,-99,91,-99v42,0,69,25,77,38r-16,43v-9,-21,-27,-35,-61,-35v-31,0,-44,27,-44,53r99,0r-13,34r-86,0r0,20r79,0r-12,34r-66,0v4,21,16,45,43,45v23,0,48,-10,57,-26r0,53v-5,5,-25,18,-57,18v-57,0,-87,-41,-91,-90r-33,0r13,-34r19,0r0,-20r-32,0r13,-34r20,0"}}});Cufon.registerFont({"w":222,"face":{"font-family":"Avant Garde Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 0 0 0 0 0 0 0","ascent":"262","descent":"-98","x-height":"6","bbox":"-1.8324 -365 347 95.6741","underline-thickness":"18","underline-position":"-18","stemh":"45","stemv":"60","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":111,"k":{"Y":22,"W":9,"V":29,"T":9,"A":7}},"\u00a0":{"w":111},"!":{"d":"91,-266r0,178r-62,0r0,-178r62,0xm91,-61r0,61r-62,0r0,-61r62,0","w":119},"\"":{"d":"63,-159r-39,0r-12,-107r63,0xm142,-159r-38,0r-12,-107r62,0","w":166},"#":{"d":"157,-79r-9,63r-41,0r9,-63r-28,0r-9,63r-41,0r9,-63r-36,0r6,-40r36,0r3,-26r-36,0r6,-40r36,0r7,-57r42,0r-8,57r28,0r8,-57r41,0r-8,57r40,0r-6,40r-40,0r-4,26r40,0r-5,40r-40,0xm122,-119r3,-26r-28,0r-3,26r28,0"},"$":{"d":"89,-9v-25,-1,-65,-34,-60,-72r61,0v0,5,3,26,22,26v9,0,20,-7,20,-21v0,-12,-6,-22,-33,-32v-30,-11,-68,-25,-68,-75v0,-44,31,-65,58,-73r0,-36r48,0r0,36v29,7,51,31,50,69r-56,0v0,-5,-1,-23,-19,-23v-12,0,-20,10,-20,20v0,18,17,25,49,37v45,17,53,50,53,69v0,6,-1,56,-57,74r0,37r-48,0r0,-36"},"%":{"d":"13,-207v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-35,0,-65,-29,-65,-65xm53,-207v0,13,11,25,25,25v13,0,25,-11,25,-25v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25xm166,-60v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-30,65,-65,65v-35,0,-65,-28,-65,-65xm206,-60v0,14,11,25,25,25v13,0,25,-11,25,-25v0,-14,-12,-25,-25,-25v-14,0,-25,11,-25,25xm78,0r110,-266r42,0r-111,266r-41,0","w":308},"&":{"d":"199,-157r63,0v-13,30,-20,60,-40,85r36,37r-41,40r-31,-32v-10,9,-36,32,-79,32v-50,0,-89,-34,-89,-77v0,-40,30,-60,49,-73v-51,-47,-19,-127,49,-126v41,0,69,29,69,65v0,35,-24,53,-36,61r31,32xm146,-66r-42,-43v-26,10,-29,57,10,57v19,0,27,-8,32,-14xm115,-177v14,-9,27,-42,1,-46v-24,-1,-15,40,-1,46","w":272},"(":{"d":"155,33r0,62v-96,-36,-132,-116,-132,-183v0,-67,36,-147,132,-183r0,62v-30,16,-65,61,-65,122v0,57,33,102,65,120","w":170},")":{"d":"15,-209r0,-62v96,36,132,116,132,183v0,67,-36,147,-132,183r0,-62v30,-16,65,-61,65,-122v0,-57,-33,-102,-65,-120","w":170},"*":{"d":"200,-194r-47,15r30,39r-34,26r-29,-42r-29,42r-33,-26r31,-39r-48,-15r13,-39r46,17r-1,-50r43,0r-2,50r46,-17","w":241},"+":{"d":"79,-120r0,-62r58,0r0,62r62,0r0,58r-62,0r0,62r-58,0r0,-62r-62,0r0,-58r62,0","w":216},",":{"d":"88,-61r0,75v-5,47,-26,45,-62,44r0,-32v21,1,32,-5,28,-26r-28,0r0,-61r62,0","w":113,"k":{" ":18}},"-":{"d":"101,-133r0,58r-101,0r0,-58r101,0","w":101},"\u00ad":{"d":"101,-133r0,58r-101,0r0,-58r101,0","w":101},".":{"d":"88,-61r0,61r-62,0r0,-61r62,0","w":113,"k":{" ":18}},"\/":{"d":"26,36r95,-302r67,0r-95,302r-67,0","w":213},"0":{"d":"12,-96r0,-74v0,-77,62,-101,100,-101v34,0,99,22,99,101r0,74v0,74,-57,101,-99,101v-39,0,-100,-26,-100,-101xm111,-212v-53,0,-31,70,-31,118v0,16,5,39,31,39v57,-12,32,-67,32,-117v0,-8,-1,-40,-32,-40"},"1":{"d":"149,-266r0,266r-68,0r0,-209r-44,0r0,-57r112,0"},"2":{"d":"116,-57r90,0r0,57r-188,0r0,-53v33,-22,57,-37,82,-65v8,-9,36,-41,36,-68v0,-11,-6,-26,-25,-26v-27,0,-29,27,-30,42r-65,0v1,-17,2,-39,16,-61v52,-77,172,-34,172,37v0,57,-46,100,-88,137"},"3":{"d":"12,-80r69,0v1,6,6,25,30,25v20,0,29,-13,29,-30v0,-35,-31,-26,-59,-27r0,-50v19,-1,45,6,45,-26v0,-12,-6,-24,-19,-24v-20,0,-21,17,-21,23r-67,0v3,-118,176,-97,175,-10v0,37,-26,51,-36,56v50,17,50,56,50,65v4,81,-136,114,-181,46v-12,-17,-14,-38,-15,-48"},"4":{"d":"123,-47r-118,0r0,-49r120,-170r63,0r0,166r29,0r0,53r-29,0r0,47r-65,0r0,-47xm74,-100r53,0r-1,-84"},"5":{"d":"78,-71v17,29,67,15,67,-19v0,-35,-57,-52,-71,-12r-55,-14r23,-150r147,0r0,57r-95,0r-6,36v7,-4,15,-8,36,-8v63,0,89,53,89,90v0,41,-30,96,-102,96v-57,0,-94,-34,-102,-76r69,0"},"6":{"d":"113,5v-90,0,-130,-102,-81,-174r66,-97r79,0v-18,27,-44,54,-58,81v49,-9,97,25,97,89v0,61,-47,101,-103,101xm75,-92v0,51,74,46,73,1v0,-17,-13,-36,-37,-36v-22,0,-36,16,-36,35"},"7":{"d":"23,-266r174,0r0,52r-94,214r-75,0r99,-209r-104,0r0,-57"},"8":{"d":"167,-147v39,17,41,56,41,68v0,45,-40,84,-96,84v-56,0,-98,-39,-98,-84v0,-10,2,-51,42,-68v-9,-7,-26,-21,-26,-50v0,-39,30,-74,81,-74v81,0,102,94,56,124xm87,-192v2,37,49,30,49,-1v0,-14,-12,-23,-24,-23v-13,0,-25,9,-25,24xm82,-85v0,16,11,30,30,30v37,-1,38,-60,-1,-61v-15,0,-29,12,-29,31"},"9":{"d":"111,-271v58,0,111,43,106,101v-6,74,-62,115,-92,170r-79,0r58,-81v-49,7,-97,-26,-97,-89v0,-61,48,-101,104,-101xm149,-175v-1,-50,-74,-47,-74,-1v0,17,13,36,37,36v22,0,37,-16,37,-35"},":":{"d":"88,-61r0,61r-62,0r0,-61r62,0xm88,-200r0,61r-62,0r0,-61r62,0","w":113},";":{"d":"88,-61r0,75v-5,47,-26,45,-62,44r0,-32v21,1,32,-5,28,-26r-28,0r0,-61r62,0xm88,-200r0,61r-62,0r0,-61r62,0","w":113},"<":{"d":"199,-49r0,63r-182,-77r0,-56r182,-77r0,63r-122,42","w":216},"=":{"d":"199,-167r0,57r-182,0r0,-57r182,0xm199,-72r0,57r-182,0r0,-57r182,0","w":216},">":{"d":"17,-49r122,-42r-122,-42r0,-63r182,77r0,56r-182,77r0,-63","w":216},"?":{"d":"67,-85v-8,-35,63,-72,62,-103v0,-13,-6,-22,-21,-22v-24,0,-24,21,-24,35r-66,0v-6,-56,37,-96,94,-96v56,0,86,40,86,76v0,49,-66,79,-68,110r-63,0xm130,-61r0,61r-63,0r0,-61r63,0","w":213},"@":{"d":"173,-197r37,0r-16,95v0,8,4,11,10,11v13,0,30,-28,30,-63v0,-50,-40,-85,-93,-85v-64,0,-105,53,-105,108v0,28,14,104,105,104v26,0,52,-4,76,-13r8,33v-36,13,-75,13,-84,13v-205,-9,-175,-278,-1,-278v76,0,127,52,127,118v0,52,-33,97,-70,97v-19,0,-30,-11,-35,-26v-30,53,-99,20,-99,-38v0,-53,74,-113,107,-59xm162,-139v0,-13,-6,-29,-24,-29v-21,0,-36,23,-36,46v0,23,15,31,27,31v20,0,33,-21,33,-48","w":269},"A":{"d":"183,-39r-93,0r-14,39r-73,0r107,-266r54,0r106,266r-74,0xm165,-93v-11,-29,-15,-65,-29,-91r-27,91r56,0","w":272,"k":{"y":24,"w":23,"v":25,"u":7,"Y":29,"W":22,"V":37,"U":14,"T":9,"Q":18,"O":13,"G":14,"C":14}},"B":{"d":"220,-81v-3,56,-43,81,-111,81r-85,0r0,-266v85,-1,185,-12,183,69v0,21,-9,42,-31,54v43,15,44,51,44,62xm89,-207r0,42v24,-2,48,9,53,-21v-4,-29,-29,-19,-53,-21xm89,-108r0,48v31,-3,59,13,66,-25v-5,-34,-37,-20,-66,-23","w":232,"k":{"A":4}},"C":{"d":"217,-100r71,0v-15,63,-70,105,-134,105v-84,0,-141,-67,-141,-139v0,-68,53,-137,140,-137v84,0,128,64,135,106r-71,0v-8,-20,-27,-47,-64,-47v-96,1,-93,157,0,157v42,0,60,-36,64,-45","w":299,"k":{"A":14}},"D":{"d":"21,0r0,-266v93,6,149,-28,205,49v61,86,24,220,-112,217r-93,0xm183,-133v0,-49,-29,-83,-94,-74r0,147v63,8,94,-24,94,-73","w":267,"k":{"Y":16,"W":9,"V":18,"A":18,".":7,",":7}},"E":{"d":"24,0r0,-266r148,0r0,59r-83,0r0,42r81,0r0,60r-81,0r0,45r83,0r0,60r-148,0","w":190},"F":{"d":"24,0r0,-266r146,0r0,59r-81,0r0,46r78,0r0,59r-78,0r0,102r-65,0","w":182,"k":{"e":7,"a":7,"A":22,".":46,",":58}},"G":{"d":"138,-152r158,0v6,99,-64,156,-142,157v-81,0,-141,-62,-141,-139v0,-80,64,-137,142,-137v64,0,118,43,133,94r-76,0v-28,-56,-131,-44,-131,43v0,93,116,104,136,37r-79,0r0,-55","w":307,"k":{".":7,",":7}},"H":{"d":"24,0r0,-266r68,0r0,100r87,0r0,-100r68,0r0,266r-68,0r0,-107r-87,0r0,107r-68,0","w":271},"I":{"d":"24,0r0,-266r68,0r0,266r-68,0","w":116},"J":{"d":"184,-105v5,85,-37,101,-92,110v-6,0,-90,0,-90,-91r73,0v1,12,2,31,20,31v21,0,21,-22,21,-34r0,-177r68,0r0,161","w":208,"k":{"a":7,"A":11,".":5}},"K":{"d":"31,0r0,-266r68,0r1,119r75,-119r72,0r-89,132r94,134r-79,0r-74,-115r0,115r-68,0","w":254,"k":{"y":14,"u":11,"o":16,"e":16,"O":11}},"L":{"d":"26,0r0,-266r68,0r0,206r79,0r0,60r-147,0","w":175,"k":{"y":8,"Y":29,"W":20,"V":31,"T":17}},"M":{"d":"24,0r0,-266r88,0r53,175r52,-175r88,0r0,266r-62,0r1,-200r-57,200r-45,0r-57,-199r2,199r-63,0","w":329},"N":{"d":"24,0r0,-266r59,0r103,167r-2,-167r65,0r0,266r-59,0r-103,-162r2,162r-65,0","w":273},"O":{"d":"23,-187v13,-35,55,-84,130,-84v82,0,141,64,141,138v0,74,-58,138,-141,138v-105,0,-166,-95,-130,-192xm153,-212v-97,1,-94,158,1,157v48,0,72,-44,72,-78v0,-35,-24,-79,-73,-79","w":306,"k":{"Y":11,"X":11,"W":7,"V":16,"T":5,"A":22,".":11,",":11}},"P":{"d":"225,-176v0,71,-51,99,-136,92r0,84r-65,0r0,-266r87,0v88,-3,114,30,114,90xm89,-207r0,64v33,-2,64,11,70,-32v-5,-41,-38,-30,-70,-32","w":228,"k":{"o":7,"e":7,"a":7,"A":31,".":72,",":79}},"Q":{"d":"308,-49r0,54v-36,3,-76,-9,-80,-20v-105,62,-215,-24,-215,-117v0,-70,54,-139,140,-139v86,0,142,68,142,136v0,44,-15,67,-22,77v9,8,21,9,35,9xm218,-97v26,-49,-10,-115,-65,-115v-36,0,-65,26,-72,68v55,-21,90,-4,137,47xm184,-61v-10,-17,-55,-57,-96,-38v20,42,57,55,96,38","w":311,"k":{",":-7}},"R":{"d":"108,-266v84,-4,115,32,115,91v0,31,-16,76,-66,84r72,91r-77,0r-63,-86r0,86r-65,0r0,-266r84,0xm89,-207r0,75r24,0v40,0,45,-26,45,-39v1,-33,-33,-38,-69,-36","w":235,"k":{"W":-4,"V":4,"U":-4,"T":-9,"O":-4}},"S":{"d":"130,-77v0,-46,-119,-33,-117,-116v2,-80,118,-103,165,-48v16,19,17,37,18,52r-67,0v-1,-9,-4,-26,-25,-26v-12,0,-23,8,-23,21v0,16,7,19,55,41v50,22,62,45,62,76v0,39,-22,82,-93,82v-81,0,-97,-49,-96,-93r68,0v0,53,53,41,53,11","w":206,"k":{",":-7}},"T":{"d":"56,0r0,-207r-52,0r0,-59r172,0r0,59r-52,0r0,207r-68,0","w":179,"k":{"y":4,"w":20,"u":17,"r":11,"o":18,"e":18,"a":25,"O":5,"A":9,";":10,":":5,".":33,"-":27,",":30}},"U":{"d":"23,-266r68,0r0,161v0,18,2,50,35,50v34,0,34,-29,34,-50r0,-161r68,0v-5,81,16,203,-27,242v-37,34,-105,44,-151,1v-49,-47,-19,-157,-27,-243","w":251,"k":{"A":14,".":7,",":7}},"V":{"d":"6,-266r70,0r54,186r54,-186r70,0r-89,266r-70,0","w":259,"k":{"u":20,"o":36,"i":11,"e":36,"a":34,"O":16,"G":7,"A":37,";":12,":":6,".":52,"-":27,",":52}},"W":{"d":"6,-266r69,0r36,173r39,-173r53,0r39,173r36,-173r69,0r-71,266r-59,0r-41,-172r-40,172r-61,0","w":353,"k":{"y":12,"u":11,"o":17,"i":4,"e":17,"a":18,"O":7,"A":21,";":12,":":5,".":38,"-":13,",":38}},"X":{"d":"182,-266r76,0r-81,126r92,140r-77,0r-57,-94r-55,94r-76,0r93,-142r-82,-124r77,0r46,76","w":273},"Y":{"d":"83,0r0,-97r-80,-169r74,0r40,107r40,-107r73,0r-79,169r0,97r-68,0","w":232,"k":{"u":25,"o":32,"i":7,"e":32,"a":33,"O":11,"A":29,";":8,":":4,".":52,"-":36,",":52}},"Z":{"d":"6,0r0,-45r92,-162r-92,0r0,-59r168,0r0,55r-85,151r85,0r0,60r-168,0","w":179},"[":{"d":"144,-271r0,62v-36,2,-39,27,-39,48r0,145v0,22,3,46,39,48r0,63v-13,-1,-40,-3,-67,-22v-39,-27,-40,-69,-40,-91r0,-140v0,-26,2,-64,40,-92v27,-20,55,-20,67,-21","w":170},"\\":{"d":"188,36r-67,0r-95,-302r66,0","w":213},"]":{"d":"26,95r0,-63v36,-2,39,-27,39,-48r0,-145v0,-22,-3,-46,-39,-48r0,-62v13,1,40,2,67,21v39,27,40,70,40,92r0,140v0,26,-2,63,-40,91v-27,20,-55,21,-67,22","w":170},"^":{"d":"80,-135r-65,0r63,-131r60,0r63,131r-65,0r-28,-80","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"231,-200r0,200r-59,0v-1,-7,2,-17,-1,-22v-10,19,-35,29,-58,29v-63,0,-101,-50,-101,-107v0,-95,114,-137,160,-79r0,-21r59,0xm72,-99v0,19,14,50,50,50v71,0,65,-102,-1,-102v-34,0,-49,29,-49,52","w":253,"k":{"t":-2,"p":-7,"b":-2}},"b":{"d":"22,0r0,-266r59,0r0,82v21,-23,50,-23,58,-23v42,0,99,30,99,106v0,100,-110,138,-159,80r0,21r-57,0xm129,-151v-66,-1,-65,104,-1,102v31,0,50,-25,50,-51v0,-26,-19,-51,-49,-51","w":249,"k":{"y":7,"v":7,"b":4}},"c":{"d":"163,-76r61,0v-11,45,-51,82,-105,82v-60,0,-107,-47,-107,-106v0,-59,45,-107,105,-107v53,0,96,35,106,84r-60,0v-6,-14,-18,-28,-43,-28v-28,0,-48,22,-48,51v0,55,79,65,91,24","w":234,"k":{"y":7,"k":5}},"d":{"d":"230,-266r0,266r-57,0v-1,-7,2,-17,-1,-22v-5,8,-20,28,-60,28v-60,0,-100,-46,-100,-106v0,-68,48,-107,99,-107v35,0,53,18,59,24r0,-83r60,0xm72,-101v0,31,22,52,50,52v70,0,67,-102,1,-102v-35,0,-51,27,-51,50","w":251},"e":{"d":"214,-63v-17,38,-48,69,-97,69v-57,0,-106,-46,-106,-105v0,-56,44,-108,105,-108v66,1,112,54,104,125r-150,0v4,41,65,50,83,19r61,0xm71,-122r90,0v-3,-12,-14,-34,-45,-34v-31,0,-42,22,-45,34","w":232,"k":{"y":7,"x":9,"w":7,"v":7}},"f":{"d":"24,0r0,-154r-23,0r0,-46r23,0v-3,-64,44,-74,85,-71r0,45v-15,-2,-26,3,-25,26r25,0r0,46r-25,0r0,154r-60,0","w":113,"k":{"o":2,"a":2,".":18,",":18}},"g":{"d":"229,-24v3,81,-36,113,-113,113v-69,0,-96,-42,-100,-70r69,0v9,20,31,20,35,20v9,3,52,-8,48,-61v-6,12,-24,28,-55,28v-54,0,-101,-41,-101,-105v0,-92,101,-139,157,-82r0,-19r60,0r0,176xm72,-101v0,32,23,52,48,52v29,0,49,-21,49,-50v0,-32,-22,-51,-49,-51v-26,0,-48,20,-48,49","w":249,"k":{"i":-4}},"h":{"d":"81,-181v45,-56,126,-17,126,69r0,112r-60,0r0,-109v0,-10,0,-41,-32,-41v-33,0,-34,29,-34,39r0,111r-59,0r0,-266r59,0r0,85","w":227,"k":{"y":11}},"i":{"d":"81,-200r0,200r-59,0r0,-200r59,0xm81,-266r0,45r-59,0r0,-45r59,0","w":102},"j":{"d":"91,-200r0,196v4,51,-19,82,-89,77r0,-45v24,3,29,-13,29,-30r0,-198r60,0xm91,-266r0,45r-60,0r0,-45r60,0","w":115},"k":{"d":"24,0r0,-266r60,0r0,139r56,-73r71,0r-76,88r73,112r-67,0r-57,-96r0,96r-60,0","w":212,"k":{"y":2,"o":11,"e":9}},"l":{"d":"22,0r0,-266r59,0r0,266r-59,0","w":102},"m":{"d":"191,-171v37,-64,157,-37,137,62r0,109r-59,0r0,-106v0,-16,0,-44,-31,-44v-33,0,-33,30,-33,41r0,109r-60,0r0,-109v0,-11,0,-41,-30,-41v-34,0,-34,32,-34,44r0,106r-59,0r0,-200r55,0v1,6,-2,16,1,21v5,-8,18,-28,55,-28v18,0,42,6,58,36","w":348,"k":{"y":7,"u":7}},"n":{"d":"132,-207v50,0,75,16,75,82r0,125r-60,0r0,-109v0,-14,0,-41,-31,-41v-34,0,-35,29,-35,41r0,109r-59,0r0,-200r55,0v1,6,-2,16,1,21v6,-10,18,-28,54,-28","w":227,"k":{"y":5,"v":11}},"o":{"d":"12,-100v0,-49,35,-106,108,-106v73,0,108,57,108,106v0,49,-35,106,-108,106v-73,0,-108,-57,-108,-106xm72,-100v0,29,22,50,48,50v26,0,48,-21,48,-50v0,-29,-22,-50,-48,-50v-26,0,-48,21,-48,50","w":239,"k":{"y":7,"x":5,"w":7,"v":11}},"p":{"d":"22,67r0,-267r56,0v1,7,-2,17,1,22v12,-15,31,-29,62,-29v139,0,122,216,0,214v-36,0,-53,-17,-60,-25r0,85r-59,0xm129,-49v64,-1,68,-101,0,-102v-67,1,-65,101,0,102","w":250,"k":{"y":7}},"q":{"d":"230,-200r0,267r-60,0r-1,-88v-7,9,-22,27,-60,27v-57,0,-97,-45,-97,-102v0,-69,46,-111,101,-111v39,0,55,22,59,29r0,-22r58,0xm122,-151v-64,1,-69,102,0,102v31,0,50,-27,50,-51v0,-21,-14,-51,-50,-51","w":251},"r":{"d":"21,0r0,-200r56,0v1,6,-2,16,1,21v5,-10,15,-28,50,-28r0,60v-28,1,-47,7,-47,37r0,110r-60,0","w":130,"k":{"y":-14,"v":-14,"u":-7,"t":-7,"s":-7,"q":3,"p":-7,"n":-8,"m":-10,"l":-7,"k":-7,"i":-7,"e":1,"d":2,"c":3,".":26,"-":22,",":27}},"s":{"d":"165,-144r-58,0v0,-4,-1,-15,-19,-15v-13,0,-17,9,-17,14v0,11,15,16,31,21v34,9,69,20,69,63v0,83,-149,101,-162,2r59,0v3,18,20,18,23,18v10,0,21,-6,21,-16v0,-15,-15,-18,-53,-32v-26,-9,-48,-25,-48,-52v0,-40,37,-66,78,-66v26,0,71,10,76,63","w":179,"k":{".":-7,",":-7}},"t":{"d":"93,-266r0,66r29,0r0,46r-29,0r0,154r-60,0r0,-154r-29,0r0,-46r29,0r0,-66r60,0","w":126},"u":{"d":"207,-200r0,200r-57,0v-1,-6,2,-16,-1,-21v-12,26,-36,27,-51,27v-12,0,-41,-3,-59,-25v-34,-41,-12,-116,-18,-181r60,0r0,111v0,14,0,40,32,40v17,0,34,-9,34,-41r0,-110r60,0","w":228},"v":{"d":"207,-200r-72,200r-57,0r-72,-200r62,0r39,125r38,-125r62,0","w":213,"k":{"o":7,"e":7,"a":11,".":32,",":32}},"w":{"d":"3,-200r61,0r31,124r33,-124r50,0r34,124r30,-124r61,0r-61,200r-55,0r-34,-129r-34,129r-55,0","w":306,"k":{"o":11,"h":-5,"e":7,"a":11,".":32,",":32}},"x":{"d":"145,-200r71,0r-67,93r77,107r-73,0r-40,-62r-41,62r-72,0r76,-107r-67,-93r72,0r32,53","w":226,"k":{"e":9}},"y":{"d":"143,-200r63,0r-100,267r-63,0r32,-77r-75,-190r64,0r41,116","w":206,"k":{"o":11,"e":7,"a":11,".":22,",":32}},"z":{"d":"76,-45r78,0r0,45r-149,0r0,-41r85,-113r-85,0r0,-46r149,0r0,46","w":159},"{":{"d":"174,-221v-23,-3,-46,5,-41,23r0,76v1,37,-29,32,-39,39v13,1,39,7,39,33r0,76v-4,18,17,28,41,24r0,45v-52,2,-101,3,-101,-50r0,-76v0,-20,-26,-22,-35,-22r0,-62v9,0,35,-2,35,-24r0,-78v2,-53,50,-51,101,-49r0,45","w":199},"|":{"d":"67,-266r66,0r0,302r-66,0r0,-302","w":199},"}":{"d":"66,-198v4,-17,-17,-27,-40,-23r0,-45v51,-1,101,-4,101,49r0,78v0,22,26,24,35,24r0,62v-9,0,-35,2,-35,22r0,76v-2,53,-49,52,-101,50r0,-45v23,4,45,-6,40,-24r0,-76v-1,-29,30,-29,39,-35v-13,-1,-39,-3,-39,-37r0,-76","w":199},"~":{"d":"70,-135v23,0,55,24,77,24v14,0,23,-13,32,-25r13,57v-12,15,-24,32,-46,32v-36,0,-90,-50,-109,0r-13,-56v9,-16,22,-32,46,-32","w":216},"\u00a3":{"d":"161,-91r58,0v10,42,-4,91,-75,91r-128,0r0,-53v23,0,50,3,50,-20v0,-13,-9,-21,-15,-29r-46,0r0,-48r17,0v-30,-55,14,-120,86,-122v51,0,93,37,94,89r-62,0v-1,-10,-6,-29,-31,-29v-35,-1,-33,50,-16,62r56,0r0,48r-28,0v15,13,15,40,-2,49v26,3,50,-4,42,-38"},"'":{"d":"63,-159r-39,0r-12,-107r63,0","w":87},"\u2013":{"d":"167,-133r0,58r-154,0r0,-58r154,0","w":180},"`":{"d":"58,-302r87,46r-16,35r-89,-39","w":199},"\u2014":{"d":"347,-133r0,58r-334,0r0,-58r334,0","w":360},"\u00c1":{"d":"183,-39r-93,0r-14,39r-73,0r107,-266r54,0r106,266r-74,0xm165,-93v-11,-29,-15,-65,-29,-91r-27,91r56,0xm177,-357r20,42r-89,39r-17,-35","w":272},"\u00c9":{"d":"24,0r0,-266r148,0r0,59r-83,0r0,42r81,0r0,60r-81,0r0,45r83,0r0,60r-148,0xm136,-365r19,43r-88,39r-17,-35","w":190},"\u00cd":{"d":"24,0r0,-266r68,0r0,266r-68,0xm108,-365r19,43r-88,39r-17,-35","w":116},"\u00d3":{"d":"23,-187v13,-35,55,-84,130,-84v82,0,141,64,141,138v0,74,-58,138,-141,138v-105,0,-166,-95,-130,-192xm153,-212v-97,1,-94,158,1,157v48,0,72,-44,72,-78v0,-35,-24,-79,-73,-79xm194,-365r19,43r-88,39r-17,-35","w":306},"\u00da":{"d":"23,-266r68,0r0,161v0,18,2,50,35,50v34,0,34,-29,34,-50r0,-161r68,0v-5,81,16,203,-27,242v-37,34,-105,44,-151,1v-49,-47,-19,-157,-27,-243xm179,-365r19,43r-88,39r-17,-35","w":251},"\u00e1":{"d":"231,-200r0,200r-59,0v-1,-7,2,-17,-1,-22v-10,19,-35,29,-58,29v-63,0,-101,-50,-101,-107v0,-95,114,-137,160,-79r0,-21r59,0xm72,-99v0,19,14,50,50,50v71,0,65,-102,-1,-102v-34,0,-49,29,-49,52xm168,-305r19,42r-89,39r-17,-35","w":253},"\u00e9":{"d":"214,-63v-17,38,-48,69,-97,69v-57,0,-106,-46,-106,-105v0,-56,44,-108,105,-108v66,1,112,54,104,125r-150,0v4,41,65,50,83,19r61,0xm71,-122r90,0v-3,-12,-14,-34,-45,-34v-31,0,-42,22,-45,34xm157,-305r19,42r-88,39r-17,-35","w":232},"\u00ed":{"d":"81,-200r0,200r-59,0r0,-200r59,0xm102,-305r19,42r-89,39r-17,-35","w":102},"\u00f3":{"d":"12,-100v0,-49,35,-106,108,-106v73,0,108,57,108,106v0,49,-35,106,-108,106v-73,0,-108,-57,-108,-106xm72,-100v0,29,22,50,48,50v26,0,48,-21,48,-50v0,-29,-22,-50,-48,-50v-26,0,-48,21,-48,50xm161,-305r19,42r-89,39r-16,-35","w":239},"\u00fa":{"d":"207,-200r0,200r-57,0v-1,-6,2,-16,-1,-21v-12,26,-36,27,-51,27v-12,0,-41,-3,-59,-25v-34,-41,-12,-116,-18,-181r60,0r0,111v0,14,0,40,32,40v17,0,34,-9,34,-41r0,-110r60,0xm168,-305r19,42r-89,39r-17,-35","w":228},"\u20ac":{"d":"203,-256r0,57v-8,-9,-24,-18,-50,-18v-32,0,-48,16,-53,42r89,0r-12,34r-80,0v-1,6,-1,14,0,20r73,0r-12,34r-56,0v0,45,78,46,101,21r0,57v-8,6,-27,14,-59,14v-64,0,-98,-32,-108,-92r-31,0r13,-34r15,0v-1,-5,-1,-15,0,-20r-28,0r13,-34r17,0v10,-56,40,-96,109,-96v30,0,51,9,59,15"}}});var megaMenusAvailable=false;var megaMenuSelected;var deferMenu=function(el){var preventDefault=function(e){if(!e)e=window.event;e.cancelBubble=true;e.returnValue=false;if(e.preventDefault){e.preventDefault();}};var offSet=function(o){var l=0;var t=0;if(o.offsetParent){do{l+=o.offsetLeft;t+=o.offsetTop;}
while(o=o.offsetParent);return[l,t];}};el.onclick=function(e){preventDefault(e);var clickedElement=this;megaMenuSelected=this.className;if(megaMenusAvailable){displayMegaMenu(megaMenuSelected+'_menu');return;}
var spnr=document.getElementById('menuSpnr');if(!spnr){var spnr=document.createElement('img');spnr.id='menuSpnr';spnr.src='/v4_shared/i/menu_spinner.gif';document.body.appendChild(spnr);}
var butPos=offSet(el);var spnStl=spnr.style;spnStl.position='absolute';spnStl.zIndex='999999';spnStl.left=butPos[0]+(el.offsetWidth-28)+'px';spnStl.top=butPos[1]+10+'px';var longWait=new Date().getTime()+6000;var isLoaded=setInterval(function(){if(!megaMenusAvailable){spnStl.display='block';if(longWait<=new Date().getTime()){clearInterval(isLoaded);document.location=clickedElement.href;}
return;}
spnStl.display='none';displayMegaMenu(megaMenuSelected+'_menu');clearInterval(isLoaded);},10);};};var loadingMegaMenus=function(){var navMenu=document.getElementById('nav');if(!navMenu){setTimeout(function(){loadingMegaMenus();},150);return;}
var navMenus=navMenu.getElementsByTagName('a');deferMenu(navMenus[1]);deferMenu(navMenus[2]);deferMenu(navMenus[3]);}
loadingMegaMenus();function empty_field(field,value)
{if(field.value==value)
field.value='';}
function accessories_check(id)
{html='<p class="accessories"><a href="accessorise_lb.asp?id='+id+'" class="lbOn"><img src="../images/buy_accessories.gif" alt="Buy accessories for this phone" /></a></p>';document.write(html);}
function load_price_plans()
{document.getElementById('bill_pay_price_plans').style.display='none';a=new Array('payg_plans_second','bill_pay_plans_first');for(x=0;x<a.length;x++)
{document.getElementById(a[x]).style.display='block';}
if(/MSIE 6/.test(navigator.userAgent)){pos='93px'}else{pos='101px'}
document.getElementById('bill_pay_plans_second').style.left=pos;}
active_plan='payg_price_plans';function switch_price_plan(div)
{if(active_plan!=div)
{document.getElementById(div).style.display='block';document.getElementById(active_plan).style.display='none';active_plan=div;}}
function validate_fields(fields)
{for(x=0;x<fields.length;x++)
{fields[x].value=fields[x].value.replace(/[^0-9]/g,'');}}
function MM_jumpMenu(targ,selObj,restore){eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");if(restore)selObj.selectedIndex=0;return false;}
