(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];try{if(jQuery.props)z=a[jQuery.props[m[2]]||m[2]]}catch(e){}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)}})})();/* Bugfixing Olaf Bosch http://olaf-bosch.de/ same-height works correct
 * Demo @ http://olaf-bosch.de/bugs/jquery/nifty/index.html
 * 07.01.2007
 ***********************************************************************
 * Nifty for jQuery is a modified and optimized version of Nifty Corners Cube.
 * The new one has been programmed by Paul Bakaus (paul.bakaus@gmail.com), read below
 * for further copyright information.
 */

/* Nifty Corners Cube - rounded corners with CSS and Javascript
Copyright 2006 Alessandro Fulciniti (a.fulciniti@html.it)

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

jQuery.fn.nifty = function(options){
	if((document.getElementById && document.createElement && Array.prototype.push) == false) return;
	
	options = options || "";
	h = (options.indexOf("fixed-height") >= 0) ? this.offsetHeight : 0;
		
	this.each(function(){ 
		var i,top="",bottom="";
		if(options != ""){
		    options=options.replace("left","tl bl");
		    options=options.replace("right","tr br");
		    options=options.replace("top","tr tl");
		    options=options.replace("bottom","br bl");
		    options=options.replace("transparent","alias");
		    if(options.indexOf("tl") >= 0) { top="both"; if(options.indexOf("tr") == -1) top="left"; } else if(options.indexOf("tr") >= 0) top="right";
		    if(options.indexOf("bl") >= 0) { bottom="both"; if(options.indexOf("br") == -1) bottom="left"; } else if(options.indexOf("br") >= 0) bottom="right";
		}
		if(top=="" && bottom=="" && options.indexOf("none") == -1){top="both";bottom="both";}
		
	    // IE Fix
		if(this.currentStyle!=null && this.currentStyle.hasLayout!=null && this.currentStyle.hasLayout==false)
    		jQuery(this).css("display","inline-block");

	    if(top!="") {
			//add top		
			var d=document.createElement("b"),lim=4,border="",p,i,btype="r",bk,color;
			jQuery(d).css("marginLeft","-"+_niftyGP(this,"Left")+"px");
			jQuery(d).css("marginRight","-"+_niftyGP(this,"Right")+"px");
			if(options.indexOf("alias") >= 0 || (color=_niftyBC(this))=="transparent"){
			    color="transparent";bk="transparent"; border=_niftyPBC(this);btype="t";
			    }
			else{
			    bk=_niftyPBC(this); border=_niftyMix(color,bk);
			    }
			jQuery(d).css("background",bk);
			d.className="niftycorners";
			p=_niftyGP(this,"Top");
			if(options.indexOf("small") >= 0){
			    jQuery(d).css("marginBottom",(p-2)+"px");
			    btype+="s"; lim=2;
			    }
			else if(options.indexOf("big") >= 0){
			    jQuery(d).css("marginBottom",(p-10)+"px");
			    btype+="b"; lim=8;
			    }
			else jQuery(d).css("marginBottom",(p-5)+"px");
			for(i=1;i<=lim;i++)
			    jQuery(d).append(CreateStrip(i,top,color,border,btype));
			jQuery(this).css("paddingTop", "0px");
			jQuery(this).prepend(d);				
		}
	    if(bottom!="") {
			//add bottom
			var d=document.createElement("b"),lim=4,border="",p,i,btype="r",bk,color;
			jQuery(d).css("marginLeft","-"+_niftyGP(this,"Left")+"px");
			jQuery(d).css("marginRight","-"+_niftyGP(this,"Right")+"px");
			if(options.indexOf("alias") >= 0 || (color=_niftyBC(this))=="transparent"){ color="transparent";bk="transparent"; border=_niftyPBC(this);btype="t"; } else { bk=_niftyPBC(this); border=_niftyMix(color,bk); }
			jQuery(d).css("background",bk);
			d.className="niftycorners";
			p=_niftyGP(this,"Bottom");
			if(options.indexOf("small") >= 0){
			    jQuery(d).css("marginTop",(p-2)+"px");
			    btype+="s"; lim=2;
			    }
			else if(options.indexOf("big") >= 0){
			    jQuery(d).css("marginTop",(p-10)+"px");
			    btype+="b"; lim=8;
			    }
			else jQuery(d).css("marginTop",(p-5)+"px");
			for(i=lim;i>0;i--)
			    jQuery(d).append(CreateStrip(i,bottom,color,border,btype));
			jQuery(this).css("paddingBottom", "0");
			jQuery(this).append(d);			
		};
	});

  if(options.indexOf("height") >= 0){
    var maxHeight=0;
    var minHeight = ($.browser.msie && typeof XMLHttpRequest == 'function') ? 'height' : 'min-height';
    this.each(function(){
      if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
    });
    this.each(function(){
      var t=document.createElement("b");
      t.className="niftyfill";
      jQuery(t).css(minHeight,((maxHeight-this.offsetHeight) +"px"));
      nc=this.lastChild;
      nc.className=="niftycorners" ? this.insertBefore(t,nc) : jQuery(this).append(t);
    });
  }
}

function CreateStrip(index,side,color,border,btype){
	var x=document.createElement("b");
	x.className=btype+index;
	jQuery(x).css("backgroundColor", color).css("borderColor", border);
	if(side=="left") jQuery(x).css("borderRightWidth", "0").css("marginRight", "0");
	else if(side=="right") jQuery(x).css("borderLeftWidth", "0").css("marginLeft", "0");
	return(x);
}

function _niftyPBC(x){
	var el=x.parentNode,c;
	while(el.tagName.toUpperCase()!="HTML" && (c=_niftyBC(el))=="transparent")
	    el=el.parentNode;
	if(c=="transparent") c="#FFFFFF";
	return(c);
}

function _niftyBC(x){
	var c=jQuery(x).css("backgroundColor");
	if(c==null || c=="transparent" || c.indexOf("rgba(0, 0, 0, 0)") >= 0) return("transparent");
	if(c.indexOf("rgb") >= 0) {
		var hex="";
		var regexp=/([0-9]+)[, ]+([0-9]+)[, ]+([0-9]+)/;
		var h=regexp.exec(c);
		for(var i=1;i<4;i++){
		    var v=parseInt(h[i]).toString(16);
		    if(v.length==1) hex+="0"+v; else hex+=v;
		}
		c = "#"+hex;	
	}
	return(c);
}

function _niftyGP(x,side){
	var p=jQuery(x).css("padding"+side);
	if(p==null || p.indexOf("px") == -1) return(0);
	return(parseInt(p));
}

function _niftyMix(c1,c2){
	var i,step1,step2,x,y,r=new Array(3);
	c1.length==4 ? step1=1 : step1=2;
	c2.length==4 ? step2=1 : step2=2;
	for(i=0;i<3;i++){
	    x=parseInt(c1.substr(1+step1*i,step1),16);
	    if(step1==1) x=16*x+x;
	    y=parseInt(c2.substr(1+step2*i,step2),16);
	    if(step2==1) y=16*y+y;
	    r[i]=Math.floor((x*50+y*50)/100);
	    r[i]=r[i].toString(16);
	    if(r[i].length==1) r[i]="0"+r[i];
	}
	return("#"+r[0]+r[1]+r[2]);
} 
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(d){var c=document.createElement("style"),b,a;c.type="text/css";c.media=d;b=F("head")[0];b.insertBefore(c,b.firstChild);a=!!(c.sheet||c.styleSheet);b.removeChild(c);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={},b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var c=!M.recognizesMedia("all"),b=false;var a=[],e=function(){c=true;for(var h;h=a.shift();h()){}};var f=F("link"),g={stylesheet:1};function d(){var j,h,k;for(h=0;k=f[h];++h){if(k.disabled||!g[k.rel.toLowerCase()]||!M.recognizesMedia(k.media||"screen")){continue}j=k.sheet||k.styleSheet;if(!j||j.disabled){return false}}return true}W.ready(function(){if(!b){b=M.getStyle(document.body).isUsable()}if(c||(b&&d())){e()}else{setTimeout(arguments.callee,10)}});return function(h){if(c){h()}else{a.push(h)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX,c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return !!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AD,Z,u,V,d,AE){var I=(Z===null);if(I){Z=d.alt}var b=AD.viewBox;var K=u.getSize("fontSize",AD.baseSize);var s=u.get("letterSpacing");s=(s=="normal")?0:K.convertFrom(parseInt(s,10));var c=0,t=0,r=0,X=0;var a=V.textShadow,p=[];if(a){for(var AC=a.length;AC--;){var h=a[AC];var o=K.convertFrom(parseFloat(h.offX));var n=K.convertFrom(parseFloat(h.offY));p[AC]=[o,n];if(n<c){c=n}if(o>t){t=o}if(n>r){r=n}if(o<X){X=o}}}var AH=Cufon.CSS.textTransform(Z,u).split(""),T;var J=AD.glyphs,W,M,w;var G=0,P,f=[];for(var AC=0,AA=0,v=AH.length;AC<v;++AC){W=J[T=AH[AC]]||AD.missingGlyph;if(!W){continue}if(M){G-=w=M[T]||0;f[AA-1]-=w}G+=P=f[AA++]=~~(W.w||AD.w)+s;M=W.k}if(P===undefined){return null}t+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var z=document.createElement("span");z.className="cufon-alt";z.appendChild(document.createTextNode(Z));U.appendChild(z)}}var AI=U.style;var m=L.style;var H=K.convert(b.height);var AG=Math.ceil(H);var q=AG/H;L.width=Math.ceil(K.convert(G*q+t-X));L.height=Math.ceil(K.convert(b.height-c+r));c+=b.minY;m.top=Math.round(K.convert(c-AD.ascent))+"px";m.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(G*q))+"px";if(A){AI.width=S;AI.height=K.convert(AD.height)+"px"}else{AI.paddingLeft=S;AI.paddingBottom=(K.convert(AD.height)-1)+"px"}var AF=L.getContext("2d"),e=H/b.height;AF.scale(e,e*q);AF.translate(-X,-c);AF.lineWidth=AD.face["underline-thickness"];AF.save();function N(i,g){AF.strokeStyle=g;AF.beginPath();AF.moveTo(0,i);AF.lineTo(G,i);AF.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AE,u):{};if(O.underline){N(-AD.face["underline-position"],O.underline)}if(O.overline){N(AD.ascent,O.overline)}function AB(){AF.scale(q,1);for(var x=0,k=0,g=AH.length;x<g;++x){var y=J[AH[x]]||AD.missingGlyph;if(!y){continue}if(y.d){AF.beginPath();if(y.code){C(y.code,AF)}else{y.code=D("m"+y.d,AF)}AF.fill()}AF.translate(f[k++],0)}AF.restore()}if(a){for(var AC=a.length;AC--;){var h=a[AC];AF.save();AF.fillStyle=h.color;AF.translate.apply(AF,p[AC]);AB()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AF.createLinearGradient(0,b.minY,0,b.maxY);for(var AC=0,v=Y.length;AC<v;++AC){Q.addColorStop.apply(Q,Y[AC])}AF.fillStyle=Q}else{AF.fillStyle=u.get("color")}AB();if(O["line-through"]){N(-AD.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AB,b,v,Y,f,AC,t){var I=(b===null);if(I){b=f.alt}var d=AB.viewBox;var K=v.computedFontSize||(v.computedFontSize=new Cufon.CSS.Size(C(AC,v.get("fontSize"))+"px",AB.baseSize));var s=v.computedLSpacing;if(s==undefined){s=v.get("letterSpacing");v.computedLSpacing=s=(s=="normal")?0:~~K.convertFrom(A(AC,s))}var V,L;if(I){V=f;L=f.firstChild}else{V=document.createElement("span");V.className="cufon cufon-vml";V.alt=b;L=document.createElement("span");L.className="cufon-vml-canvas";V.appendChild(L);if(Y.printable){var y=document.createElement("span");y.className="cufon-alt";y.appendChild(document.createTextNode(b));V.appendChild(y)}if(!t){V.appendChild(document.createElement("cvml:shape"))}}var AH=V.style;var n=L.style;var G=K.convert(d.height),AE=Math.ceil(G);var r=AE/G;var q=d.minX,p=d.minY;n.height=AE;n.top=Math.round(K.convert(p-AB.ascent));n.left=Math.round(K.convert(q));AH.height=K.convert(AB.height)+"px";var P=Y.enableTextDecoration?Cufon.CSS.textDecoration(AC,v):{};var a=v.get("color");var AG=Cufon.CSS.textTransform(b,v).split(""),U;var J=AB.glyphs,Z,M,x;var F=0,g=[],o=0,Q;var S,c=Y.textShadow;for(var AA=0,z=0,w=AG.length;AA<w;++AA){Z=J[U=AG[AA]]||AB.missingGlyph;if(!Z){continue}if(M){F-=x=M[U]||0;g[z-1]-=x}F+=Q=g[z++]=~~(Z.w||AB.w)+s;M=Z.k}if(Q===undefined){return null}var T=-q+F+(d.width-Q);var AF=K.convert(T*r),u=Math.round(AF);var m=T+","+d.height,H;var e="r"+m+"ns";var R=Y.textGradient&&D(Y.textGradient);for(AA=0,z=0;AA<w;++AA){Z=J[AG[AA]]||AB.missingGlyph;if(!Z){continue}if(I){S=L.childNodes[z];while(S.firstChild){S.removeChild(S.firstChild)}}else{S=document.createElement("cvml:shape");L.appendChild(S)}S.stroked="f";S.coordsize=m;S.coordorigin=H=(q-o)+","+p;S.path=(Z.d?"m"+Z.d+"xe":"")+"m"+H+e;S.fillcolor=a;if(R){S.appendChild(R.cloneNode(false))}var AD=S.style;AD.width=u;AD.height=AE;if(c){var O=c[0],N=c[1];var X=Cufon.CSS.color(O.color),W;var h=document.createElement("cvml:shadow");h.on="t";h.color=X.color;h.offset=O.offX+","+O.offY;if(N){W=Cufon.CSS.color(N.color);h.type="double";h.color2=W.color;h.offset2=N.offX+","+N.offY}h.opacity=X.opacity||(W&&W.opacity)||1;S.appendChild(h)}o+=g[z++]}AH.width=Math.max(Math.ceil(K.convert(F*r)),0);return V}})());Cufon.registerFont({"w":200,"face":{"font-family":"VAGRounded","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 10 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","cap-height":"2","bbox":"-32.7575 -345.594 330.058 80.0137","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"A":{"d":"0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0","w":226},"\u00c6":{"d":"8,-52r104,-178v14,-24,24,-26,50,-26r110,0v19,0,29,10,29,27v2,38,-54,25,-89,27r0,46v35,1,84,-9,84,27v0,37,-49,25,-84,27r0,48v36,3,93,-12,92,27v-2,45,-78,22,-121,27v-22,2,-33,-21,-29,-49r-82,0v-13,20,-16,51,-47,51v-27,0,-31,-39,-17,-54xm154,-103r-1,-99r-52,99r53,0","w":306},"\u00c1":{"d":"0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0xm177,-320v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":226},"\u00c2":{"d":"113,-294v-18,7,-33,18,-54,21v-23,-2,-26,-42,0,-49v25,-7,50,-33,77,-15v18,12,53,14,50,42v-5,42,-51,8,-73,1xm0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0","w":226},"\u00c4":{"d":"0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0xm155,-337v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm71,-337v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":226},"\u00c0":{"d":"0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0xm49,-320v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":226},"\u00c5":{"d":"78,-305v0,-19,16,-36,35,-36v20,0,36,17,36,36v0,20,-16,36,-36,36v-19,0,-35,-16,-35,-36xm97,-305v0,9,8,16,16,16v9,0,17,-7,17,-16v0,-9,-8,-16,-17,-16v-8,0,-16,7,-16,16xm0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0","w":226},"\u00c3":{"d":"37,-296v0,-19,16,-40,36,-40v27,0,49,17,65,17v14,0,17,-17,31,-17v14,0,21,11,21,24v0,19,-16,39,-36,39v-27,0,-50,-17,-65,-17v-14,0,-17,17,-31,17v-14,0,-21,-11,-21,-23xm0,-22v0,-64,44,-129,64,-187v10,-29,20,-53,49,-53v30,0,39,24,49,53v21,61,52,120,65,187v0,15,-11,24,-28,24v-28,1,-30,-29,-38,-51r-95,0v-9,20,-9,51,-38,51v-17,0,-28,-9,-28,-24xm144,-103r-30,-94r-31,94r61,0","w":226},"B":{"d":"72,-204r0,48v26,1,54,1,54,-24v0,-26,-28,-25,-54,-24xm14,-29r0,-198v1,-44,58,-25,98,-29v72,-9,94,92,41,116v32,6,52,31,52,63v0,40,-26,77,-89,77v-41,0,-102,16,-102,-29xm72,-104r0,52v32,-1,73,6,72,-26v-1,-33,-40,-25,-72,-26","w":213},"C":{"d":"8,-128v0,-78,50,-134,127,-134v35,0,77,10,77,41v0,41,-40,15,-76,15v-47,0,-66,38,-66,78v0,41,21,75,61,75v36,0,42,-11,57,-11v23,0,26,19,26,27v0,32,-48,43,-80,43v-81,0,-126,-61,-126,-134","w":213},"\u00c7":{"d":"8,-128v0,-78,50,-134,127,-134v35,0,77,10,77,41v0,41,-40,15,-76,15v-47,0,-66,38,-66,78v0,41,21,75,61,75v36,0,42,-11,57,-11v23,0,26,19,26,27v0,32,-48,43,-80,43v-81,0,-126,-61,-126,-134xm133,0r-14,19v20,-5,37,7,37,28v0,22,-26,33,-45,33v-10,0,-36,-2,-36,-17v1,-26,40,7,42,-18v1,-18,-27,-2,-27,-19v2,-10,12,-19,18,-26r25,0","w":213},"D":{"d":"72,-202r0,148v63,6,98,-18,98,-76v0,-57,-36,-79,-98,-72xm14,-29r0,-198v1,-44,59,-29,99,-29v76,0,120,60,120,126v0,84,-57,130,-120,130v-40,0,-99,15,-99,-29","w":240},"E":{"d":"14,-29r0,-198v3,-49,74,-29,118,-29v19,0,30,10,30,27v1,38,-54,25,-90,27r0,46v35,1,85,-9,85,27v0,37,-50,25,-85,27r0,48v36,3,93,-12,92,27v-2,45,-78,27,-121,27v-15,0,-29,-10,-29,-29","w":166},"\u00c9":{"d":"14,-29r0,-198v3,-49,74,-29,118,-29v19,0,30,10,30,27v1,38,-54,25,-90,27r0,46v35,1,85,-9,85,27v0,37,-50,25,-85,27r0,48v36,3,93,-12,92,27v-2,45,-78,27,-121,27v-15,0,-29,-10,-29,-29xm148,-320v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":166},"\u00ca":{"d":"84,-294v-18,6,-34,21,-54,21v-10,0,-20,-10,-20,-22v3,-34,48,-37,74,-50v25,12,71,16,73,50v-7,42,-52,9,-73,1xm14,-29r0,-198v3,-49,74,-29,118,-29v19,0,30,10,30,27v1,38,-54,25,-90,27r0,46v35,1,85,-9,85,27v0,37,-50,25,-85,27r0,48v36,3,93,-12,92,27v-2,45,-78,27,-121,27v-15,0,-29,-10,-29,-29","w":166},"\u00cb":{"d":"14,-29r0,-198v3,-49,74,-29,118,-29v19,0,30,10,30,27v1,38,-54,25,-90,27r0,46v35,1,85,-9,85,27v0,37,-50,25,-85,27r0,48v36,3,93,-12,92,27v-2,45,-78,27,-121,27v-15,0,-29,-10,-29,-29xm126,-337v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm42,-337v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":166},"\u00c8":{"d":"14,-29r0,-198v3,-49,74,-29,118,-29v19,0,30,10,30,27v1,38,-54,25,-90,27r0,46v35,1,85,-9,85,27v0,37,-50,25,-85,27r0,48v36,3,93,-12,92,27v-2,45,-78,27,-121,27v-15,0,-29,-10,-29,-29xm20,-320v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":166},"\u00d0":{"d":"43,0v-43,1,-26,-67,-29,-107v-20,2,-32,-5,-32,-23v0,-18,12,-25,32,-23v3,-40,-13,-103,29,-103r70,0v76,0,120,60,120,126v0,84,-57,130,-120,130r-70,0xm72,-202r0,49v26,-1,53,-3,53,23v0,26,-27,24,-53,23r0,53v63,6,98,-18,98,-76v0,-57,-36,-79,-98,-72","w":240},"F":{"d":"14,-29r0,-198v3,-49,74,-29,118,-29v19,0,30,10,30,27v1,38,-54,25,-90,27r0,45v34,1,82,-9,82,27v0,36,-48,25,-82,27v-3,40,14,107,-29,105v-17,0,-29,-10,-29,-31","w":159},"G":{"d":"127,-125v0,-39,56,-27,92,-27v20,0,31,12,31,36v0,68,-45,122,-116,122v-81,0,-126,-61,-126,-134v0,-78,53,-134,126,-134v48,0,99,20,99,56v0,14,-10,25,-26,25v-22,0,-32,-27,-71,-27v-41,0,-66,35,-66,80v0,39,20,80,65,80v31,0,52,-20,55,-50v-30,1,-63,2,-63,-27","w":259},"H":{"d":"72,-104v-3,40,14,107,-29,106v-17,0,-29,-10,-29,-31r0,-199v0,-20,12,-30,29,-30v42,-2,26,61,29,100r109,0v3,-39,-13,-102,29,-100v17,0,29,10,29,30r0,199v0,21,-12,31,-29,31v-43,2,-26,-66,-29,-106r-109,0","w":253},"I":{"d":"72,-228r0,199v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31r0,-199v0,-20,12,-30,29,-30v17,0,29,10,29,30","w":86},"\u00cd":{"d":"72,-228r0,199v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31r0,-199v0,-20,12,-30,29,-30v17,0,29,10,29,30xm107,-320v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":86},"\u00ce":{"d":"43,-294v-18,7,-33,18,-54,21v-24,-2,-26,-42,0,-49v25,-7,50,-33,77,-15v18,12,53,14,50,42v-5,42,-51,8,-73,1xm72,-228r0,199v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31r0,-199v0,-20,12,-30,29,-30v17,0,29,10,29,30","w":86},"\u00cf":{"d":"72,-228r0,199v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31r0,-199v0,-20,12,-30,29,-30v17,0,29,10,29,30xm85,-337v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm1,-337v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":86},"\u00cc":{"d":"72,-228r0,199v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31r0,-199v0,-20,12,-30,29,-30v17,0,29,10,29,30xm-21,-320v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":86},"J":{"d":"62,6v-29,-1,-66,-13,-65,-42v0,-14,8,-28,27,-28v25,9,57,32,57,-25r0,-139v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,149v0,39,-10,85,-77,85","w":153},"K":{"d":"14,-29r0,-199v0,-20,12,-30,29,-30v43,-2,26,63,29,102r81,-88v20,-27,56,-14,56,14v0,8,-5,17,-11,23r-70,70r76,82v25,17,18,58,-14,57v-16,0,-27,-14,-36,-24r-82,-92v-4,42,16,116,-29,116v-17,0,-29,-10,-29,-31","w":213},"L":{"d":"14,-29r0,-199v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,174v36,3,93,-12,92,27v-2,45,-78,27,-121,27v-15,0,-29,-10,-29,-29","w":159},"M":{"d":"6,-26r33,-196v5,-30,24,-36,38,-36v54,-3,56,109,80,151r28,-88v15,-47,22,-63,51,-63v15,0,33,6,38,36r33,196v0,13,-10,28,-27,28v-27,0,-31,-19,-34,-38r-18,-114r-39,126v-7,36,-53,34,-64,0r-40,-126r-18,114v-3,19,-7,38,-34,38v-17,0,-29,-15,-27,-28","w":313},"N":{"d":"14,-29r0,-199v0,-20,12,-30,29,-30v16,0,21,6,41,31r97,121r0,-122v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,199v0,21,-12,31,-29,31v-15,0,-21,-7,-40,-31r-98,-121r0,121v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31","w":253},"\u00d1":{"d":"50,-296v0,-19,17,-40,36,-40v27,0,50,17,65,17v14,0,17,-17,32,-17v13,0,20,11,20,24v0,19,-16,39,-36,39v-27,0,-49,-17,-64,-17v-15,0,-18,17,-32,17v-13,0,-21,-11,-21,-23xm14,-29r0,-199v0,-20,12,-30,29,-30v16,0,21,6,41,31r97,121r0,-122v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,199v0,21,-12,31,-29,31v-15,0,-21,-7,-40,-31r-98,-121r0,121v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31","w":253},"O":{"d":"134,-262v76,0,126,52,126,134v0,81,-50,134,-126,134v-76,0,-126,-53,-126,-134v0,-82,50,-134,126,-134xm134,-208v-45,0,-64,39,-64,80v0,41,19,80,64,80v45,0,63,-39,63,-80v0,-41,-18,-80,-63,-80","w":267},"\u00d3":{"d":"134,-262v76,0,126,52,126,134v0,81,-50,134,-126,134v-76,0,-126,-53,-126,-134v0,-82,50,-134,126,-134xm134,-208v-45,0,-64,39,-64,80v0,41,19,80,64,80v45,0,63,-39,63,-80v0,-41,-18,-80,-63,-80xm198,-320v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":267},"\u00d4":{"d":"134,-294v-18,6,-33,21,-54,21v-10,0,-20,-10,-20,-22v0,-34,47,-37,74,-50v25,12,71,16,73,50v-7,42,-52,9,-73,1xm134,-262v76,0,126,52,126,134v0,81,-50,134,-126,134v-76,0,-126,-53,-126,-134v0,-82,50,-134,126,-134xm134,-208v-45,0,-64,39,-64,80v0,41,19,80,64,80v45,0,63,-39,63,-80v0,-41,-18,-80,-63,-80","w":267},"\u00d6":{"d":"134,-262v76,0,126,52,126,134v0,81,-50,134,-126,134v-76,0,-126,-53,-126,-134v0,-82,50,-134,126,-134xm134,-208v-45,0,-64,39,-64,80v0,41,19,80,64,80v45,0,63,-39,63,-80v0,-41,-18,-80,-63,-80xm176,-337v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm92,-337v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":267},"\u00d2":{"d":"134,-262v76,0,126,52,126,134v0,81,-50,134,-126,134v-76,0,-126,-53,-126,-134v0,-82,50,-134,126,-134xm134,-208v-45,0,-64,39,-64,80v0,41,19,80,64,80v45,0,63,-39,63,-80v0,-41,-18,-80,-63,-80xm70,-320v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":267},"\u00d8":{"d":"77,-90r94,-105v-59,-44,-128,32,-94,105xm190,-167r-95,105v10,9,22,14,39,14v59,0,74,-69,56,-119xm2,0v0,-20,21,-28,31,-42v-16,-22,-25,-52,-25,-86v0,-115,119,-169,203,-110v12,-10,20,-31,37,-34v39,10,-4,46,-14,57v16,22,26,52,26,87v0,114,-120,168,-204,110v-12,10,-20,29,-37,33v-10,0,-17,-6,-17,-15","w":267},"\u00d5":{"d":"57,-296v0,-19,16,-40,36,-40v27,0,50,17,65,17v14,0,17,-17,31,-17v14,0,21,11,21,24v0,19,-16,39,-36,39v-27,0,-49,-17,-65,-17v-14,0,-17,17,-31,17v-14,0,-21,-11,-21,-23xm134,-262v76,0,126,52,126,134v0,81,-50,134,-126,134v-76,0,-126,-53,-126,-134v0,-82,50,-134,126,-134xm134,-208v-45,0,-64,39,-64,80v0,41,19,80,64,80v45,0,63,-39,63,-80v0,-41,-18,-80,-63,-80","w":267},"P":{"d":"72,-204r0,70v36,4,70,-5,70,-35v0,-35,-34,-37,-70,-35xm14,-29r0,-198v2,-45,60,-29,101,-29v45,0,88,29,88,87v0,67,-53,96,-131,87v-1,35,8,84,-29,84v-17,0,-29,-10,-29,-31","w":206},"Q":{"d":"269,-5v-8,45,-55,17,-71,-5v-88,46,-190,-12,-190,-118v0,-82,50,-134,126,-134v109,0,159,132,103,217v11,9,34,29,32,40xm132,-80v0,-31,38,-32,57,-6v19,-50,5,-122,-55,-122v-45,0,-64,39,-64,80v0,46,28,91,80,77v-15,-14,-18,-20,-18,-29","w":267},"R":{"d":"14,-29r0,-198v1,-44,59,-25,99,-29v98,-10,117,138,26,151v20,26,54,45,63,80v0,8,-7,27,-30,27v-15,0,-20,-5,-27,-14r-73,-91v-3,40,14,107,-29,105v-17,0,-29,-10,-29,-31xm72,-202r0,56v33,1,70,3,69,-29v-1,-32,-37,-27,-69,-27","w":206},"S":{"d":"2,-36v0,-49,44,-17,90,-17v23,0,31,-11,31,-24v0,-19,-22,-23,-55,-34v-31,-10,-62,-23,-62,-69v0,-56,44,-82,92,-82v47,0,73,16,73,38v0,62,-91,-13,-102,39v0,15,14,17,54,30v32,10,63,26,63,75v0,59,-44,86,-98,86v-34,0,-86,-14,-86,-42","w":193},"T":{"d":"54,-29r0,-173v-30,2,-63,1,-63,-27v0,-17,11,-27,31,-27r123,0v20,0,31,10,31,27v0,28,-33,29,-63,27r0,173v0,21,-13,31,-29,31v-17,0,-30,-10,-30,-31","w":167},"\u00de":{"d":"72,-166r0,70v36,4,70,-5,70,-35v0,-35,-34,-37,-70,-35xm14,-29r0,-199v0,-21,12,-30,29,-30v20,-1,32,15,29,40v74,-6,128,12,131,87v3,66,-53,95,-131,86v14,51,-58,67,-58,16","w":206},"U":{"d":"71,-228r0,125v0,34,23,53,52,53v29,0,53,-19,53,-53r0,-125v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,125v0,68,-46,109,-111,109v-65,0,-111,-41,-111,-109r0,-125v0,-20,12,-30,29,-30v17,0,30,10,30,30","w":246},"\u00da":{"d":"71,-228r0,125v0,34,23,53,52,53v29,0,53,-19,53,-53r0,-125v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,125v0,68,-46,109,-111,109v-65,0,-111,-41,-111,-109r0,-125v0,-20,12,-30,29,-30v17,0,30,10,30,30xm188,-320v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":246},"\u00db":{"d":"123,-294v-18,7,-33,18,-54,21v-23,-2,-26,-42,0,-49v25,-7,50,-33,77,-15v17,12,54,14,51,42v-5,42,-52,9,-74,1xm71,-228r0,125v0,34,23,53,52,53v29,0,53,-19,53,-53r0,-125v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,125v0,68,-46,109,-111,109v-65,0,-111,-41,-111,-109r0,-125v0,-20,12,-30,29,-30v17,0,30,10,30,30","w":246},"\u00dc":{"d":"71,-228r0,125v0,34,23,53,52,53v29,0,53,-19,53,-53r0,-125v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,125v0,68,-46,109,-111,109v-65,0,-111,-41,-111,-109r0,-125v0,-20,12,-30,29,-30v17,0,30,10,30,30xm166,-337v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm82,-337v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":246},"\u00d9":{"d":"71,-228r0,125v0,34,23,53,52,53v29,0,53,-19,53,-53r0,-125v0,-20,12,-30,29,-30v17,0,29,10,29,30r0,125v0,68,-46,109,-111,109v-65,0,-111,-41,-111,-109r0,-125v0,-20,12,-30,29,-30v17,0,30,10,30,30xm60,-320v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":246},"V":{"d":"103,-101r50,-131v5,-14,10,-26,32,-26v27,0,32,27,23,49r-73,180v-6,15,-11,31,-32,31v-22,0,-27,-16,-33,-31r-71,-180v-11,-19,-5,-50,22,-49v22,0,27,12,33,26","w":206},"W":{"d":"43,-41r-44,-189v0,-16,11,-28,29,-28v19,0,27,11,30,25r31,139r42,-135v11,-41,53,-39,65,0r43,135r30,-139v3,-14,11,-25,30,-25v32,-1,30,34,24,58r-39,159v-1,54,-69,56,-83,11r-38,-117r-37,117v-7,21,-19,32,-42,32v-28,0,-34,-15,-41,-43","w":326},"X":{"d":"110,-186v21,-22,33,-66,67,-72v33,1,36,32,20,52r-52,68r63,84v21,20,13,55,-16,56v-11,0,-18,-3,-29,-17r-53,-73r-53,73v-16,29,-56,19,-57,-11v0,-11,3,-16,13,-28r62,-84v-19,-31,-51,-55,-62,-93v0,-13,10,-27,31,-27v33,0,45,51,66,72","w":220},"Y":{"d":"97,2v-47,0,-24,-79,-29,-122v-20,-31,-68,-79,-75,-113v0,-15,14,-25,31,-25v16,0,24,11,30,19r43,62r43,-62v7,-23,64,-26,61,6v-3,33,-56,82,-75,113v-5,44,18,121,-29,122","w":193},"\u00dd":{"d":"97,2v-47,0,-24,-79,-29,-122v-20,-31,-68,-79,-75,-113v0,-15,14,-25,31,-25v16,0,24,11,30,19r43,62r43,-62v7,-23,64,-26,61,6v-3,33,-56,82,-75,113v-5,44,18,121,-29,122xm161,-320v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":193},"Z":{"d":"71,-54v44,5,126,-18,126,27v0,16,-11,27,-31,27r-129,0v-45,1,-49,-33,-30,-58r110,-146v-41,-4,-115,16,-117,-26v0,-16,11,-26,31,-26r125,0v31,0,36,19,36,29v0,12,-11,27,-27,49","w":193},"a":{"d":"195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47","w":206},"\u00e1":{"d":"195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47xm167,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":206},"\u00e2":{"d":"103,-235v-18,7,-33,19,-54,22v-23,-2,-26,-42,0,-49v25,-7,50,-33,77,-15v18,12,53,14,50,42v-5,42,-52,8,-73,0xm195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47","w":206},"\u00b4":{"d":"104,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":79},"\u00e4":{"d":"195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47xm145,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm61,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":206},"\u00e6":{"d":"195,-116r77,0v0,-13,-15,-34,-39,-34v-24,0,-38,21,-38,34xm301,-77r-106,0v0,11,13,31,49,31v28,0,45,-18,58,-18v12,0,23,10,23,24v2,42,-105,59,-140,33v-5,19,-51,15,-45,-9v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v0,-12,7,-21,25,-21v11,0,18,7,20,13v9,-6,23,-13,52,-13v55,0,91,46,91,95v0,20,-9,25,-27,25xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47","w":333},"\u00e0":{"d":"195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47xm39,-260v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":206},"&":{"d":"146,-134r36,42v12,-11,20,-34,39,-35v30,4,32,39,5,56r-13,14v8,10,24,21,24,34v0,26,-40,36,-51,11r-11,-11v-52,50,-168,37,-168,-48v0,-39,25,-60,58,-77v-46,-37,-19,-111,49,-111v38,0,76,16,76,61v0,29,-20,50,-44,64xm144,-58r-48,-54v-21,13,-33,24,-33,39v0,42,60,39,81,15xm116,-220v-30,0,-31,36,-2,54v22,-10,28,-20,28,-30v0,-16,-11,-24,-26,-24","w":253},"\u00e5":{"d":"68,-240v0,-20,16,-36,35,-36v20,0,36,16,36,36v0,19,-16,36,-36,36v-19,0,-35,-17,-35,-36xm87,-240v0,9,8,16,16,16v9,0,17,-7,17,-16v0,-9,-8,-16,-17,-16v-8,0,-16,7,-16,16xm195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47","w":206},"^":{"d":"149,-128r-41,-74r-41,74v-15,30,-59,10,-38,-14r55,-101v13,-22,36,-22,48,0v21,39,45,73,60,117v-1,16,-38,18,-43,-2","w":216},"~":{"d":"201,-116v0,24,-20,50,-53,50v-28,0,-59,-24,-78,-24v-20,0,-25,21,-40,21v-11,0,-15,-9,-15,-19v0,-24,20,-50,51,-50v30,0,61,25,80,25v20,0,25,-22,40,-22v11,0,15,9,15,19","w":216},"*":{"d":"70,-258v21,-2,21,21,16,39v16,-18,46,-22,46,7v0,13,-18,16,-30,22v12,6,30,9,30,22v-2,27,-31,24,-46,7v5,18,4,41,-16,39v-21,2,-23,-21,-16,-39v-17,16,-46,21,-46,-7v0,-13,18,-16,29,-22v-11,-6,-29,-9,-29,-22v2,-29,30,-25,46,-7v-6,-18,-6,-41,16,-39","w":140},"@":{"d":"148,-156v-37,-4,-51,63,-11,65v41,4,54,-63,11,-65xm242,-36v-9,24,-40,42,-90,42v-76,0,-139,-56,-139,-134v0,-76,61,-134,137,-134v68,0,125,42,125,110v0,81,-68,102,-90,102v-14,1,-18,-8,-22,-18v-28,33,-91,20,-91,-43v0,-71,74,-115,114,-64v0,-24,34,-27,34,-4v0,29,-11,56,-15,85v0,4,2,7,7,7v13,0,31,-16,31,-55v0,-57,-39,-88,-94,-88v-55,0,-98,46,-98,102v0,63,44,101,101,101v38,0,56,-13,77,-22v7,0,13,6,13,13","w":288},"\u00e3":{"d":"27,-237v0,-19,16,-39,36,-39v27,0,49,17,64,17v15,0,18,-17,32,-17v13,0,21,11,21,23v0,19,-17,40,-36,40v-27,0,-50,-17,-65,-17v-14,0,-17,17,-31,17v-14,0,-21,-11,-21,-24xm195,-165r0,138v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,82,-134,135,-80v7,-25,55,-23,55,11xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47","w":206},"b":{"d":"12,-27r0,-221v0,-16,11,-29,28,-29v41,1,25,58,28,96v53,-43,133,9,133,85v0,77,-83,136,-135,80v-7,26,-54,22,-54,-11xm107,-143v-25,0,-39,21,-39,47v0,26,14,48,39,48v24,0,38,-22,38,-48v0,-26,-14,-47,-38,-47","w":206},"\\":{"d":"114,-24r-96,-184v-8,-14,-14,-27,-14,-35v8,-35,36,-13,48,10r97,185v7,14,14,26,14,34v-9,36,-36,15,-49,-10","w":166},"|":{"d":"18,-18r0,-236v0,-13,8,-23,22,-23v14,0,22,10,22,23r0,236v0,13,-8,24,-22,24v-14,0,-22,-11,-22,-24","w":79},"{":{"d":"83,60v-60,6,-48,-65,-48,-120v0,-38,-34,-13,-34,-41v-1,-27,34,-3,34,-41v0,-54,-12,-125,48,-120v19,2,43,-6,43,16v0,29,-41,1,-41,37r0,71v1,34,-28,34,-39,38v13,1,39,3,39,36r0,71v-4,35,40,7,41,37v0,22,-24,15,-43,16","w":126},"}":{"d":"44,-262v60,-6,47,66,47,120v0,39,35,13,35,41v0,27,-35,3,-35,41v0,54,13,126,-47,120v-19,-1,-43,6,-43,-16v0,-29,41,-1,41,-37r0,-71v-1,-34,28,-33,39,-37v-13,-1,-39,-4,-39,-37r0,-71v4,-35,-40,-7,-41,-37v0,-22,24,-15,43,-16","w":126},"[":{"d":"78,-221r0,240v23,-1,45,-1,45,21v0,30,-42,20,-69,20v-17,0,-25,-8,-25,-24r0,-273v-2,-35,43,-23,74,-25v12,0,20,8,20,20v1,23,-22,22,-45,21","w":126},"]":{"d":"48,19r0,-240v-23,1,-45,2,-45,-21v0,-29,42,-20,70,-20v16,0,25,9,25,25r0,273v2,34,-44,22,-74,24v-12,0,-21,-8,-21,-20v0,-21,22,-23,45,-21","w":126},"\u00a6":{"d":"40,6v-37,0,-22,-59,-22,-94v0,-13,8,-24,22,-24v37,0,22,59,22,94v0,13,-8,24,-22,24xm40,-160v-37,-2,-22,-60,-22,-94v0,-13,8,-23,22,-23v37,2,22,60,22,94v0,13,-8,23,-22,23","w":79},"c":{"d":"5,-96v0,-56,38,-101,95,-101v25,0,67,7,67,37v0,37,-32,17,-64,17v-28,0,-41,21,-41,47v0,26,13,48,38,48v39,0,59,-21,67,15v0,28,-45,39,-67,39v-57,0,-95,-45,-95,-102","w":166},"\u00e7":{"d":"5,-96v0,-56,38,-101,95,-101v25,0,67,7,67,37v0,37,-32,17,-64,17v-28,0,-41,21,-41,47v0,26,13,48,38,48v39,0,59,-21,67,15v0,28,-45,39,-67,39v-57,0,-95,-45,-95,-102xm106,0r-14,19v20,-5,37,7,37,28v0,22,-26,33,-45,33v-10,0,-36,-2,-36,-17v1,-26,40,7,42,-18v1,-18,-27,-2,-27,-19v2,-10,12,-19,18,-26r25,0","w":166},"\u00b8":{"d":"62,0r-14,19v20,-5,37,7,37,28v0,22,-26,33,-45,33v-10,0,-36,-2,-36,-17v1,-26,40,7,42,-18v1,-18,-27,-2,-27,-19v2,-10,12,-19,18,-26r25,0","w":79},"\u00a2":{"d":"117,-50r0,-91v-38,9,-36,82,0,91xm128,40v-15,0,-11,-20,-11,-34v-51,-6,-84,-49,-84,-102v0,-53,33,-96,84,-101v0,-14,-3,-32,11,-32v14,0,11,18,11,32v24,2,55,11,55,37v0,32,-31,28,-55,17r0,94v30,-11,55,-14,55,16v0,24,-32,36,-55,39v0,14,4,34,-11,34","w":226},":":{"d":"19,-26v0,-16,14,-31,31,-31v17,0,31,15,31,31v0,18,-14,32,-31,32v-17,0,-31,-14,-31,-32xm19,-138v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,31,-31,31v-17,0,-31,-14,-31,-31","w":100},",":{"d":"-6,30v4,-30,25,-45,34,-70v9,-23,57,-22,53,8v-4,30,-25,45,-35,70v-9,22,-56,20,-52,-8","w":100},"\u00a9":{"d":"10,-128v0,-85,65,-134,134,-134v69,0,134,49,134,134v0,85,-65,134,-134,134v-69,0,-134,-49,-134,-134xm51,-128v0,60,41,101,93,101v51,0,93,-41,93,-101v0,-61,-42,-102,-93,-102v-52,0,-93,41,-93,102xm149,-85v30,1,23,-28,45,-29v9,0,16,6,16,15v0,14,-22,47,-61,47v-43,0,-71,-34,-71,-77v0,-45,27,-78,71,-78v37,0,59,25,59,44v0,13,-10,17,-15,17v-20,0,-16,-28,-44,-28v-20,0,-32,16,-32,44v0,27,12,45,32,45","w":288},"\u00a4":{"d":"41,-39v-24,-2,-20,-32,-4,-39v-20,-25,-20,-75,0,-101v-16,-7,-20,-38,4,-39v8,0,17,7,22,13v27,-20,74,-20,101,0v8,-16,39,-18,40,6v1,9,-9,15,-14,20v19,26,20,76,0,101v16,7,20,37,-4,39v-10,1,-16,-7,-22,-12v-27,19,-74,20,-101,0v-5,5,-14,13,-22,12xm67,-128v0,27,20,48,47,48v26,0,46,-21,46,-48v0,-27,-20,-49,-46,-49v-27,0,-47,22,-47,49","w":226},"d":{"d":"195,-248r0,221v3,32,-48,37,-55,11v-51,56,-135,-3,-135,-80v0,-76,79,-129,134,-85v3,-39,-13,-95,28,-96v16,0,28,13,28,29xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47","w":206},"\u00b0":{"d":"46,-211v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-13,-12,-25,-26,-25v-14,0,-26,12,-26,25xm21,-211v0,-28,22,-51,51,-51v29,0,51,23,51,51v0,29,-22,52,-51,52v-29,0,-51,-23,-51,-52","w":144},"\u00a8":{"d":"82,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm-2,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":79},"\u00f7":{"d":"31,-126r154,0v15,0,25,9,25,24v0,15,-10,24,-25,24r-154,0v-15,0,-25,-9,-25,-24v0,-15,10,-24,25,-24xm108,-212v18,0,33,16,33,34v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33v0,-18,15,-34,33,-34xm108,-59v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34v0,-18,15,-33,33,-33","w":216},"$":{"d":"113,32v-14,0,-9,-14,-10,-26v-24,-2,-82,-8,-82,-42v0,-15,11,-30,26,-30v13,0,31,16,56,16r0,-56v-61,-18,-81,-40,-81,-73v0,-49,37,-79,81,-83v1,-12,-4,-27,10,-27v16,-1,10,14,11,27v23,1,64,8,64,38v0,14,-9,27,-24,27v-14,0,-25,-13,-40,-13r0,51v41,11,82,30,82,80v0,56,-47,83,-82,85v-1,12,4,27,-11,26xm103,-166r0,-44v-25,2,-27,42,0,44xm124,-100r0,50v12,0,21,-13,21,-25v0,-15,-8,-21,-21,-25","w":226},"e":{"d":"167,-77r-101,0v0,11,9,31,45,31v28,0,45,-18,57,-18v13,0,24,10,24,24v0,28,-46,46,-88,46v-61,0,-99,-45,-99,-102v0,-54,41,-101,99,-101v55,0,91,46,91,95v0,20,-10,25,-28,25xm66,-116r73,0v0,-13,-15,-34,-37,-34v-22,0,-36,21,-36,34"},"\u00e9":{"d":"167,-77r-101,0v0,11,9,31,45,31v28,0,45,-18,57,-18v13,0,24,10,24,24v0,28,-46,46,-88,46v-61,0,-99,-45,-99,-102v0,-54,41,-101,99,-101v55,0,91,46,91,95v0,20,-10,25,-28,25xm66,-116r73,0v0,-13,-15,-34,-37,-34v-22,0,-36,21,-36,34xm164,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22"},"\u00ea":{"d":"100,-235v-18,7,-33,19,-54,22v-24,-2,-26,-42,0,-49v24,-6,50,-33,76,-15v18,12,54,14,51,42v-5,42,-52,8,-73,0xm167,-77r-101,0v0,11,9,31,45,31v28,0,45,-18,57,-18v13,0,24,10,24,24v0,28,-46,46,-88,46v-61,0,-99,-45,-99,-102v0,-54,41,-101,99,-101v55,0,91,46,91,95v0,20,-10,25,-28,25xm66,-116r73,0v0,-13,-15,-34,-37,-34v-22,0,-36,21,-36,34"},"\u00eb":{"d":"167,-77r-101,0v0,11,9,31,45,31v28,0,45,-18,57,-18v13,0,24,10,24,24v0,28,-46,46,-88,46v-61,0,-99,-45,-99,-102v0,-54,41,-101,99,-101v55,0,91,46,91,95v0,20,-10,25,-28,25xm66,-116r73,0v0,-13,-15,-34,-37,-34v-22,0,-36,21,-36,34xm142,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm58,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28"},"\u00e8":{"d":"167,-77r-101,0v0,11,9,31,45,31v28,0,45,-18,57,-18v13,0,24,10,24,24v0,28,-46,46,-88,46v-61,0,-99,-45,-99,-102v0,-54,41,-101,99,-101v55,0,91,46,91,95v0,20,-10,25,-28,25xm66,-116r73,0v0,-13,-15,-34,-37,-34v-22,0,-36,21,-36,34xm36,-260v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20"},"8":{"d":"100,-262v45,0,83,24,83,72v0,25,-15,44,-24,51v69,43,29,145,-59,145v-88,0,-128,-101,-59,-145v-9,-7,-24,-26,-24,-51v0,-48,38,-72,83,-72xm67,-84v0,19,14,34,33,34v19,0,34,-15,34,-34v0,-19,-15,-33,-34,-33v-19,0,-33,14,-33,33xm75,-185v0,13,12,24,25,24v13,0,25,-11,25,-24v0,-14,-12,-25,-25,-25v-13,0,-25,11,-25,25"},"=":{"d":"31,-168r154,0v15,0,25,9,25,24v0,15,-10,23,-25,23r-154,0v-15,0,-25,-8,-25,-23v0,-15,10,-24,25,-24xm31,-83r154,0v15,0,25,8,25,24v0,15,-10,23,-25,23r-154,0v-15,0,-25,-8,-25,-23v0,-16,10,-24,25,-24","w":216},"\u00f0":{"d":"5,-90v0,-72,71,-117,127,-85v-7,-13,-21,-33,-36,-40v-18,6,-56,39,-64,7v1,-16,24,-17,34,-25v-17,-10,-27,-15,-27,-27v7,-33,61,-21,85,-1v16,-6,48,-34,55,-3v-2,15,-21,16,-31,23v26,22,47,63,47,134v0,60,-29,113,-95,113v-54,0,-95,-40,-95,-96xm100,-132v-23,0,-38,20,-38,42v0,22,15,42,38,42v23,0,39,-20,39,-42v0,-22,-16,-42,-39,-42"},"!":{"d":"75,-230r0,126v0,17,-10,32,-28,32v-18,0,-28,-15,-28,-32r0,-126v0,-17,10,-32,28,-32v18,0,28,15,28,32xm15,-26v0,-16,15,-31,32,-31v17,0,31,15,31,31v0,18,-14,32,-31,32v-17,0,-32,-14,-32,-32","w":93},"\u00a1":{"d":"19,39r0,-126v0,-17,10,-32,28,-32v18,0,28,15,28,32r0,126v0,17,-10,32,-28,32v-18,0,-28,-15,-28,-32xm78,-166v0,17,-14,31,-31,31v-17,0,-32,-14,-32,-31v0,-17,15,-31,32,-31v17,0,31,14,31,31","w":93},"f":{"d":"55,2v-50,0,-20,-93,-28,-142v-21,1,-36,-6,-36,-26v0,-20,15,-27,36,-26v-5,-50,15,-84,59,-85v17,0,37,4,37,26v0,17,-9,26,-27,26v-13,-3,-12,19,-12,33v25,-2,45,2,45,26v0,24,-20,28,-45,26r0,113v0,16,-12,29,-29,29","w":119},"5":{"d":"81,-202r-4,31v61,-15,102,26,102,82v0,53,-40,95,-95,95v-37,0,-83,-20,-83,-48v0,-17,11,-29,25,-29v20,0,30,21,56,21v21,0,35,-15,35,-43v0,-17,-10,-34,-29,-34v-24,0,-25,13,-44,13v-25,-1,-27,-21,-22,-48v6,-33,-2,-99,40,-94v41,5,114,-16,115,27v1,38,-59,25,-96,27","w":180},"4":{"d":"150,2v-26,0,-30,-27,-28,-56r-96,0v-39,0,-29,-34,-18,-51r86,-133v20,-36,84,-21,84,23r0,109v24,-1,42,3,42,26v0,22,-18,28,-42,26v2,29,-2,56,-28,56xm122,-106r-1,-92r-53,92r54,0","w":219},"g":{"d":"195,-165r0,146v0,72,-47,99,-102,99v-29,0,-84,-11,-84,-42v12,-43,39,-11,83,-8v34,2,49,-20,46,-49v-54,55,-143,-5,-133,-77v-5,-76,82,-134,135,-80v7,-25,55,-23,55,11xm139,-96v0,-26,-14,-47,-39,-47v-25,0,-38,21,-38,47v0,28,13,48,38,48v25,0,39,-20,39,-48","w":206},"\u00df":{"d":"141,-85v1,-52,-60,-23,-60,-64v0,-36,43,-14,43,-50v0,-14,-10,-24,-25,-24v-23,0,-30,18,-30,42r0,154v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29r0,-165v0,-51,37,-85,85,-85v70,0,110,82,59,124v29,11,43,39,43,69v0,53,-42,90,-84,90v-19,0,-32,-10,-32,-27v0,-17,10,-25,29,-28v17,-2,28,-20,28,-36","w":206},"`":{"d":"-24,-260v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":79},">":{"d":"25,-53r116,-49r-116,-48v-28,-10,-19,-44,3,-45v61,17,110,51,166,73v18,7,18,34,0,41v-56,23,-105,54,-166,72v-22,0,-30,-33,-3,-44","w":216},"\u00ab":{"d":"103,-60v-9,40,-51,1,-67,-11v-20,-15,-20,-45,0,-59v15,-10,28,-29,49,-29v20,0,25,27,8,38r-32,21v13,12,41,17,42,40xm192,-60v-9,40,-51,1,-67,-11v-20,-15,-20,-45,0,-59v15,-10,28,-29,49,-29v20,0,25,27,8,38r-32,21v13,12,41,17,42,40","w":213},"\u00bb":{"d":"111,-140v9,-39,50,-2,66,10v20,16,22,44,0,59v-15,10,-28,26,-48,30v-20,-1,-25,-28,-9,-39r32,-20v-13,-12,-40,-18,-41,-40xm22,-140v9,-40,51,-2,67,10v19,15,20,45,0,59v-15,10,-29,26,-49,30v-20,-1,-25,-28,-9,-39r32,-20v-13,-12,-40,-18,-41,-40","w":213},"h":{"d":"13,-27r0,-221v0,-16,11,-29,28,-29v42,0,23,59,29,94v40,-27,124,-15,117,52v-5,48,21,133,-28,133v-45,0,-28,-75,-28,-118v0,-19,-11,-34,-31,-34v-49,2,-31,77,-31,123v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29"},"-":{"d":"10,-100v2,-42,70,-24,109,-24v15,0,24,9,24,24v0,40,-71,23,-109,23v-15,0,-24,-9,-24,-23","w":153},"i":{"d":"12,-27r0,-138v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,138v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29xm6,-244v0,-18,16,-33,34,-33v18,0,33,15,33,33v0,19,-15,34,-33,34v-18,0,-34,-15,-34,-34","w":79},"\u00ed":{"d":"12,-27r0,-138v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,138v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29xm104,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":79},"\u00ee":{"d":"40,-235v-18,7,-33,19,-54,22v-24,-2,-26,-42,0,-49v24,-6,49,-33,76,-15v18,12,54,14,51,42v-5,42,-52,8,-73,0xm12,-27r0,-138v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,138v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29","w":79},"\u00ef":{"d":"12,-27r0,-138v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,138v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29xm82,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm-2,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":79},"\u00ec":{"d":"12,-27r0,-138v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,138v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29xm-24,-260v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20","w":79},"j":{"d":"12,51r0,-216v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,216v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29xm6,-244v0,-18,16,-33,34,-33v18,0,33,15,33,33v0,19,-15,34,-33,34v-18,0,-34,-15,-34,-34","w":79},"k":{"d":"13,-27r0,-221v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,119v26,-20,44,-56,78,-65v33,5,31,32,7,56r-30,30v19,28,48,51,60,84v0,27,-44,38,-58,7r-57,-73v-2,38,12,91,-28,92v-17,0,-28,-13,-28,-29","w":180},"l":{"d":"12,-27r0,-221v0,-16,11,-29,28,-29v17,0,28,13,28,29r0,221v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29","w":79},"<":{"d":"188,-9v-61,-17,-110,-50,-166,-72v-18,-7,-18,-34,0,-41v56,-23,105,-55,166,-73v22,1,30,34,3,45r-116,48r116,49v28,9,19,43,-3,44","w":216},"\u00ac":{"d":"31,-168r150,0v50,-4,29,63,29,102v0,15,-8,25,-23,25v-33,0,-19,-49,-22,-80r-134,0v-15,0,-25,-8,-25,-23v0,-15,10,-24,25,-24","w":216},"m":{"d":"13,-27r0,-138v-4,-33,50,-36,56,-11v22,-28,75,-30,101,2v35,-37,131,-30,124,43v-4,48,20,133,-28,133v-46,0,-28,-75,-28,-118v0,-18,-10,-34,-28,-34v-47,0,-29,77,-29,123v0,16,-11,29,-28,29v-45,0,-28,-75,-28,-118v0,-18,-9,-34,-28,-34v-46,0,-28,78,-28,123v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29","w":306},"\u00af":{"d":"-26,-249v0,-41,71,-23,109,-23v15,0,23,9,23,23v-2,41,-71,23,-109,23v-14,0,-23,-9,-23,-23","w":79},"\u00d7":{"d":"26,-151v-17,-13,1,-40,18,-40v28,11,42,39,64,57v22,-18,36,-45,64,-57v17,0,33,25,18,40r-50,49v18,22,45,36,57,64v0,17,-24,33,-39,18r-50,-49v-21,18,-37,43,-63,56v-17,0,-35,-23,-19,-39r49,-50","w":216},"n":{"d":"13,-27r0,-138v-4,-33,50,-36,56,-11v30,-40,126,-22,118,45v-6,47,21,133,-28,133v-45,0,-28,-75,-28,-118v0,-19,-11,-34,-31,-34v-49,2,-31,77,-31,123v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29"},"9":{"d":"190,-175v0,47,-25,89,-51,120v-43,54,-52,61,-66,61v-20,0,-28,-19,-28,-28v0,-19,34,-37,53,-74v-52,15,-94,-30,-94,-77v0,-50,38,-89,93,-89v57,0,93,36,93,87xm130,-173v0,-18,-15,-33,-33,-33v-18,0,-33,15,-33,33v0,17,15,33,33,33v18,0,33,-16,33,-33","w":193},"\u00f1":{"d":"23,-237v0,-19,17,-39,37,-39v27,0,49,17,64,17v15,0,18,-17,32,-17v13,0,21,11,21,23v0,19,-17,40,-37,40v-27,0,-49,-17,-64,-17v-14,0,-18,17,-32,17v-13,0,-21,-11,-21,-24xm13,-27r0,-138v-4,-33,50,-36,56,-11v30,-40,126,-22,118,45v-6,47,21,133,-28,133v-45,0,-28,-75,-28,-118v0,-19,-11,-34,-31,-34v-49,2,-31,77,-31,123v0,16,-11,29,-28,29v-17,0,-28,-13,-28,-29"},"#":{"d":"56,2v-31,-5,-7,-50,-8,-74v-17,2,-33,-3,-31,-18v-2,-15,18,-19,36,-17r5,-42v-18,2,-33,-4,-31,-18v-2,-15,19,-19,37,-17v8,-26,-5,-74,27,-74v32,0,8,49,9,74r32,0v9,-26,-5,-74,28,-74v31,0,8,50,8,74v17,-2,33,4,31,17v2,17,-17,20,-36,18r-5,42v17,-2,33,4,31,17v2,16,-18,20,-37,18v-8,26,5,74,-27,74v-32,0,-8,-48,-9,-74r-32,0v-9,26,5,71,-28,74xm122,-107r5,-42r-32,0r-6,42r33,0","w":216},"o":{"d":"100,-197v57,0,95,45,95,101v0,57,-38,102,-95,102v-57,0,-95,-45,-95,-102v0,-56,38,-101,95,-101xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47"},"\u00f3":{"d":"100,-197v57,0,95,45,95,101v0,57,-38,102,-95,102v-57,0,-95,-45,-95,-102v0,-56,38,-101,95,-101xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47xm164,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22"},"\u00f4":{"d":"100,-235v-18,7,-33,19,-54,22v-24,-2,-26,-42,0,-49v24,-6,50,-33,76,-15v18,12,54,14,51,42v-5,42,-52,8,-73,0xm100,-197v57,0,95,45,95,101v0,57,-38,102,-95,102v-57,0,-95,-45,-95,-102v0,-56,38,-101,95,-101xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47"},"\u00f6":{"d":"100,-197v57,0,95,45,95,101v0,57,-38,102,-95,102v-57,0,-95,-45,-95,-102v0,-56,38,-101,95,-101xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47xm142,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm58,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28"},"\u00f2":{"d":"100,-197v57,0,95,45,95,101v0,57,-38,102,-95,102v-57,0,-95,-45,-95,-102v0,-56,38,-101,95,-101xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47xm36,-260v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20"},"1":{"d":"44,-29r0,-173v-26,3,-45,-7,-45,-27v0,-32,42,-28,74,-27v13,0,29,5,29,29r0,198v0,21,-12,31,-29,31v-17,0,-29,-10,-29,-31","w":119},"\u00bd":{"d":"81,-41r117,-202v7,-25,41,-24,43,1v0,10,-7,20,-11,27r-116,202v-6,24,-42,24,-44,-1v0,-10,7,-20,11,-27xm45,-123r0,-102v-30,9,-43,-35,-13,-35v25,0,53,-8,54,20r0,117v0,11,-8,20,-20,20v-14,0,-21,-9,-21,-20xm268,-35v23,1,59,-6,57,18v-3,32,-64,17,-96,17v-12,0,-22,-6,-22,-15v0,-22,73,-64,73,-93v0,-9,-9,-13,-15,-13v-24,0,-11,30,-36,30v-14,0,-19,-9,-19,-17v0,-26,23,-49,57,-49v30,0,54,18,54,46v0,31,-33,56,-53,76","w":340},"\u00bc":{"d":"77,-41r116,-202v6,-24,42,-25,44,1v0,10,-7,20,-11,27r-117,202v-6,24,-41,24,-43,-1v0,-10,7,-20,11,-27xm40,-123r0,-102v-30,8,-43,-35,-12,-35v24,0,52,-8,53,20r0,117v0,11,-7,20,-20,20v-14,0,-21,-9,-21,-20xm282,2v-20,0,-21,-13,-20,-32v-34,1,-103,9,-74,-33r55,-80v11,-24,60,-16,60,12r0,66v16,-1,28,3,27,17v0,15,-11,20,-27,18v1,19,0,32,-21,32xm262,-65v-1,-15,2,-33,-1,-46r-31,46r32,0","w":340},"\u00b9":{"d":"26,-123r0,-102v-30,9,-43,-35,-13,-35v24,0,54,-8,54,20r0,117v0,11,-8,20,-21,20v-13,0,-20,-9,-20,-20","w":90},"\u00aa":{"d":"130,-246r0,89v2,18,-33,23,-36,4v-35,31,-90,-2,-90,-49v0,-46,57,-80,90,-47v3,-20,36,-16,36,3xm91,-201v0,-14,-9,-27,-24,-27v-15,0,-24,13,-24,27v0,13,9,26,24,26v15,0,24,-13,24,-26","w":133},"\u00ba":{"d":"127,-202v0,34,-25,61,-62,61v-38,0,-63,-27,-63,-61v0,-33,25,-60,63,-60v38,0,62,27,62,60xm41,-201v0,13,9,26,24,26v15,0,24,-13,24,-26v0,-14,-9,-27,-24,-27v-15,0,-24,13,-24,27","w":129},"\u00f8":{"d":"64,-78r57,-59v-35,-21,-70,15,-57,59xm136,-113r-56,59v34,21,71,-18,56,-59xm10,11v-29,-9,3,-36,13,-46v-43,-63,-4,-162,77,-162v23,0,43,7,59,20v8,-7,22,-28,31,-26v29,8,-3,37,-13,47v44,63,3,162,-77,162v-23,0,-43,-8,-59,-20v-9,7,-21,26,-31,25"},"\u00f5":{"d":"23,-237v0,-19,17,-39,37,-39v27,0,49,17,64,17v15,0,18,-17,32,-17v13,0,21,11,21,23v0,19,-17,40,-37,40v-27,0,-49,-17,-64,-17v-14,0,-18,17,-32,17v-13,0,-21,-11,-21,-24xm100,-197v57,0,95,45,95,101v0,57,-38,102,-95,102v-57,0,-95,-45,-95,-102v0,-56,38,-101,95,-101xm100,-143v-25,0,-38,21,-38,47v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47"},"p":{"d":"12,51r0,-216v-3,-32,47,-37,54,-11v52,-54,135,4,135,80v0,77,-78,129,-133,86v-2,37,11,90,-28,90v-17,0,-28,-13,-28,-29xm107,-48v24,0,38,-22,38,-48v0,-26,-14,-47,-38,-47v-25,0,-39,21,-39,47v0,26,14,48,39,48","w":206},"\u00b6":{"d":"84,43r0,-174v-52,0,-80,-23,-80,-61v-1,-84,102,-60,180,-64v13,0,21,8,21,21r0,278v0,13,-8,22,-21,22v-14,0,-22,-9,-22,-22r0,-267r-35,0r0,267v0,13,-8,22,-22,22v-13,0,-21,-9,-21,-22","w":223},"(":{"d":"37,30v-28,-57,-28,-204,0,-262v8,-17,13,-30,29,-30v14,0,24,9,24,23v0,9,-26,65,-26,138v0,74,26,129,26,139v0,14,-10,22,-24,22v-16,0,-21,-13,-29,-30","w":93},")":{"d":"57,-232v28,57,28,205,0,262v-8,18,-14,30,-29,30v-15,0,-25,-8,-25,-22v0,-10,27,-65,27,-139v0,-73,-27,-129,-27,-138v0,-14,10,-23,25,-23v15,0,21,12,29,30","w":93},"%":{"d":"6,-204v0,-31,25,-58,56,-58v32,0,56,27,56,58v0,31,-24,58,-56,58v-32,0,-56,-27,-56,-58xm49,-41r116,-202v6,-24,42,-25,44,1v0,10,-7,20,-11,27r-117,202v-7,24,-41,24,-43,-1v0,-10,7,-20,11,-27xm47,-204v0,9,6,17,15,17v10,0,15,-8,15,-17v0,-9,-5,-17,-15,-17v-9,0,-15,8,-15,17xm169,-52v0,9,6,17,15,17v10,0,15,-8,15,-17v0,-9,-5,-17,-15,-17v-9,0,-15,8,-15,17xm128,-52v0,-32,25,-58,56,-58v32,0,56,27,56,58v0,31,-24,58,-56,58v-32,0,-56,-27,-56,-58","w":246},".":{"d":"19,-26v0,-16,14,-31,31,-31v17,0,31,15,31,31v0,18,-14,32,-31,32v-17,0,-31,-14,-31,-32","w":100},"\u00b7":{"d":"19,-100v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,31,-31,31v-17,0,-31,-14,-31,-31","w":100},"+":{"d":"84,-126v2,-32,-10,-78,24,-78v34,0,22,46,24,78v32,2,78,-10,78,24v0,34,-46,22,-78,24v-2,32,10,78,-24,78v-34,0,-22,-46,-24,-78v-32,-1,-78,9,-78,-24v0,-34,46,-22,78,-24","w":216},"\u00b1":{"d":"6,-131v0,-34,46,-22,78,-24v-1,-25,-1,-49,24,-49v24,0,25,24,24,49v32,2,78,-10,78,24v0,34,-46,22,-78,24v1,25,0,49,-24,49v-24,0,-26,-24,-24,-49v-32,-2,-78,10,-78,-24xm31,-48r154,0v15,0,25,9,25,24v0,15,-10,24,-25,24r-154,0v-15,0,-25,-9,-25,-24v0,-15,10,-24,25,-24","w":216},"q":{"d":"62,-96v0,26,13,48,38,48v25,0,39,-22,39,-48v0,-26,-14,-47,-39,-47v-25,0,-38,21,-38,47xm195,-165r0,216v0,16,-12,29,-28,29v-39,0,-26,-53,-28,-90v-54,43,-134,-8,-134,-86v0,-76,82,-134,135,-80v9,-27,55,-21,55,11","w":206},"?":{"d":"56,-129v0,-37,56,-14,56,-51v0,-12,-10,-24,-27,-24v-32,0,-27,33,-56,33v-14,0,-26,-13,-26,-27v0,-41,47,-64,82,-64v48,0,89,29,89,80v0,46,-26,67,-62,74v2,21,-9,35,-28,36v-29,0,-28,-28,-28,-57xm53,-26v0,-16,14,-31,31,-31v17,0,31,15,31,31v0,18,-14,32,-31,32v-17,0,-31,-14,-31,-32","w":180},"\u00bf":{"d":"124,-62v-1,36,-56,13,-56,51v0,11,10,23,27,23v32,0,27,-32,56,-32v14,0,26,12,26,27v0,41,-47,64,-82,64v-48,0,-89,-30,-89,-80v0,-46,26,-68,62,-75v-2,-22,10,-35,28,-35v29,-1,29,28,28,57xm127,-166v0,17,-14,31,-31,31v-17,0,-31,-14,-31,-31v0,-17,14,-31,31,-31v17,0,31,14,31,31","w":180},"\"":{"d":"121,-147v-35,-1,-23,-53,-23,-86v0,-15,9,-25,23,-25v36,0,24,53,24,86v0,14,-9,25,-24,25xm52,-147v-36,-1,-24,-52,-24,-86v0,-15,9,-25,24,-25v35,0,24,53,24,86v0,14,-10,25,-24,25","w":173},"'":{"d":"47,-147v-36,-1,-24,-52,-24,-86v0,-15,9,-25,24,-25v35,0,24,53,24,86v0,14,-10,25,-24,25","w":93},"r":{"d":"137,-168v0,41,-79,19,-68,73v-3,39,13,96,-28,97v-17,0,-28,-13,-28,-29r0,-138v-4,-33,50,-36,56,-11v15,-24,68,-33,68,8","w":126},"\u00ae":{"d":"10,-128v0,-85,65,-134,134,-134v69,0,134,49,134,134v0,85,-65,134,-134,134v-69,0,-134,-49,-134,-134xm51,-128v0,60,41,101,93,101v51,0,93,-41,93,-101v0,-61,-42,-102,-93,-102v-52,0,-93,41,-93,102xm91,-75r0,-109v1,-26,38,-16,61,-16v32,0,52,10,52,43v0,26,-17,39,-33,40v9,15,25,27,29,46v-2,14,-26,17,-33,0r-33,-46r-11,0v-2,22,8,59,-16,58v-9,0,-16,-5,-16,-16xm123,-174r0,31v19,-2,46,7,46,-15v0,-24,-26,-14,-46,-16","w":288},"s":{"d":"3,-33v0,-47,44,-11,77,-11v12,0,16,-5,16,-11v0,-12,-11,-16,-43,-26v-73,-22,-50,-118,28,-116v22,0,64,11,64,40v0,39,-41,15,-68,9v-8,0,-15,4,-15,12v0,22,88,17,88,79v0,39,-33,63,-72,63v-35,0,-75,-14,-75,-39","w":153},"\u00a7":{"d":"21,-102v0,-26,12,-42,34,-55v-43,-40,-6,-105,56,-105v39,0,75,22,75,51v0,12,-9,25,-22,25v-21,0,-29,-33,-54,-33v-10,0,-19,6,-19,16v0,38,108,40,108,109v0,28,-14,48,-33,58v44,37,2,103,-56,103v-39,0,-77,-21,-77,-51v0,-11,8,-23,23,-23v21,0,24,31,54,31v11,0,21,-5,21,-16v0,-35,-110,-45,-110,-110xm135,-61v42,-32,-26,-56,-50,-72v-43,33,28,56,50,72","w":219},";":{"d":"-6,30v4,-30,25,-45,34,-70v9,-23,57,-22,53,8v-4,30,-25,45,-35,70v-9,22,-56,20,-52,-8xm19,-138v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,31,-31,31v-17,0,-31,-14,-31,-31","w":100},"7":{"d":"23,-24v20,-65,56,-118,81,-178v-39,-3,-105,13,-105,-27v0,-14,9,-27,27,-27r118,0v32,2,34,29,22,54r-82,176v-1,34,-61,36,-61,2","w":173},"6":{"d":"4,-82v0,-46,25,-88,50,-119v44,-54,53,-61,67,-61v19,0,28,18,28,28v0,19,-28,34,-54,73v55,-13,96,30,95,78v0,50,-38,89,-93,89v-57,0,-93,-36,-93,-88xm64,-83v0,17,15,33,33,33v18,0,33,-16,33,-33v0,-18,-15,-33,-33,-33v-18,0,-33,15,-33,33","w":193},"\/":{"d":"4,-14v29,-75,75,-147,110,-219v7,-14,16,-29,29,-29v31,0,18,31,6,54r-97,184v-7,15,-15,30,-28,30v-12,0,-20,-7,-20,-20","w":166},"\u00a3":{"d":"107,-156v30,-3,62,2,62,27v0,22,-26,31,-54,27v0,18,-2,30,-14,46v45,5,127,-19,127,28v0,16,-13,28,-32,28r-133,0v-18,0,-34,-8,-34,-28v0,-28,24,-23,29,-74v-28,3,-53,-6,-53,-27v0,-17,17,-31,43,-27v-26,-58,16,-106,87,-106v69,0,92,42,92,65v0,15,-13,27,-28,27v-28,0,-17,-40,-64,-40v-30,0,-44,31,-28,54","w":226},"t":{"d":"55,2v-50,0,-20,-93,-28,-142v-21,1,-36,-6,-36,-26v0,-20,15,-27,36,-26v-1,-31,-2,-65,28,-65v31,0,30,33,29,65v25,-2,45,2,45,26v0,24,-20,28,-45,26r0,113v0,16,-12,29,-29,29","w":119},"\u00fe":{"d":"12,52r0,-301v0,-18,10,-28,28,-28v42,-1,24,59,28,96v53,-43,133,9,133,85v0,77,-78,129,-133,86v-3,37,13,91,-28,90v-18,0,-28,-11,-28,-28xm107,-48v24,0,38,-22,38,-48v0,-26,-14,-47,-38,-47v-25,0,-39,21,-39,47v0,26,14,48,39,48","w":206},"3":{"d":"59,-136v-7,-31,53,-18,53,-51v0,-13,-11,-19,-22,-19v-30,0,-31,31,-58,31v-15,0,-24,-15,-24,-27v0,-36,47,-60,81,-60v69,0,110,82,50,122v76,31,38,146,-48,146v-53,0,-91,-36,-91,-70v0,-14,14,-27,27,-27v31,0,24,41,64,41v17,0,29,-14,29,-31v1,-44,-61,-10,-61,-55","w":186},"\u00be":{"d":"96,-41r117,-202v7,-25,41,-24,43,1v0,10,-7,20,-11,27r-116,202v-7,24,-42,24,-44,-1v0,-10,7,-20,11,-27xm16,-226v4,-49,107,-48,105,6v0,11,-6,22,-20,31v51,20,26,86,-32,86v-29,0,-59,-19,-59,-41v0,-9,8,-17,18,-17v20,0,16,22,42,22v10,0,18,-9,18,-17v0,-24,-39,-5,-39,-30v0,-23,33,-10,33,-30v-14,-30,-58,31,-66,-10xm282,2v-20,0,-21,-13,-20,-32v-34,1,-103,9,-74,-33r55,-80v13,-22,60,-13,60,14r0,64v16,-1,28,3,27,17v0,15,-11,20,-27,18v1,19,0,32,-21,32xm262,-65v-1,-15,2,-33,-1,-46r-31,46r32,0","w":340},"\u00b3":{"d":"13,-226v5,-49,107,-48,105,6v0,11,-5,22,-20,31v51,19,26,86,-31,86v-30,0,-59,-19,-59,-41v0,-9,7,-17,18,-17v20,0,15,22,41,22v10,0,18,-9,18,-17v1,-24,-39,-5,-39,-30v0,-23,34,-10,34,-30v-15,-29,-59,31,-67,-10","w":134},"2":{"d":"90,-54v35,1,90,-9,88,27v0,13,-9,27,-27,27r-118,0v-70,-9,-7,-66,11,-86v15,-17,65,-70,65,-96v0,-17,-8,-24,-22,-24v-38,0,-19,54,-56,54v-18,0,-27,-14,-27,-28v0,-44,36,-82,87,-82v44,0,81,31,81,78v0,51,-52,92,-82,130","w":180},"\u00b2":{"d":"67,-139v23,1,59,-7,57,17v-3,32,-64,17,-96,17v-11,0,-22,-6,-22,-15v0,-22,74,-64,74,-92v0,-9,-9,-13,-16,-13v-24,0,-11,29,-36,29v-14,0,-19,-8,-19,-16v0,-27,23,-50,57,-50v30,0,55,18,55,47v0,31,-34,55,-54,76","w":129},"u":{"d":"159,-194v48,0,28,80,28,125v0,52,-40,75,-87,75v-47,0,-87,-23,-87,-75v0,-46,-19,-125,28,-125v46,0,25,74,28,117v3,41,59,41,62,0v3,-43,-17,-117,28,-117"},"\u00fa":{"d":"159,-194v48,0,28,80,28,125v0,52,-40,75,-87,75v-47,0,-87,-23,-87,-75v0,-46,-19,-125,28,-125v46,0,25,74,28,117v3,41,59,41,62,0v3,-43,-17,-117,28,-117xm164,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22"},"\u00fb":{"d":"100,-235v-18,7,-33,19,-54,22v-24,-2,-26,-42,0,-49v24,-6,50,-33,76,-15v18,12,54,14,51,42v-5,42,-52,8,-73,0xm159,-194v48,0,28,80,28,125v0,52,-40,75,-87,75v-47,0,-87,-23,-87,-75v0,-46,-19,-125,28,-125v46,0,25,74,28,117v3,41,59,41,62,0v3,-43,-17,-117,28,-117"},"\u00fc":{"d":"159,-194v48,0,28,80,28,125v0,52,-40,75,-87,75v-47,0,-87,-23,-87,-75v0,-46,-19,-125,28,-125v46,0,25,74,28,117v3,41,59,41,62,0v3,-43,-17,-117,28,-117xm142,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm58,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28"},"\u00f9":{"d":"159,-194v48,0,28,80,28,125v0,52,-40,75,-87,75v-47,0,-87,-23,-87,-75v0,-46,-19,-125,28,-125v46,0,25,74,28,117v3,41,59,41,62,0v3,-43,-17,-117,28,-117xm36,-260v0,-50,67,-7,92,2v21,7,14,48,-10,45v-27,-4,-45,-19,-69,-27v-8,-3,-13,-10,-13,-20"},"_":{"d":"180,45r-180,0v-6,0,-10,-3,-10,-9v0,-6,4,-9,10,-9r180,0v6,0,10,3,10,9v0,6,-4,9,-10,9","w":180},"v":{"d":"53,-21v-15,-48,-43,-94,-55,-145v1,-30,42,-41,55,-6r31,85r30,-85v10,-36,54,-24,55,6v-11,51,-40,97,-55,145v-9,30,-52,29,-61,0","w":167},"w":{"d":"46,-26r-39,-109v-12,-26,-15,-56,20,-59v13,0,23,8,26,20r28,91r26,-79v4,-14,10,-32,30,-32v20,0,25,18,30,32r26,79r27,-91v4,-12,14,-20,27,-20v34,2,29,33,20,59r-39,109v-7,19,-16,28,-35,28v-46,-2,-37,-66,-57,-96v-17,32,-12,96,-55,96v-19,0,-28,-9,-35,-28","w":273},"x":{"d":"-3,-26v9,-37,40,-48,59,-75v-13,-17,-51,-45,-51,-64v0,-32,38,-36,55,-15r30,37v18,-17,27,-50,58,-51v13,0,27,11,27,29v0,19,-38,47,-51,64v19,26,49,39,59,75v1,30,-38,33,-54,14r-39,-46v-21,19,-32,52,-64,60v-16,0,-29,-11,-29,-28","w":180},"y":{"d":"59,80v-58,0,-8,-69,1,-98r-48,-114v-18,-30,-17,-62,15,-62v14,0,24,8,29,22r33,85r32,-76v6,-37,57,-42,59,-2v-24,78,-61,144,-90,218v-6,15,-11,27,-31,27","w":180},"\u00fd":{"d":"59,80v-58,0,-8,-69,1,-98r-48,-114v-18,-30,-17,-62,15,-62v14,0,24,8,29,22r33,85r32,-76v6,-37,57,-42,59,-2v-24,78,-61,144,-90,218v-6,15,-11,27,-31,27xm154,-260v-4,31,-46,28,-67,43v-15,10,-40,-1,-38,-21v5,-31,45,-31,67,-44v16,-10,41,2,38,22","w":180},"\u00ff":{"d":"59,80v-58,0,-8,-69,1,-98r-48,-114v-18,-30,-17,-62,15,-62v14,0,24,8,29,22r33,85r32,-76v6,-37,57,-42,59,-2v-24,78,-61,144,-90,218v-6,15,-11,27,-31,27xm132,-277v15,0,28,12,28,28v0,15,-13,28,-28,28v-16,0,-28,-13,-28,-28v0,-16,12,-28,28,-28xm48,-277v16,0,28,12,28,28v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-16,13,-28,28,-28","w":180},"\u00a5":{"d":"143,-66v2,33,2,68,-30,68v-31,0,-30,-36,-29,-68v-26,-3,-69,10,-69,-17v0,-27,43,-14,69,-17r0,-20v-27,-2,-69,10,-69,-18v0,-20,25,-18,45,-17v-14,-19,-50,-60,-50,-78v0,-15,13,-25,31,-25v16,0,23,11,29,19r43,62r44,-62v7,-24,60,-26,60,6v0,18,-36,59,-50,78v21,-1,45,-2,45,17v0,27,-42,16,-69,18r0,20v26,2,69,-9,69,17v0,26,-43,15,-69,17","w":226},"z":{"d":"25,0v-27,-1,-35,-17,-18,-41r72,-99v-33,-2,-80,10,-79,-26v0,-18,12,-26,30,-26r108,0v23,-2,32,19,19,37r-77,103v35,3,89,-13,88,26v0,18,-11,26,-29,26r-114,0","w":166},"0":{"d":"113,6v-141,0,-145,-268,0,-268v145,0,145,268,0,268xm67,-128v0,32,10,78,46,78v37,0,47,-46,47,-78v0,-32,-10,-78,-47,-78v-36,0,-46,46,-46,78","w":226},"\u00a0":{"w":100}}});/*	Unobtrusive Flash Objects (UFO) v3.22 <http://www.bobbyvandersluis.com/ufo/>
	Copyright 2005-2007 Bobby van der Sluis
	This software is licensed under the CC-GNU LGPL <http://creativecommons.org/licenses/LGPL/2.1/>
*/

var UFO = {
	req: ["movie", "width", "height", "majorversion", "build"],
	opt: ["play", "loop", "menu", "quality", "scale", "salign", "wmode", "bgcolor", "base", "flashvars", "devicefont", "allowscriptaccess", "seamlesstabbing", "allowfullscreen", "allownetworking"],
	optAtt: ["id", "name", "align"],
	optExc: ["swliveconnect"],
	ximovie: "ufo.swf",
	xiwidth: "215",
	xiheight: "138",
	ua: navigator.userAgent.toLowerCase(),
	pluginType: "",
	fv: [0,0],
	foList: [],
		
	create: function(FO, id) {
		if (!UFO.uaHas("w3cdom") || UFO.uaHas("ieMac")) return;
		UFO.getFlashVersion();
		UFO.foList[id] = UFO.updateFO(FO);
		UFO.createCSS("#" + id, "visibility:hidden;");
		UFO.domLoad(id);
	},

	updateFO: function(FO) {
		if (typeof FO.xi != "undefined" && FO.xi == "true") {
			if (typeof FO.ximovie == "undefined") FO.ximovie = UFO.ximovie;
			if (typeof FO.xiwidth == "undefined") FO.xiwidth = UFO.xiwidth;
			if (typeof FO.xiheight == "undefined") FO.xiheight = UFO.xiheight;
		}
		FO.mainCalled = false;
		return FO;
	},

	domLoad: function(id) {
		var _t = setInterval(function() {
			if ((document.getElementsByTagName("body")[0] != null || document.body != null) && document.getElementById(id) != null) {
				UFO.main(id);
				clearInterval(_t);
			}
		}, 250);
		if (typeof document.addEventListener != "undefined") {
			document.addEventListener("DOMContentLoaded", function() { UFO.main(id); clearInterval(_t); } , null); // Gecko, Opera 9+
		}
	},

	main: function(id) {
		var _fo = UFO.foList[id];
		if (_fo.mainCalled) return;
		UFO.foList[id].mainCalled = true;
		document.getElementById(id).style.visibility = "hidden";
		if (UFO.hasRequired(id)) {
			if (UFO.hasFlashVersion(parseInt(_fo.majorversion, 10), parseInt(_fo.build, 10))) {
				if (typeof _fo.setcontainercss != "undefined" && _fo.setcontainercss == "true") UFO.setContainerCSS(id);
				UFO.writeSWF(id);
			}
			else if (_fo.xi == "true" && UFO.hasFlashVersion(6, 65)) {
				UFO.createDialog(id);
			}
		}
		document.getElementById(id).style.visibility = "visible";
	},
	
	createCSS: function(selector, declaration) {
		var _h = document.getElementsByTagName("head")[0]; 
		var _s = UFO.createElement("style");
		if (!UFO.uaHas("ieWin")) _s.appendChild(document.createTextNode(selector + " {" + declaration + "}")); // bugs in IE/Win
		_s.setAttribute("type", "text/css");
		_s.setAttribute("media", "screen"); 
		_h.appendChild(_s);
		if (UFO.uaHas("ieWin") && document.styleSheets && document.styleSheets.length > 0) {
			var _ls = document.styleSheets[document.styleSheets.length - 1];
			if (typeof _ls.addRule == "object") _ls.addRule(selector, declaration);
		}
	},
	
	setContainerCSS: function(id) {
		var _fo = UFO.foList[id];
		var _w = /%/.test(_fo.width) ? "" : "px";
		var _h = /%/.test(_fo.height) ? "" : "px";
		UFO.createCSS("#" + id, "width:" + _fo.width + _w +"; height:" + _fo.height + _h +";");
		if (_fo.width == "100%") {
			UFO.createCSS("body", "margin-left:0; margin-right:0; padding-left:0; padding-right:0;");
		}
		if (_fo.height == "100%") {
			UFO.createCSS("html", "height:100%; overflow:hidden;");
			UFO.createCSS("body", "margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0; height:100%;");
		}
	},

	createElement: function(el) {
		return (UFO.uaHas("xml") && typeof document.createElementNS != "undefined") ?  document.createElementNS("http://www.w3.org/1999/xhtml", el) : document.createElement(el);
	},

	createObjParam: function(el, aName, aValue) {
		var _p = UFO.createElement("param");
		_p.setAttribute("name", aName);	
		_p.setAttribute("value", aValue);
		el.appendChild(_p);
	},

	uaHas: function(ft) {
		var _u = UFO.ua;
		switch(ft) {
			case "w3cdom":
				return (typeof document.getElementById != "undefined" && typeof document.getElementsByTagName != "undefined" && (typeof document.createElement != "undefined" || typeof document.createElementNS != "undefined"));
			case "xml":
				var _m = document.getElementsByTagName("meta");
				var _l = _m.length;
				for (var i = 0; i < _l; i++) {
					if (/content-type/i.test(_m[i].getAttribute("http-equiv")) && /xml/i.test(_m[i].getAttribute("content"))) return true;
				}
				return false;
			case "ieMac":
				return /msie/.test(_u) && !/opera/.test(_u) && /mac/.test(_u);
			case "ieWin":
				return /msie/.test(_u) && !/opera/.test(_u) && /win/.test(_u);
			case "gecko":
				return /gecko/.test(_u) && !/applewebkit/.test(_u);
			case "opera":
				return /opera/.test(_u);
			case "safari":
				return /applewebkit/.test(_u);
			default:
				return false;
		}
	},
	
	getFlashVersion: function() {
		if (UFO.fv[0] != 0) return;  
		if (navigator.plugins && typeof navigator.plugins["Shockwave Flash"] == "object") {
			UFO.pluginType = "npapi";
			var _d = navigator.plugins["Shockwave Flash"].description;
			if (typeof _d != "undefined") {
				_d = _d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
				var _m = parseInt(_d.replace(/^(.*)\..*$/, "$1"), 10);
				var _r = /r/.test(_d) ? parseInt(_d.replace(/^.*r(.*)$/, "$1"), 10) : 0;
				UFO.fv = [_m, _r];
			}
		}
		else if (window.ActiveXObject) {
			UFO.pluginType = "ax";
			try { // avoid fp 6 crashes
				var _a = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
			}
			catch(e) {
				try { 
					var _a = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
					UFO.fv = [6, 0];
					_a.AllowScriptAccess = "always"; // throws if fp < 6.47 
				}
				catch(e) {
					if (UFO.fv[0] == 6) return;
				}
				try {
					var _a = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
				}
				catch(e) {}
			}
			if (typeof _a == "object") {
				var _d = _a.GetVariable("$version"); // bugs in fp 6.21/6.23
				if (typeof _d != "undefined") {
					_d = _d.replace(/^\S+\s+(.*)$/, "$1").split(",");
					UFO.fv = [parseInt(_d[0], 10), parseInt(_d[2], 10)];
				}
			}
		}
	},

	hasRequired: function(id) {
		var _l = UFO.req.length;
		for (var i = 0; i < _l; i++) {
			if (typeof UFO.foList[id][UFO.req[i]] == "undefined") return false;
		}
		return true;
	},
	
	hasFlashVersion: function(major, release) {
		return (UFO.fv[0] > major || (UFO.fv[0] == major && UFO.fv[1] >= release)) ? true : false;
	},

	writeSWF: function(id) {
		var _fo = UFO.foList[id];
		var _e = document.getElementById(id);
		if (UFO.pluginType == "npapi") {
			if (UFO.uaHas("gecko") || UFO.uaHas("xml")) {
				while(_e.hasChildNodes()) {
					_e.removeChild(_e.firstChild);
				}
				var _obj = UFO.createElement("object");
				_obj.setAttribute("type", "application/x-shockwave-flash");
				_obj.setAttribute("data", _fo.movie);
				_obj.setAttribute("width", _fo.width);
				_obj.setAttribute("height", _fo.height);
				var _l = UFO.optAtt.length;
				for (var i = 0; i < _l; i++) {
					if (typeof _fo[UFO.optAtt[i]] != "undefined") _obj.setAttribute(UFO.optAtt[i], _fo[UFO.optAtt[i]]);
				}
				var _o = UFO.opt.concat(UFO.optExc);
				var _l = _o.length;
				for (var i = 0; i < _l; i++) {
					if (typeof _fo[_o[i]] != "undefined") UFO.createObjParam(_obj, _o[i], _fo[_o[i]]);
				}
				_e.appendChild(_obj);
			}
			else {
				var _emb = "";
				var _o = UFO.opt.concat(UFO.optAtt).concat(UFO.optExc);
				var _l = _o.length;
				for (var i = 0; i < _l; i++) {
					if (typeof _fo[_o[i]] != "undefined") _emb += ' ' + _o[i] + '="' + _fo[_o[i]] + '"';
				}
				_e.innerHTML = '<embed type="application/x-shockwave-flash" src="' + _fo.movie + '" width="' + _fo.width + '" height="' + _fo.height + '" pluginspage="http://www.macromedia.com/go/getflashplayer"' + _emb + '></embed>';
			}
		}
		else if (UFO.pluginType == "ax") {
			var _objAtt = "";
			var _l = UFO.optAtt.length;
			for (var i = 0; i < _l; i++) {
				if (typeof _fo[UFO.optAtt[i]] != "undefined") _objAtt += ' ' + UFO.optAtt[i] + '="' + _fo[UFO.optAtt[i]] + '"';
			}
			var _objPar = "";
			var _l = UFO.opt.length;
			for (var i = 0; i < _l; i++) {
				if (typeof _fo[UFO.opt[i]] != "undefined") _objPar += '<param name="' + UFO.opt[i] + '" value="' + _fo[UFO.opt[i]] + '" />';
			}
			var _p = window.location.protocol == "https:" ? "https:" : "http:";
			_e.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + _objAtt + ' width="' + _fo.width + '" height="' + _fo.height + '" codebase="' + _p + '//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + _fo.majorversion + ',0,' + _fo.build + ',0"><param name="movie" value="' + _fo.movie + '" />' + _objPar + '</object>';
		}
	},
		
	createDialog: function(id) {
		var _fo = UFO.foList[id];
		UFO.createCSS("html", "height:100%; overflow:hidden;");
		UFO.createCSS("body", "height:100%; overflow:hidden;");
		UFO.createCSS("#xi-con", "position:absolute; left:0; top:0; z-index:1000; width:100%; height:100%; background-color:#fff; filter:alpha(opacity:75); opacity:0.75;");
		UFO.createCSS("#xi-dia", "position:absolute; left:50%; top:50%; margin-left: -" + Math.round(parseInt(_fo.xiwidth, 10) / 2) + "px; margin-top: -" + Math.round(parseInt(_fo.xiheight, 10) / 2) + "px; width:" + _fo.xiwidth + "px; height:" + _fo.xiheight + "px;");
		var _b = document.getElementsByTagName("body")[0];
		var _c = UFO.createElement("div");
		_c.setAttribute("id", "xi-con");
		var _d = UFO.createElement("div");
		_d.setAttribute("id", "xi-dia");
		_c.appendChild(_d);
		_b.appendChild(_c);
		var _mmu = window.location;
		if (UFO.uaHas("xml") && UFO.uaHas("safari")) {
			var _mmd = document.getElementsByTagName("title")[0].firstChild.nodeValue = document.getElementsByTagName("title")[0].firstChild.nodeValue.slice(0, 47) + " - Flash Player Installation";
		}
		else {
			var _mmd = document.title = document.title.slice(0, 47) + " - Flash Player Installation";
		}
		var _mmp = UFO.pluginType == "ax" ? "ActiveX" : "PlugIn";
		var _uc = typeof _fo.xiurlcancel != "undefined" ? "&xiUrlCancel=" + _fo.xiurlcancel : "";
		var _uf = typeof _fo.xiurlfailed != "undefined" ? "&xiUrlFailed=" + _fo.xiurlfailed : "";
		UFO.foList["xi-dia"] = { movie:_fo.ximovie, width:_fo.xiwidth, height:_fo.xiheight, majorversion:"6", build:"65", flashvars:"MMredirectURL=" + _mmu + "&MMplayerType=" + _mmp + "&MMdoctitle=" + _mmd + _uc + _uf };
		UFO.writeSWF("xi-dia");
	},

	expressInstallCallback: function() {
		var _b = document.getElementsByTagName("body")[0];
		var _c = document.getElementById("xi-con");
		_b.removeChild(_c);
		UFO.createCSS("body", "height:auto; overflow:auto;");
		UFO.createCSS("html", "height:auto; overflow:auto;");
	},

	cleanupIELeaks: function() {
		var _o = document.getElementsByTagName("object");
		var _l = _o.length
		for (var i = 0; i < _l; i++) {
			_o[i].style.display = "none";
			for (var x in _o[i]) {
				if (typeof _o[i][x] == "function") {
					_o[i][x] = null;
				}
			}
		}
	}

};

if (typeof window.attachEvent != "undefined" && UFO.uaHas("ieWin")) {
	window.attachEvent("onunload", UFO.cleanupIELeaks);
}
/*
 * jQuery UI @VERSION
 *
 * Copyright (c) 2008 Paul Bakaus (ui.jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
;(function($) {

/** jQuery core modifications and additions **/
$.keyCode = {
	BACKSPACE: 8,
	CAPS_LOCK: 20,
	COMMA: 188,
	CONTROL: 17,
	DELETE: 46,
	DOWN: 40,
	END: 35,
	ENTER: 13,
	ESCAPE: 27,
	HOME: 36,
	INSERT: 45,
	LEFT: 37,
	NUMPAD_ADD: 107,
	NUMPAD_DECIMAL: 110,
	NUMPAD_DIVIDE: 111,
	NUMPAD_ENTER: 108,
	NUMPAD_MULTIPLY: 106,
	NUMPAD_SUBTRACT: 109,
	PAGE_DOWN: 34,
	PAGE_UP: 33,
	PERIOD: 190,
	RIGHT: 39,
	SHIFT: 16,
	SPACE: 32,
	TAB: 9,
	UP: 38
};

//Temporary mappings
var _remove = $.fn.remove;
var isFF2 = $.browser.mozilla && (parseFloat($.browser.version) < 1.9);


//Helper functions and ui object
$.ui = {
	
	version: "@VERSION",
	
	// $.ui.plugin is deprecated.  Use the proxy pattern instead.
	plugin: {
		add: function(module, option, set) {
			var proto = $.ui[module].prototype;
			for(var i in set) {
				proto.plugins[i] = proto.plugins[i] || [];
				proto.plugins[i].push([option, set[i]]);
			}
		},
		call: function(instance, name, args) {
			var set = instance.plugins[name];
			if(!set) { return; }
			
			for (var i = 0; i < set.length; i++) {
				if (instance.options[set[i][0]]) {
					set[i][1].apply(instance.element, args);
				}
			}
		}	
	},
	
	cssCache: {},
	css: function(name) {
		if ($.ui.cssCache[name]) { return $.ui.cssCache[name]; }
		var tmp = $('<div class="ui-gen">').addClass(name).css({position:'absolute', top:'-5000px', left:'-5000px', display:'block'}).appendTo('body');
		
		//if (!$.browser.safari)
			//tmp.appendTo('body');
		
		//Opera and Safari set width and height to 0px instead of auto
		//Safari returns rgba(0,0,0,0) when bgcolor is not set
		$.ui.cssCache[name] = !!(
			(!(/auto|default/).test(tmp.css('cursor')) || (/^[1-9]/).test(tmp.css('height')) || (/^[1-9]/).test(tmp.css('width')) || 
			!(/none/).test(tmp.css('backgroundImage')) || !(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor')))
		);
		try { $('body').get(0).removeChild(tmp.get(0));	} catch(e){}
		return $.ui.cssCache[name];
	},

	hasScroll: function(e, a) {
		
		//If overflow is hidden, the element might have extra content, but the user wants to hide it
		if ($(e).css('overflow') == 'hidden') { return false; }
		
		var scroll = (a && a == 'left') ? 'scrollLeft' : 'scrollTop',
			has = false;
		
		if (e[scroll] > 0) { return true; }
		
		// TODO: determine which cases actually cause this to happen
		// if the element doesn't have the scroll set, see if it's possible to
		// set the scroll
		e[scroll] = 1;
		has = (e[scroll] > 0);
		e[scroll] = 0;
		return has;
	}
};


//jQuery plugins
$.fn.extend({
	
	remove: function() {
		// Safari has a native remove event which actually removes DOM elements,
		// so we have to use triggerHandler instead of trigger (#3037).
		$("*", this).add(this).each(function() {
			$(this).triggerHandler("remove");
		});
		return _remove.apply(this, arguments );
	},
	
	enableSelection: function() {
		return this
			.attr('unselectable', 'off')
			.css('MozUserSelect', '')
			.unbind('selectstart.ui');
	},
	
	disableSelection: function() {
		return this
			.attr('unselectable', 'on')
			.css('MozUserSelect', 'none')
			.bind('selectstart.ui', function() { return false; });
	},
	
	// WAI-ARIA Semantics
	ariaRole: function(role) {
		return (role !== undefined
			
			// setter
			? this.attr("role", isFF2 ? "wairole:" + role : role)
			
			// getter
			: (this.attr("role") || "").replace(/^wairole:/, ""));
	},
	
	ariaState: function(state, value) {
		return (value !== undefined
			
			// setter
			? this.each(function(i, el) {
				(isFF2
					? el.setAttributeNS("http://www.w3.org/2005/07/aaa",
						"aaa:" + state, value)
					: $(el).attr("aria-" + state, value));
			})
			
			// getter
			: this.attr(isFF2 ? "aaa:" + state : "aria-" + state));
	}
	
});


//Additional selectors
$.extend($.expr[':'], {
	
	data: function(a, i, m) {
		return $.data(a, m[3]);
	},
	
	// TODO: add support for object, area
	tabbable: function(a, i, m) {

		var nodeName = a.nodeName.toLowerCase();
		var isVisible = function(element) {
			function checkStyles(element) {
				var style = element.style;
				return (style.display != 'none' && style.visibility != 'hidden');
			}
			
			var visible = checkStyles(element);
			
			(visible && $.each($.dir(element, 'parentNode'), function() {
				return (visible = checkStyles(this));
			}));
			
			return visible;
		};
		
		return (
			// in tab order
			a.tabIndex >= 0 &&
			
			( // filter node types that participate in the tab order
				
				// anchor tag
				('a' == nodeName && a.href) ||
				
				// enabled form element
				(/input|select|textarea|button/.test(nodeName) &&
					'hidden' != a.type && !a.disabled)
			) &&
			
			// visible on page
			isVisible(a)
		);
		
	}
	
});


// $.widget is a factory to create jQuery plugins
// taking some boilerplate code out of the plugin code
// created by Scott González and Jörn Zaefferer
function getter(namespace, plugin, method, args) {
	function getMethods(type) {
		var methods = $[namespace][plugin][type] || [];
		return (typeof methods == 'string' ? methods.split(/,?\s+/) : methods);
	}
	
	var methods = getMethods('getter');
	if (args.length == 1 && typeof args[0] == 'string') {
		methods = methods.concat(getMethods('getterSetter'));
	}
	return ($.inArray(method, methods) != -1);
}

$.widget = function(name, prototype) {
	var namespace = name.split(".")[0];
	name = name.split(".")[1];
	
	// create plugin method
	$.fn[name] = function(options) {
		var isMethodCall = (typeof options == 'string'),
			args = Array.prototype.slice.call(arguments, 1);
		
		// prevent calls to internal methods
		if (isMethodCall && options.substring(0, 1) == '_') {
			return this;
		}
		
		// handle getter methods
		if (isMethodCall && getter(namespace, name, options, args)) {
			var instance = $.data(this[0], name);
			return (instance ? instance[options].apply(instance, args)
				: undefined);
		}
		
		// handle initialization and non-getter methods
		return this.each(function() {
			var instance = $.data(this, name);
			
			// constructor
			(!instance && !isMethodCall &&
				$.data(this, name, new $[namespace][name](this, options)));
			
			// method call
			(instance && isMethodCall && $.isFunction(instance[options]) &&
				instance[options].apply(instance, args));
		});
	};
	
	// create widget constructor
	$[namespace] = $[namespace] || {};
	$[namespace][name] = function(element, options) {
		var self = this;
		
		this.widgetName = name;
		this.widgetEventPrefix = $[namespace][name].eventPrefix || name;
		this.widgetBaseClass = namespace + '-' + name;
		
		this.options = $.extend({},
			$.widget.defaults,
			$[namespace][name].defaults,
			$.metadata && $.metadata.get(element)[name],
			options);
		
		this.element = $(element)
			.bind('setData.' + name, function(e, key, value) {
				return self._setData(key, value);
			})
			.bind('getData.' + name, function(e, key) {
				return self._getData(key);
			})
			.bind('remove', function() {
				return self.destroy();
			});
		
		this._init();
	};
	
	// add widget prototype
	$[namespace][name].prototype = $.extend({}, $.widget.prototype, prototype);
	
	// TODO: merge getter and getterSetter properties from widget prototype
	// and plugin prototype
	$[namespace][name].getterSetter = 'option';
};

$.widget.prototype = {
	_init: function() {},
	destroy: function() {
		this.element.removeData(this.widgetName);
	},
	
	option: function(key, value) {
		var options = key,
			self = this;
		
		if (typeof key == "string") {
			if (value === undefined) {
				return this._getData(key);
			}
			options = {};
			options[key] = value;
		}
		
		$.each(options, function(key, value) {
			self._setData(key, value);
		});
	},
	_getData: function(key) {
		return this.options[key];
	},
	_setData: function(key, value) {
		this.options[key] = value;
		
		if (key == 'disabled') {
			this.element[value ? 'addClass' : 'removeClass'](
				this.widgetBaseClass + '-disabled');
		}
	},
	
	enable: function() {
		this._setData('disabled', false);
	},
	disable: function() {
		this._setData('disabled', true);
	},
	
	_trigger: function(type, e, data) {
		var eventName = (type == this.widgetEventPrefix
			? type : this.widgetEventPrefix + type);
		e = e  || $.event.fix({ type: eventName, target: this.element[0] });
		return this.element.triggerHandler(eventName, [e, data], this.options[type]);
	}
};

$.widget.defaults = {
	disabled: false
};


/** Mouse Interaction Plugin **/

$.ui.mouse = {
	_mouseInit: function() {
		var self = this;
	
		this.element
			.bind('mousedown.'+this.widgetName, function(e) {
				return self._mouseDown(e);
			})
			.bind('click.'+this.widgetName, function(e) {
				if(self._preventClickEvent) {
					self._preventClickEvent = false;
					return false;
				}
			});
		
		// Prevent text selection in IE
		if ($.browser.msie) {
			this._mouseUnselectable = this.element.attr('unselectable');
			this.element.attr('unselectable', 'on');
		}
		
		this.started = false;
	},
	
	// TODO: make sure destroying one instance of mouse doesn't mess with
	// other instances of mouse
	_mouseDestroy: function() {
		this.element.unbind('.'+this.widgetName);
		
		// Restore text selection in IE
		($.browser.msie
			&& this.element.attr('unselectable', this._mouseUnselectable));
	},
	
	_mouseDown: function(e) {
		// we may have missed mouseup (out of window)
		(this._mouseStarted && this._mouseUp(e));
		
		this._mouseDownEvent = e;
		
		var self = this,
			btnIsLeft = (e.which == 1),
			elIsCancel = (typeof this.options.cancel == "string" ? $(e.target).parents().add(e.target).filter(this.options.cancel).length : false);
		if (!btnIsLeft || elIsCancel || !this._mouseCapture(e)) {
			return true;
		}
		
		this.mouseDelayMet = !this.options.delay;
		if (!this.mouseDelayMet) {
			this._mouseDelayTimer = setTimeout(function() {
				self.mouseDelayMet = true;
			}, this.options.delay);
		}
		
		if (this._mouseDistanceMet(e) && this._mouseDelayMet(e)) {
			this._mouseStarted = (this._mouseStart(e) !== false);
			if (!this._mouseStarted) {
				e.preventDefault();
				return true;
			}
		}
		
		// these delegates are required to keep context
		this._mouseMoveDelegate = function(e) {
			return self._mouseMove(e);
		};
		this._mouseUpDelegate = function(e) {
			return self._mouseUp(e);
		};
		$(document)
			.bind('mousemove.'+this.widgetName, this._mouseMoveDelegate)
			.bind('mouseup.'+this.widgetName, this._mouseUpDelegate);
		
		return false;
	},
	
	_mouseMove: function(e) {
		// IE mouseup check - mouseup happened when mouse was out of window
		if ($.browser.msie && !e.button) {
			return this._mouseUp(e);
		}
		
		if (this._mouseStarted) {
			this._mouseDrag(e);
			return false;
		}
		
		if (this._mouseDistanceMet(e) && this._mouseDelayMet(e)) {
			this._mouseStarted =
				(this._mouseStart(this._mouseDownEvent, e) !== false);
			(this._mouseStarted ? this._mouseDrag(e) : this._mouseUp(e));
		}
		
		return !this._mouseStarted;
	},
	
	_mouseUp: function(e) {
		$(document)
			.unbind('mousemove.'+this.widgetName, this._mouseMoveDelegate)
			.unbind('mouseup.'+this.widgetName, this._mouseUpDelegate);
		
		if (this._mouseStarted) {
			this._mouseStarted = false;
			this._preventClickEvent = true;
			this._mouseStop(e);
		}
		
		return false;
	},
	
	_mouseDistanceMet: function(e) {
		return (Math.max(
				Math.abs(this._mouseDownEvent.pageX - e.pageX),
				Math.abs(this._mouseDownEvent.pageY - e.pageY)
			) >= this.options.distance
		);
	},
	
	_mouseDelayMet: function(e) {
		return this.mouseDelayMet;
	},
	
	// These are placeholder methods, to be overriden by extending plugin
	_mouseStart: function(e) {},
	_mouseDrag: function(e) {},
	_mouseStop: function(e) {},
	_mouseCapture: function(e) { return true; }
};

$.ui.mouse.defaults = {
	cancel: null,
	distance: 1,
	delay: 0
};

})(jQuery);
/*
 * jQuery UI Tabs @VERSION
 *
 * Copyright (c) 2007, 2008 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */
(function($) {

$.widget("ui.tabs", {
	_init: function() {
		// create tabs
		this._tabify(true);
	},
	_setData: function(key, value) {
		if ((/^selected/).test(key))
			this.select(value);
		else {
			this.options[key] = value;
			this._tabify();
		}
	},
	length: function() {
		return this.$tabs.length;
	},
	_tabId: function(a) {
		return a.title && a.title.replace(/\s/g, '_').replace(/[^A-Za-z0-9\-_:\.]/g, '')
			|| this.options.idPrefix + $.data(a);
	},
	ui: function(tab, panel) {
		return {
			options: this.options,
			tab: tab,
			panel: panel,
			index: this.$tabs.index(tab)
		};
	},
	_sanitizeSelector: function(hash) {
		return hash.replace(/:/g, '\\:'); // we need this because an id may contain a ":"
	},
	_cookie: function() {
		var cookie = this.cookie || (this.cookie = 'ui-tabs-' + $.data(this.element[0]));
		return $.cookie.apply(null, [cookie].concat($.makeArray(arguments)));
	},
	_tabify: function(init) {
		
		this.$lis = $('li:has(a[href])', this.element);
		this.$tabs = this.$lis.map(function() { return $('a', this)[0]; });
		this.$panels = $([]);
		
		var self = this, o = this.options;
		
		this.$tabs.each(function(i, a) {
			// inline tab
			if (a.hash && a.hash.replace('#', '')) // Safari 2 reports '#' for an empty hash
				self.$panels = self.$panels.add(self._sanitizeSelector(a.hash));
			// remote tab
			else if ($(a).attr('href') != '#') { // prevent loading the page itself if href is just "#"
				$.data(a, 'href.tabs', a.href); // required for restore on destroy
				$.data(a, 'load.tabs', a.href); // mutable
				var id = self._tabId(a);
				a.href = '#' + id;
				var $panel = $('#' + id);
				if (!$panel.length) {
					$panel = $(o.panelTemplate).attr('id', id).addClass(o.panelClass)
						.insertAfter(self.$panels[i - 1] || self.element);
					$panel.data('destroy.tabs', true);
				}
				self.$panels = self.$panels.add($panel);
			}
			// invalid tab href
			else
				o.disabled.push(i + 1);
		});
		
		// initialization from scratch
		if (init) {
			
			// attach necessary classes for styling if not present
			this.element.addClass(o.navClass);
			this.$panels.addClass(o.panelClass);
			
			// Selected tab
			// use "selected" option or try to retrieve:
			// 1. from fragment identifier in url
			// 2. from cookie
			// 3. from selected class attribute on <li>
			if (o.selected === undefined) {
				if (location.hash) {
					this.$tabs.each(function(i, a) {
						if (a.hash == location.hash) {
							o.selected = i;
							return false; // break
						}
					});
				}
				else if (o.cookie) {
					var index = parseInt(self._cookie(), 10);
					if (index && self.$tabs[index]) o.selected = index;
				}
				else if (self.$lis.filter('.' + o.selectedClass).length)
					o.selected = self.$lis.index( self.$lis.filter('.' + o.selectedClass)[0] );
			}
			o.selected = o.selected === null || o.selected !== undefined ? o.selected : 0; // first tab selected by default
			
			// Take disabling tabs via class attribute from HTML
			// into account and update option properly.
			// A selected tab cannot become disabled.
			o.disabled = $.unique(o.disabled.concat(
				$.map(this.$lis.filter('.' + o.disabledClass),
					function(n, i) { return self.$lis.index(n); } )
			)).sort();
			if ($.inArray(o.selected, o.disabled) != -1)
				o.disabled.splice($.inArray(o.selected, o.disabled), 1);
			
			// highlight selected tab
			this.$panels.addClass(o.hideClass);
			this.$lis.removeClass(o.selectedClass);
			if (o.selected !== null) {
				this.$panels.eq(o.selected).removeClass(o.hideClass);
				var classes = [o.selectedClass];
				if (o.deselectable) classes.push(o.deselectableClass);
				this.$lis.eq(o.selected).addClass(classes.join(' '));
				
				// seems to be expected behavior that the show callback is fired
				var onShow = function() {
					self._trigger('show', null,
						self.ui(self.$tabs[o.selected], self.$panels[o.selected]));
				};
				
				// load if remote tab
				if ($.data(this.$tabs[o.selected], 'load.tabs'))
					this.load(o.selected, onShow);
				// just trigger show event
				else onShow();
			}
			
			// clean up to avoid memory leaks in certain versions of IE 6
			$(window).bind('unload', function() {
				self.$tabs.unbind('.tabs');
				self.$lis = self.$tabs = self.$panels = null;
			});
			
		}
		// update selected after add/remove
		else
			o.selected = this.$lis.index( this.$lis.filter('.' + o.selectedClass)[0] );
		
		// set or update cookie after init and add/remove respectively
		if (o.cookie) this._cookie(o.selected, o.cookie);
		
		// disable tabs
		for (var i = 0, li; li = this.$lis[i]; i++)
			$(li)[$.inArray(i, o.disabled) != -1 && !$(li).hasClass(o.selectedClass) ? 'addClass' : 'removeClass'](o.disabledClass);
		
		// reset cache if switching from cached to not cached
		if (o.cache === false) this.$tabs.removeData('cache.tabs');
		
		// set up animations
		var hideFx, showFx;
		if (o.fx) {
			if (o.fx.constructor == Array) {
				hideFx = o.fx[0];
				showFx = o.fx[1];
			}
			else hideFx = showFx = o.fx;
		}
		
		// Reset certain styles left over from animation
		// and prevent IE's ClearType bug...
		function resetStyle($el, fx) {
			$el.css({ display: '' });
			if ($.browser.msie && fx.opacity) $el[0].style.removeAttribute('filter');
		}

		// Show a tab...
		var showTab = showFx ?
			function(clicked, $show) {
				$show.animate(showFx, showFx.duration || 'normal', function() {
					$show.removeClass(o.hideClass);
					resetStyle($show, showFx);
					self._trigger('show', null, self.ui(clicked, $show[0]));
				});
			} :
			function(clicked, $show) {
				$show.removeClass(o.hideClass);
				self._trigger('show', null, self.ui(clicked, $show[0]));
			};
		
		// Hide a tab, $show is optional...
		var hideTab = hideFx ? 
			function(clicked, $hide, $show) {
				$hide.animate(hideFx, hideFx.duration || 'normal', function() {
					$hide.addClass(o.hideClass);
					resetStyle($hide, hideFx);
					if ($show) showTab(clicked, $show, $hide);
				});
			} :
			function(clicked, $hide, $show) {
				$hide.addClass(o.hideClass);
				if ($show) showTab(clicked, $show);
			};
		
		// Switch a tab...
		function switchTab(clicked, $li, $hide, $show) {
			var classes = [o.selectedClass];
			if (o.deselectable) classes.push(o.deselectableClass);
			$li.addClass(classes.join(' ')).siblings().removeClass(classes.join(' '));
			hideTab(clicked, $hide, $show);
		}
		
		// attach tab event handler, unbind to avoid duplicates from former tabifying...
		this.$tabs.unbind('.tabs').bind(o.event + '.tabs', function() {
			
			//var trueClick = e.clientX; // add to history only if true click occured, not a triggered click
			var $li = $(this).parents('li:eq(0)'),
				$hide = self.$panels.filter(':visible'),
				$show = $(self._sanitizeSelector(this.hash));
			
			// If tab is already selected and not deselectable or tab disabled or 
			// or is already loading or click callback returns false stop here.
			// Check if click handler returns false last so that it is not executed
			// for a disabled or loading tab!
			if (($li.hasClass(o.selectedClass) && !o.deselectable)
				|| $li.hasClass(o.disabledClass)
				|| $(this).hasClass(o.loadingClass)
				|| self._trigger('select', null, self.ui(this, $show[0])) === false
				) {
				this.blur();
				return false;
			}
			
			o.selected = self.$tabs.index(this);
			
			// if tab may be closed
			if (o.deselectable) {
				if ($li.hasClass(o.selectedClass)) {
					self.options.selected = null;
					$li.removeClass([o.selectedClass, o.deselectableClass].join(' '));
					self.$panels.stop();
					hideTab(this, $hide);
					this.blur();
					return false;
				} else if (!$hide.length) {
					self.$panels.stop();
					var a = this;
					self.load(self.$tabs.index(this), function() {
						$li.addClass([o.selectedClass, o.deselectableClass].join(' '));
						showTab(a, $show);
					});
					this.blur();
					return false;
				}
			}
			
			if (o.cookie) self._cookie(o.selected, o.cookie);
			
			// stop possibly running animations
			self.$panels.stop();
			
			// show new tab
			if ($show.length) {
				var a = this;
				self.load(self.$tabs.index(this), $hide.length ? 
					function() {
						switchTab(a, $li, $hide, $show);
					} :
					function() {
						$li.addClass(o.selectedClass);
						showTab(a, $show);
					}
				);
			} else
				throw 'jQuery UI Tabs: Mismatching fragment identifier.';
				
			// Prevent IE from keeping other link focussed when using the back button
			// and remove dotted border from clicked link. This is controlled via CSS
			// in modern browsers; blur() removes focus from address bar in Firefox
			// which can become a usability and annoying problem with tabs('rotate').
			if ($.browser.msie) this.blur();
			
			return false;
			
		});
		
		// disable click if event is configured to something else
		if (o.event != 'click') this.$tabs.bind('click.tabs', function(){return false;});
		
	},
	add: function(url, label, index) {
		if (index == undefined)
			index = this.$tabs.length; // append by default
		
		var o = this.options;
		var $li = $(o.tabTemplate.replace(/#\{href\}/g, url).replace(/#\{label\}/g, label));
		$li.data('destroy.tabs', true);
		
		var id = url.indexOf('#') == 0 ? url.replace('#', '') : this._tabId( $('a:first-child', $li)[0] );
		
		// try to find an existing element before creating a new one
		var $panel = $('#' + id);
		if (!$panel.length) {
			$panel = $(o.panelTemplate).attr('id', id)
				.addClass(o.hideClass)
				.data('destroy.tabs', true);
		}
		$panel.addClass(o.panelClass);
		if (index >= this.$lis.length) {
			$li.appendTo(this.element);
			$panel.appendTo(this.element[0].parentNode);
		} else {
			$li.insertBefore(this.$lis[index]);
			$panel.insertBefore(this.$panels[index]);
		}
		
		o.disabled = $.map(o.disabled,
			function(n, i) { return n >= index ? ++n : n });
		
		this._tabify();
		
		if (this.$tabs.length == 1) {
			$li.addClass(o.selectedClass);
			$panel.removeClass(o.hideClass);
			var href = $.data(this.$tabs[0], 'load.tabs');
			if (href)
				this.load(index, href);
		}
		
		// callback
		this._trigger('add', null, this.ui(this.$tabs[index], this.$panels[index]));
	},
	remove: function(index) {
		var o = this.options, $li = this.$lis.eq(index).remove(),
			$panel = this.$panels.eq(index).remove();
		
		// If selected tab was removed focus tab to the right or
		// in case the last tab was removed the tab to the left.
		if ($li.hasClass(o.selectedClass) && this.$tabs.length > 1)
			this.select(index + (index + 1 < this.$tabs.length ? 1 : -1));
		
		o.disabled = $.map($.grep(o.disabled, function(n, i) { return n != index; }),
			function(n, i) { return n >= index ? --n : n });
		
		this._tabify();
		
		// callback
		this._trigger('remove', null, this.ui($li.find('a')[0], $panel[0]));
	},
	enable: function(index) {
		var o = this.options;
		if ($.inArray(index, o.disabled) == -1)
			return;
		
		var $li = this.$lis.eq(index).removeClass(o.disabledClass);
		if ($.browser.safari) { // fix disappearing tab (that used opacity indicating disabling) after enabling in Safari 2...
			$li.css('display', 'inline-block');
			setTimeout(function() {
				$li.css('display', 'block');
			}, 0);
		}
		
		o.disabled = $.grep(o.disabled, function(n, i) { return n != index; });
		
		// callback
		this._trigger('enable', null, this.ui(this.$tabs[index], this.$panels[index]));
	},
	disable: function(index) {
		var self = this, o = this.options;
		if (index != o.selected) { // cannot disable already selected tab
			this.$lis.eq(index).addClass(o.disabledClass);
			
			o.disabled.push(index);
			o.disabled.sort();
			
			// callback
			this._trigger('disable', null, this.ui(this.$tabs[index], this.$panels[index]));
		}
	},
	select: function(index) {
		// TODO make null as argument work
		if (typeof index == 'string')
			index = this.$tabs.index( this.$tabs.filter('[href$=' + index + ']')[0] );
		this.$tabs.eq(index).trigger(this.options.event + '.tabs');
	},
	load: function(index, callback) { // callback is for internal usage only
		
		var self = this, o = this.options, $a = this.$tabs.eq(index), a = $a[0],
				bypassCache = callback == undefined || callback === false, url = $a.data('load.tabs');
		
		callback = callback || function() {};
		
		// no remote or from cache - just finish with callback
		if (!url || !bypassCache && $.data(a, 'cache.tabs')) {
			callback();
			return;
		}
		
		// load remote from here on
		
		var inner = function(parent) {
			var $parent = $(parent), $inner = $parent.find('*:last');
			return $inner.length && $inner.is(':not(img)') && $inner || $parent;
		};
		var cleanup = function() {
			self.$tabs.filter('.' + o.loadingClass).removeClass(o.loadingClass)
					.each(function() {
						if (o.spinner)
							inner(this).parent().html(inner(this).data('label.tabs'));
					});
			self.xhr = null;
		};
		
		if (o.spinner) {
			var label = inner(a).html();
			inner(a).wrapInner('<em></em>')
				.find('em').data('label.tabs', label).html(o.spinner);
		}
		
		var ajaxOptions = $.extend({}, o.ajaxOptions, {
			url: url,
			success: function(r, s) {
				$(self._sanitizeSelector(a.hash)).html(r);
				cleanup();
				
				if (o.cache)
					$.data(a, 'cache.tabs', true); // if loaded once do not load them again
				
				// callbacks
				self._trigger('load', null, self.ui(self.$tabs[index], self.$panels[index]));
				try {
					o.ajaxOptions.success(r, s);
				}
				catch (e) {}
				
				// This callback is required because the switch has to take
				// place after loading has completed. Call last in order to 
				// fire load before show callback...
				callback();
			}
		});
		if (this.xhr) {
			// terminate pending requests from other tabs and restore tab label
			this.xhr.abort();
			cleanup();
		}
		$a.addClass(o.loadingClass);
		self.xhr = $.ajax(ajaxOptions);
	},
	url: function(index, url) {
		this.$tabs.eq(index).removeData('cache.tabs').data('load.tabs', url);
	},
	destroy: function() {
		var o = this.options;
		this.element.unbind('.tabs')
			.removeClass(o.navClass).removeData('tabs');
		this.$tabs.each(function() {
			var href = $.data(this, 'href.tabs');
			if (href)
				this.href = href;
			var $this = $(this).unbind('.tabs');
			$.each(['href', 'load', 'cache'], function(i, prefix) {
				$this.removeData(prefix + '.tabs');
			});
		});
		this.$lis.add(this.$panels).each(function() {
			if ($.data(this, 'destroy.tabs'))
				$(this).remove();
			else
				$(this).removeClass([o.selectedClass, o.deselectableClass,
					o.disabledClass, o.panelClass, o.hideClass].join(' '));
		});
		if (o.cookie)
			this._cookie(null, o.cookie);
	}
});

$.extend($.ui.tabs, {
	version: '@VERSION',
	getter: 'length',
	defaults: {
		// basic setup
		deselectable: false,
		event: 'click',
		disabled: [],
		cookie: null, // e.g. { expires: 7, path: '/', domain: 'jquery.com', secure: true }
		// Ajax
		spinner: '',
		cache: false,
		idPrefix: 'ui-tabs-',
		ajaxOptions: null,
		// animations
		fx: null, // e.g. { height: 'toggle', opacity: 'toggle', duration: 200 }
		// templates
		tabTemplate: '<li><a href="#{href}"><span>#{label}</span></a></li>',
		panelTemplate: '<div></div>',
		// CSS class names
		navClass: 'ui-tabs-nav',
		selectedClass: 'ui-tabs-selected',
		deselectableClass: 'ui-tabs-deselectable',
		disabledClass: 'ui-tabs-disabled',
		panelClass: 'ui-tabs-panel',
		hideClass: 'ui-tabs-hide',
		loadingClass: 'ui-tabs-loading'
	}
});

/*
 * Tabs Extensions
 */

/*
 * Rotate
 */
$.extend($.ui.tabs.prototype, {
	rotation: null,
	rotate: function(ms, continuing) {
		
		continuing = continuing || false;
		
		var self = this, t = this.options.selected;
		
		function start() {
			self.rotation = setInterval(function() {
				t = ++t < self.$tabs.length ? t : 0;
				self.select(t);
			}, ms);
		}
		
		function stop(e) {
			if (!e || e.clientX) { // only in case of a true click
				clearInterval(self.rotation);
			}
		}
		
		// start interval
		if (ms) {
			start();
			if (!continuing)
				this.$tabs.bind(this.options.event + '.tabs', stop);
			else
				this.$tabs.bind(this.options.event + '.tabs', function() {
					stop();
					t = self.options.selected;
					start();
				});
		}
		// stop interval
		else {
			stop();
			this.$tabs.unbind(this.options.event + '.tabs', stop);
		}
	}
});

})(jQuery);
$(function() {
	$('#reserves > ul').tabs();
	//$('#reserves > ul').tabs('option', 'spinner', '.');
	
});$(document).ready(function() {

	// Logo portada
	$("h1 a").append("<span></span>");
	
	// portada pictogrames
	$("#localitats h2, #inici #coneix h2").css("padding-left","40px");
	$("#localitats,#coneix").append("<span class='icon'></span>");
	
	// Cufón
	Cufon.replace('.valor, div.box:not(.poblacio,.vcard, .novetats, .fitxa) h2, #novetats #content_sub h2, div.vcalendar h2, body.int:not(.col_2, .col_2b, .col_3) h1, #novetats.fitxa #apartat, div.proxim h2', {
		// separate: 'none',
		// textShadow: '1px 1px rgba(0, 0, 0, 0.2)',
	});

	// caixa div.box
	$('.box').each(function() {$(this).wrapInner("<div class='r'></div>");});
	$("div.r").wrap("<div class='l'></div>");
	$("div.l").wrap("<div class='b'></div>");
	$(".box").css({"border-top" : "2px solid #ccc", "padding" : "0"}).append("<div class='corner tl'></div><div class='corner tr'></div><div class='corner bl'></div><div class='corner br''></div>");
	
	// div.destacat
	$("div.destacat").append("<div></div>");
	
	// background títol segons idioma en el formulari de cerca
	$("html[lang=es] form#lloc_data").addClass("es");
	$("html[lang=en] form#lloc_data").addClass("en");
	
	// print link
	$("ul.compartir").append("<li class='print'><a href='javascript:window.print(-1)'>Imprimir</a></li>")
	
	// div.info
	$("div.info").append("<div class='pict'></div>");
	
	// ul#idiomes
	$("ul#idiomes li.current").append("<span class='l'></span><span class='r'></span>");
	
	// nav_main .current
	$("#nav_main li.current").append("<div></div>");
	// ombra i cantonades nav_main
	$("#nav_main").append("<div class='ombra l'></div><div class='ombra r'></div><div class='corner tl'></div><div class='corner tr'></div><div class='corner bl'></div><div class='corner br'></div>");
	
	// nav_sub
	$("#nav_sub li:last-child").addClass("last");
	
	// tabs descàrregues
	$("ul#tabs li a").append("<span class='l'></span><span class='r'></span><span class='tl'></span><span class='tr'></span>");
	
	// nifty corners
	$("div#copy").nifty("transparent");
	$("#nav_sub li.current li.current").nifty("transparent");
	$("a.bt_descarrega").nifty("transparent");
	
	// external links
	$("a[@rel=external]").attr("target", "_blank");
	$("a[@rel=external]").attr("class", "external");
	$("a[@href$=.pdf]").attr("target", "_blank");	
	
	
	
	
});

function changeMail() {
	$("a[href*='(ELIMINAR)']").each(function(i) {
		omg = $(this).attr('href');
		omg2 = $(this).text();
		$(this).attr('href', omg.split('(ELIMINAR)').join(''));
		$(this).text(omg2.split('(ELIMINAR)').join(''));
	});
}
$(document).ready(changeMail);


function clear_search_text_login(){
	$('#campcercar').val('');
}
function clear_search_text_cercar(){
	var poblacioValue = $("#poblacio").val();	
	if(poblacioValue == "Població o codi postal" || poblacioValue == "Población o código postal"){
		$('#poblacio').val('');
	}
}
$(document).ready(function () {
	$('#campcercar').focus(clear_search_text_login);
	$("#poblacio").focus(clear_search_text_cercar);
});;(function($){$.fn.extend({autocomplete:function(urlOrData,options){var isUrl=typeof urlOrData=="string";options=$.extend({},$.Autocompleter.defaults,{url:isUrl?urlOrData:null,data:isUrl?null:urlOrData,delay:isUrl?$.Autocompleter.defaults.delay:10,max:options&&!options.scroll?10:150},options);options.highlight=options.highlight||function(value){return value};options.formatMatch=options.formatMatch||options.formatItem;return this.each(function(){new $.Autocompleter(this,options)})},result:function(handler){return this.bind("result",handler)},search:function(handler){return this.trigger("search",[handler])},flushCache:function(){return this.trigger("flushCache")},setOptions:function(options){return this.trigger("setOptions",[options])},unautocomplete:function(){return this.trigger("unautocomplete")}});$.Autocompleter=function(input,options){var KEY={UP:38,DOWN:40,DEL:46,TAB:9,RETURN:13,ESC:27,COMMA:188,PAGEUP:33,PAGEDOWN:34,BACKSPACE:8};var $input=$(input).attr("autocomplete","off").addClass(options.inputClass);var timeout;var previousValue="";var cache=$.Autocompleter.Cache(options);var hasFocus=0;var lastKeyPressCode;var config={mouseDownOnSelect:false};var select=$.Autocompleter.Select(options,input,selectCurrent,config);var blockSubmit;$.browser.opera&&$(input.form).bind("submit.autocomplete",function(){if(blockSubmit){blockSubmit=false;return false}});$input.bind(($.browser.opera?"keypress":"keydown")+".autocomplete",function(event){lastKeyPressCode=event.keyCode;switch(event.keyCode){case KEY.UP:event.preventDefault();if(select.visible()){select.prev()}else{onChange(0,true)}break;case KEY.DOWN:event.preventDefault();if(select.visible()){select.next()}else{onChange(0,true)}break;case KEY.PAGEUP:event.preventDefault();if(select.visible()){select.pageUp()}else{onChange(0,true)}break;case KEY.PAGEDOWN:event.preventDefault();if(select.visible()){select.pageDown()}else{onChange(0,true)}break;case options.multiple&&$.trim(options.multipleSeparator)==","&&KEY.COMMA:case KEY.TAB:case KEY.RETURN:if(selectCurrent()){event.preventDefault();blockSubmit=true;return false}break;case KEY.ESC:select.hide();break;default:clearTimeout(timeout);timeout=setTimeout(onChange,options.delay);break}}).focus(function(){hasFocus++}).blur(function(){hasFocus=0;if(!config.mouseDownOnSelect){hideResults()}}).click(function(){if(hasFocus++>1&&!select.visible()){onChange(0,true)}}).bind("search",function(){var fn=(arguments.length>1)?arguments[1]:null;function findValueCallback(q,data){var result;if(data&&data.length){for(var i=0;i<data.length;i++){if(data[i].result.toLowerCase()==q.toLowerCase()){result=data[i];break}}}if(typeof fn=="function")fn(result);else $input.trigger("result",result&&[result.data,result.value])}$.each(trimWords($input.val()),function(i,value){request(value,findValueCallback,findValueCallback)})}).bind("flushCache",function(){cache.flush()}).bind("setOptions",function(){$.extend(options,arguments[1]);if("data"in arguments[1])cache.populate()}).bind("unautocomplete",function(){select.unbind();$input.unbind();$(input.form).unbind(".autocomplete")});function selectCurrent(){var selected=select.selected();if(!selected)return false;var v=selected.result;previousValue=v;if(options.multiple){var words=trimWords($input.val());if(words.length>1){v=words.slice(0,words.length-1).join(options.multipleSeparator)+options.multipleSeparator+v}v+=options.multipleSeparator}$input.val(v);hideResultsNow();$input.trigger("result",[selected.data,selected.value]);return true}function onChange(crap,skipPrevCheck){if(lastKeyPressCode==KEY.DEL){select.hide();return}var currentValue=$input.val();if(!skipPrevCheck&&currentValue==previousValue)return;previousValue=currentValue;currentValue=lastWord(currentValue);if(currentValue.length>=options.minChars){$input.addClass(options.loadingClass);if(!options.matchCase)currentValue=currentValue.toLowerCase();request(currentValue,receiveData,hideResultsNow)}else{stopLoading();select.hide()}};function trimWords(value){if(!value){return[""]}var words=value.split(options.multipleSeparator);var result=[];$.each(words,function(i,value){if($.trim(value))result[i]=$.trim(value)});return result}function lastWord(value){if(!options.multiple)return value;var words=trimWords(value);return words[words.length-1]}function autoFill(q,sValue){if(options.autoFill&&(lastWord($input.val()).toLowerCase()==q.toLowerCase())&&lastKeyPressCode!=KEY.BACKSPACE){$input.val($input.val()+sValue.substring(lastWord(previousValue).length));$.Autocompleter.Selection(input,previousValue.length,previousValue.length+sValue.length)}};function hideResults(){clearTimeout(timeout);timeout=setTimeout(hideResultsNow,200)};function hideResultsNow(){var wasVisible=select.visible();select.hide();clearTimeout(timeout);stopLoading();if(options.mustMatch){$input.search(function(result){if(!result){if(options.multiple){var words=trimWords($input.val()).slice(0,-1);$input.val(words.join(options.multipleSeparator)+(words.length?options.multipleSeparator:""))}else $input.val("")}})}if(wasVisible)$.Autocompleter.Selection(input,input.value.length,input.value.length)};function receiveData(q,data){if(data&&data.length&&hasFocus){stopLoading();select.display(data,q);autoFill(q,data[0].value);select.show()}else{hideResultsNow()}};function request(term,success,failure){if(!options.matchCase)term=term.toLowerCase();var data=cache.load(term);if(data&&data.length){success(term,data)}else if((typeof options.url=="string")&&(options.url.length>0)){var extraParams={timestamp:+new Date()};$.each(options.extraParams,function(key,param){extraParams[key]=typeof param=="function"?param():param});$.ajax({mode:"abort",port:"autocomplete"+input.name,dataType:options.dataType,url:options.url,data:$.extend({q:lastWord(term),limit:options.max},extraParams),success:function(data){var parsed=options.parse&&options.parse(data)||parse(data);cache.add(term,parsed);success(term,parsed)}})}else{select.emptyList();failure(term)}};function parse(data){var parsed=[];var rows=data.split("\n");for(var i=0;i<rows.length;i++){var row=$.trim(rows[i]);if(row){row=row.split("|");parsed[parsed.length]={data:row,value:row[0],result:options.formatResult&&options.formatResult(row,row[0])||row[0]}}}return parsed};function stopLoading(){$input.removeClass(options.loadingClass)}};$.Autocompleter.defaults={inputClass:"ac_input",resultsClass:"ac_results",loadingClass:"ac_loading",minChars:1,delay:400,matchCase:false,matchSubset:true,matchContains:false,cacheLength:10,max:100,mustMatch:false,extraParams:{},selectFirst:true,formatItem:function(row){return row[0]},formatMatch:null,autoFill:false,width:267,multiple:false,multipleSeparator:", ",highlight:function(value,term){return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)("+term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")+")(?![^<>]*>)(?![^&;]+;)","gi"),"<strong>$1</strong>")},scroll:true,scrollHeight:180};$.Autocompleter.Cache=function(options){var data={};var length=0;function matchSubset(s,sub){if(!options.matchCase)s=s.toLowerCase();var i=s.indexOf(sub);if(options.matchContains=="word"){i=s.toLowerCase().search("\\b"+sub.toLowerCase())}if(i==-1)return false;return i==0||options.matchContains};function add(q,value){if(length>options.cacheLength){flush()}if(!data[q]){length++}data[q]=value}function populate(){if(!options.data)return false;var stMatchSets={},nullData=0;if(!options.url)options.cacheLength=1;stMatchSets[""]=[];for(var i=0,ol=options.data.length;i<ol;i++){var rawValue=options.data[i];rawValue=(typeof rawValue=="string")?[rawValue]:rawValue;var value=options.formatMatch(rawValue,i+1,options.data.length);if(value===false)continue;var firstChar=value.charAt(0).toLowerCase();if(!stMatchSets[firstChar])stMatchSets[firstChar]=[];var row={value:value,data:rawValue,result:options.formatResult&&options.formatResult(rawValue)||value};stMatchSets[firstChar].push(row);if(nullData++<options.max){stMatchSets[""].push(row)}};$.each(stMatchSets,function(i,value){options.cacheLength++;add(i,value)})}setTimeout(populate,25);function flush(){data={};length=0}return{flush:flush,add:add,populate:populate,load:function(q){if(!options.cacheLength||!length)return null;if(!options.url&&options.matchContains){var csub=[];for(var k in data){if(k.length>0){var c=data[k];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub.push(x)}})}}return csub}else if(data[q]){return data[q]}else if(options.matchSubset){for(var i=q.length-1;i>=options.minChars;i--){var c=data[q.substr(0,i)];if(c){var csub=[];$.each(c,function(i,x){if(matchSubset(x.value,q)){csub[csub.length]=x}});return csub}}}return null}}};$.Autocompleter.Select=function(options,input,select,config){var CLASSES={ACTIVE:"ac_over"};var listItems,active=-1,data,term="",needsInit=true,element,list;function init(){if(!needsInit)return;element=$("<div/>").hide().addClass(options.resultsClass).css("position","absolute").appendTo(document.body);list=$("<ul/>").appendTo(element).mouseover(function(event){if(target(event).nodeName&&target(event).nodeName.toUpperCase()=='LI'){active=$("li",list).removeClass(CLASSES.ACTIVE).index(target(event));$(target(event)).addClass(CLASSES.ACTIVE)}}).click(function(event){$(target(event)).addClass(CLASSES.ACTIVE);select();input.focus();return false}).mousedown(function(){config.mouseDownOnSelect=true}).mouseup(function(){config.mouseDownOnSelect=false});if(options.width>0)element.css("width",options.width);needsInit=false}function target(event){var element=event.target;while(element&&element.tagName!="LI")element=element.parentNode;if(!element)return[];return element}function moveSelect(step){listItems.slice(active,active+1).removeClass(CLASSES.ACTIVE);movePosition(step);var activeItem=listItems.slice(active,active+1).addClass(CLASSES.ACTIVE);if(options.scroll){var offset=0;listItems.slice(0,active).each(function(){offset+=this.offsetHeight});if((offset+activeItem[0].offsetHeight-list.scrollTop())>list[0].clientHeight){list.scrollTop(offset+activeItem[0].offsetHeight-list.innerHeight())}else if(offset<list.scrollTop()){list.scrollTop(offset)}}};function movePosition(step){active+=step;if(active<0){active=listItems.size()-1}else if(active>=listItems.size()){active=0}}function limitNumberOfItems(available){return options.max&&options.max<available?options.max:available}function fillList(){list.empty();var max=limitNumberOfItems(data.length);for(var i=0;i<max;i++){if(!data[i])continue;var formatted=options.formatItem(data[i].data,i+1,max,data[i].value,term);if(formatted===false)continue;var li=$("<li/>").html(options.highlight(formatted,term)).addClass(i%2==0?"ac_even":"ac_odd").appendTo(list)[0];$.data(li,"ac_data",data[i])}listItems=list.find("li");if(options.selectFirst){listItems.slice(0,1).addClass(CLASSES.ACTIVE);active=0}if($.fn.bgiframe)list.bgiframe()}return{display:function(d,q){init();data=d;term=q;fillList()},next:function(){moveSelect(1)},prev:function(){moveSelect(-1)},pageUp:function(){if(active!=0&&active-8<0){moveSelect(-active)}else{moveSelect(-8)}},pageDown:function(){if(active!=listItems.size()-1&&active+8>listItems.size()){moveSelect(listItems.size()-1-active)}else{moveSelect(8)}},hide:function(){element&&element.hide();listItems&&listItems.removeClass(CLASSES.ACTIVE);active=-1},visible:function(){return element&&element.is(":visible")},current:function(){return this.visible()&&(listItems.filter("."+CLASSES.ACTIVE)[0]||options.selectFirst&&listItems[0])},show:function(){var offset=$(input).offset();element.css({width:typeof options.width=="string"||options.width>0?options.width:$(input).width(),top:offset.top+input.offsetHeight,left:offset.left}).show();if(options.scroll){list.scrollTop(0);list.css({maxHeight:options.scrollHeight,overflow:'auto'});if($.browser.msie&&typeof document.body.style.maxHeight==="undefined"){var listHeight=0;listItems.each(function(){listHeight+=this.offsetHeight});var scrollbarsVisible=listHeight>options.scrollHeight;list.css('height',scrollbarsVisible?options.scrollHeight:listHeight);if(!scrollbarsVisible){listItems.width(list.width()-parseInt(listItems.css("padding-left"))-parseInt(listItems.css("padding-right")))}}}},selected:function(){var selected=listItems&&listItems.filter("."+CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);return selected&&selected.length&&$.data(selected[0],"ac_data")},emptyList:function(){list&&list.empty()},unbind:function(){element&&element.remove()}}};$.Autocompleter.Selection=function(field,start,end){if(field.createTextRange){var selRange=field.createTextRange();selRange.collapse(true);selRange.moveStart("character",start);selRange.moveEnd("character",end);selRange.select()}else if(field.setSelectionRange){field.setSelectionRange(start,end)}else{if(field.selectionStart){field.selectionStart=start;field.selectionEnd=end}}field.focus()}})(jQuery);$(document).ready(function(){var data="Abella de la Conca,Abrera,Àger,Agramunt,Aguilar de Segarra,Agullana,Aiguafreda,Aiguamúrcia,Aiguaviva,Aitona,Els Alamús,Alàs i Cerc,L'Albagés,Albanyà,Albatàrrec,Albesa,L'Albi,Albinyana,L'Albiol,Albons,Alcanar,Alcanó,Alcarràs,Alcoletge,Alcover,L'Aldea,Aldover,L'Aleixar,Alella,Alfara de Carles,Alfarràs,Alfés,Alforja,Algerri,Alguaire,Alins,Alió,Almacelles,Almatret,Almenar,Almoster,Alòs de Balaguer,Alp,Alpens,Alpicat,Alt Àneu,Altafulla,Amer,L'Ametlla de Mar,L'Ametlla del Vallès,L'Ampolla,Amposta,Anglès,Anglesola,Arbeca,L'Arboç,Arbolí,Arbúcies,Arenys de Mar,Arenys de Munt,Argelaguer,Argençola,L'Argentera,Argentona,L'Armentera,Arnes,Arres,Arsèguel,Artés,Artesa de Lleida,Artesa de Segre,Ascó,Aspa,Les Avellanes i Santa Linya,Avià,Avinyó,Avinyonet de Puigventós,Avinyonet del Penedès,Badalona,Badia del Vallès,Bagà,Baix Pallars,Balaguer,Balenyà,Balsareny,Banyeres del Penedès,Banyoles,Barbens,Barberà de la Conca,Barberà del Vallès,Barcelona,La Baronia de Rialb,Bàscara,Bassella,Batea,Bausen,Begues,Begur,Belianes,Bellaguarda,Bellcaire d'Empordà,Bellcaire d'Urgell,Bell-lloc d'Urgell,Bellmunt del Priorat,Bellmunt d'Urgell,Bellprat,Bellpuig,Bellvei,Bellver de Cerdanya,Bellvís,Benavent de Segrià,Benifallet,Benissanet,Berga,Besalú,Bescanó,Beuda,Bigues i Riells,Biosca,La Bisbal de Falset,La Bisbal del Penedès,La Bisbal d'Empordà,La Canonja,Biure,Blancafort,Blanes,Boadella i les Escaules,Bolvir,Bonastre,Es Bòrdes,Bordils,Les Borges Blanques,Les Borges del Camp,Borrassà,Borredà,Bossòst,Bot,Botarell,Bovera,Bràfim,Breda,El Bruc,El Brull,Brunyola,Cabacés,Cabanabona,Cabanelles,Cabanes,Les Cabanyes,Cabó,Cabra del Camp,Cabrera d'Anoia,Cabrera de Mar,Cabrils,Cadaqués,Calaf,Calafell,Calders,Caldes de Malavella,Caldes de Montbui,Caldes d'Estrac,Calella,Calldetenes,Callús,Calonge,Calonge de Segarra,Camarasa,Camarles,Cambrils,Camós,Campdevànol,Campelles,Campins,Campllong,Camprodon,Canejan,Canet d'Adri,Canet de Mar,Canovelles,Cànoves i Samalús,Cantallops,Canyelles,Capafonts,Capçanes,Capellades,Capmany,Capolat,Cardedeu,Cardona,Carme,Caseres,Cassà de la Selva,Casserres,Castell de l'Areny,Castell de Mur,Castellar de la Ribera,Castellar de n'Hug,Castellar del Riu,Castellar del Vallès,Castellbell i el Vilar,Castellbisbal,Castellcir,Castelldans,Castelldefels,Castellet i la Gornal,Castellfollit de la Roca,Castellfollit de Riubregós,Castellfollit del Boix,Castellgalí,Castellnou de Bages,Castellnou de Seana,Castelló de Farfanya,Castelló d'Empúries,Castellolí,Castell-Platja d'Aro,Castellserà,Castellterçol,Castellvell del Camp,Castellví de la Marca,Castellví de Rosanes,El Catllar,Cava,La Cellera de Ter,Celrà,Centelles,Cercs,Cerdanyola del Vallès,Cervelló,Cervera,Cervià de les Garrigues,Cervià de Ter,Cistella,Ciutadilla,Clariana de Cardener,El Cogul,Colera,Coll de Nargó,Collbató,Colldejou,Collsuspina,Colomers,La Coma i la Pedra,Conca de Dalt,Conesa,Constantí,Copons,Corbera de Llobregat,Corbera d'Ebre,Corbins,Corçà,Cornellà de Llobregat,Cornellà del Terri,Cornudella de Montsant,Creixell,Crespià,Cruïlles, Monells i Sant Sadurní de l'Heura,Cubelles,Cubells,Cunit,Darnius,Das,Deltebre,Dosrius,Duesaigües,L'Escala,L'Estartit,Esparreguera,Espinelves,L'Espluga Calba,L'Espluga de Francolí,Esplugues de Llobregat,Espolla,Esponellà,Espot,L'Espunyola,Estamariu,L'Estany,Estaràs,Esterri d'Àneu,Esterri de Cardós,Falset,El Far d'Empordà,Farrera,La Fatarella,La Febró,Figaró-Montmany,Fígols,Fígols i Alinyà,La Figuera,Figueres,Figuerola del Camp,Flaçà,Flix,La Floresta,Fogars de la Selva,Fogars de Montclús,Foixà,Folgueroles,Fondarella,Fonollosa,Fontanals de Cerdanya,Fontanilles,Fontcoberta,Font-rubí,Foradada,Forallac,Forès,Fornells de la Selva,Fortià,Les Franqueses del Vallès,Freginals,La Fuliola,Fulleda,Gaià,La Galera,Gallifa,Gandesa,Garcia,Els Garidells,La Garriga,Garrigàs,Garrigoles,Garriguella,Gavà,Gavet de la Conca,Gelida,Ger,Gimenells i el Pla de la Font,Ginestar,Girona,Gironella,Gisclareny,Godall,Golmés,Gombrèn,Gósol,La Granada,La Granadella,Granera,La Granja d'Escarp,Granollers,Granyanella,Granyena de les Garrigues,Granyena de Segarra,Gratallops,Gualba,Gualta,Guardiola de Berguedà,Els Guiamets,Guils de Cerdanya,Guimerà,La Guingueta d'Àneu,Guissona,Guixers,Gurb,Horta de Sant Joan,L'Hospitalet de Llobregat,Els Hostalets de Pierola,Hostalric,Igualada,Isona i Conca Dellà,Isòvol,Ivars de Noguera,Ivars d'Urgell,Ivorra,Jafre,La Jonquera,Jorba,Josa i Tuixén,Juià,Juncosa,Juneda,Les,Linyola,La Llacuna,Lladó,Lladorre,Lladurs,La Llagosta,Llagostera,Llambilles,Llanars,Llançà,Llardecans,Llavorsí,Lleida,Llers,Lles de Cerdanya,Lliçà d'Amunt,Lliçà de Vall,Llimiana,Llinars del Vallès,Llívia,El Lloar,Llobera,Llorac,Llorenç del Penedès,Lloret de Mar,Les Llosses,Lluçà,Maçanet de Cabrenys,Maçanet de la Selva,Madremanya,Maià de Montcal,Maials,Maldà,Malgrat de Mar,Malla,Manlleu,Manresa,Marçà,Margalef,Marganell,Martorell,Martorelles,Mas de Barberans,Masarac,Masdenverge,Les Masies de Roda,Les Masies de Voltregà,Masllorenç,El Masnou,La Masó,Maspujols,Masquefa,El Masroig,Massalcoreig,Massanes,Massoteres,Matadepera,Mataró,Mediona,Menàrguens,Meranges,Mieres,El Milà,Miralcamp,Miravet,Moià,El Molar,Molins de Rei,Mollerussa,Mollet de Peralada,Mollet del Vallès,Molló,La Molsosa,Monistrol de Calders,Monistrol de Montserrat,Montagut i Oix,Montblanc,Montbrió del Camp,Montcada i Reixac,Montclar,Montellà i Martinet,Montesquiu,Montferrer i Castellbò,Montferri,Montgai,Montgat,Montmajor,Montmaneu,El Montmell,Montmeló,Montoliu de Lleida,Montoliu de Segarra,Montornès de Segarra,Montornès del Vallès,Mont-ral,Mont-ras,Mont-roig del Camp,Montseny,Móra d'Ebre,Móra la Nova,El Morell,La Morera de Montsant,Muntanyola,Mura,Nalec,Naut Aran,Navarcles,Navàs,Navata,Navès,La Nou de Berguedà,La Nou de Gaià,Nulles,Odèn,Òdena,Ogassa,Olèrdola,Olesa de Bonesvalls,Olesa de Montserrat,Oliana,Oliola,Olius,Olivella,Olost,Olot,Les Oluges,Olvan,Els Omellons,Els Omells de na Gaia,Ordis,Organyà,Orís,Oristà,Orpí,Òrrius,Os de Balaguer,Osor,Ossó de Sió,Pacs del Penedès,Palafolls,Palafrugell,Palamós,El Palau d'Anglesola,Palau de Santa Eulàlia,Palau-sator,Palau-saverdera,Palau-solità i Plegamans,Els Pallaresos,Pallejà,La Palma de Cervelló,La Palma d'Ebre,Palol de Revardit,Pals,El Papiol,Pardines,Parets del Vallès,Parlavà,Passanant i Belltall,Pau,Paüls,Pedret i Marzà,Penelles,La Pera,Perafita,Perafort,Peralada,Peramola,El Perelló,Piera,Les Piles,Pineda de Mar,El Pinell de Brai,Pinell de Solsonès,Pinós,Pira,El Pla de Santa Maria,El Pla del Penedès,Les Planes d'Hostoles,Planoles,Els Plans de Sió,El Poal,La Pobla de Cérvoles,La Pobla de Claramunt,La Pobla de Lillet,La Pobla de Mafumet,La Pobla de Massaluca,La Pobla de Montornès,La Pobla de Segur,Poboleda,Polinyà,El Pont d'Armentera,El Pont de Bar,Pont de Molins,El Pont de Suert,El Pont de Vilomara i Rocafort,Pontils,Pontons,Pontós,Ponts,Porqueres,Porrera,El Port de la Selva,Portbou,La Portella,Pradell de la Teixeta,Prades,Prat de Comte,El Prat de Llobregat,Pratdip,Prats de Lluçanès,Els Prats de Rei,Prats i Sansor,Preixana,Preixens,Premià de Dalt,Premià de Mar,Les Preses,Prullans,Puigcerdà,Puigdàlber,Puiggròs,Puigpelat,Puig-reig,Puigverd d'Agramunt,Puigverd de Lleida,Pujalt,La Quar,Quart,Queralbs,Querol,Rabós,Rajadell,Rasquera,Regencós,Rellinars,Renau,Reus,Rialp,La Riba,Riba-roja d'Ebre,Ribera d'Ondara,Ribera d'Urgellet,Ribes de Freser,Riells i Viabrea,La Riera de Gaià,Riner,Ripoll,Ripollet,Riu de Cerdanya,Riudarenes,Riudaura,Riudecanyes,Riudecols,Riudellots de la Selva,Riudoms,Riumors,La Roca del Vallès,Rocafort de Queralt,Roda de Barà,Roda de Ter,Rodonyà,Roquetes,Roses,Rosselló,El Rourell,Rubí,Rubió,Rupià,Rupit i Pruit,Sabadell,Sagàs,Salàs de Pallars,Saldes,Sales de Llierca,Sallent,Salomó,Salou,Salt,Sanaüja,Sant Adrià de Besòs,Sant Agustí de Lluçanès,Sant Andreu de la Barca,Sant Andreu de Llavaneres,Sant Andreu Salou,Sant Aniol de Finestres,Sant Antoni de Vilamajor,Sant Bartomeu del Grau,Sant Boi de Llobregat,Sant Boi de Lluçanès,Sant Carles de la Ràpita,Sant Cebrià de Vallalta,Sant Celoni,Sant Climent de Llobregat,Sant Climent Sescebes,Sant Cugat del Vallès,Sant Cugat Sesgarrigues,Sant Esteve de la Sarga,Sant Esteve de Palautordera,Sant Esteve Sesrovires,Sant Feliu de Buixalleu,Sant Feliu de Codines,Sant Feliu de Guíxols,Sant Feliu de Llobregat,Sant Feliu de Pallerols,Sant Feliu Sasserra,Sant Ferriol,Sant Fost de Campsentelles,Sant Fruitós de Bages,Sant Gregori,Sant Guim de Freixenet,Sant Guim de la Plana,Sant Hilari Sacalm,Sant Hipòlit de Voltregà,Sant Iscle de Vallalta,Sant Jaume de Frontanyà,Sant Jaume de Llierca,Sant Jaume dels Domenys,Sant Jaume d'Enveja,Sant Joan de les Abadesses,Sant Joan de Mollet,Sant Joan de Vilatorrada,Sant Joan Despí,Sant Joan les Fonts,Sant Jordi Desvalls,Sant Julià de Cerdanyola,Sant Julià de Ramis,Sant Julià de Vilatorta,Sant Julià del Llor i Bonmatí,Sant Just Desvern,Sant Llorenç de la Muga,Sant Llorenç de Morunys,Sant Llorenç d'Hortons,Sant Llorenç Savall,Sant Martí d'Albars,Sant Martí de Centelles,Sant Martí de Llémena,Sant Martí de Riucorb,Sant Martí de Tous,Sant Martí Sarroca,Sant Martí Sesgueioles,Sant Martí Vell,Sant Mateu de Bages,Sant Miquel de Campmajor,Sant Miquel de Fluvià,Sant Mori,Sant Pau de Segúries,Sant Pere de Ribes,Sant Pere de Riudebitlles,Sant Pere de Torelló,Sant Pere de Vilamajor,Sant Pere Pescador,Sant Pere Sallavinera,Sant Pol de Mar,Sant Quintí de Mediona,Sant Quirze de Besora,Sant Quirze del Vallès,Sant Quirze Safaja,Sant Ramon,Sant Sadurní d'Anoia,Sant Sadurní d'Osormort,Sant Salvador de Guardiola,Sant Vicenç de Castellet,Sant Vicenç de Montalt,Sant Vicenç de Torelló,Sant Vicenç dels Horts,Santa Bàrbara,Santa Cecília de Voltregà,Santa Coloma de Cervelló,Santa Coloma de Farners,Santa Coloma de Gramenet,Santa Coloma de Queralt,Santa Cristina d'Aro,Santa Eugènia de Berga,Santa Eulàlia de Riuprimer,Santa Eulàlia de Ronçana,Santa Fe del Penedès,Santa Llogaia d'Àlguema,Santa Margarida de Montbui,Santa Margarida i els Monjos,Santa Maria de Besora,Santa Maria de Corcó,Santa Maria de Martorelles,Santa Maria de Merlès,Santa Maria de Miralles,Santa Maria de Palautordera,Santa Maria d'Oló,Santa Oliva,Santa Pau,Santa Perpètua de Mogoda,Santa Susanna,Santpedor,Sarral,Sarrià de Ter,Sarroca de Bellera,Sarroca de Lleida,Saus, Camallera i Llampaies,Savallà del Comtat,La Secuita,La Selva de Mar,La Selva del Camp,Senan,La Sénia,Senterada,La Sentiu de Sió,Sentmenat,Serinyà,Seròs,Serra de Daró,Setcases,La Seu d'Urgell,Seva,Sidamon,Sils,Sitges,Siurana,Sobremunt,El Soleràs,Solivella,Solsona,Sora,Soriguera,Sort,Soses,Subirats,Sudanell,Sunyer,Súria,Susqueda,Tagamanent,Talamanca,Talarn,Talavera,La Tallada d'Empordà,Taradell,Tarragona,Tàrrega,Tarrés,Tarroja de Segarra,Tavèrnoles,Tavertet,Teià,Térmens,Terrades,Terrassa,Tiana,Tírvia,Tiurana,Tivenys,Tivissa,Tona,Torà,Tordera,Torelló,Els Torms,Tornabous,La Torre de Cabdella,La Torre de Claramunt,La Torre de Fontaubella,La Torre de l'Espanyol,Torrebesses,Torredembarra,Torrefarrera,Torrefeta i Florejacs,Torregrossa,Torrelameu,Torrelavit,Torrelles de Foix,Torrelles de Llobregat,Torrent,Torres de Segre,Torre-serona,Torroella de Fluvià,Torroella de Montgrí,Torroja del Priorat,Tortellà,Tortosa,Toses,Tossa de Mar,Tremp,Ullà,Ullastrell,Ullastret,Ulldecona,Ulldemolins,Ultramort,Urús,Vacarisses,La Vajol,La Vall de Bianya,La Vall de Boí,Vall de Cardós,La Vall d'en Bas,Vallbona d'Anoia,Vallbona de les Monges,Vallcebre,Vallclara,Vallfogona de Balaguer,Vallfogona de Ripollès,Vallfogona de Riucorb,Vallgorguina,Vallirana,Vall-llobrega,Vallmoll,Vallromanes,Valls,Les Valls d'Aguilar,Les Valls de Valira,Vandellòs i l'Hospitalet de l'Infant,La Vansa i Fórnols,Veciana,El Vendrell,Ventalló,Verdú,Verges,Vespella de Gaià,Vic,Vidrà,Vidreres,Vielha e Mijaran,Vilabella,Vilabertran,Vilablareix,Vilada,Viladamat,Viladasens,Viladecans,Viladecavalls,Vilademuls,Viladrau,Vilafant,Vilafranca del Penedès,Vilagrassa,Vilajuïga,Vilalba dels Arcs,Vilalba Sasserra,Vilaller,Vilallonga de Ter,Vilallonga del Camp,Vilamacolum,Vilamalla,Vilamaniscle,Vilamòs,Vilanant,Vilanova de Bellpuig,Vilanova de la Barca,Vilanova de l'Aguda,Vilanova de Meià,Vilanova de Prades,Vilanova de Sau,Vilanova de Segrià,Vilanova del Camí,Vilanova del Vallès,Vilanova d'Escornalbou,Vilanova i la Geltrú,Vilaplana,Vila-rodona,Vila-sacra,Vila-sana,Vila-seca,Vilassar de Dalt,Vilassar de Mar,Vilaür,Vilaverd,La Vilella Alta,La Vilella Baixa,Vilobí del Penedès,Vilobí d'Onyar,Vilopriu,El Vilosell,Vimbodí i Poblet,Vinaixa,Vinebre,Vinyols i els Arcs,Viver i Serrateix,Xerta,Areny de Noguera,Arén,Benavarri,Benabarre,Beranuy,Beranuy,Bonansa,Bonansa,Capella,Capella,Castigaleu,Castigaleu,Estopanyá,Estopiñán del Castillo,Graus,Graus,Lascuarre,Lascuarre,Monesma i Caixigar,Monesma y Cajigar,Montanui,Montanuy,Laspaúls,Laspaúles,Isábena,Isábena,Pont de Montanyana,Puente de Montañana,Sopeira,Sopeira,Tolba,Tolva,Torre la Ribera,Torre la Ribera,Viacamp i Lliterà,Viacamp y Litera,Albelda,Albelda,Baells,Baells,El Campell,Alcampell,Camporrélls,Camporrélls,Castellonroi,Castillonroy,Peralta de Calasanz,Peralta de Calasanz,Santistebe de Llitera,San Esteban de Litera,Azanuy - Alins,Azanuy - Alins,Tamarit de Llitera,Tamarite de Litera,El Torricó,Altorricón,Valdellou,Baldellou,Vensilló,Vencillón,Fraga,Fraga,Mequinensa,Mequinenza,Saidí,Zaidín,Torrent de Cinca,Torrente de Cinca,Villella de Cinca,Velilla de Cinca,Aiguaviva,Aguaviva,Arenys de Lledó,Arens de Lledó,Bellmunt de Mesquí,Belmonte de San José,Beseit,Beceite,Calaceit,Calaceite,la Canyada de Verich,la Cañada de Verich,La Codonyera,La Codoñera,Cretes,Cretes,Faió,Fayón,Favara,Fabara,Fondespatla,Fuentespalda,Fórnols,Fórnoles,La Freixneda,La Fresneda,La Ginebrosa,La Ginebrosa,Lledó,Lledó,Maella,Maella,Massalió,Mazaleón,Montroig,Monroyo,Nonasp,Nonaspe,Pena - Roja de Tastavins,Peñarroya de Tastavíns,La Portellada,La Portellada,Ràfels,Rafals,La Sorollera,La Cerollera,la Torre de Vilella,Torrevelilla,La Torre del Comte,Torre Del Compte,Torredarques,Torre de Arcas,la Vall de Tormo,Valdeltormo,Vall de Roures,Valderrobres,Valljunquera,Valjunquera,Ballobar,Camallera,Bellaterra,Valls de Torroella,Sant Esteve d'en Bas,Sant Privat d'en Bas,Sant Martí de Malda,Medinya,Sucs,Sta Eulàlia de Puig-Oriol,Butsenit d'Urgell,Bellvei del Penedès,Empuriabrava,Sant Joan de Mediona,Sant Esteve de Llamena,Sant Miquel de Balenya,L'Hospitalet de l'Infant".split(",");$("#poblacio").autocomplete(data)});