function openWin(windowURL,windowName,windowFeatures){newWindow=window.open(windowURL,windowName,windowFeatures);if(newWindow!=undefined){newWindow.focus()}}var aktiv,letztes=null,letztesaufzu=null;function zu(welches){document.getElementById(welches).style.display='none';return false}function auf(welches){document.getElementById(welches).style.display='block';return false}function aufzu(welches){if(document.getElementById(welches).style.display=='block'){document.getElementById(welches).style.display='none'}else{document.getElementById(welches).style.display='none';document.getElementById(welches).style.display='block'}void(0)}function aufzuauto(welches){if(letztesaufzu!=null&&letztesaufzu!=welches){document.getElementById(letztesaufzu).style.display='none';letztesaufzu=null}if(document.getElementById(welches).style.display=='block'){document.getElementById(welches).style.display='none'}else{document.getElementById(welches).style.display='none';document.getElementById(welches).style.display='block';letztesaufzu=welches}void(0)}function nurzu(){if(letztes!=null){document.getElementById(letztes).style.display='none';clearTimeout(aktiv);letztes=null}return false}function nurauf(aktuelles){if(letztes!=null){clearTimeout(aktiv);document.getElementById(letztes).style.display='none'}document.getElementById(aktuelles).style.display='block';letztes=aktuelles;return false}function nurzutimer(){aktiv=setTimeout('verzoegern()',1000)}function verzoegern(){if(letztes!=null){document.getElementById(letztes).style.display='none';letztes=null}return false}function stop(){clearTimeout(aktiv)}function InsertBookmark(sUrl,sTitle){if(window.sidebar){window.sidebar.addPanel(sTitle,sUrl,"")}else if(window.external){window.external.AddFavorite(sUrl,sTitle)}}function CreateBookmarkLink(sUrl,sTitle,sLink,sClass){if(sClass==null){sClass=''}if(sClass!=''){sClass=' class="'+sClass+'"'}document.write('<a'+sClass+' href="javascript:InsertBookmark(\''+sUrl+'\',\''+sTitle+'\');">'+sLink+'</a>')}function CreateContactLink(sWo,sWer,sWem,sParameter,sImg,sText,sSub){if(sParameter!=''&&sParameter!=undefined){sParameter=' '+sParameter}else{sParameter=''}if(sSub!=''&&sSub!=undefined){sSub='?subject='+sSub}else{sSub=''}if(sImg!=''&&sImg!=undefined){document.write('<a'+sParameter+' href="mailto:'+sWem+'@'+sWer+'.'+sWo+sSub+'"><img src="'+sImg+'" alt="" /></a>')}else if(sText!=''&&sText!=undefined){document.write('<a'+sParameter+' href="mailto:'+sWem+'@'+sWer+'.'+sWo+sSub+'">'+sText+'</a>')}else{document.write('<a'+sParameter+' href="mailto:'+sWem+'@'+sWer+'.'+sWo+sSub+'">'+sWem+'@'+sWer+'.'+sWo+'</a>')}}function loschen(oThis,sDeleteThis){var bSetParentClass;if(oThis.value==sDeleteThis)oThis.value='';if((oThis.parentNode.tagName.toLowerCase()=='span')&&(oThis.parentNode.className==oThis.className)){bSetParentClass=true}else{bSetParentClass=false}if(oThis.className.search(/fehler/)!=-1){oThis.className=oThis.className.replace(/fehler/,'aktiv')}else{if(oThis.className.search(/aktiv/)==-1){oThis.className=oThis.className+' aktiv'}}if(bSetParentClass){oThis.parentNode.className=oThis.className}return false}function IsEnter(oEvent,sFunction){if(oEvent.keyCode==13&&!oEvent.shiftKey){window.setTimeout(sFunction,1)}return false}
var Prototype={Version:'1.5.0',BrowserFeatures:{XPath:!!document.evaluate},ScriptFragment:'(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',emptyFunction:function(){},K:function(x){return x}};var Class={create:function(){return function(){this.initialize.apply(this,arguments)}}};var Abstract=new Object();Object.extend=function(destination,source){for(var property in source){destination[property]=source[property]}return destination};Object.extend(Object,{inspect:function(object){try{if(object===undefined)return'undefined';if(object===null)return'null';return object.inspect?object.inspect():object.toString()}catch(e){if(e instanceof RangeError)return'...';throw e}},keys:function(object){var keys=[];for(var property in object)keys.push(property);return keys},values:function(object){var values=[];for(var property in object)values.push(object[property]);return values},clone:function(object){return Object.extend({},object)}});Function.prototype.bind=function(){var __method=this,args=$A(arguments),object=args.shift();return function(){return __method.apply(object,args.concat($A(arguments)))}};Function.prototype.bindAsEventListener=function(object){var __method=this,args=$A(arguments),object=args.shift();return function(event){return __method.apply(object,[(event||window.event)].concat(args).concat($A(arguments)))}};Object.extend(Number.prototype,{toColorPart:function(){var digits=this.toString(16);if(this<16)return'0'+digits;return digits},succ:function(){return this+1},times:function(iterator){$R(0,this,true).each(iterator);return this}});var Try={these:function(){var returnValue;for(var i=0,length=arguments.length;i<length;i++){var lambda=arguments[i];try{returnValue=lambda();break}catch(e){}}return returnValue}};var PeriodicalExecuter=Class.create();PeriodicalExecuter.prototype={initialize:function(callback,frequency){this.callback=callback;this.frequency=frequency;this.currentlyExecuting=false;this.registerCallback()},registerCallback:function(){this.timer=setInterval(this.onTimerEvent.bind(this),this.frequency*1000)},stop:function(){if(!this.timer){return}clearInterval(this.timer);this.timer=null},onTimerEvent:function(){if(!this.currentlyExecuting){try{this.currentlyExecuting=true;this.callback(this)}finally{this.currentlyExecuting=false}}}};String.interpret=function(value){return value==null?'':String(value)};Object.extend(String.prototype,{gsub:function(pattern,replacement){var result='',source=this,match;replacement=arguments.callee.prepareReplacement(replacement);while(source.length>0){if(match=source.match(pattern)){result+=source.slice(0,match.index);result+=String.interpret(replacement(match));source=source.slice(match.index+match[0].length)}else{result+=source,source=''}}return result},sub:function(pattern,replacement,count){replacement=this.gsub.prepareReplacement(replacement);count=count===undefined?1:count;return this.gsub(pattern,function(match){if(--count<0)return match[0];return replacement(match)})},scan:function(pattern,iterator){this.gsub(pattern,iterator);return this},truncate:function(length,truncation){length=length||30;truncation=truncation===undefined?'...':truncation;return this.length>length?this.slice(0,length-truncation.length)+truncation:this},strip:function(){return this.replace(/^\s+/,'').replace(/\s+$/,'')},stripTags:function(){return this.replace(/<\/?[^>]+>/gi,'')},stripScripts:function(){return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'')},extractScripts:function(){var matchAll=new RegExp(Prototype.ScriptFragment,'img');var matchOne=new RegExp(Prototype.ScriptFragment,'im');return(this.match(matchAll)||[]).map(function(scriptTag){return(scriptTag.match(matchOne)||['',''])[1]})},evalScripts:function(){return this.extractScripts().map(function(script){return eval(script)})},escapeHTML:function(){var div=document.createElement('div');var text=document.createTextNode(this);div.appendChild(text);return div.innerHTML},unescapeHTML:function(){var div=document.createElement('div');div.innerHTML=this.stripTags();return div.childNodes[0]?(div.childNodes.length>1?$A(div.childNodes).inject('',function(memo,node){return memo+node.nodeValue}):div.childNodes[0].nodeValue):''},toQueryParams:function(separator){var match=this.strip().match(/([^?#]*)(#.*)?$/);if(!match)return{};return match[1].split(separator||'&').inject({},function(hash,pair){if((pair=pair.split('='))[0]){var name=decodeURIComponent(pair[0]);var value=pair[1]?decodeURIComponent(pair[1]):undefined;if(hash[name]!==undefined){if(hash[name].constructor!=Array)hash[name]=[hash[name]];if(value)hash[name].push(value)}else hash[name]=value}return hash})},toArray:function(){return this.split('')},succ:function(){return this.slice(0,this.length-1)+String.fromCharCode(this.charCodeAt(this.length-1)+1)},camelize:function(){var parts=this.split('-'),len=parts.length;if(len==1)return parts[0];var camelized=this.charAt(0)=='-'?parts[0].charAt(0).toUpperCase()+parts[0].substring(1):parts[0];for(var i=1;i<len;i++)camelized+=parts[i].charAt(0).toUpperCase()+parts[i].substring(1);return camelized},capitalize:function(){return this.charAt(0).toUpperCase()+this.substring(1).toLowerCase()},underscore:function(){return this.gsub(/::/,'/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase()},dasherize:function(){return this.gsub(/_/,'-')},inspect:function(useDoubleQuotes){var escapedString=this.replace(/\\/g,'\\\\');if(useDoubleQuotes)return'"'+escapedString.replace(/"/g,'\\"')+'"';else return"'"+escapedString.replace(/'/g,'\\\'')+"'"}});String.prototype.gsub.prepareReplacement=function(replacement){if(typeof replacement=='function')return replacement;var template=new Template(replacement);return function(match){return template.evaluate(match)}};String.prototype.parseQuery=String.prototype.toQueryParams;var Template=Class.create();Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;Template.prototype={initialize:function(template,pattern){this.template=template.toString();this.pattern=pattern||Template.Pattern},evaluate:function(object){return this.template.gsub(this.pattern,function(match){var before=match[1];if(before=='\\')return match[2];return before+String.interpret(object[match[3]])})}};var $break=new Object();var $continue=new Object();var Enumerable={each:function(iterator){var index=0;try{this._each(function(value){try{iterator(value,index++)}catch(e){if(e!=$continue)throw e}})}catch(e){if(e!=$break)throw e}return this},eachSlice:function(number,iterator){var index=-number,slices=[],array=this.toArray();while((index+=number)<array.length)slices.push(array.slice(index,index+number));return slices.map(iterator)},all:function(iterator){var result=true;this.each(function(value,index){result=result&&!!(iterator||Prototype.K)(value,index);if(!result)throw $break});return result},any:function(iterator){var result=false;this.each(function(value,index){if(result=!!(iterator||Prototype.K)(value,index))throw $break});return result},collect:function(iterator){var results=[];this.each(function(value,index){results.push((iterator||Prototype.K)(value,index))});return results},detect:function(iterator){var result;this.each(function(value,index){if(iterator(value,index)){result=value;throw $break}});return result},findAll:function(iterator){var results=[];this.each(function(value,index){if(iterator(value,index))results.push(value)});return results},grep:function(pattern,iterator){var results=[];this.each(function(value,index){var stringValue=value.toString();if(stringValue.match(pattern))results.push((iterator||Prototype.K)(value,index))});return results},include:function(object){var found=false;this.each(function(value){if(value==object){found=true;throw $break}});return found},inGroupsOf:function(number,fillWith){fillWith=fillWith===undefined?null:fillWith;return this.eachSlice(number,function(slice){while(slice.length<number)slice.push(fillWith);return slice})},inject:function(memo,iterator){this.each(function(value,index){memo=iterator(memo,value,index)});return memo},invoke:function(method){var args=$A(arguments).slice(1);return this.map(function(value){return value[method].apply(value,args)})},max:function(iterator){var result;this.each(function(value,index){value=(iterator||Prototype.K)(value,index);if(result==undefined||value>=result)result=value});return result},min:function(iterator){var result;this.each(function(value,index){value=(iterator||Prototype.K)(value,index);if(result==undefined||value<result)result=value});return result},partition:function(iterator){var trues=[],falses=[];this.each(function(value,index){((iterator||Prototype.K)(value,index)?trues:falses).push(value)});return[trues,falses]},pluck:function(property){var results=[];this.each(function(value,index){results.push(value[property])});return results},reject:function(iterator){var results=[];this.each(function(value,index){if(!iterator(value,index))results.push(value)});return results},sortBy:function(iterator){return this.map(function(value,index){return{value:value,criteria:iterator(value,index)}}).sort(function(left,right){var a=left.criteria,b=right.criteria;return a<b?-1:a>b?1:0}).pluck('value')},toArray:function(){return this.map()},zip:function(){var iterator=Prototype.K,args=$A(arguments);if(typeof args.last()=='function')iterator=args.pop();var collections=[this].concat(args).map($A);return this.map(function(value,index){return iterator(collections.pluck(index))})},size:function(){return this.toArray().length},inspect:function(){return'#<Enumerable:'+this.toArray().inspect()+'>'}};Object.extend(Enumerable,{map:Enumerable.collect,find:Enumerable.detect,select:Enumerable.findAll,member:Enumerable.include,entries:Enumerable.toArray});var $A=Array.from=function(iterable){if(!iterable)return[];if(iterable.toArray){return iterable.toArray()}else{var results=[];for(var i=0,length=iterable.length;i<length;i++)results.push(iterable[i]);return results}};Object.extend(Array.prototype,Enumerable);if(!Array.prototype._reverse)Array.prototype._reverse=Array.prototype.reverse;Object.extend(Array.prototype,{_each:function(iterator){for(var i=0,length=this.length;i<length;i++)iterator(this[i])},clear:function(){this.length=0;return this},first:function(){return this[0]},last:function(){return this[this.length-1]},compact:function(){return this.select(function(value){return value!=null})},flatten:function(){return this.inject([],function(array,value){return array.concat(value&&value.constructor==Array?value.flatten():[value])})},without:function(){var values=$A(arguments);return this.select(function(value){return!values.include(value)})},indexOf:function(object){for(var i=0,length=this.length;i<length;i++)if(this[i]==object)return i;return-1},reverse:function(inline){return(inline!==false?this:this.toArray())._reverse()},reduce:function(){return this.length>1?this:this[0]},uniq:function(){return this.inject([],function(array,value){return array.include(value)?array:array.concat([value])})},clone:function(){return[].concat(this)},size:function(){return this.length},inspect:function(){return'['+this.map(Object.inspect).join(', ')+']'}});Array.prototype.toArray=Array.prototype.clone;function $w(string){string=string.strip();return string?string.split(/\s+/):[]}if(window.opera){Array.prototype.concat=function(){var array=[];for(var i=0,length=this.length;i<length;i++)array.push(this[i]);for(var i=0,length=arguments.length;i<length;i++){if(arguments[i].constructor==Array){for(var j=0,arrayLength=arguments[i].length;j<arrayLength;j++)array.push(arguments[i][j])}else{array.push(arguments[i])}}return array}}var Hash=function(obj){Object.extend(this,obj||{})};Object.extend(Hash,{toQueryString:function(obj){var parts=[];this.prototype._each.call(obj,function(pair){if(!pair.key)return;if(pair.value&&pair.value.constructor==Array){var values=pair.value.compact();if(values.length<2)pair.value=values.reduce();else{key=encodeURIComponent(pair.key);values.each(function(value){value=value!=undefined?encodeURIComponent(value):'';parts.push(key+'='+encodeURIComponent(value))});return}}if(pair.value==undefined)pair[1]='';parts.push(pair.map(encodeURIComponent).join('='))});return parts.join('&')}});Object.extend(Hash.prototype,Enumerable);Object.extend(Hash.prototype,{_each:function(iterator){for(var key in this){var value=this[key];if(value&&value==Hash.prototype[key])continue;var pair=[key,value];pair.key=key;pair.value=value;iterator(pair)}},keys:function(){return this.pluck('key')},values:function(){return this.pluck('value')},merge:function(hash){return $H(hash).inject(this,function(mergedHash,pair){mergedHash[pair.key]=pair.value;return mergedHash})},remove:function(){var result;for(var i=0,length=arguments.length;i<length;i++){var value=this[arguments[i]];if(value!==undefined){if(result===undefined)result=value;else{if(result.constructor!=Array)result=[result];result.push(value)}}delete this[arguments[i]]}return result},toQueryString:function(){return Hash.toQueryString(this)},inspect:function(){return'#<Hash:{'+this.map(function(pair){return pair.map(Object.inspect).join(': ')}).join(', ')+'}>'}});function $H(object){if(object&&object.constructor==Hash)return object;return new Hash(object)};ObjectRange=Class.create();Object.extend(ObjectRange.prototype,Enumerable);Object.extend(ObjectRange.prototype,{initialize:function(start,end,exclusive){this.start=start;this.end=end;this.exclusive=exclusive},_each:function(iterator){var value=this.start;while(this.include(value)){iterator(value);value=value.succ()}},include:function(value){if(value<this.start)return false;if(this.exclusive)return value<this.end;return value<=this.end}});var $R=function(start,end,exclusive){return new ObjectRange(start,end,exclusive)};var Ajax={getTransport:function(){return Try.these(function(){return new XMLHttpRequest()},function(){return new ActiveXObject('Msxml2.XMLHTTP')},function(){return new ActiveXObject('Microsoft.XMLHTTP')})||false},activeRequestCount:0};Ajax.Responders={responders:[],_each:function(iterator){this.responders._each(iterator)},register:function(responder){if(!this.include(responder))this.responders.push(responder)},unregister:function(responder){this.responders=this.responders.without(responder)},dispatch:function(callback,request,transport,json){this.each(function(responder){if(typeof responder[callback]=='function'){try{responder[callback].apply(responder,[request,transport,json])}catch(e){}}})}};Object.extend(Ajax.Responders,Enumerable);Ajax.Responders.register({onCreate:function(){Ajax.activeRequestCount++},onComplete:function(){Ajax.activeRequestCount--}});Ajax.Base=function(){};Ajax.Base.prototype={setOptions:function(options){this.options={method:'post',asynchronous:true,contentType:'application/x-www-form-urlencoded',encoding:'UTF-8',parameters:''};Object.extend(this.options,options||{});this.options.method=this.options.method.toLowerCase();if(typeof this.options.parameters=='string')this.options.parameters=this.options.parameters.toQueryParams()}};Ajax.Request=Class.create();Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];Ajax.Request.prototype=Object.extend(new Ajax.Base(),{_complete:false,initialize:function(url,options){this.transport=Ajax.getTransport();this.setOptions(options);this.request(url)},request:function(url){this.url=url;this.method=this.options.method;var params=this.options.parameters;if(!['get','post'].include(this.method)){params['_method']=this.method;this.method='post'}params=Hash.toQueryString(params);if(params&&/Konqueror|Safari|KHTML/.test(navigator.userAgent)){params+='&_='}if(this.method=='get'&&params)this.url+=(this.url.indexOf('?')>-1?'&':'?')+params;try{Ajax.Responders.dispatch('onCreate',this,this.transport);this.transport.open(this.method.toUpperCase(),this.url,this.options.asynchronous);if(this.options.asynchronous)setTimeout(function(){this.respondToReadyState(1)}.bind(this),10);this.transport.onreadystatechange=this.onStateChange.bind(this);this.setRequestHeaders();var body=this.method=='post'?(this.options.postBody||params):null;this.transport.send(body);if(!this.options.asynchronous&&this.transport.overrideMimeType)this.onStateChange()}catch(e){this.dispatchException(e)}},onStateChange:function(){var readyState=this.transport.readyState;if(readyState>1&&!((readyState==4)&&this._complete))this.respondToReadyState(this.transport.readyState)},setRequestHeaders:function(){var headers={'X-Requested-With':'XMLHttpRequest','X-Prototype-Version':Prototype.Version,'Accept':'text/javascript, text/html, application/xml, text/xml, */*'};if(this.method=='post'){headers['Content-type']=this.options.contentType+(this.options.encoding?'; charset='+this.options.encoding:'');if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005)headers['Connection']='close'}if(typeof this.options.requestHeaders=='object'){var extras=this.options.requestHeaders;if(typeof extras.push=='function')for(var i=0,length=extras.length;i<length;i+=2)headers[extras[i]]=extras[i+1];else $H(extras).each(function(pair){headers[pair.key]=pair.value})}for(var name in headers)this.transport.setRequestHeader(name,headers[name])},success:function(){return!this.transport.status||(this.transport.status>=200&&this.transport.status<300)},respondToReadyState:function(readyState){var state=Ajax.Request.Events[readyState];var transport=this.transport,json=this.evalJSON();if(state=='Complete'){try{this._complete=true;(this.options['on'+this.transport.status]||this.options['on'+(this.success()?'Success':'Failure')]||Prototype.emptyFunction)(transport,json)}catch(e){this.dispatchException(e)}if((this.getHeader('Content-type')||'text/javascript').strip().match(/^(text|application)\/(x-)?(java|ecma)script(;.*)?$/i))this.evalResponse()}try{(this.options['on'+state]||Prototype.emptyFunction)(transport,json);Ajax.Responders.dispatch('on'+state,this,transport,json)}catch(e){this.dispatchException(e)}if(state=='Complete'){this.transport.onreadystatechange=Prototype.emptyFunction}},getHeader:function(name){try{return this.transport.getResponseHeader(name)}catch(e){return null}},evalJSON:function(){try{var json=this.getHeader('X-JSON');return json?eval('('+json+')'):null}catch(e){return null}},evalResponse:function(){try{return eval(this.transport.responseText)}catch(e){this.dispatchException(e)}},dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);Ajax.Responders.dispatch('onException',this,exception)}});Ajax.Updater=Class.create();Object.extend(Object.extend(Ajax.Updater.prototype,Ajax.Request.prototype),{initialize:function(container,url,options){this.container={success:(container.success||container),failure:(container.failure||(container.success?null:container))};this.transport=Ajax.getTransport();this.setOptions(options);var onComplete=this.options.onComplete||Prototype.emptyFunction;this.options.onComplete=(function(transport,param){this.updateContent();onComplete(transport,param)}).bind(this);this.request(url)},updateContent:function(){var receiver=this.container[this.success()?'success':'failure'];var response=this.transport.responseText;if(!this.options.evalScripts)response=response.stripScripts();if(receiver=$(receiver)){if(this.options.insertion)new this.options.insertion(receiver,response);else receiver.update(response)}if(this.success()){if(this.onComplete)setTimeout(this.onComplete.bind(this),10)}}});Ajax.PeriodicalUpdater=Class.create();Ajax.PeriodicalUpdater.prototype=Object.extend(new Ajax.Base(),{initialize:function(container,url,options){this.setOptions(options);this.onComplete=this.options.onComplete;this.frequency=(this.options.frequency||2);this.decay=(this.options.decay||1);this.updater={};this.container=container;this.url=url;this.start()},start:function(){this.options.onComplete=this.updateComplete.bind(this);this.onTimerEvent()},stop:function(){this.updater.options.onComplete=undefined;clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments)},updateComplete:function(request){if(this.options.decay){this.decay=(request.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=request.responseText}this.timer=setTimeout(this.onTimerEvent.bind(this),this.decay*this.frequency*1000)},onTimerEvent:function(){this.updater=new Ajax.Updater(this.container,this.url,this.options)}});function $(element){if(arguments.length>1){for(var i=0,elements=[],length=arguments.length;i<length;i++)elements.push($(arguments[i]));return elements}if(typeof element=='string')element=document.getElementById(element);return Element.extend(element)}if(Prototype.BrowserFeatures.XPath){document._getElementsByXPath=function(expression,parentElement){var results=[];var query=document.evaluate(expression,$(parentElement)||document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,length=query.snapshotLength;i<length;i++)results.push(query.snapshotItem(i));return results}}document.getElementsByClassName=function(className,parentElement){if(Prototype.BrowserFeatures.XPath){var q=".//*[contains(concat(' ', @class, ' '), ' "+className+" ')]";return document._getElementsByXPath(q,parentElement)}else{var children=($(parentElement)||document.body).getElementsByTagName('*');var elements=[],child;for(var i=0,length=children.length;i<length;i++){child=children[i];if(Element.hasClassName(child,className))elements.push(Element.extend(child))}return elements}};if(!window.Element)var Element=new Object();Element.extend=function(element){if(!element||_nativeExtensions||element.nodeType==3)return element;if(!element._extended&&element.tagName&&element!=window){var methods=Object.clone(Element.Methods),cache=Element.extend.cache;if(element.tagName=='FORM')Object.extend(methods,Form.Methods);if(['INPUT','TEXTAREA','SELECT'].include(element.tagName))Object.extend(methods,Form.Element.Methods);Object.extend(methods,Element.Methods.Simulated);for(var property in methods){var value=methods[property];if(typeof value=='function'&&!(property in element))element[property]=cache.findOrStore(value)}}element._extended=true;return element};Element.extend.cache={findOrStore:function(value){return this[value]=this[value]||function(){return value.apply(null,[this].concat($A(arguments)))}}};Element.Methods={visible:function(element){return $(element).style.display!='none'},toggle:function(element){element=$(element);Element[Element.visible(element)?'hide':'show'](element);return element},hide:function(element){$(element).style.display='none';return element},show:function(element){$(element).style.display='';return element},remove:function(element){element=$(element);element.parentNode.removeChild(element);return element},update:function(element,html){html=typeof html=='undefined'?'':html.toString();$(element).innerHTML=html.stripScripts();setTimeout(function(){html.evalScripts()},10);return element},replace:function(element,html){element=$(element);html=typeof html=='undefined'?'':html.toString();if(element.outerHTML){element.outerHTML=html.stripScripts()}else{var range=element.ownerDocument.createRange();range.selectNodeContents(element);element.parentNode.replaceChild(range.createContextualFragment(html.stripScripts()),element)}setTimeout(function(){html.evalScripts()},10);return element},inspect:function(element){element=$(element);var result='<'+element.tagName.toLowerCase();$H({'id':'id','className':'class'}).each(function(pair){var property=pair.first(),attribute=pair.last();var value=(element[property]||'').toString();if(value)result+=' '+attribute+'='+value.inspect(true)});return result+'>'},recursivelyCollect:function(element,property){element=$(element);var elements=[];while(element=element[property])if(element.nodeType==1)elements.push(Element.extend(element));return elements},ancestors:function(element){return $(element).recursivelyCollect('parentNode')},descendants:function(element){return $A($(element).getElementsByTagName('*'))},immediateDescendants:function(element){if(!(element=$(element).firstChild))return[];while(element&&element.nodeType!=1)element=element.nextSibling;if(element)return[element].concat($(element).nextSiblings());return[]},previousSiblings:function(element){return $(element).recursivelyCollect('previousSibling')},nextSiblings:function(element){return $(element).recursivelyCollect('nextSibling')},siblings:function(element){element=$(element);return element.previousSiblings().reverse().concat(element.nextSiblings())},match:function(element,selector){if(typeof selector=='string')selector=new Selector(selector);return selector.match($(element))},up:function(element,expression,index){return Selector.findElement($(element).ancestors(),expression,index)},down:function(element,expression,index){return Selector.findElement($(element).descendants(),expression,index)},previous:function(element,expression,index){return Selector.findElement($(element).previousSiblings(),expression,index)},next:function(element,expression,index){return Selector.findElement($(element).nextSiblings(),expression,index)},getElementsBySelector:function(){var args=$A(arguments),element=$(args.shift());return Selector.findChildElements(element,args)},getElementsByClassName:function(element,className){return document.getElementsByClassName(className,element)},readAttribute:function(element,name){element=$(element);if(document.all&&!window.opera){var t=Element._attributeTranslations;if(t.values[name])return t.values[name](element,name);if(t.names[name])name=t.names[name];var attribute=element.attributes[name];if(attribute)return attribute.nodeValue}return element.getAttribute(name)},getHeight:function(element){return $(element).getDimensions().height},getWidth:function(element){return $(element).getDimensions().width},classNames:function(element){return new Element.ClassNames(element)},hasClassName:function(element,className){if(!(element=$(element)))return;var elementClassName=element.className;if(elementClassName.length==0)return false;if(elementClassName==className||elementClassName.match(new RegExp("(^|\\s)"+className+"(\\s|$)")))return true;return false},addClassName:function(element,className){if(!(element=$(element)))return;Element.classNames(element).add(className);return element},removeClassName:function(element,className){if(!(element=$(element)))return;Element.classNames(element).remove(className);return element},toggleClassName:function(element,className){if(!(element=$(element)))return;Element.classNames(element)[element.hasClassName(className)?'remove':'add'](className);return element},observe:function(){Event.observe.apply(Event,arguments);return $A(arguments).first()},stopObserving:function(){Event.stopObserving.apply(Event,arguments);return $A(arguments).first()},cleanWhitespace:function(element){element=$(element);var node=element.firstChild;while(node){var nextNode=node.nextSibling;if(node.nodeType==3&&!/\S/.test(node.nodeValue))element.removeChild(node);node=nextNode}return element},empty:function(element){return $(element).innerHTML.match(/^\s*$/)},descendantOf:function(element,ancestor){element=$(element),ancestor=$(ancestor);while(element=element.parentNode)if(element==ancestor)return true;return false},scrollTo:function(element){element=$(element);var pos=Position.cumulativeOffset(element);window.scrollTo(pos[0],pos[1]);return element},getStyle:function(element,style){element=$(element);if(['float','cssFloat'].include(style))style=(typeof element.style.styleFloat!='undefined'?'styleFloat':'cssFloat');style=style.camelize();var value=element.style[style];if(!value){if(document.defaultView&&document.defaultView.getComputedStyle){var css=document.defaultView.getComputedStyle(element,null);value=css?css[style]:null}else if(element.currentStyle){value=element.currentStyle[style]}}if((value=='auto')&&['width','height'].include(style)&&(element.getStyle('display')!='none'))value=element['offset'+style.capitalize()]+'px';if(window.opera&&['left','top','right','bottom'].include(style))if(Element.getStyle(element,'position')=='static')value='auto';if(style=='opacity'){if(value)return parseFloat(value);if(value=(element.getStyle('filter')||'').match(/alpha\(opacity=(.*)\)/))if(value[1])return parseFloat(value[1])/100;return 1.0}return value=='auto'?null:value},setStyle:function(element,style){element=$(element);for(var name in style){var value=style[name];if(name=='opacity'){if(value==1){value=(/Gecko/.test(navigator.userAgent)&&!/Konqueror|Safari|KHTML/.test(navigator.userAgent))?0.999999:1.0;if(/MSIE/.test(navigator.userAgent)&&!window.opera)element.style.filter=element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'')}else if(value===''){if(/MSIE/.test(navigator.userAgent)&&!window.opera)element.style.filter=element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'')}else{if(value<0.00001){value=0}if(/MSIE/.test(navigator.userAgent)&&!window.opera){element.style.filter=element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'')+'alpha(opacity='+value*100+')'}}}else if(['float','cssFloat'].include(name)){name=(typeof element.style.styleFloat!='undefined')?'styleFloat':'cssFloat'}element.style[name.camelize()]=value}return element},getDimensions:function(element){element=$(element);var display=$(element).getStyle('display');if(display!='none'&&display!=null)return{width:element.offsetWidth,height:element.offsetHeight};var els=element.style;var originalVisibility=els.visibility;var originalPosition=els.position;var originalDisplay=els.display;els.visibility='hidden';els.position='absolute';els.display='block';var originalWidth=element.clientWidth;var originalHeight=element.clientHeight;els.display=originalDisplay;els.position=originalPosition;els.visibility=originalVisibility;return{width:originalWidth,height:originalHeight}},makePositioned:function(element){element=$(element);var pos=Element.getStyle(element,'position');if(pos=='static'||!pos){element._madePositioned=true;element.style.position='relative';if(window.opera){element.style.top=0;element.style.left=0}}return element},undoPositioned:function(element){element=$(element);if(element._madePositioned){element._madePositioned=undefined;element.style.position=element.style.top=element.style.left=element.style.bottom=element.style.right=''}return element},makeClipping:function(element){element=$(element);if(element._overflow)return element;element._overflow=element.style.overflow||'auto';if((Element.getStyle(element,'overflow')||'visible')!='hidden')element.style.overflow='hidden';return element},undoClipping:function(element){element=$(element);if(!element._overflow)return element;element.style.overflow=element._overflow=='auto'?'':element._overflow;element._overflow=null;return element}};Object.extend(Element.Methods,{childOf:Element.Methods.descendantOf});Element._attributeTranslations={};Element._attributeTranslations.names={colspan:"colSpan",rowspan:"rowSpan",valign:"vAlign",datetime:"dateTime",accesskey:"accessKey",tabindex:"tabIndex",enctype:"encType",maxlength:"maxLength",readonly:"readOnly",longdesc:"longDesc"};Element._attributeTranslations.values={_getAttr:function(element,attribute){return element.getAttribute(attribute,2)},_flag:function(element,attribute){return $(element).hasAttribute(attribute)?attribute:null},style:function(element){return element.style.cssText.toLowerCase()},title:function(element){var node=element.getAttributeNode('title');return node.specified?node.nodeValue:null}};Object.extend(Element._attributeTranslations.values,{href:Element._attributeTranslations.values._getAttr,src:Element._attributeTranslations.values._getAttr,disabled:Element._attributeTranslations.values._flag,checked:Element._attributeTranslations.values._flag,readonly:Element._attributeTranslations.values._flag,multiple:Element._attributeTranslations.values._flag});Element.Methods.Simulated={hasAttribute:function(element,attribute){var t=Element._attributeTranslations;attribute=t.names[attribute]||attribute;return $(element).getAttributeNode(attribute).specified}};if(document.all&&!window.opera){Element.Methods.update=function(element,html){element=$(element);html=typeof html=='undefined'?'':html.toString();var tagName=element.tagName.toUpperCase();if(['THEAD','TBODY','TR','TD'].include(tagName)){var div=document.createElement('div');switch(tagName){case'THEAD':case'TBODY':div.innerHTML='<table><tbody>'+html.stripScripts()+'</tbody></table>';depth=2;break;case'TR':div.innerHTML='<table><tbody><tr>'+html.stripScripts()+'</tr></tbody></table>';depth=3;break;case'TD':div.innerHTML='<table><tbody><tr><td>'+html.stripScripts()+'</td></tr></tbody></table>';depth=4}$A(element.childNodes).each(function(node){element.removeChild(node)});depth.times(function(){div=div.firstChild});$A(div.childNodes).each(function(node){element.appendChild(node)})}else{element.innerHTML=html.stripScripts()}setTimeout(function(){html.evalScripts()},10);return element}}Object.extend(Element,Element.Methods);var _nativeExtensions=false;if(/Konqueror|Safari|KHTML/.test(navigator.userAgent))['','Form','Input','TextArea','Select'].each(function(tag){var className='HTML'+tag+'Element';if(window[className])return;var klass=window[className]={};klass.prototype=document.createElement(tag?tag.toLowerCase():'div').__proto__});Element.addMethods=function(methods){Object.extend(Element.Methods,methods||{});function copy(methods,destination,onlyIfAbsent){onlyIfAbsent=onlyIfAbsent||false;var cache=Element.extend.cache;for(var property in methods){var value=methods[property];if(!onlyIfAbsent||!(property in destination))destination[property]=cache.findOrStore(value)}};if(typeof HTMLElement!='undefined'){copy(Element.Methods,HTMLElement.prototype);copy(Element.Methods.Simulated,HTMLElement.prototype,true);copy(Form.Methods,HTMLFormElement.prototype);[HTMLInputElement,HTMLTextAreaElement,HTMLSelectElement].each(function(klass){copy(Form.Element.Methods,klass.prototype)});_nativeExtensions=true}};var Toggle=new Object();Toggle.display=Element.toggle;Abstract.Insertion=function(adjacency){this.adjacency=adjacency};Abstract.Insertion.prototype={initialize:function(element,content){this.element=$(element);this.content=content.stripScripts();if(this.adjacency&&this.element.insertAdjacentHTML){try{this.element.insertAdjacentHTML(this.adjacency,this.content)}catch(e){var tagName=this.element.tagName.toUpperCase();if(['TBODY','TR'].include(tagName)){this.insertContent(this.contentFromAnonymousTable())}else{throw e}}}else{this.range=this.element.ownerDocument.createRange();if(this.initializeRange)this.initializeRange();this.insertContent([this.range.createContextualFragment(this.content)])}setTimeout(function(){content.evalScripts()},10)},contentFromAnonymousTable:function(){var div=document.createElement('div');div.innerHTML='<table><tbody>'+this.content+'</tbody></table>';return $A(div.childNodes[0].childNodes[0].childNodes)}};var Insertion=new Object();Insertion.Before=Class.create();Insertion.Before.prototype=Object.extend(new Abstract.Insertion('beforeBegin'),{initializeRange:function(){this.range.setStartBefore(this.element)},insertContent:function(fragments){fragments.each((function(fragment){this.element.parentNode.insertBefore(fragment,this.element)}).bind(this))}});Insertion.Top=Class.create();Insertion.Top.prototype=Object.extend(new Abstract.Insertion('afterBegin'),{initializeRange:function(){this.range.selectNodeContents(this.element);this.range.collapse(true)},insertContent:function(fragments){fragments.reverse(false).each((function(fragment){this.element.insertBefore(fragment,this.element.firstChild)}).bind(this))}});Insertion.Bottom=Class.create();Insertion.Bottom.prototype=Object.extend(new Abstract.Insertion('beforeEnd'),{initializeRange:function(){this.range.selectNodeContents(this.element);this.range.collapse(this.element)},insertContent:function(fragments){fragments.each((function(fragment){this.element.appendChild(fragment)}).bind(this))}});Insertion.After=Class.create();Insertion.After.prototype=Object.extend(new Abstract.Insertion('afterEnd'),{initializeRange:function(){this.range.setStartAfter(this.element)},insertContent:function(fragments){fragments.each((function(fragment){this.element.parentNode.insertBefore(fragment,this.element.nextSibling)}).bind(this))}});Element.ClassNames=Class.create();Element.ClassNames.prototype={initialize:function(element){this.element=$(element)},_each:function(iterator){this.element.className.split(/\s+/).select(function(name){return name.length>0})._each(iterator)},set:function(className){this.element.className=className},add:function(classNameToAdd){if(this.include(classNameToAdd))return;this.set($A(this).concat(classNameToAdd).join(' '))},remove:function(classNameToRemove){if(!this.include(classNameToRemove))return;this.set($A(this).without(classNameToRemove).join(' '))},toString:function(){return $A(this).join(' ')}};Object.extend(Element.ClassNames.prototype,Enumerable);var Selector=Class.create();Selector.prototype={initialize:function(expression){this.params={classNames:[]};this.expression=expression.toString().strip();this.parseExpression();this.compileMatcher()},parseExpression:function(){function abort(message){throw'Parse error in selector: '+message};if(this.expression=='')abort('empty expression');var params=this.params,expr=this.expression,match,modifier,clause,rest;while(match=expr.match(/^(.*)\[([a-z0-9_:-]+?)(?:([~\|!]?=)(?:"([^"]*)"|([^\]\s]*)))?\]$/i)){params.attributes=params.attributes||[];params.attributes.push({name:match[2],operator:match[3],value:match[4]||match[5]||''});expr=match[1]}if(expr=='*')return this.params.wildcard=true;while(match=expr.match(/^([^a-z0-9_-])?([a-z0-9_-]+)(.*)/i)){modifier=match[1],clause=match[2],rest=match[3];switch(modifier){case'#':params.id=clause;break;case'.':params.classNames.push(clause);break;case'':case undefined:params.tagName=clause.toUpperCase();break;default:abort(expr.inspect())}expr=rest}if(expr.length>0)abort(expr.inspect())},buildMatchExpression:function(){var params=this.params,conditions=[],clause;if(params.wildcard)conditions.push('true');if(clause=params.id)conditions.push('element.readAttribute("id") == '+clause.inspect());if(clause=params.tagName)conditions.push('element.tagName.toUpperCase() == '+clause.inspect());if((clause=params.classNames).length>0)for(var i=0,length=clause.length;i<length;i++)conditions.push('element.hasClassName('+clause[i].inspect()+')');if(clause=params.attributes){clause.each(function(attribute){var value='element.readAttribute('+attribute.name.inspect()+')';var splitValueBy=function(delimiter){return value+' && '+value+'.split('+delimiter.inspect()+')'};switch(attribute.operator){case'=':conditions.push(value+' == '+attribute.value.inspect());break;case'~=':conditions.push(splitValueBy(' ')+'.include('+attribute.value.inspect()+')');break;case'|=':conditions.push(splitValueBy('-')+'.first().toUpperCase() == '+attribute.value.toUpperCase().inspect());break;case'!=':conditions.push(value+' != '+attribute.value.inspect());break;case'':case undefined:conditions.push('element.hasAttribute('+attribute.name.inspect()+')');break;default:throw'Unknown operator '+attribute.operator+' in selector'}})}return conditions.join(' && ')},compileMatcher:function(){this.match=new Function('element','if (!element.tagName) return false; '+'element = $(element); '+'return '+this.buildMatchExpression())},findElements:function(scope){var element;if(element=$(this.params.id))if(this.match(element))if(!scope||Element.childOf(element,scope))return[element];scope=(scope||document).getElementsByTagName(this.params.tagName||'*');var results=[];for(var i=0,length=scope.length;i<length;i++)if(this.match(element=scope[i]))results.push(Element.extend(element));return results},toString:function(){return this.expression}};Object.extend(Selector,{matchElements:function(elements,expression){var selector=new Selector(expression);return elements.select(selector.match.bind(selector)).map(Element.extend)},findElement:function(elements,expression,index){if(typeof expression=='number')index=expression,expression=false;return Selector.matchElements(elements,expression||'*')[index||0]},findChildElements:function(element,expressions){return expressions.map(function(expression){return expression.match(/[^\s"]+(?:"[^"]*"[^\s"]+)*/g).inject([null],function(results,expr){var selector=new Selector(expr);return results.inject([],function(elements,result){return elements.concat(selector.findElements(result||element))})})}).flatten()}});function $$(){return Selector.findChildElements(document,$A(arguments))};var Form={reset:function(form){$(form).reset();return form},serializeElements:function(elements,getHash){var data=elements.inject({},function(result,element){if(!element.disabled&&element.name){var key=element.name,value=$(element).getValue();if(value!=undefined){if(result[key]){if(result[key].constructor!=Array)result[key]=[result[key]];result[key].push(value)}else result[key]=value}}return result});return getHash?data:Hash.toQueryString(data)}};Form.Methods={serialize:function(form,getHash){return Form.serializeElements(Form.getElements(form),getHash)},getElements:function(form){return $A($(form).getElementsByTagName('*')).inject([],function(elements,child){if(Form.Element.Serializers[child.tagName.toLowerCase()])elements.push(Element.extend(child));return elements})},getInputs:function(form,typeName,name){form=$(form);var inputs=form.getElementsByTagName('input');if(!typeName&&!name)return $A(inputs).map(Element.extend);for(var i=0,matchingInputs=[],length=inputs.length;i<length;i++){var input=inputs[i];if((typeName&&input.type!=typeName)||(name&&input.name!=name))continue;matchingInputs.push(Element.extend(input))}return matchingInputs},disable:function(form){form=$(form);form.getElements().each(function(element){element.blur();element.disabled='true'});return form},enable:function(form){form=$(form);form.getElements().each(function(element){element.disabled=''});return form},findFirstElement:function(form){return $(form).getElements().find(function(element){return element.type!='hidden'&&!element.disabled&&['input','select','textarea'].include(element.tagName.toLowerCase())})},focusFirstElement:function(form){form=$(form);form.findFirstElement().activate();return form}};Object.extend(Form,Form.Methods);Form.Element={focus:function(element){$(element).focus();return element},select:function(element){$(element).select();return element}};Form.Element.Methods={serialize:function(element){element=$(element);if(!element.disabled&&element.name){var value=element.getValue();if(value!=undefined){var pair={};pair[element.name]=value;return Hash.toQueryString(pair)}}return''},getValue:function(element){element=$(element);var method=element.tagName.toLowerCase();return Form.Element.Serializers[method](element)},clear:function(element){$(element).value='';return element},present:function(element){return $(element).value!=''},activate:function(element){element=$(element);element.focus();if(element.select&&(element.tagName.toLowerCase()!='input'||!['button','reset','submit'].include(element.type))){element.select()}return element},disable:function(element){element=$(element);element.disabled=true;return element},enable:function(element){element=$(element);element.blur();element.disabled=false;return element}};Object.extend(Form.Element,Form.Element.Methods);var Field=Form.Element;var $F=Form.Element.getValue;Form.Element.Serializers={input:function(element){switch(element.type.toLowerCase()){case'checkbox':case'radio':return Form.Element.Serializers.inputSelector(element);default:return Form.Element.Serializers.textarea(element)}},inputSelector:function(element){return element.checked?element.value:null},textarea:function(element){return element.value},select:function(element){return this[element.type=='select-one'?'selectOne':'selectMany'](element)},selectOne:function(element){var index=element.selectedIndex;return index>=0?this.optionValue(element.options[index]):null},selectMany:function(element){var values,length=element.length;if(!length)return null;for(var i=0,values=[];i<length;i++){var opt=element.options[i];if(opt.selected)values.push(this.optionValue(opt))}return values},optionValue:function(opt){return Element.extend(opt).hasAttribute('value')?opt.value:opt.text}};Abstract.TimedObserver=function(){};Abstract.TimedObserver.prototype={initialize:function(element,frequency,callback){this.frequency=frequency;this.element=$(element);this.callback=callback;this.lastValue=this.getValue();this.registerCallback()},registerCallback:function(){setInterval(this.onTimerEvent.bind(this),this.frequency*1000)},onTimerEvent:function(){var value=this.getValue();var changed=('string'==typeof this.lastValue&&'string'==typeof value?this.lastValue!=value:String(this.lastValue)!=String(value));if(changed){this.callback(this.element,value);this.lastValue=value}}};Form.Element.Observer=Class.create();Form.Element.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{getValue:function(){return Form.Element.getValue(this.element)}});Form.Observer=Class.create();Form.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{getValue:function(){return Form.serialize(this.element)}});Abstract.EventObserver=function(){};Abstract.EventObserver.prototype={initialize:function(element,callback){this.element=$(element);this.callback=callback;this.lastValue=this.getValue();if(this.element.tagName.toLowerCase()=='form')this.registerFormCallbacks();else this.registerCallback(this.element)},onElementEvent:function(){var value=this.getValue();if(this.lastValue!=value){this.callback(this.element,value);this.lastValue=value}},registerFormCallbacks:function(){Form.getElements(this.element).each(this.registerCallback.bind(this))},registerCallback:function(element){if(element.type){switch(element.type.toLowerCase()){case'checkbox':case'radio':Event.observe(element,'click',this.onElementEvent.bind(this));break;default:Event.observe(element,'change',this.onElementEvent.bind(this));break}}}};Form.Element.EventObserver=Class.create();Form.Element.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{getValue:function(){return Form.Element.getValue(this.element)}});Form.EventObserver=Class.create();Form.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{getValue:function(){return Form.serialize(this.element)}});if(!window.Event){var Event=new Object()}Object.extend(Event,{KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,KEY_HOME:36,KEY_END:35,KEY_PAGEUP:33,KEY_PAGEDOWN:34,element:function(event){return event.target||event.srcElement},isLeftClick:function(event){return(((event.which)&&(event.which==1))||((event.button)&&(event.button==1)))},pointerX:function(event){return event.pageX||(event.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft))},pointerY:function(event){return event.pageY||(event.clientY+(document.documentElement.scrollTop||document.body.scrollTop))},stop:function(event){if(event.preventDefault){event.preventDefault();event.stopPropagation()}else{event.returnValue=false;event.cancelBubble=true}},findElement:function(event,tagName){var element=Event.element(event);while(element.parentNode&&(!element.tagName||(element.tagName.toUpperCase()!=tagName.toUpperCase())))element=element.parentNode;return element},observers:false,_observeAndCache:function(element,name,observer,useCapture){if(!this.observers)this.observers=[];if(element.addEventListener){this.observers.push([element,name,observer,useCapture]);element.addEventListener(name,observer,useCapture)}else if(element.attachEvent){this.observers.push([element,name,observer,useCapture]);element.attachEvent('on'+name,observer)}},unloadCache:function(){if(!Event.observers)return;for(var i=0,length=Event.observers.length;i<length;i++){Event.stopObserving.apply(this,Event.observers[i]);Event.observers[i][0]=null}Event.observers=false},observe:function(element,name,observer,useCapture){element=$(element);useCapture=useCapture||false;if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.attachEvent))name='keydown';Event._observeAndCache(element,name,observer,useCapture)},stopObserving:function(element,name,observer,useCapture){element=$(element);useCapture=useCapture||false;if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.detachEvent))name='keydown';if(element.removeEventListener){element.removeEventListener(name,observer,useCapture)}else if(element.detachEvent){try{element.detachEvent('on'+name,observer)}catch(e){}}}});if(navigator.appVersion.match(/\bMSIE\b/)){Event.observe(window,'unload',Event.unloadCache,false)}var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0},realOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.scrollTop||0;valueL+=element.scrollLeft||0;element=element.parentNode}while(element);return[valueL,valueT]},cumulativeOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent}while(element);return[valueL,valueT]},positionedOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;if(element){if(element.tagName=='BODY')break;var p=Element.getStyle(element,'position');if(p=='relative'||p=='absolute')break}}while(element);return[valueL,valueT]},offsetParent:function(element){if(element.offsetParent)return element.offsetParent;if(element==document.body)return element;while((element=element.parentNode)&&element!=document.body)if(Element.getStyle(element,'position')!='static')return element;return document.body},within:function(element,x,y){if(this.includeScrollOffsets)return this.withinIncludingScrolloffsets(element,x,y);this.xcomp=x;this.ycomp=y;this.offset=this.cumulativeOffset(element);return(y>=this.offset[1]&&y<this.offset[1]+element.offsetHeight&&x>=this.offset[0]&&x<this.offset[0]+element.offsetWidth)},withinIncludingScrolloffsets:function(element,x,y){var offsetcache=this.realOffset(element);this.xcomp=x+offsetcache[0]-this.deltaX;this.ycomp=y+offsetcache[1]-this.deltaY;this.offset=this.cumulativeOffset(element);return(this.ycomp>=this.offset[1]&&this.ycomp<this.offset[1]+element.offsetHeight&&this.xcomp>=this.offset[0]&&this.xcomp<this.offset[0]+element.offsetWidth)},overlap:function(mode,element){if(!mode)return 0;if(mode=='vertical')return((this.offset[1]+element.offsetHeight)-this.ycomp)/element.offsetHeight;if(mode=='horizontal')return((this.offset[0]+element.offsetWidth)-this.xcomp)/element.offsetWidth},page:function(forElement){var valueT=0,valueL=0;var element=forElement;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body)if(Element.getStyle(element,'position')=='absolute')break}while(element=element.offsetParent);element=forElement;do{if(!window.opera||element.tagName=='BODY'){valueT-=element.scrollTop||0;valueL-=element.scrollLeft||0}}while(element=element.parentNode);return[valueL,valueT]},clone:function(source,target){var options=Object.extend({setLeft:true,setTop:true,setWidth:true,setHeight:true,offsetTop:0,offsetLeft:0},arguments[2]||{});source=$(source);var p=Position.page(source);target=$(target);var delta=[0,0];var parent=null;if(Element.getStyle(target,'position')=='absolute'){parent=Position.offsetParent(target);delta=Position.page(parent)}if(parent==document.body){delta[0]-=document.body.offsetLeft;delta[1]-=document.body.offsetTop}if(options.setLeft)target.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';if(options.setTop)target.style.top=(p[1]-delta[1]+options.offsetTop)+'px';if(options.setWidth)target.style.width=source.offsetWidth+'px';if(options.setHeight)target.style.height=source.offsetHeight+'px'},absolutize:function(element){element=$(element);if(element.style.position=='absolute')return;Position.prepare();var offsets=Position.positionedOffset(element);var top=offsets[1];var left=offsets[0];var width=element.clientWidth;var height=element.clientHeight;element._originalLeft=left-parseFloat(element.style.left||0);element._originalTop=top-parseFloat(element.style.top||0);element._originalWidth=element.style.width;element._originalHeight=element.style.height;element.style.position='absolute';element.style.top=top+'px';element.style.left=left+'px';element.style.width=width+'px';element.style.height=height+'px'},relativize:function(element){element=$(element);if(element.style.position=='relative')return;Position.prepare();element.style.position='relative';var top=parseFloat(element.style.top||0)-(element._originalTop||0);var left=parseFloat(element.style.left||0)-(element._originalLeft||0);element.style.top=top+'px';element.style.left=left+'px';element.style.height=element._originalHeight;element.style.width=element._originalWidth}};if(/Konqueror|Safari|KHTML/.test(navigator.userAgent)){Position.cumulativeOffset=function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body)if(Element.getStyle(element,'position')=='absolute')break;element=element.offsetParent}while(element);return[valueL,valueT]}}Element.addMethods();
String.prototype.parseColor=function(){var color='#';if(this.slice(0,4)=='rgb('){var cols=this.slice(4,this.length-1).split(',');var i=0;do{color+=parseInt(cols[i]).toColorPart()}while(++i<3)}else{if(this.slice(0,1)=='#'){if(this.length==4)for(var i=1;i<4;i++)color+=(this.charAt(i)+this.charAt(i)).toLowerCase();if(this.length==7)color=this.toLowerCase()}}return(color.length==7?color:(arguments[0]||this))};Element.collectTextNodes=function(element){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:(node.hasChildNodes()?Element.collectTextNodes(node):''))}).flatten().join('')};Element.collectTextNodesIgnoreClass=function(element,className){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:((node.hasChildNodes()&&!Element.hasClassName(node,className))?Element.collectTextNodesIgnoreClass(node,className):''))}).flatten().join('')};Element.setContentZoom=function(element,percent){element=$(element);element.setStyle({fontSize:(percent/100)+'em'});if(navigator.appVersion.indexOf('AppleWebKit')>0)window.scrollBy(0,0);return element};Element.getOpacity=function(element){return $(element).getStyle('opacity')};Element.setOpacity=function(element,value){return $(element).setStyle({opacity:value})};Element.getInlineOpacity=function(element){return $(element).style.opacity||''};Element.forceRerendering=function(element){try{element=$(element);var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n)}catch(e){}};Array.prototype.call=function(){var args=arguments;this.each(function(f){f.apply(this,args)})};var Effect={_elementDoesNotExistError:{name:'ElementDoesNotExistError',message:'The specified DOM element does not exist, but is required for this effect to operate'},tagifyText:function(element){if(typeof Builder=='undefined')throw("Effect.tagifyText requires including script.aculo.us' builder.js library");var tagifyStyle='position:relative';if(/MSIE/.test(navigator.userAgent)&&!window.opera)tagifyStyle+=';zoom:1';element=$(element);$A(element.childNodes).each(function(child){if(child.nodeType==3){child.nodeValue.toArray().each(function(character){element.insertBefore(Builder.node('span',{style:tagifyStyle},character==' '?String.fromCharCode(160):character),child)});Element.remove(child)}})},multiple:function(element,effect){var elements;if(((typeof element=='object')||(typeof element=='function'))&&(element.length))elements=element;else elements=$(element).childNodes;var options=Object.extend({speed:0.1,delay:0.0},arguments[2]||{});var masterDelay=options.delay;$A(elements).each(function(element,index){new effect(element,Object.extend(options,{delay:index*options.speed+masterDelay}))})},PAIRS:{'slide':['SlideDown','SlideUp'],'blind':['BlindDown','BlindUp'],'appear':['Appear','Fade']},toggle:function(element,effect){element=$(element);effect=(effect||'appear').toLowerCase();var options=Object.extend({queue:{position:'end',scope:(element.id||'global'),limit:1}},arguments[2]||{});Effect[element.visible()?Effect.PAIRS[effect][1]:Effect.PAIRS[effect][0]](element,options)}};var Effect2=Effect;Effect.Transitions={linear:Prototype.K,sinoidal:function(pos){return(-Math.cos(pos*Math.PI)/2)+0.5},reverse:function(pos){return 1-pos},flicker:function(pos){return((-Math.cos(pos*Math.PI)/4)+0.75)+Math.random()/4},wobble:function(pos){return(-Math.cos(pos*Math.PI*(9*pos))/2)+0.5},pulse:function(pos,pulses){pulses=pulses||5;return(Math.round((pos%(1/pulses))*pulses)==0?((pos*pulses*2)-Math.floor(pos*pulses*2)):1-((pos*pulses*2)-Math.floor(pos*pulses*2)))},none:function(pos){return 0},full:function(pos){return 1}};Effect.ScopedQueue=Class.create();Object.extend(Object.extend(Effect.ScopedQueue.prototype,Enumerable),{initialize:function(){this.effects=[];this.interval=null},_each:function(iterator){this.effects._each(iterator)},add:function(effect){var timestamp=new Date().getTime();var position=(typeof effect.options.queue=='string')?effect.options.queue:effect.options.queue.position;switch(position){case'front':this.effects.findAll(function(e){return e.state=='idle'}).each(function(e){e.startOn+=effect.finishOn;e.finishOn+=effect.finishOn});break;case'with-last':timestamp=this.effects.pluck('startOn').max()||timestamp;break;case'end':timestamp=this.effects.pluck('finishOn').max()||timestamp;break}effect.startOn+=timestamp;effect.finishOn+=timestamp;if(!effect.options.queue.limit||(this.effects.length<effect.options.queue.limit))this.effects.push(effect);if(!this.interval)this.interval=setInterval(this.loop.bind(this),15)},remove:function(effect){this.effects=this.effects.reject(function(e){return e==effect});if(this.effects.length==0){clearInterval(this.interval);this.interval=null}},loop:function(){var timePos=new Date().getTime();for(var i=0,len=this.effects.length;i<len;i++)if(this.effects[i])this.effects[i].loop(timePos)}});Effect.Queues={instances:$H(),get:function(queueName){if(typeof queueName!='string')return queueName;if(!this.instances[queueName])this.instances[queueName]=new Effect.ScopedQueue();return this.instances[queueName]}};Effect.Queue=Effect.Queues.get('global');Effect.DefaultOptions={transition:Effect.Transitions.sinoidal,duration:1.0,fps:60.0,sync:false,from:0.0,to:1.0,delay:0.0,queue:'parallel'};Effect.Base=function(){};Effect.Base.prototype={position:null,start:function(options){this.options=Object.extend(Object.extend({},Effect.DefaultOptions),options||{});this.currentFrame=0;this.state='idle';this.startOn=this.options.delay*1000;this.finishOn=this.startOn+(this.options.duration*1000);this.event('beforeStart');if(!this.options.sync)Effect.Queues.get(typeof this.options.queue=='string'?'global':this.options.queue.scope).add(this)},loop:function(timePos){if(timePos>=this.startOn){if(timePos>=this.finishOn){this.render(1.0);this.cancel();this.event('beforeFinish');if(this.finish)this.finish();this.event('afterFinish');return}var pos=(timePos-this.startOn)/(this.finishOn-this.startOn);var frame=Math.round(pos*this.options.fps*this.options.duration);if(frame>this.currentFrame){this.render(pos);this.currentFrame=frame}}},render:function(pos){if(this.state=='idle'){this.state='running';this.event('beforeSetup');if(this.setup)this.setup();this.event('afterSetup')}if(this.state=='running'){if(this.options.transition)pos=this.options.transition(pos);pos*=(this.options.to-this.options.from);pos+=this.options.from;this.position=pos;this.event('beforeUpdate');if(this.update)this.update(pos);this.event('afterUpdate')}},cancel:function(){if(!this.options.sync)Effect.Queues.get(typeof this.options.queue=='string'?'global':this.options.queue.scope).remove(this);this.state='finished'},event:function(eventName){if(this.options[eventName+'Internal'])this.options[eventName+'Internal'](this);if(this.options[eventName])this.options[eventName](this)},inspect:function(){var data=$H();for(property in this)if(typeof this[property]!='function')data[property]=this[property];return'#<Effect:'+data.inspect()+',options:'+$H(this.options).inspect()+'>'}};Effect.Parallel=Class.create();Object.extend(Object.extend(Effect.Parallel.prototype,Effect.Base.prototype),{initialize:function(effects){this.effects=effects||[];this.start(arguments[1])},update:function(position){this.effects.invoke('render',position)},finish:function(position){this.effects.each(function(effect){effect.render(1.0);effect.cancel();effect.event('beforeFinish');if(effect.finish)effect.finish(position);effect.event('afterFinish')})}});Effect.Event=Class.create();Object.extend(Object.extend(Effect.Event.prototype,Effect.Base.prototype),{initialize:function(){var options=Object.extend({duration:0},arguments[0]||{});this.start(options)},update:Prototype.emptyFunction});Effect.Opacity=Class.create();Object.extend(Object.extend(Effect.Opacity.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);if(/MSIE/.test(navigator.userAgent)&&!window.opera&&(!this.element.currentStyle.hasLayout))this.element.setStyle({zoom:1});var options=Object.extend({from:this.element.getOpacity()||0.0,to:1.0},arguments[1]||{});this.start(options)},update:function(position){this.element.setOpacity(position)}});Effect.Move=Class.create();Object.extend(Object.extend(Effect.Move.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({x:0,y:0,mode:'relative'},arguments[1]||{});this.start(options)},setup:function(){this.element.makePositioned();this.originalLeft=parseFloat(this.element.getStyle('left')||'0');this.originalTop=parseFloat(this.element.getStyle('top')||'0');if(this.options.mode=='absolute'){this.options.x=this.options.x-this.originalLeft;this.options.y=this.options.y-this.originalTop}},update:function(position){this.element.setStyle({left:Math.round(this.options.x*position+this.originalLeft)+'px',top:Math.round(this.options.y*position+this.originalTop)+'px'})}});Effect.MoveBy=function(element,toTop,toLeft){return new Effect.Move(element,Object.extend({x:toLeft,y:toTop},arguments[3]||{}))};Effect.Scale=Class.create();Object.extend(Object.extend(Effect.Scale.prototype,Effect.Base.prototype),{initialize:function(element,percent){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({scaleX:true,scaleY:true,scaleContent:true,scaleFromCenter:false,scaleMode:'box',scaleFrom:100.0,scaleTo:percent},arguments[2]||{});this.start(options)},setup:function(){this.restoreAfterFinish=this.options.restoreAfterFinish||false;this.elementPositioning=this.element.getStyle('position');this.originalStyle={};['top','left','width','height','fontSize'].each(function(k){this.originalStyle[k]=this.element.style[k]}.bind(this));this.originalTop=this.element.offsetTop;this.originalLeft=this.element.offsetLeft;var fontSize=this.element.getStyle('font-size')||'100%';['em','px','%','pt'].each(function(fontSizeType){if(fontSize.indexOf(fontSizeType)>0){this.fontSize=parseFloat(fontSize);this.fontSizeType=fontSizeType}}.bind(this));this.factor=(this.options.scaleTo-this.options.scaleFrom)/100;this.dims=null;if(this.options.scaleMode=='box')this.dims=[this.element.offsetHeight,this.element.offsetWidth];if(/^content/.test(this.options.scaleMode))this.dims=[this.element.scrollHeight,this.element.scrollWidth];if(!this.dims)this.dims=[this.options.scaleMode.originalHeight,this.options.scaleMode.originalWidth]},update:function(position){var currentScale=(this.options.scaleFrom/100.0)+(this.factor*position);if(this.options.scaleContent&&this.fontSize)this.element.setStyle({fontSize:this.fontSize*currentScale+this.fontSizeType});this.setDimensions(this.dims[0]*currentScale,this.dims[1]*currentScale)},finish:function(position){if(this.restoreAfterFinish)this.element.setStyle(this.originalStyle)},setDimensions:function(height,width){var d={};if(this.options.scaleX)d.width=Math.round(width)+'px';if(this.options.scaleY)d.height=Math.round(height)+'px';if(this.options.scaleFromCenter){var topd=(height-this.dims[0])/2;var leftd=(width-this.dims[1])/2;if(this.elementPositioning=='absolute'){if(this.options.scaleY)d.top=this.originalTop-topd+'px';if(this.options.scaleX)d.left=this.originalLeft-leftd+'px'}else{if(this.options.scaleY)d.top=-topd+'px';if(this.options.scaleX)d.left=-leftd+'px'}}this.element.setStyle(d)}});Effect.Highlight=Class.create();Object.extend(Object.extend(Effect.Highlight.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});this.start(options)},setup:function(){if(this.element.getStyle('display')=='none'){this.cancel();return}this.oldStyle={};if(!this.options.keepBackgroundImage){this.oldStyle.backgroundImage=this.element.getStyle('background-image');this.element.setStyle({backgroundImage:'none'})}if(!this.options.endcolor)this.options.endcolor=this.element.getStyle('background-color').parseColor('#ffffff');if(!this.options.restorecolor)this.options.restorecolor=this.element.getStyle('background-color');this._base=$R(0,2).map(function(i){return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16)}.bind(this));this._delta=$R(0,2).map(function(i){return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i]}.bind(this))},update:function(position){this.element.setStyle({backgroundColor:$R(0,2).inject('#',function(m,v,i){return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart())}.bind(this))})},finish:function(){this.element.setStyle(Object.extend(this.oldStyle,{backgroundColor:this.options.restorecolor}))}});Effect.ScrollTo=Class.create();Object.extend(Object.extend(Effect.ScrollTo.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);this.start(arguments[1]||{})},setup:function(){Position.prepare();var offsets=Position.cumulativeOffset(this.element);if(this.options.offset)offsets[1]+=this.options.offset;var max=window.innerHeight?window.height-window.innerHeight:document.body.scrollHeight-(document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight);this.scrollStart=Position.deltaY;this.delta=(offsets[1]>max?max:offsets[1])-this.scrollStart},update:function(position){Position.prepare();window.scrollTo(Position.deltaX,this.scrollStart+(position*this.delta))}});Effect.Fade=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();var options=Object.extend({from:element.getOpacity()||1.0,to:0.0,afterFinishInternal:function(effect){if(effect.options.to!=0)return;effect.element.hide().setStyle({opacity:oldOpacity})}},arguments[1]||{});return new Effect.Opacity(element,options)};Effect.Appear=function(element){element=$(element);var options=Object.extend({from:(element.getStyle('display')=='none'?0.0:element.getOpacity()||0.0),to:1.0,afterFinishInternal:function(effect){effect.element.forceRerendering()},beforeSetup:function(effect){effect.element.setOpacity(effect.options.from).show()}},arguments[1]||{});return new Effect.Opacity(element,options)};Effect.Puff=function(element){element=$(element);var oldStyle={opacity:element.getInlineOpacity(),position:element.getStyle('position'),top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};return new Effect.Parallel([new Effect.Scale(element,200,{sync:true,scaleFromCenter:true,scaleContent:true,restoreAfterFinish:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:1.0,beforeSetupInternal:function(effect){Position.absolutize(effect.effects[0].element)},afterFinishInternal:function(effect){effect.effects[0].element.hide().setStyle(oldStyle)}},arguments[1]||{}))};Effect.BlindUp=function(element){element=$(element);element.makeClipping();return new Effect.Scale(element,1,Object.extend({scaleContent:false,scaleX:false,restoreAfterFinish:true,afterFinishInternal:function(effect){effect.element.hide().undoClipping()}},arguments[1]||{}))};Effect.BlindDown=function(element){element=$(element);var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:0,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makeClipping().setStyle({height:'0px'}).show()},afterFinishInternal:function(effect){effect.element.undoClipping()}},arguments[1]||{}))};Effect.SwitchOff=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();return new Effect.Appear(element,Object.extend({duration:0.4,from:0,transition:Effect.Transitions.flicker,afterFinishInternal:function(effect){new Effect.Scale(effect.element,1,{duration:0.3,scaleFromCenter:true,scaleX:false,scaleContent:false,restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makePositioned().makeClipping()},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned().setStyle({opacity:oldOpacity})}})}},arguments[1]||{}))};Effect.DropOut=function(element){element=$(element);var oldStyle={top:element.getStyle('top'),left:element.getStyle('left'),opacity:element.getInlineOpacity()};return new Effect.Parallel([new Effect.Move(element,{x:0,y:100,sync:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:0.5,beforeSetup:function(effect){effect.effects[0].element.makePositioned()},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle)}},arguments[1]||{}))};Effect.Shake=function(element){element=$(element);var oldStyle={top:element.getStyle('top'),left:element.getStyle('left')};return new Effect.Move(element,{x:20,y:0,duration:0.05,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-20,y:0,duration:0.05,afterFinishInternal:function(effect){effect.element.undoPositioned().setStyle(oldStyle)}})}})}})}})}})}})};Effect.SlideDown=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:window.opera?0:1,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().setStyle({height:'0px'}).show()},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'})},afterFinishInternal:function(effect){effect.element.undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom})}},arguments[1]||{}))};Effect.SlideUp=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');return new Effect.Scale(element,window.opera?0:1,Object.extend({scaleContent:false,scaleX:false,scaleMode:'box',scaleFrom:100,restoreAfterFinish:true,beforeStartInternal:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().show()},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'})},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned().setStyle({bottom:oldInnerBottom});effect.element.down().undoPositioned()}},arguments[1]||{}))};Effect.Squish=function(element){return new Effect.Scale(element,window.opera?1:0,{restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makeClipping()},afterFinishInternal:function(effect){effect.element.hide().undoClipping()}})};Effect.Grow=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.full},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var initialMoveX,initialMoveY;var moveX,moveY;switch(options.direction){case'top-left':initialMoveX=initialMoveY=moveX=moveY=0;break;case'top-right':initialMoveX=dims.width;initialMoveY=moveY=0;moveX=-dims.width;break;case'bottom-left':initialMoveX=moveX=0;initialMoveY=dims.height;moveY=-dims.height;break;case'bottom-right':initialMoveX=dims.width;initialMoveY=dims.height;moveX=-dims.width;moveY=-dims.height;break;case'center':initialMoveX=dims.width/2;initialMoveY=dims.height/2;moveX=-dims.width/2;moveY=-dims.height/2;break}return new Effect.Move(element,{x:initialMoveX,y:initialMoveY,duration:0.01,beforeSetup:function(effect){effect.element.hide().makeClipping().makePositioned()},afterFinishInternal:function(effect){new Effect.Parallel([new Effect.Opacity(effect.element,{sync:true,to:1.0,from:0.0,transition:options.opacityTransition}),new Effect.Move(effect.element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition}),new Effect.Scale(effect.element,100,{scaleMode:{originalHeight:dims.height,originalWidth:dims.width},sync:true,scaleFrom:window.opera?1:0,transition:options.scaleTransition,restoreAfterFinish:true})],Object.extend({beforeSetup:function(effect){effect.effects[0].element.setStyle({height:'0px'}).show()},afterFinishInternal:function(effect){effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle)}},options))}})};Effect.Shrink=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.none},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var moveX,moveY;switch(options.direction){case'top-left':moveX=moveY=0;break;case'top-right':moveX=dims.width;moveY=0;break;case'bottom-left':moveX=0;moveY=dims.height;break;case'bottom-right':moveX=dims.width;moveY=dims.height;break;case'center':moveX=dims.width/2;moveY=dims.height/2;break}return new Effect.Parallel([new Effect.Opacity(element,{sync:true,to:0.0,from:1.0,transition:options.opacityTransition}),new Effect.Scale(element,window.opera?1:0,{sync:true,transition:options.scaleTransition,restoreAfterFinish:true}),new Effect.Move(element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition})],Object.extend({beforeStartInternal:function(effect){effect.effects[0].element.makePositioned().makeClipping()},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle)}},options))};Effect.Pulsate=function(element){element=$(element);var options=arguments[1]||{};var oldOpacity=element.getInlineOpacity();var transition=options.transition||Effect.Transitions.sinoidal;var reverser=function(pos){return transition(1-Effect.Transitions.pulse(pos,options.pulses))};reverser.bind(transition);return new Effect.Opacity(element,Object.extend(Object.extend({duration:2.0,from:0,afterFinishInternal:function(effect){effect.element.setStyle({opacity:oldOpacity})}},options),{transition:reverser}))};Effect.Fold=function(element){element=$(element);var oldStyle={top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};element.makeClipping();return new Effect.Scale(element,5,Object.extend({scaleContent:false,scaleX:false,afterFinishInternal:function(effect){new Effect.Scale(element,1,{scaleContent:false,scaleY:false,afterFinishInternal:function(effect){effect.element.hide().undoClipping().setStyle(oldStyle)}})}},arguments[1]||{}))};Effect.Morph=Class.create();Object.extend(Object.extend(Effect.Morph.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({style:{}},arguments[1]||{});if(typeof options.style=='string'){if(options.style.indexOf(':')==-1){var cssText='',selector='.'+options.style;$A(document.styleSheets).reverse().each(function(styleSheet){if(styleSheet.cssRules)cssRules=styleSheet.cssRules;else if(styleSheet.rules)cssRules=styleSheet.rules;$A(cssRules).reverse().each(function(rule){if(selector==rule.selectorText){cssText=rule.style.cssText;throw $break}});if(cssText)throw $break});this.style=cssText.parseStyle();options.afterFinishInternal=function(effect){effect.element.addClassName(effect.options.style);effect.transforms.each(function(transform){if(transform.style!='opacity')effect.element.style[transform.style.camelize()]=''})}}else this.style=options.style.parseStyle()}else this.style=$H(options.style);this.start(options)},setup:function(){function parseColor(color){if(!color||['rgba(0, 0, 0, 0)','transparent'].include(color))color='#ffffff';color=color.parseColor();return $R(0,2).map(function(i){return parseInt(color.slice(i*2+1,i*2+3),16)})};this.transforms=this.style.map(function(pair){var property=pair[0].underscore().dasherize(),value=pair[1],unit=null;if(value.parseColor('#zzzzzz')!='#zzzzzz'){value=value.parseColor();unit='color'}else if(property=='opacity'){value=parseFloat(value);if(/MSIE/.test(navigator.userAgent)&&!window.opera&&(!this.element.currentStyle.hasLayout))this.element.setStyle({zoom:1})}else if(Element.CSS_LENGTH.test(value))var components=value.match(/^([\+\-]?[0-9\.]+)(.*)$/),value=parseFloat(components[1]),unit=(components.length==3)?components[2]:null;var originalValue=this.element.getStyle(property);return $H({style:property,originalValue:unit=='color'?parseColor(originalValue):parseFloat(originalValue||0),targetValue:unit=='color'?parseColor(value):value,unit:unit})}.bind(this)).reject(function(transform){return((transform.originalValue==transform.targetValue)||(transform.unit!='color'&&(isNaN(transform.originalValue)||isNaN(transform.targetValue))))})},update:function(position){var style=$H(),value=null;this.transforms.each(function(transform){value=transform.unit=='color'?$R(0,2).inject('#',function(m,v,i){return m+(Math.round(transform.originalValue[i]+(transform.targetValue[i]-transform.originalValue[i])*position)).toColorPart()}):transform.originalValue+Math.round(((transform.targetValue-transform.originalValue)*position)*1000)/1000+transform.unit;style[transform.style]=value});this.element.setStyle(style)}});Effect.Transform=Class.create();Object.extend(Effect.Transform.prototype,{initialize:function(tracks){this.tracks=[];this.options=arguments[1]||{};this.addTracks(tracks)},addTracks:function(tracks){tracks.each(function(track){var data=$H(track).values().first();this.tracks.push($H({ids:$H(track).keys().first(),effect:Effect.Morph,options:{style:data}}))}.bind(this));return this},play:function(){return new Effect.Parallel(this.tracks.map(function(track){var elements=[$(track.ids)||$$(track.ids)].flatten();return elements.map(function(e){return new track.effect(e,Object.extend({sync:true},track.options))})}).flatten(),this.options)}});Element.CSS_PROPERTIES=$w('backgroundColor backgroundPosition borderBottomColor borderBottomStyle '+'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth '+'borderRightColor borderRightStyle borderRightWidth borderSpacing '+'borderTopColor borderTopStyle borderTopWidth bottom clip color '+'fontSize fontWeight height left letterSpacing lineHeight '+'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+'maxWidth minHeight minWidth opacity outlineColor outlineOffset '+'outlineWidth paddingBottom paddingLeft paddingRight paddingTop '+'right textIndent top width wordSpacing zIndex');Element.CSS_LENGTH=/^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;String.prototype.parseStyle=function(){var element=Element.extend(document.createElement('div'));element.innerHTML='<div style="'+this+'"></div>';var style=element.down().style,styleRules=$H();Element.CSS_PROPERTIES.each(function(property){if(style[property])styleRules[property]=style[property]});if(/MSIE/.test(navigator.userAgent)&&!window.opera&&this.indexOf('opacity')>-1){styleRules.opacity=this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]}return styleRules};Element.morph=function(element,style){new Effect.Morph(element,Object.extend({style:style},arguments[2]||{}));return element};['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom','collectTextNodes','collectTextNodesIgnoreClass','morph'].each(function(f){Element.Methods[f]=Element[f]});Element.Methods.visualEffect=function(element,effect,options){s=effect.gsub(/_/,'-').camelize();effect_class=s.charAt(0).toUpperCase()+s.substring(1);new Effect[effect_class](element,options);return $(element)};Element.addMethods();
var fileLoadingImage="/images/lightbox/loading.gif";var fileBottomNavCloseImage="/images/lightbox/close.gif";var overlayOpacity=0.8;var animate=true;var resizeSpeed=7;var borderSize=10;var imageArray=new Array;var activeImage,resizeDuration,overlayDuration;if(animate==true){overlayDuration=0.2;if(resizeSpeed>10){resizeSpeed=10}if(resizeSpeed<1){resizeSpeed=1}resizeDuration=(11-resizeSpeed)*0.15}else{overlayDuration=0;resizeDuration=0}Object.extend(Element,{getWidth:function(element){element=$(element);return element.offsetWidth},setWidth:function(element,w){element=$(element);element.style.width=w+"px"},setHeight:function(element,h){element=$(element);element.style.height=h+"px"},setTop:function(element,t){element=$(element);element.style.top=t+"px"},setLeft:function(element,l){element=$(element);element.style.left=l+"px"},setSrc:function(element,src){element=$(element);element.src=src},setHref:function(element,href){element=$(element);element.href=href},setInnerHTML:function(element,content){element=$(element);element.innerHTML=content},getInnerHTML:function(element){element=$(element);return element.innerHTML}});Array.prototype.removeDuplicates=function(){for(i=0;i<this.length;i++){for(j=this.length-1;j>i;j--){if(this[i][0]==this[j][0]){this.splice(j,1)}}}};Array.prototype.empty=function(){for(i=0;i<=this.length;i++){this.shift()}};var Lightbox=Class.create();Lightbox.prototype={initialize:function(){this.updateImageList();var objBody=document.getElementsByTagName("body").item(0);var objOverlay=document.createElement("div");objOverlay.setAttribute('id','overlay');objOverlay.style.display='none';objOverlay.onclick=function(){myLightbox.end()};objBody.appendChild(objOverlay);var objLightbox=document.createElement("div");objLightbox.setAttribute('id','lightbox');objLightbox.style.display='none';objLightbox.onclick=function(e){if(!e)var e=window.event;var clickObj=Event.element(e).id;if(clickObj=='lightbox'){myLightbox.end()}};objBody.appendChild(objLightbox);var objOuterImageContainer=document.createElement("div");objOuterImageContainer.setAttribute('id','outerImageContainer');objLightbox.appendChild(objOuterImageContainer);if(animate){Element.setWidth('outerImageContainer',250);Element.setHeight('outerImageContainer',250)}else{Element.setWidth('outerImageContainer',1);Element.setHeight('outerImageContainer',1)}var objImageContainer=document.createElement("div");objImageContainer.setAttribute('id','imageContainer');objOuterImageContainer.appendChild(objImageContainer);var objLightboxImage=document.createElement("img");objLightboxImage.setAttribute('id','lightboxImage');objImageContainer.appendChild(objLightboxImage);var objHoverNav=document.createElement("div");objHoverNav.setAttribute('id','hoverNav');objImageContainer.appendChild(objHoverNav);var objPrevLink=document.createElement("a");objPrevLink.setAttribute('id','prevLink');objPrevLink.setAttribute('href','#');objHoverNav.appendChild(objPrevLink);var objNextLink=document.createElement("a");objNextLink.setAttribute('id','nextLink');objNextLink.setAttribute('href','#');objHoverNav.appendChild(objNextLink);var objLoading=document.createElement("div");objLoading.setAttribute('id','loading');objImageContainer.appendChild(objLoading);var objLoadingLink=document.createElement("a");objLoadingLink.setAttribute('id','loadingLink');objLoadingLink.setAttribute('href','#');objLoadingLink.onclick=function(){myLightbox.end();return false};objLoading.appendChild(objLoadingLink);var objLoadingImage=document.createElement("img");objLoadingImage.setAttribute('src',fileLoadingImage);objLoadingLink.appendChild(objLoadingImage);var objImageDataContainer=document.createElement("div");objImageDataContainer.setAttribute('id','imageDataContainer');objLightbox.appendChild(objImageDataContainer);var objImageData=document.createElement("div");objImageData.setAttribute('id','imageData');objImageDataContainer.appendChild(objImageData);var objImageDetails=document.createElement("div");objImageDetails.setAttribute('id','imageDetails');objImageData.appendChild(objImageDetails);var objCaption=document.createElement("span");objCaption.setAttribute('id','caption');objImageDetails.appendChild(objCaption);var objNumberDisplay=document.createElement("span");objNumberDisplay.setAttribute('id','numberDisplay');objImageDetails.appendChild(objNumberDisplay);var objBottomNav=document.createElement("div");objBottomNav.setAttribute('id','bottomNav');objImageData.appendChild(objBottomNav);var objBottomNavCloseLink=document.createElement("a");objBottomNavCloseLink.setAttribute('id','bottomNavClose');objBottomNavCloseLink.setAttribute('href','#');objBottomNavCloseLink.onclick=function(){myLightbox.end();return false};objBottomNav.appendChild(objBottomNavCloseLink);var objBottomNavCloseImage=document.createElement("img");objBottomNavCloseImage.setAttribute('src',fileBottomNavCloseImage);objBottomNavCloseLink.appendChild(objBottomNavCloseImage)},updateImageList:function(){if(!document.getElementsByTagName){return};var anchors=document.getElementsByTagName('a');var areas=document.getElementsByTagName('area');for(var i=0;i<anchors.length;i++){var anchor=anchors[i];var relAttribute=String(anchor.getAttribute('rel'));if(anchor.getAttribute('href')&&(relAttribute.toLowerCase().match('lightbox'))){anchor.onclick=function(){myLightbox.start(this);return false}}}for(var i=0;i<areas.length;i++){var area=areas[i];var relAttribute=String(area.getAttribute('rel'));if(area.getAttribute('href')&&(relAttribute.toLowerCase().match('lightbox'))){area.onclick=function(){myLightbox.start(this);return false}}}},start:function(imageLink){hideSelectBoxes();hideFlash();var arrayPageSize=getPageSize();Element.setWidth('overlay',arrayPageSize[0]);Element.setHeight('overlay',arrayPageSize[1]);new Effect.Appear('overlay',{duration:overlayDuration,from:0.0,to:overlayOpacity});imageArray=[];imageNum=0;if(!document.getElementsByTagName){return}var anchors=document.getElementsByTagName(imageLink.tagName);if((imageLink.getAttribute('rel')=='lightbox')){imageArray.push(new Array(imageLink.getAttribute('href'),imageLink.getAttribute('title')))}else{for(var i=0;i<anchors.length;i++){var anchor=anchors[i];if(anchor.getAttribute('href')&&(anchor.getAttribute('rel')==imageLink.getAttribute('rel'))){imageArray.push(new Array(anchor.getAttribute('href'),anchor.getAttribute('title')))}}imageArray.removeDuplicates();while(imageArray[imageNum][0]!=imageLink.getAttribute('href')){imageNum++}}var arrayPageScroll=getPageScroll();var lightboxTop=arrayPageScroll[1]+(arrayPageSize[3]/10);var lightboxLeft=arrayPageScroll[0];Element.setTop('lightbox',lightboxTop);Element.setLeft('lightbox',lightboxLeft);Element.show('lightbox');this.changeImage(imageNum)},changeImage:function(imageNum){activeImage=imageNum;if(animate){Element.show('loading')}Element.hide('lightboxImage');Element.hide('hoverNav');Element.hide('prevLink');Element.hide('nextLink');Element.hide('imageDataContainer');Element.hide('numberDisplay');imgPreloader=new Image();imgPreloader.onload=function(){Element.setSrc('lightboxImage',imageArray[activeImage][0]);myLightbox.resizeImageContainer(imgPreloader.width,imgPreloader.height);imgPreloader.onload=function(){}};imgPreloader.src=imageArray[activeImage][0]},resizeImageContainer:function(imgWidth,imgHeight){this.widthCurrent=Element.getWidth('outerImageContainer');this.heightCurrent=Element.getHeight('outerImageContainer');var widthNew=(imgWidth+(borderSize*2));var heightNew=(imgHeight+(borderSize*2));this.xScale=(widthNew/this.widthCurrent)*100;this.yScale=(heightNew/this.heightCurrent)*100;wDiff=this.widthCurrent-widthNew;hDiff=this.heightCurrent-heightNew;if(!(hDiff==0)){new Effect.Scale('outerImageContainer',this.yScale,{scaleX:false,duration:resizeDuration,queue:'front'})}if(!(wDiff==0)){new Effect.Scale('outerImageContainer',this.xScale,{scaleY:false,delay:resizeDuration,duration:resizeDuration})}if((hDiff==0)&&(wDiff==0)){if(navigator.appVersion.indexOf("MSIE")!=-1){pause(250)}else{pause(100)}}Element.setHeight('prevLink',imgHeight);Element.setHeight('nextLink',imgHeight);Element.setWidth('imageDataContainer',widthNew);this.showImage()},showImage:function(){Element.hide('loading');new Effect.Appear('lightboxImage',{duration:resizeDuration,queue:'end',afterFinish:function(){myLightbox.updateDetails()}});this.preloadNeighborImages()},updateDetails:function(){if(imageArray[activeImage][1]){Element.show('caption');if(document.getElementById(imageArray[activeImage][1])!=null){Element.setInnerHTML('caption',Element.getInnerHTML(imageArray[activeImage][1]))}else{Element.setInnerHTML('caption',imageArray[activeImage][1])}}else{Element.hide('caption')}if(imageArray.length>1){Element.show('numberDisplay');Element.setInnerHTML('numberDisplay',eval(activeImage+1)+" / "+imageArray.length)}new Effect.Parallel([new Effect.SlideDown('imageDataContainer',{sync:true,duration:resizeDuration,from:0.0,to:1.0}),new Effect.Appear('imageDataContainer',{sync:true,duration:resizeDuration})],{duration:resizeDuration,afterFinish:function(){var arrayPageSize=getPageSize();Element.setHeight('overlay',arrayPageSize[1]);myLightbox.updateNav()}})},updateNav:function(){Element.show('hoverNav');if(activeImage!=0){Element.show('prevLink');document.getElementById('prevLink').onclick=function(){myLightbox.changeImage(activeImage-1);return false}}if(activeImage!=(imageArray.length-1)){Element.show('nextLink');document.getElementById('nextLink').onclick=function(){myLightbox.changeImage(activeImage+1);return false}}this.enableKeyboardNav()},enableKeyboardNav:function(){document.onkeydown=this.keyboardAction},disableKeyboardNav:function(){document.onkeydown=''},keyboardAction:function(e){if(e==null){keycode=event.keyCode;escapeKey=27}else{keycode=e.keyCode;escapeKey=e.DOM_VK_ESCAPE}key=String.fromCharCode(keycode).toLowerCase();if((key=='x')||(key=='o')||(key=='c')||(keycode==escapeKey)){myLightbox.end()}else if((key=='p')||(keycode==37)){if(activeImage!=0){myLightbox.disableKeyboardNav();myLightbox.changeImage(activeImage-1)}}else if((key=='n')||(keycode==39)){if(activeImage!=(imageArray.length-1)){myLightbox.disableKeyboardNav();myLightbox.changeImage(activeImage+1)}}},preloadNeighborImages:function(){if((imageArray.length-1)>activeImage){preloadNextImage=new Image();preloadNextImage.src=imageArray[activeImage+1][0]}if(activeImage>0){preloadPrevImage=new Image();preloadPrevImage.src=imageArray[activeImage-1][0]}},end:function(){this.disableKeyboardNav();Element.hide('lightbox');new Effect.Fade('overlay',{duration:overlayDuration});showSelectBoxes();showFlash()}};function getPageScroll(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft}arrayPageScroll=new Array(xScroll,yScroll);return arrayPageScroll}function getPageSize(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight}var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth}else{windowWidth=self.innerWidth}windowHeight=self.innerHeight}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight}if(yScroll<windowHeight){pageHeight=windowHeight}else{pageHeight=yScroll}if(xScroll<windowWidth){pageWidth=xScroll}else{pageWidth=windowWidth}arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight);return arrayPageSize}function getKey(e){if(e==null){keycode=event.keyCode}else{keycode=e.which}key=String.fromCharCode(keycode).toLowerCase();if(key=='x'){}}function listenKey(){document.onkeypress=getKey}function showSelectBoxes(){var selects=document.getElementsByTagName("select");for(i=0;i!=selects.length;i++){selects[i].style.visibility="visible"}}function hideSelectBoxes(){var selects=document.getElementsByTagName("select");for(i=0;i!=selects.length;i++){selects[i].style.visibility="hidden"}}function showFlash(){var flashObjects=document.getElementsByTagName("object");for(i=0;i<flashObjects.length;i++){flashObjects[i].style.visibility="visible"}var flashEmbeds=document.getElementsByTagName("embed");for(i=0;i<flashEmbeds.length;i++){flashEmbeds[i].style.visibility="visible"}}function hideFlash(){var flashObjects=document.getElementsByTagName("object");for(i=0;i<flashObjects.length;i++){flashObjects[i].style.visibility="hidden"}var flashEmbeds=document.getElementsByTagName("embed");for(i=0;i<flashEmbeds.length;i++){flashEmbeds[i].style.visibility="hidden"}}function pause(ms){var date=new Date();curDate=null;do{var curDate=new Date()}while(curDate-date<ms)}var JsLightboxIsLoaded,myLightbox;function initLightbox(){myLightbox=new Lightbox();hideImageOverlays();JsLightboxIsLoaded=true}function onJsLightboxIsLoaded(sFunction){if((sFunction!='')&&(sFunction!=null)&&(JsLightboxIsLoaded!=true)){window.setTimeout('onJsLightboxIsLoaded("'+sFunction+'")',200)}if(JsLightboxIsLoaded){window.setTimeout(sFunction,20)}}function hideImageOverlays(){if(!document.getElementsByTagName){return}var divs=document.getElementsByTagName('div');for(var i=0;i<divs.length;i++){var div=divs[i];var relAttribute=String(div.getAttribute('rel'));if(relAttribute=='ImageOverlay'){div.style.display='none'}}}Event.observe(window,'load',initLightbox,false);
function IsFlashActive(){var flashVersion=0;var MIN_FLASH_VERSION=7;var ua=navigator.userAgent.toLowerCase();if(ua.indexOf('ie')>-1&&!(ua.indexOf('opera')>-1)){try{flashVersion=parseFloat(/([\d,?]+)/.exec(new ActiveXObject('ShockwaveFlash.ShockwaveFlash.7').GetVariable('$version'))[1].replace(/,/g,'.'))}catch(e){}}else if(navigator.plugins&&navigator.plugins['Shockwave Flash']){var flashPlugin=navigator.plugins['Shockwave Flash'];flashVersion=parseFloat(/(\d+\.?\d*)/.exec(flashPlugin.description)[1]);var i=0;while(flashVersion>=MIN_FLASH_VERSION&&i<navigator.mimeTypes.length){var mime=navigator.mimeTypes[i];if(mime.type=='application/x-shockwave-flash'&&!new RegExp('.*Shockwave\\sFlash\\s'+flashVersion+'.*').exec(mime.enabledPlugin.description)){flashVersion=0}i++}}return flashVersion>=MIN_FLASH_VERSION}function CreateFlashOnId(src,id,width,height,wmode,bgcolor,flashvars){var ua=navigator.userAgent.toLowerCase();if(IsFlashActive()||ua.indexOf('chrome')>-1){var sProtocol='http://';src=src.slice(0,src.lastIndexOf('.swf'));AC_FL_DomID=id;if(window.location.href.substring(0,8)=="https://"){sProtocol='https://'}AC_FL_RunContent('codebase',sProtocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width',width,'height',height,'src',src,'allowFullScreen','true','quality','high','flashvars',flashvars,'wmode',wmode,'bgcolor',bgcolor,'pluginspage',sProtocol+'www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash','movie',src);AC_FL_DomID=null}}function CreateFlash(src,width,height,wmode,bgcolor,flashvars){if(IsFlashActive()){src=src.slice(0,src.lastIndexOf('.swf'));AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width',width,'height',height,'src',src,'allowFullScreen','true','quality','high','flashvars',flashvars,'wmode',wmode,'bgcolor',bgcolor,'pluginspage','http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash','movie',src)}}var AC_FL_DomID=null;function AC_AddExtension(src,ext){if(src.indexOf('?')!=-1)return src.replace(/\?/,ext+'?');else return src+ext}function AC_Generateobj(objAttrs,params,embedAttrs){var str='<object ';for(var i in objAttrs)str+=i+'="'+objAttrs[i]+'" ';str+='>';for(var i in params)str+='<param name="'+i+'" value="'+params[i]+'" /> ';str+='<embed ';for(var i in embedAttrs)str+=i+'="'+embedAttrs[i]+'" ';str+=' ></embed></object>';if(AC_FL_DomID!=null){if(document.getElementById(AC_FL_DomID)!=null){document.getElementById(AC_FL_DomID).innerHTML=str}else{document.write(str)}}else{document.write(str)}}function AC_FL_RunContent(){var ret=AC_GetArgs(arguments,".swf","movie","clsid:d27cdb6e-ae6d-11cf-96b8-444553540000","application/x-shockwave-flash");AC_Generateobj(ret.objAttrs,ret.params,ret.embedAttrs)}function AC_SW_RunContent(){var ret=AC_GetArgs(arguments,".dcr","src","clsid:166B1BCA-3F9C-11CF-8075-444553540000",null);AC_Generateobj(ret.objAttrs,ret.params,ret.embedAttrs)}function AC_GetArgs(args,ext,srcParamName,classid,mimeType){var ret=new Object();ret.embedAttrs=new Object();ret.params=new Object();ret.objAttrs=new Object();for(var i=0;i<args.length;i=i+2){var currArg=args[i].toLowerCase();switch(currArg){case"classid":break;case"pluginspage":ret.embedAttrs[args[i]]=args[i+1];break;case"src":case"movie":args[i+1]=AC_AddExtension(args[i+1],ext);ret.embedAttrs["src"]=args[i+1];ret.params[srcParamName]=args[i+1];break;case"onafterupdate":case"onbeforeupdate":case"onblur":case"oncellchange":case"onclick":case"ondblClick":case"ondrag":case"ondragend":case"ondragenter":case"ondragleave":case"ondragover":case"ondrop":case"onfinish":case"onfocus":case"onhelp":case"onmousedown":case"onmouseup":case"onmouseover":case"onmousemove":case"onmouseout":case"onkeypress":case"onkeydown":case"onkeyup":case"onload":case"onlosecapture":case"onpropertychange":case"onreadystatechange":case"onrowsdelete":case"onrowenter":case"onrowexit":case"onrowsinserted":case"onstart":case"onscroll":case"onbeforeeditfocus":case"onactivate":case"onbeforedeactivate":case"ondeactivate":case"type":case"codebase":ret.objAttrs[args[i]]=args[i+1];break;case"width":case"height":case"align":case"vspace":case"hspace":case"class":case"title":case"accesskey":case"name":case"id":case"tabindex":ret.embedAttrs[args[i]]=ret.objAttrs[args[i]]=args[i+1];break;default:ret.embedAttrs[args[i]]=ret.params[args[i]]=args[i+1]}}ret.objAttrs["classid"]=classid;if(mimeType)ret.embedAttrs["type"]=mimeType;return ret}
function blurLinks(){if(navigator.userAgent.indexOf('Firefox')>0){var elements=document.getElementsByTagName('a');if(elements!=undefined){var i;for(i=0;i<elements.length;i++){elements[i].onfocus=function(){this.blur()}}}}}Event.observe(window,'load',blurLinks,false);
if(navigator.userAgent.indexOf('IE 6')>0){var DD_belatedPNG={ns:'DD_belatedPNG',imgSize:{},createVmlNameSpace:function(){if(document.namespaces&&!document.namespaces[this.ns]){document.namespaces.add(this.ns,'urn:schemas-microsoft-com:vml')}try{if(window.attachEvent){window.attachEvent('onbeforeunload',function(){DD_belatedPNG=null})}}catch(r){}},createVmlStyleSheet:function(){var style=document.createElement('style');document.documentElement.firstChild.insertBefore(style,document.documentElement.firstChild.firstChild);var styleSheet=style.styleSheet;styleSheet.addRule(this.ns+'\\:*','{behavior:url(#default#VML)}');styleSheet.addRule(this.ns+'\\:shape','position:absolute;');styleSheet.addRule('img.'+this.ns+'_sizeFinder','behavior:none; border:none; position:absolute; z-index:-1; top:-10000px; visibility:hidden;');this.styleSheet=styleSheet},readPropertyChange:function(){var el=event.srcElement;if(event.propertyName.search('background')!=-1||event.propertyName.search('border')!=-1){DD_belatedPNG.applyVML(el)}if(event.propertyName=='style.display'){var display=(el.currentStyle.display=='none')?'none':'block';for(var v in el.vml){el.vml[v].shape.style.display=display}}if(event.propertyName.search('filter')!=-1){DD_belatedPNG.vmlOpacity(el)}},vmlOpacity:function(el){if(el.currentStyle.filter.search('lpha')!=-1){var trans=el.currentStyle.filter;trans=parseInt(trans.substring(trans.lastIndexOf('=')+1,trans.lastIndexOf(')')),10)/100;el.vml.color.shape.style.filter=el.currentStyle.filter;el.vml.image.fill.opacity=trans}},handlePseudoHover:function(el){setTimeout(function(){DD_belatedPNG.applyVML(el)},1)},fix:function(selector){var selectors=selector.split(',');for(var i=0;i<selectors.length;i++){this.styleSheet.addRule(selectors[i],'behavior:expression(DD_belatedPNG.fixPng(this))')}},applyVML:function(el){el.runtimeStyle.cssText='';this.vmlFill(el);this.vmlOffsets(el);this.vmlOpacity(el);if(el.isImg){this.copyImageBorders(el)}},attachHandlers:function(el){var self=this;var handlers={resize:'vmlOffsets',move:'vmlOffsets'};if(el.nodeName=='A'){var moreForAs={mouseleave:'handlePseudoHover',mouseenter:'handlePseudoHover',focus:'handlePseudoHover',blur:'handlePseudoHover'};for(var a in moreForAs){handlers[a]=moreForAs[a]}}for(var h in handlers){el.attachEvent('on'+h,function(){self[handlers[h]](el)})}el.attachEvent('onpropertychange',this.readPropertyChange)},giveLayout:function(el){el.style.zoom=1;if(el.currentStyle.position=='static'){el.style.position='relative'}},copyImageBorders:function(el){var styles={'borderStyle':true,'borderWidth':true,'borderColor':true};for(var s in styles){el.vml.color.shape.style[s]=el.currentStyle[s]}},vmlFill:function(el){if(!el.currentStyle){return}else{var elStyle=el.currentStyle}for(var v in el.vml){el.vml[v].shape.style.zIndex=elStyle.zIndex}el.runtimeStyle.backgroundColor='';el.runtimeStyle.backgroundImage='';var noColor=(elStyle.backgroundColor=='transparent');var noImg=true;if(elStyle.backgroundImage!='none'||el.isImg){if(!el.isImg){el.vmlBg=elStyle.backgroundImage;el.vmlBg=el.vmlBg.substr(5,el.vmlBg.lastIndexOf('")')-5)}else{el.vmlBg=el.src}var lib=this;if(!lib.imgSize[el.vmlBg]){var img=document.createElement('img');lib.imgSize[el.vmlBg]=img;img.className=lib.ns+'_sizeFinder';img.runtimeStyle.cssText='behavior:none; position:absolute; left:-10000px; top:-10000px; border:none;';img.attachEvent('onload',function(){this.width=this.offsetWidth;this.height=this.offsetHeight;lib.vmlOffsets(el)});img.src=el.vmlBg;img.removeAttribute('width');img.removeAttribute('height');document.body.insertBefore(img,document.body.firstChild)}el.vml.image.fill.src=el.vmlBg;noImg=false}el.vml.image.fill.on=!noImg;el.vml.image.fill.color='none';el.vml.color.shape.style.backgroundColor=elStyle.backgroundColor;el.runtimeStyle.backgroundImage='none';el.runtimeStyle.backgroundColor='transparent'},vmlOffsets:function(el){var thisStyle=el.currentStyle;var size={'W':el.clientWidth+1,'H':el.clientHeight+1,'w':this.imgSize[el.vmlBg].width,'h':this.imgSize[el.vmlBg].height,'L':el.offsetLeft,'T':el.offsetTop,'bLW':el.clientLeft,'bTW':el.clientTop};var fudge=(size.L+size.bLW==1)?1:0;var makeVisible=function(vml,l,t,w,h,o){vml.coordsize=w+','+h;vml.coordorigin=o+','+o;vml.path='m0,0l'+w+',0l'+w+','+h+'l0,'+h+' xe';vml.style.width=w+'px';vml.style.height=h+'px';vml.style.left=l+'px';vml.style.top=t+'px'};makeVisible(el.vml.color.shape,(size.L+(el.isImg?0:size.bLW)),(size.T+(el.isImg?0:size.bTW)),(size.W-1),(size.H-1),0);makeVisible(el.vml.image.shape,(size.L+size.bLW),(size.T+size.bTW),(size.W),(size.H),1);var bg={'X':0,'Y':0};var figurePercentage=function(axis,position){var fraction=true;switch(position){case'left':case'top':bg[axis]=0;break;case'center':bg[axis]=.5;break;case'right':case'bottom':bg[axis]=1;break;default:if(position.search('%')!=-1){bg[axis]=parseInt(position)*.01}else{fraction=false}}var horz=(axis=='X');bg[axis]=Math.ceil(fraction?((size[horz?'W':'H']*bg[axis])-(size[horz?'w':'h']*bg[axis])):parseInt(position));if(bg[axis]==0){bg[axis]++}};for(var b in bg){figurePercentage(b,thisStyle['backgroundPosition'+b])}el.vml.image.fill.position=(bg.X/size.W)+','+(bg.Y/size.H);var bgR=thisStyle.backgroundRepeat;var dC={'T':1,'R':size.W+fudge,'B':size.H,'L':1+fudge};var altC={'X':{'b1':'L','b2':'R','d':'W'},'Y':{'b1':'T','b2':'B','d':'H'}};if(bgR!='repeat'){var c={'T':(bg.Y),'R':(bg.X+size.w),'B':(bg.Y+size.h),'L':(bg.X)};if(bgR.search('repeat-')!=-1){var v=bgR.split('repeat-')[1].toUpperCase();c[altC[v].b1]=1;c[altC[v].b2]=size[altC[v].d]}if(c.B>size.H){c.B=size.H}el.vml.image.shape.style.clip='rect('+c.T+'px '+(c.R+fudge)+'px '+c.B+'px '+(c.L+fudge)+'px)'}else{el.vml.image.shape.style.clip='rect('+dC.T+'px '+dC.R+'px '+dC.B+'px '+dC.L+'px)'}},fixPng:function(el){el.style.behavior='none';if(el.nodeName=='BODY'||el.nodeName=='TD'||el.nodeName=='TR'){return}el.isImg=false;if(el.nodeName=='IMG'){if(el.src.toLowerCase().search(/\.png$/)!=-1){el.isImg=true;el.style.visibility='hidden'}else{return}}else if(el.currentStyle.backgroundImage.toLowerCase().search('.png')==-1){return}var lib=DD_belatedPNG;el.vml={color:{},image:{}};var els={shape:{},fill:{}};for(var r in el.vml){for(var e in els){var nodeStr=lib.ns+':'+e;el.vml[r][e]=document.createElement(nodeStr)}el.vml[r].shape.stroked=false;el.vml[r].shape.appendChild(el.vml[r].fill);el.parentNode.insertBefore(el.vml[r].shape,el)}el.vml.image.shape.fillcolor='none';el.vml.image.fill.type='tile';el.vml.color.fill.on=false;lib.attachHandlers(el);lib.giveLayout(el);lib.giveLayout(el.offsetParent);lib.applyVML(el)}};try{document.execCommand("BackgroundImageCache",false,true)}catch(r){}DD_belatedPNG.createVmlNameSpace();DD_belatedPNG.createVmlStyleSheet()}
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments)};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn()){}};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false)}if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10)})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform()}catch(e){setTimeout(arguments.callee,1)}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener)}})(),root:function(){return document.documentElement||document.body}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value};this.convertFrom=function(value){return value/this.value*base};this.toString=function(){return this.value+this.unit}},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')'});return parsed}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/100;return{'ultra-condensed':0.5,'extra-condensed':0.625,condensed:0.75,'semi-condensed':0.875,'semi-expanded':1.125,expanded:1.25,'extra-expanded':1.5,'ultra-expanded':2}[value]||1}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style)},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]])}return gradient}),hasClass:function(el,className){return RegExp('(?:^|\\s)'+className+'(?=\\s|$)').test(el.className)},quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'))}catch(e){}container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word}else if(position<wordCount-1)word+=' ';return word},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false}if(foundAll)break;style=this.getStyle(search=search.parentNode)}return types},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0}else if(result[1]){currentShadow.color=result[1]}else{currentShadow[['offX','offY','blur'][offCount++]]=result[2]}}shadows.push(currentShadow);return shadows}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase()},lowercase:function(s){return s.toLowerCase()},capitalize:function(s){return s.replace(/\b./g,function($0){return $0.toUpperCase()})}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text}})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};return function(text,style,node){if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(/^\s+/,'');if(!node.nextSibling)text=text.replace(/\s+$/,'');return text}})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn()){}};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen')}function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search}}}}catch(e){}return true}function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false}for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false}return true}DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10)});return function(listener){if(complete)listener();else queue.push(listener)}})();function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ')};return box})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent}function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt)}if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1});return weights[alts[0]]}}function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16}function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this)}function onEnterLeave(e){trigger(this)}function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true)},10)}this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut)}else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave)}}}function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values}this.add=function(key,args){map[key]=list.push(args)-1};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true)}}function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at)}this.get=function(el){var id=identify(el);return map[id]||(map[id]={})}}function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property]}return this};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property]};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base))};this.isUsable=function(){return!!style}}function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false)}else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event)})}}function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el)}storage.options=options;return el}function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key]}}function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'))}return null}function elementsByTagName(query){return document.getElementsByTagName(query)}function hasOwnProperty(obj,property){return obj.hasOwnProperty(property)}function merge(){var merged={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key))merged[key]=args[key]}}return merged}function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('')}for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed)}return fragment}function replaceElement(el,options){var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node)}else anchor=node;if(next)continue}if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,anchor),style,options,node,el),anchor);anchor=null}if(type==1&&node.firstChild){if(CSS.hasClass(node,'cufon')){engines[options.engine](font,null,style,options,node,el)}else arguments.callee(node,options)}}}var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={autoDetect:false,enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(query){return $$(query)})||(window.$&&function(query){return $(query)})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query)})||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/[^\S\u00a0]+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id)};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"')};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready')});initialized=true}if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.textShadow=='string')options.textShadow=CSS.textShadow(options.textShadow);if(typeof options.color=='string'&&/^-/.test(options.color))options.textGradient=CSS.gradient(options.color);if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options)}});return api};api.set=function(option,value){defaultOptions[option]=value;return api};return api})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('.cufon-canvas{text-indent:0;}'+'@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;'+(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+(HAS_INLINE_BLOCK?'.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(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate}context[code[i].m].apply(context,code[i].a)}return code}function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a)}}return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x}}var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,advance,jumps=[];for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k}width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k}if(advance===undefined)return null;expandRight+=viewBox.width-advance;expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild}else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print)}}var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(stretchedWidth))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px'}else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px'}var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke()}var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);function renderText(){g.scale(stretchFactor,1);for(var i=0,j=0,l=chars.length;i<l;++i){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill()}g.translate(jumps[j++],0)}g.restore()}if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText()}}var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i])}g.fillStyle=fill}else g.fillStyle=style.get('color');renderText();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper}})());Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(document.documentMode||0)<8;document.write(('<style type="text/css">'+'.cufon-vml-canvas{text-indent:0;}'+'@media screen{'+'cvml\\:shape,cvml\\:rect,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:'+(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'.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 getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value)}function getSizeInPixels(el,value){if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result}var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1])}fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill}return fills[id]}return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing))}var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild}else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('span');canvas.className='cufon-vml-canvas';wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print)}if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'))}var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,jumps=[],offsetX=0,advance;var shape,shadows=options.textShadow;for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k}width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k}if(advance===undefined)return null;var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0,j=0;i<l;++i){glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild)}else{shape=document.createElement('cvml:shape');canvas.appendChild(shape)}shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY}shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow)}offsetX+=jumps[j++]}var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover)}vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight}else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height))}if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px'}}return wrapper}})());
Cufon.registerFont({"w":200,"face":{"font-family":"helvetica-neue-roman","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 0 0 0 0 0 0 0","ascent":"283","descent":"-77","x-height":"4","bbox":"-21 -343 329 77","underline-thickness":"18","underline-position":"-18","stemh":"27","stemv":"31","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"64,-257v2,68,-4,130,-9,191r-16,0r-9,-112r0,-79r34,0xm27,0r0,-40r40,0r0,40r-40,0","w":93},"\"":{"d":"39,-164r0,-93r25,0r0,93r-25,0xm90,-164r0,-93r24,0r0,93r-24,0","w":153},"#":{"d":"37,0r10,-74r-35,0r0,-25r39,0r7,-54r-36,0r0,-24r40,0r10,-74r25,0r-11,74r45,0r10,-74r25,0r-10,74r32,0r0,24r-35,0r-8,54r33,0r0,25r-37,0r-10,74r-25,0r11,-74r-45,0r-10,74r-25,0xm128,-153r-45,0r-7,54r44,0"},"$":{"d":"90,-150r0,-84v-23,3,-41,16,-41,43v0,26,17,34,41,41xm110,-113r0,90v27,-2,47,-15,47,-46v0,-27,-21,-36,-47,-44xm9,-78r31,0v1,32,21,50,50,55r0,-95v-51,-12,-73,-28,-73,-70v0,-44,32,-72,73,-75r0,-24r20,0r0,24v39,5,62,30,71,71r-31,0v-5,-23,-18,-37,-40,-41r0,88v36,9,79,16,79,73v0,46,-33,74,-79,78r0,30r-20,0r0,-30v-47,-5,-77,-34,-81,-84"},"%":{"d":"68,8r193,-268r31,0r-193,268r-31,0xm211,-67v0,-39,14,-73,58,-73v45,0,58,33,58,72v0,37,-16,72,-58,72v-44,0,-58,-32,-58,-71xm238,-68v0,21,3,53,30,53v27,0,32,-31,32,-53v0,-21,-4,-52,-31,-52v-27,0,-31,30,-31,52xm33,-182v0,-39,14,-73,58,-73v45,0,58,33,58,72v0,37,-16,72,-58,72v-44,0,-58,-32,-58,-71xm60,-183v0,21,3,52,30,52v27,0,32,-30,32,-52v0,-21,-4,-52,-31,-52v-27,0,-31,30,-31,52","w":360},"&":{"d":"148,-53r-59,-71v-24,14,-45,27,-45,58v0,54,83,55,104,13xm192,0r-27,-32v-15,24,-45,36,-73,36v-69,0,-80,-49,-80,-70v0,-40,27,-61,60,-78v-14,-21,-28,-34,-28,-60v0,-28,21,-53,58,-53v32,0,62,18,62,53v0,31,-23,52,-48,66r46,57v5,-13,7,-26,8,-40r29,0v-3,30,-6,40,-17,63r50,58r-40,0xm99,-158v15,-9,34,-23,34,-45v0,-15,-11,-27,-29,-27v-14,0,-30,8,-30,27v0,15,14,31,25,45","w":226},"(":{"d":"97,71r-24,0v-72,-101,-76,-232,0,-334r24,0v-66,106,-64,228,0,334","w":93},")":{"d":"20,71r-24,0v66,-106,64,-228,0,-334r24,0v72,101,76,232,0,334","w":93},"*":{"d":"72,-257r0,41r39,-15r7,18r-39,13r24,33r-15,11r-25,-34r-23,34r-17,-11r24,-33r-38,-13r6,-18r38,15r0,-41r19,0","w":126},"+":{"d":"120,-182r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0","w":216},",":{"d":"30,0r0,-40r40,0v2,47,0,82,-40,93r0,-18v16,-5,22,-23,21,-35r-21,0","w":100},"-":{"d":"18,-86r0,-28r104,0r0,28r-104,0","w":140},"\u00ad":{"d":"18,-86r0,-28r104,0r0,28r-104,0","w":140},".":{"d":"30,0r0,-40r40,0r0,40r-40,0","w":100},"\/":{"d":"-6,6r106,-269r26,0r-106,269r-26,0","w":119},"0":{"d":"15,-125v0,-57,5,-130,85,-130v80,0,85,73,85,130v0,56,-5,129,-85,129v-80,0,-85,-73,-85,-129xm48,-126v0,38,0,103,52,103v52,0,53,-65,53,-103v0,-38,-1,-102,-53,-102v-52,0,-52,64,-52,102"},"1":{"d":"128,-255r0,255r-30,0r0,-183r-67,0r0,-24v35,0,67,-9,74,-48r23,0"},"2":{"d":"9,0v-3,-104,134,-103,136,-182v0,-28,-22,-46,-49,-46v-36,0,-51,32,-50,63r-30,0v-3,-52,28,-90,82,-90v45,0,80,25,80,73v0,87,-118,89,-134,155r131,0r0,27r-166,0"},"3":{"d":"78,-120r0,-26v33,5,61,-8,62,-41v0,-27,-19,-41,-45,-41v-33,0,-48,25,-48,55r-31,0v2,-49,28,-82,79,-82v44,0,78,21,78,68v1,23,-18,41,-35,52v31,7,46,31,46,62v0,51,-40,77,-88,77v-52,0,-86,-30,-85,-83r30,0v1,33,20,56,55,56v30,0,55,-18,55,-49v0,-39,-33,-54,-73,-48"},"4":{"d":"151,-255r0,168r34,0r0,27r-34,0r0,60r-29,0r0,-60r-112,0r0,-29r116,-166r25,0xm36,-87r86,0r-1,-125"},"5":{"d":"169,-251r0,27r-103,0r-13,74v50,-42,130,-9,130,69v0,43,-30,85,-89,85v-44,0,-80,-27,-81,-73r30,0v2,26,23,46,54,46v29,0,54,-19,54,-60v0,-58,-76,-77,-105,-34r-27,-1r24,-133r126,0"},"6":{"d":"103,-137v-34,0,-53,25,-53,57v0,32,20,57,53,57v33,0,51,-26,51,-56v0,-32,-16,-58,-51,-58xm180,-190r-31,0v-3,-23,-19,-38,-43,-38v-51,-1,-63,60,-61,97v37,-63,142,-29,142,50v0,37,-21,85,-85,85v-76,0,-88,-68,-88,-122v0,-70,21,-137,94,-137v42,0,68,24,72,65"},"7":{"d":"183,-251r0,26v-51,51,-93,145,-98,225r-34,0v6,-86,47,-165,101,-222r-134,0r0,-29r165,0"},"8":{"d":"47,-72v0,31,22,49,54,49v31,0,52,-21,52,-49v0,-28,-23,-49,-52,-49v-30,0,-54,19,-54,49xm23,-190v0,-42,36,-65,75,-65v89,-2,100,90,42,118v31,10,46,32,46,64v0,49,-38,77,-85,77v-49,0,-87,-25,-87,-77v0,-30,17,-54,45,-64v-21,-9,-36,-30,-36,-53xm56,-189v0,28,20,41,45,41v24,0,42,-15,42,-41v0,-26,-18,-39,-43,-39v-24,0,-44,13,-44,39"},"9":{"d":"147,-170v0,-31,-18,-58,-52,-58v-36,0,-50,29,-50,60v0,28,20,54,50,54v32,0,52,-26,52,-56xm18,-62r30,0v2,25,23,39,47,39v36,0,59,-36,57,-99v-35,66,-140,31,-140,-50v0,-49,35,-83,84,-83v48,0,88,26,88,122v0,88,-27,137,-89,137v-43,0,-73,-22,-77,-66"},":":{"d":"30,0r0,-40r40,0r0,40r-40,0xm70,-186r0,40r-40,0r0,-40r40,0","w":100},";":{"d":"30,0r0,-40r40,0v2,47,0,82,-40,93r0,-18v16,-5,22,-23,21,-35r-21,0xm70,-186r0,40r-40,0r0,-40r40,0","w":100},"<":{"d":"199,-185r0,24r-153,70r153,69r0,25r-182,-83r0,-22","w":216},"=":{"d":"199,-140r0,25r-182,0r0,-25r182,0xm17,-42r0,-25r182,0r0,25r-182,0","w":216},">":{"d":"17,3r0,-25r153,-69r-153,-70r0,-24r182,83r0,22","w":216},"?":{"d":"176,-191v0,62,-69,62,-62,128r-30,0v-9,-72,60,-70,60,-131v0,-26,-18,-42,-44,-42v-34,0,-50,26,-50,59r-30,0v-1,-49,30,-86,80,-86v44,0,76,26,76,72xm78,0r0,-40r40,0r0,40r-40,0"},"@":{"d":"151,-182v-34,0,-57,44,-57,75v0,20,13,35,31,35v31,0,55,-46,55,-76v0,-17,-14,-34,-29,-34xm222,-199r-34,120v0,6,3,11,9,11v22,0,50,-43,50,-82v0,-57,-48,-93,-98,-93v-62,0,-109,52,-109,115v0,107,141,153,200,71r23,0v-23,40,-67,63,-113,63v-76,0,-135,-60,-135,-136v0,-74,61,-133,134,-133v67,0,122,46,122,111v0,63,-50,104,-84,104v-13,0,-21,-9,-24,-23v-27,41,-96,25,-96,-33v0,-50,33,-102,84,-102v17,0,33,7,41,29r8,-22r22,0","w":288},"A":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0","w":233,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":17,"T":33}},"B":{"d":"62,-118r0,89v57,-2,137,15,134,-46v-2,-60,-78,-39,-134,-43xm28,-257v83,3,192,-20,192,63v0,27,-15,48,-39,58v78,18,59,136,-29,136r-124,0r0,-257xm62,-228r0,81v51,-1,126,10,123,-41v-4,-60,-72,-34,-123,-40","w":246},"C":{"d":"243,-180r-34,0v-7,-36,-36,-54,-72,-54v-61,0,-87,50,-87,104v0,59,25,107,87,107v45,0,71,-32,74,-74r35,0v-6,64,-47,103,-112,103v-80,0,-119,-59,-119,-134v0,-75,43,-135,122,-135v54,0,98,28,106,83","w":259},"D":{"d":"28,0r0,-257r88,0v79,0,124,39,124,122v0,86,-38,135,-124,135r-88,0xm62,-228r0,199r57,0v23,0,87,-6,87,-101v0,-61,-23,-98,-86,-98r-58,0","w":253},"E":{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0","w":219},"F":{"d":"28,0r0,-257r169,0r0,29r-135,0r0,81r118,0r0,29r-118,0r0,118r-34,0","w":206,"k":{"A":20,".":57,",":57}},"G":{"d":"229,0r-9,-32v-20,27,-52,38,-82,38v-77,0,-123,-62,-123,-129v0,-75,42,-140,123,-140v56,0,100,25,110,85r-34,0v-7,-39,-38,-56,-76,-56v-62,0,-88,54,-88,109v0,54,31,102,88,102v53,0,84,-37,82,-84r-82,0r0,-28r113,0r0,135r-22,0","w":273},"H":{"d":"28,0r0,-257r34,0r0,110r136,0r0,-110r34,0r0,257r-34,0r0,-118r-136,0r0,118r-34,0","w":259},"I":{"d":"30,0r0,-257r34,0r0,257r-34,0","w":93},"J":{"d":"159,-257r0,193v0,35,-18,70,-76,70v-54,0,-79,-33,-75,-91r34,0v-1,36,5,62,42,62v31,0,41,-18,41,-46r0,-188r34,0","w":186},"K":{"d":"28,0r0,-257r34,0r0,128r131,-128r44,0r-108,104r112,153r-43,0r-93,-130r-43,40r0,90r-34,0","w":240},"L":{"d":"28,0r0,-257r34,0r0,228r136,0r0,29r-170,0","k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"29,0r0,-257r47,0r81,216r81,-216r47,0r0,257r-33,0r0,-214r-81,214r-29,0r-81,-214r0,214r-32,0","w":313},"N":{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0","w":259},"O":{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211","w":273},"P":{"d":"28,0r0,-257r113,0v51,0,79,28,79,76v0,48,-28,76,-79,76r-79,0r0,105r-34,0xm62,-228r0,94v55,0,129,9,123,-47v6,-55,-68,-47,-123,-47","w":233,"k":{"A":27,".":64,",":64}},"Q":{"d":"255,1r-17,21r-40,-31v-17,10,-37,15,-61,15v-82,0,-123,-65,-123,-135v0,-70,41,-134,123,-134v127,0,157,162,84,237xm144,-53r18,-20r34,27v53,-56,39,-188,-59,-188v-121,1,-120,210,0,211v13,0,24,-2,35,-7","w":273},"R":{"d":"62,-139v57,-4,130,17,131,-45v0,-25,-14,-44,-46,-44r-85,0r0,89xm198,0v-17,-27,9,-110,-52,-110r-84,0r0,110r-34,0r0,-257r121,0v86,-9,106,110,34,132v56,13,26,86,53,125r-38,0","w":246,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"186,-69v0,-73,-165,-28,-165,-119v0,-52,46,-75,93,-75v53,0,93,24,95,81r-32,0v-4,-37,-29,-52,-64,-52v-29,0,-58,11,-58,44v0,32,42,36,83,45v41,9,82,24,82,74v0,55,-53,77,-100,77v-58,0,-107,-28,-107,-91r33,0v0,43,36,62,75,62v31,0,65,-9,65,-46","w":233},"T":{"d":"86,0r0,-228r-85,0r0,-29r205,0r0,29r-85,0r0,228r-35,0","w":206,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,"A":33,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0","w":259},"V":{"d":"221,-257r-92,257r-39,0r-90,-257r37,0r74,223r74,-223r36,0","w":219,"k":{"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,"A":17,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"329,-257r-69,257r-35,0r-60,-216r-59,216r-36,0r-66,-257r35,0r51,214r58,-214r37,0r58,214r52,-214r34,0","w":333,"k":{"u":6,"r":6,"o":21,"e":21,"a":13,"A":9,";":6,":":6,".":27,",":27}},"X":{"d":"0,0r89,-132r-84,-125r41,0r64,100r67,-100r38,0r-85,125r90,132r-41,0r-70,-106r-71,106r-38,0","w":219},"Y":{"d":"233,-257r-99,152r0,105r-34,0r0,-105r-99,-152r40,0r77,122r76,-122r39,0","w":233,"k":{"v":20,"u":27,"q":33,"p":27,"o":40,"i":13,"e":40,"a":33,"A":27,";":33,":":33,".":50,"-":40,",":50}},"Z":{"d":"8,0r0,-29r160,-199r-148,0r0,-29r188,0r0,29r-159,199r163,0r0,29r-204,0","w":219},"[":{"d":"93,-263r0,24r-38,0r0,286r38,0r0,24r-67,0r0,-334r67,0","w":93},"\\":{"d":"20,-263r106,269r-26,0r-106,-269r26,0","w":119},"]":{"d":"0,71r0,-24r39,0r0,-286r-39,0r0,-24r67,0r0,334r-67,0","w":93},"^":{"d":"18,-95r78,-156r24,0r78,156r-25,0r-65,-130r-64,130r-26,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"a":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20","w":193},"b":{"d":"168,-95v0,-35,-17,-68,-57,-68v-41,0,-57,35,-57,70v0,37,16,70,58,70v42,0,56,-36,56,-72xm24,0r0,-257r31,0r0,96v10,-21,34,-29,60,-29v57,0,86,44,86,97v0,53,-28,97,-85,97v-19,0,-47,-7,-61,-29r0,25r-31,0","w":213},"c":{"d":"181,-126r-32,0v-5,-23,-21,-37,-46,-37v-44,0,-58,34,-58,72v0,34,16,68,55,68v30,0,47,-17,51,-45r31,0v-7,45,-35,72,-82,72v-57,0,-87,-40,-87,-95v0,-56,29,-99,88,-99v42,0,76,20,80,64","w":193},"d":{"d":"189,-257r0,257r-30,0v-1,-8,2,-19,-1,-25v-10,21,-33,29,-59,29v-57,0,-86,-45,-86,-98v0,-82,93,-130,146,-67r0,-96r30,0xm45,-91v0,35,18,68,58,68v41,0,57,-35,57,-70v0,-37,-17,-70,-59,-70v-42,0,-56,36,-56,72","w":213},"e":{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52","w":193},"f":{"d":"36,0r0,-159r-32,0r0,-27r32,0v-8,-53,19,-85,71,-71r0,27v-18,-6,-41,-5,-41,18r0,26r36,0r0,27r-36,0r0,159r-30,0","w":106,"k":{"f":6}},"g":{"d":"98,-25v72,0,77,-137,2,-138v-39,0,-55,31,-55,67v0,33,13,71,53,71xm184,-186v-7,109,35,262,-87,262v-35,0,-75,-14,-77,-55r31,0v1,22,28,30,48,30v44,1,61,-37,55,-83v-10,23,-35,34,-58,34v-55,0,-83,-43,-83,-94v0,-44,22,-98,86,-98v24,-1,43,12,56,31r0,-27r29,0","w":206},"h":{"d":"23,0r0,-257r31,0r0,98v10,-22,37,-31,59,-31v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0"},"i":{"d":"25,0r0,-186r30,0r0,186r-30,0xm55,-257r0,37r-30,0r0,-37r30,0","w":79},"j":{"d":"55,-186r0,210v0,39,-24,51,-60,46r0,-26v19,1,30,1,30,-25r0,-205r30,0xm55,-257r0,37r-30,0r0,-37r30,0","w":79},"k":{"d":"25,0r0,-257r30,0r0,152r85,-81r41,0r-73,68r79,118r-39,0r-64,-97r-29,26r0,71r-30,0","w":186},"l":{"d":"25,0r0,-257r30,0r0,257r-30,0","w":79},"m":{"d":"23,0r0,-186r29,0v1,8,-2,21,1,27v22,-38,93,-46,111,0v25,-46,120,-44,120,23r0,136r-31,0r0,-122v0,-23,-6,-41,-36,-41v-72,-1,-42,99,-48,163r-31,0r0,-122v0,-24,-8,-41,-35,-41v-79,0,-40,93,-49,163r-31,0","w":307},"n":{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0"},"o":{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70","w":206},"p":{"d":"168,-95v0,-35,-17,-68,-57,-68v-41,0,-57,35,-57,70v0,37,16,70,58,70v42,0,56,-36,56,-72xm24,71r0,-257r31,0r0,25v10,-21,34,-29,60,-29v57,0,86,44,86,97v0,53,-28,97,-85,97v-19,0,-47,-7,-61,-29r0,96r-31,0","w":213},"q":{"d":"189,-186r0,257r-30,0r-1,-96v-10,21,-33,29,-59,29v-57,0,-86,-45,-86,-98v0,-82,93,-130,146,-67r0,-25r30,0xm45,-91v0,35,18,68,58,68v41,0,57,-35,57,-70v0,-37,-17,-70,-59,-70v-42,0,-56,36,-56,72","w":213},"r":{"d":"22,0r0,-186r29,0r0,39v15,-30,36,-44,69,-43r0,32v-81,-4,-66,83,-67,158r-31,0","w":119,"k":{"q":6,"o":6,"n":-6,"g":10,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"48,-140v10,47,121,19,121,86v0,44,-41,58,-79,58v-42,0,-77,-17,-79,-63r31,0v1,27,25,36,50,36v19,0,45,-4,45,-27v0,-50,-122,-19,-122,-88v0,-37,38,-52,70,-52v41,0,73,13,76,58r-31,0v-2,-24,-23,-31,-43,-31v-18,0,-39,4,-39,23","w":180},"t":{"d":"66,-242r0,56r37,0r0,27r-37,0r0,115v-4,19,18,17,37,17r0,27v-40,0,-68,3,-68,-41r0,-118r-32,0r0,-27r32,0r0,-56r31,0","w":113},"u":{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0"},"v":{"d":"175,-186r-68,186r-33,0r-69,-186r34,0r53,155r51,-155r32,0","w":180,"k":{".":27,",":27}},"w":{"d":"267,-186r-60,186r-32,0r-39,-148r-37,148r-33,0r-60,-186r34,0r43,152r37,-152r34,0r39,152r42,-152r32,0","w":272,"k":{".":20,",":20}},"x":{"d":"3,0r70,-98r-65,-88r40,0r44,65r47,-65r36,0r-64,86r72,100r-39,0r-52,-77r-52,77r-37,0","w":186},"y":{"d":"177,-186r-81,211v-17,44,-35,58,-75,46r0,-28v17,8,36,6,43,-12r13,-32r-74,-185r34,0r56,152r52,-152r32,0","w":180,"k":{".":27,",":27}},"z":{"d":"8,0r0,-23r112,-136r-105,0r0,-27r145,0r0,21r-114,138r119,0r0,27r-157,0","w":172},"{":{"d":"111,-263r0,21v-51,-11,-35,54,-35,97v0,35,-24,45,-31,50v8,1,31,11,31,48v0,38,-21,105,35,97r0,21v-39,3,-64,-5,-64,-47v0,-42,6,-108,-30,-108r0,-24v36,0,30,-66,30,-108v0,-42,25,-50,64,-47","w":119},"|":{"d":"28,77r0,-360r24,0r0,360r-24,0","w":79},"}":{"d":"9,71r0,-21v51,11,35,-54,35,-97v0,-35,24,-44,31,-49v-8,-1,-31,-12,-31,-49v0,-38,21,-105,-35,-97r0,-21v39,-3,64,5,64,47v0,42,-7,109,30,108r0,24v-35,0,-30,66,-30,108v0,42,-25,50,-64,47","w":119},"~":{"d":"70,-113v24,0,57,26,77,26v14,0,23,-15,31,-28r13,18v-11,15,-23,31,-45,31v-37,0,-91,-53,-108,2r-13,-18v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"30,71v-2,-68,4,-130,9,-191r16,0r9,112r0,79r-34,0xm67,-186r0,40r-40,0r0,-40r40,0","w":93},"\u00a2":{"d":"98,-23r0,-140v-67,7,-67,134,0,140xm98,42r0,-38v-53,-2,-81,-42,-81,-95v0,-52,27,-95,81,-99r0,-35r14,0r0,35v39,1,68,20,73,64r-31,0v-5,-22,-19,-36,-42,-37r0,140v26,-3,40,-21,44,-45r30,0v-4,36,-29,72,-74,72r0,38r-14,0"},"\u00a3":{"d":"196,-10v-46,44,-117,-23,-162,14r-17,-24v31,-18,52,-60,31,-98r-31,0r0,-16r21,0v-10,-16,-17,-34,-17,-56v0,-46,38,-73,82,-73v53,0,86,31,85,93r-31,0v-1,-41,-17,-66,-52,-66v-29,0,-52,20,-52,47v0,24,11,37,19,55r57,0r0,16r-49,0v20,39,-6,75,-35,95v40,-26,102,20,135,-11"},"\u00a5":{"d":"84,0r0,-63r-51,0r0,-21r51,0v1,-13,-2,-21,-7,-27r-44,0r0,-22r33,0r-66,-124r39,0r63,127r61,-127r37,0r-64,124r34,0r0,22r-46,0v-4,7,-7,15,-6,27r52,0r0,21r-52,0r0,63r-34,0"},"\u00a7":{"d":"68,-151v-14,5,-26,18,-26,33v0,44,61,48,88,73v14,-6,26,-17,26,-33v0,-43,-60,-49,-88,-73xm138,14v-7,-54,-125,-58,-125,-131v0,-22,17,-44,38,-50v-38,-37,0,-96,50,-96v39,0,65,21,66,66r-30,0v0,-22,-14,-39,-37,-39v-19,0,-34,10,-34,31v0,50,120,58,120,123v0,23,-16,44,-38,52v44,33,16,101,-46,101v-42,0,-69,-26,-72,-68r30,0v-5,45,75,58,78,11"},"\u00a4":{"d":"9,-200r18,-17r20,20v27,-25,79,-25,106,-1r20,-20r18,19r-20,19v25,27,25,80,0,108r20,20r-17,17r-20,-21v-28,27,-81,26,-108,0r-20,21r-17,-17r20,-21v-25,-27,-26,-80,1,-106xm101,-189v-34,0,-60,28,-60,63v0,35,27,63,60,63v33,0,58,-28,58,-63v0,-34,-25,-63,-58,-63"},"'":{"d":"38,-164r0,-93r24,0r0,93r-24,0","w":100},"\u00ab":{"d":"143,-41r-54,-43r0,-32r54,-43r0,31r-36,28r36,28r0,31xm73,-41r-55,-43r0,-32r55,-43r0,31r-36,28r36,28r0,31","w":166},"\u00b7":{"d":"27,-112v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23","w":100},"\u2219":{"d":"27,-112v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23","w":100},"\u00b6":{"d":"185,-257r0,313r-24,0r0,-293r-44,0r0,293r-24,0r0,-172v-44,0,-76,-30,-76,-67v0,-47,32,-74,82,-74r86,0","w":216},"\u00bb":{"d":"23,-159r55,43r0,32r-55,43r0,-31r36,-28r-36,-28r0,-31xm94,-159r55,43r0,32r-55,43r0,-31r36,-28r-36,-28r0,-31","w":166},"\u00bf":{"d":"24,4v0,-62,67,-63,63,-126r30,0v8,70,-60,68,-60,128v0,26,17,43,43,43v34,0,50,-27,50,-60r31,0v1,49,-31,87,-81,87v-44,0,-76,-26,-76,-72xm121,-186r0,40r-40,0r0,-40r40,0"},"`":{"d":"39,-212r-47,-51r39,0r31,51r-23,0","w":79},"\u00b4":{"d":"18,-212r31,-51r39,0r-47,51r-23,0","w":79},"\u00af":{"d":"-21,-223r0,-20r123,0r0,20r-123,0","w":79},"\u02c9":{"d":"-21,-223r0,-20r123,0r0,20r-123,0","w":79},"\u00a8":{"d":"58,-213r0,-38r32,0r0,38r-32,0xm-10,-213r0,-38r32,0r0,38r-32,0","w":79},"\u00b8":{"d":"2,69r6,-16v12,6,45,8,45,-7v0,-11,-22,-14,-32,-8v-13,-14,10,-25,16,-38r15,0v-5,7,-11,12,-15,20v17,-8,44,2,43,24v-3,36,-50,37,-78,25","w":79},"\u00c6":{"d":"-3,0r130,-257r193,0r0,29r-126,0r0,81r118,0r0,29r-118,0r0,89r128,0r0,29r-161,0r0,-75r-88,0r-37,75r-39,0xm161,-228r-14,0r-61,124r75,0r0,-124","w":333},"\u00aa":{"d":"9,-169v-9,-45,84,-29,85,-51v0,-16,-14,-17,-28,-17v-17,0,-29,5,-30,20r-22,0v1,-28,25,-38,53,-38v22,0,47,5,47,31r0,58v-1,14,5,11,13,10r0,16v-13,6,-34,3,-34,-13v-20,24,-84,23,-84,-16xm93,-197v-15,12,-59,2,-60,27v6,31,68,8,60,-10r0,-17","w":136},"\u00d8":{"d":"66,-61r133,-147v-14,-16,-35,-26,-62,-26v-90,0,-108,108,-71,173xm208,-195r-132,147v14,16,34,25,61,25v89,-1,109,-107,71,-172xm249,-263r11,11r-29,32v60,81,25,228,-94,226v-35,0,-63,-12,-83,-31r-29,32r-12,-11r31,-33v-62,-80,-27,-229,93,-226v36,0,63,13,83,32","w":273},"\u00ba":{"d":"69,-255v39,0,60,26,60,60v0,35,-21,58,-60,58v-38,0,-60,-24,-60,-58v0,-33,21,-60,60,-60xm105,-195v-2,-63,-72,-53,-72,0v0,22,10,40,36,40v26,0,36,-18,36,-40","w":138},"\u00e6":{"d":"272,-111v-1,-29,-19,-52,-51,-52v-33,0,-53,22,-53,52r104,0xm139,-96v-27,16,-94,2,-94,46v0,20,17,27,36,27v55,0,61,-27,58,-73xm305,-84r-137,0v-10,60,89,87,103,25r31,0v-9,68,-115,88,-148,27v-22,48,-142,56,-141,-16v0,-42,31,-51,63,-57v45,-9,63,-8,63,-30v0,-25,-21,-28,-42,-28v-26,0,-45,8,-46,35r-31,0v2,-46,38,-62,79,-62v22,0,51,4,62,27v13,-19,37,-27,60,-27v65,0,84,48,84,106","w":313},"\u00f8":{"d":"56,-49r87,-98v-39,-35,-101,-10,-98,54v0,17,4,32,11,44xm151,-136r-87,97v38,35,100,10,97,-54v0,-18,-4,-32,-10,-43xm194,-183r-21,24v45,58,17,163,-70,163v-25,0,-44,-7,-59,-20r-22,24r-10,-9r23,-25v-45,-58,-19,-164,68,-164v25,0,46,7,61,21r21,-24","w":206},"\u00df":{"d":"23,0r0,-191v0,-43,28,-72,71,-72v35,0,75,21,75,63v0,27,-11,47,-38,56v84,21,50,156,-34,148v-5,0,-10,0,-15,-1r0,-27v39,6,66,-16,66,-51v0,-47,-26,-54,-66,-54r0,-25v29,2,54,-8,54,-41v0,-23,-17,-41,-40,-41v-25,0,-42,10,-42,50r0,186r-31,0"},"\u00b9":{"d":"90,-255r0,154r-25,0r0,-111r-41,0r0,-18v23,0,44,-5,48,-25r18,0","w":119},"\u00ac":{"d":"199,-140r0,101r-25,0r0,-76r-157,0r0,-25r182,0","w":216},"\u00b5":{"d":"177,-186r0,186r-29,0r0,-30v-14,32,-68,47,-94,21r0,80r-31,0r0,-257r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0"},"\u03bc":{"d":"177,-186r0,186r-29,0r0,-30v-14,32,-68,47,-94,21r0,80r-31,0r0,-257r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0"},"\u00d0":{"d":"28,0r0,-122r-25,0r0,-25r25,0r0,-110r88,0v79,0,124,39,124,122v0,86,-38,135,-124,135r-88,0xm62,-228r0,81r77,0r0,25r-77,0r0,93r57,0v23,0,87,-6,87,-101v0,-61,-23,-98,-86,-98r-58,0","w":253},"\u00bd":{"d":"49,10r156,-271r23,0r-156,271r-23,0xm79,-255r0,154r-25,0r0,-111r-41,0r0,-18v23,0,44,-5,48,-25r18,0xm178,0v-4,-63,86,-62,87,-109v0,-15,-13,-26,-30,-26v-22,0,-30,17,-30,36r-24,0v0,-33,22,-55,55,-55v29,0,53,16,53,45v1,50,-76,56,-87,89r85,0r0,20r-109,0","w":300},"\u00b1":{"d":"17,-98r0,-24r79,0r0,-60r24,0r0,60r79,0r0,24r-79,0r0,61r-24,0r0,-61r-79,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},"\u00de":{"d":"62,0r-34,0r0,-257r34,0r0,41r79,0v51,0,79,28,79,76v0,48,-28,76,-79,76r-79,0r0,64xm62,-187r0,94v55,0,129,9,123,-47v6,-55,-68,-47,-123,-47","w":233},"\u00bc":{"d":"260,-154r0,100r22,0r0,19r-22,0r0,35r-22,0r0,-35r-72,0r0,-20r76,-99r18,0xm238,-124v-20,22,-35,47,-54,70r54,0r0,-70xm54,10r157,-271r23,0r-157,271r-23,0xm79,-255r0,154r-25,0r0,-111r-41,0r0,-18v23,0,44,-5,48,-25r18,0","w":300},"\u00f7":{"d":"17,-79r0,-24r182,0r0,24r-182,0xm85,-165v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23xm85,-17v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23","w":216},"\u00a6":{"d":"28,32r0,-90r24,0r0,90r-24,0xm52,-238r0,90r-24,0r0,-90r24,0","w":79},"\u00b0":{"d":"20,-203v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,51,-52,51v-29,0,-52,-22,-52,-51xm72,-237v-46,0,-44,67,0,67v21,0,34,-16,34,-33v0,-17,-13,-34,-34,-34","w":144},"\u00fe":{"d":"168,-95v0,-35,-17,-68,-57,-68v-41,0,-57,35,-57,70v0,37,16,70,58,70v42,0,56,-36,56,-72xm55,-257r0,96v10,-21,34,-29,60,-29v57,0,86,44,86,97v0,53,-28,97,-85,97v-19,0,-47,-7,-61,-29r0,96r-31,0r0,-328r31,0","w":213},"\u00be":{"d":"266,-154r0,100r22,0r0,19r-22,0r0,35r-22,0r0,-35r-72,0r0,-20r76,-99r18,0xm190,-53r54,0r0,-69xm77,10r157,-271r23,0r-157,271r-23,0xm64,-172r0,-18v20,1,38,-3,38,-23v0,-14,-11,-22,-27,-22v-19,0,-29,13,-29,31r-25,0v2,-31,22,-51,54,-51v50,0,72,57,27,72v18,7,32,19,32,38v0,32,-29,47,-59,47v-32,0,-57,-18,-57,-51r24,0v0,20,12,31,33,31v18,0,34,-10,34,-26v-1,-24,-21,-30,-45,-28","w":300},"\u00b2":{"d":"5,-101v-4,-63,87,-61,87,-109v0,-15,-13,-25,-30,-25v-22,0,-30,16,-30,35r-24,0v0,-33,22,-55,55,-55v29,0,53,16,53,45v0,50,-75,56,-86,89r84,0r0,20r-109,0","w":119},"\u00ae":{"d":"9,-129v0,-76,61,-134,135,-134v73,0,135,58,135,134v0,77,-62,135,-135,135v-74,0,-135,-58,-135,-135xm33,-129v0,66,48,115,111,115v62,0,111,-49,111,-115v0,-64,-49,-114,-111,-114v-63,0,-111,50,-111,114xm92,-50r0,-157v52,0,116,-8,116,45v0,28,-19,39,-42,42r45,70r-26,0r-43,-68r-26,0r0,68r-24,0xm116,-188r0,50v30,-2,68,9,67,-25v-1,-33,-37,-24,-67,-25","w":288},"\u00f0":{"d":"13,-93v0,-68,83,-119,136,-69v-11,-25,-33,-46,-44,-54r-42,19r-13,-14r39,-19v-8,-6,-18,-13,-25,-17r25,-16v6,5,19,12,28,20r43,-20r12,13r-41,19v43,35,63,83,63,138v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm102,-155v-37,0,-57,25,-57,62v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-33,-17,-62,-59,-62","w":206},"\u00d7":{"d":"43,-9r-17,-17r65,-65r-65,-65r17,-18r65,65r65,-65r17,18r-64,65r65,65r-17,17r-66,-65","w":216},"\u00b3":{"d":"48,-172r0,-18v20,1,38,-3,38,-23v0,-14,-12,-22,-28,-22v-19,0,-28,13,-28,31r-25,0v2,-31,21,-51,53,-51v50,0,73,57,28,72v18,7,31,19,31,38v0,32,-28,47,-58,47v-32,0,-58,-18,-58,-51r25,0v0,20,12,31,33,31v18,0,34,-10,34,-26v-1,-24,-21,-30,-45,-28","w":119},"\u00a9":{"d":"9,-129v0,-76,61,-134,135,-134v73,0,135,58,135,134v0,77,-62,135,-135,135v-74,0,-135,-58,-135,-135xm33,-129v0,66,48,115,111,115v62,0,111,-49,111,-115v0,-64,-49,-114,-111,-114v-63,0,-111,50,-111,114xm193,-103r23,0v-18,95,-154,59,-147,-26v-11,-88,134,-115,146,-27r-22,0v-19,-62,-107,-34,-100,27v-9,62,90,88,100,26","w":288},"\u00c1":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm95,-275r31,-52r39,0r-47,52r-23,0","w":233},"\u00c2":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm63,-275r37,-52r33,0r38,52r-31,0r-24,-35r-26,35r-27,0","w":233},"\u00c4":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm134,-277r0,-37r33,0r0,37r-33,0xm67,-277r0,-37r32,0r0,37r-32,0","w":233},"\u00c0":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm116,-275r-48,-52r40,0r31,52r-23,0","w":233},"\u00c5":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm92,-302v0,14,11,24,25,24v14,0,24,-10,24,-24v0,-14,-10,-25,-24,-25v-14,0,-25,11,-25,25xm76,-302v0,-22,19,-41,41,-41v22,0,40,19,40,41v0,22,-18,41,-40,41v-22,0,-41,-19,-41,-41","w":233},"\u00c3":{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm94,-318v23,1,58,30,67,-2r18,0v-3,20,-12,42,-39,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-39,38,-39","w":233},"\u00c7":{"d":"243,-180r-34,0v-7,-36,-36,-54,-72,-54v-61,0,-87,50,-87,104v0,59,25,107,87,107v45,0,71,-32,74,-74r35,0v-6,63,-46,102,-109,103v-3,5,-8,8,-10,14v17,-8,44,2,43,24v-3,36,-50,37,-78,25r6,-16v12,6,45,8,45,-7v0,-11,-22,-14,-32,-8v-12,-12,5,-22,11,-33v-72,-5,-107,-62,-107,-133v0,-75,43,-135,122,-135v54,0,98,28,106,83","w":259},"\u00c9":{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm88,-275r31,-52r39,0r-47,52r-23,0","w":219},"\u00ca":{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm56,-275r37,-52r34,0r37,52r-30,0r-25,-35r-25,35r-28,0","w":219},"\u00cb":{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm128,-277r0,-37r32,0r0,37r-32,0xm60,-277r0,-37r33,0r0,37r-33,0","w":219},"\u00c8":{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm109,-275r-47,-52r39,0r31,52r-23,0","w":219},"\u00cd":{"d":"30,0r0,-257r34,0r0,257r-34,0xm25,-275r31,-52r39,0r-47,52r-23,0","w":93},"\u00ce":{"d":"30,0r0,-257r34,0r0,257r-34,0xm-7,-275r37,-52r33,0r38,52r-30,0r-25,-35r-25,35r-28,0","w":93},"\u00cf":{"d":"30,0r0,-257r34,0r0,257r-34,0xm64,-277r0,-37r33,0r0,37r-33,0xm-3,-277r0,-37r32,0r0,37r-32,0","w":93},"\u00cc":{"d":"30,0r0,-257r34,0r0,257r-34,0xm46,-275r-47,-52r39,0r31,52r-23,0","w":93},"\u00d1":{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0xm107,-318v24,0,58,30,67,-2r19,0v-4,20,-13,41,-40,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-39,38,-39","w":259},"\u00d3":{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm115,-275r31,-52r39,0r-47,52r-23,0","w":273},"\u00d4":{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm83,-275r37,-52r33,0r38,52r-30,0r-25,-35r-25,35r-28,0","w":273},"\u00d6":{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm154,-277r0,-37r33,0r0,37r-33,0xm87,-277r0,-37r32,0r0,37r-32,0","w":273},"\u00d2":{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm136,-275r-47,-52r39,0r31,52r-23,0","w":273},"\u00d5":{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm114,-318v23,1,58,30,67,-2r18,0v-3,20,-12,42,-39,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-39,38,-39","w":273},"\u00da":{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm108,-275r31,-52r39,0r-47,52r-23,0","w":259},"\u00db":{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm76,-275r37,-52r34,0r37,52r-30,0r-25,-35r-25,35r-28,0","w":259},"\u00dc":{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm148,-277r0,-37r32,0r0,37r-32,0xm80,-277r0,-37r32,0r0,37r-32,0","w":259},"\u00d9":{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm129,-275r-47,-52r39,0r31,52r-23,0","w":259},"\u00dd":{"d":"233,-257r-99,152r0,105r-34,0r0,-105r-99,-152r40,0r77,122r76,-122r39,0xm95,-275r31,-52r39,0r-47,52r-23,0","w":233},"\u00e1":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm75,-212r31,-51r39,0r-47,51r-23,0","w":193},"\u00e2":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm43,-212r37,-51r33,0r38,51r-30,0r-25,-34r-25,34r-28,0","w":193},"\u00e4":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm114,-213r0,-38r33,0r0,38r-33,0xm47,-213r0,-38r32,0r0,38r-32,0","w":193},"\u00e0":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm96,-212r-47,-51r39,0r31,51r-23,0","w":193},"\u00e5":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm72,-238v0,14,11,24,25,24v14,0,24,-10,24,-24v0,-14,-10,-25,-24,-25v-14,0,-25,11,-25,25xm56,-238v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,40,-41,40v-22,0,-41,-18,-41,-40","w":193},"\u00e3":{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm74,-255v23,0,58,31,67,-1r18,0v-3,20,-12,42,-39,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-40,38,-40","w":193},"\u00e7":{"d":"181,-126r-32,0v-5,-23,-21,-37,-46,-37v-44,0,-58,34,-58,72v0,34,16,68,55,68v30,0,47,-17,51,-45r31,0v-6,44,-33,70,-77,72r-11,16v17,-8,43,2,42,24v-2,36,-49,37,-77,25r6,-16v12,6,43,9,44,-7v1,-11,-21,-14,-31,-8v-13,-13,7,-23,13,-34v-51,-4,-78,-43,-78,-95v0,-56,29,-99,88,-99v42,0,76,20,80,64","w":193},"\u00e9":{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm75,-212r31,-51r39,0r-47,51r-23,0","w":193},"\u00ea":{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm43,-212r37,-51r33,0r38,51r-30,0r-25,-34r-25,34r-28,0","w":193},"\u00eb":{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm114,-213r0,-38r33,0r0,38r-33,0xm47,-213r0,-38r32,0r0,38r-32,0","w":193},"\u00e8":{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm96,-212r-47,-51r39,0r31,51r-23,0","w":193},"\u00ed":{"d":"55,0r-30,0r0,-186r30,0r0,186xm18,-212r31,-51r39,0r-47,51r-23,0","w":79},"\u00ee":{"d":"55,0r-30,0r0,-186r30,0r0,186xm-14,-212r37,-51r34,0r37,51r-30,0r-25,-34r-25,34r-28,0","w":79},"\u00ef":{"d":"55,0r-30,0r0,-186r30,0r0,186xm58,-213r0,-38r32,0r0,38r-32,0xm-10,-213r0,-38r32,0r0,38r-32,0","w":79},"\u00ec":{"d":"55,0r-30,0r0,-186r30,0r0,186xm39,-212r-47,-51r39,0r31,51r-23,0","w":79},"\u00f1":{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0xm77,-255v23,0,58,32,67,-1r19,0v-3,20,-13,42,-40,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-40,38,-40"},"\u00f3":{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm81,-212r31,-51r40,0r-48,51r-23,0","w":206},"\u00f4":{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm49,-212r37,-51r34,0r37,51r-30,0r-25,-34r-25,34r-28,0","w":206},"\u00f6":{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm121,-213r0,-38r32,0r0,38r-32,0xm53,-213r0,-38r33,0r0,38r-33,0","w":206},"\u00f2":{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm102,-212r-47,-51r39,0r31,51r-23,0","w":206},"\u00f5":{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm80,-255v23,1,58,32,67,-1r19,0v-3,20,-13,42,-40,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-40,38,-40","w":206},"\u00fa":{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm78,-212r31,-51r39,0r-47,51r-23,0"},"\u00fb":{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm46,-212r37,-51r34,0r37,51r-30,0r-25,-34r-25,34r-28,0"},"\u00fc":{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm118,-213r0,-38r32,0r0,38r-32,0xm50,-213r0,-38r32,0r0,38r-32,0"},"\u00f9":{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm99,-212r-47,-51r39,0r31,51r-23,0"},"\u00fd":{"d":"177,-186r-81,211v-17,44,-35,58,-75,46r0,-28v17,8,36,6,43,-12r13,-32r-74,-185r34,0r56,152r52,-152r32,0xm68,-212r31,-51r39,0r-47,51r-23,0","w":180},"\u00ff":{"d":"177,-186r-81,211v-17,44,-35,58,-75,46r0,-28v17,8,36,6,43,-12r13,-32r-74,-185r34,0r56,152r52,-152r32,0xm108,-213r0,-38r32,0r0,38r-32,0xm40,-213r0,-38r32,0r0,38r-32,0","w":180}}});
Cufon.registerFont({"w":200,"face":{"font-family":"helvetica-neue-light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 4 2 0 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-26 -348 325 77","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"37,-64r13,0r6,-116r0,-77r-25,0r0,77xm59,0r0,-38r-31,0r0,38r31,0","w":86},"\"":{"d":"31,-170r23,0r0,-87r-23,0r0,87xm79,-170r23,0r0,-87r-23,0r0,87","w":133},"#":{"d":"179,-96r-38,0r8,-57r40,0r0,-16r-38,0r11,-80r-18,0r-11,80r-51,0r12,-80r-18,0r-12,80r-41,0r0,16r39,0r-8,57r-41,0r0,16r39,0r-11,80r18,0r11,-80r51,0r-11,80r18,0r11,-80r40,0r0,-16xm131,-153r-8,57r-51,0r8,-57r51,0"},"$":{"d":"107,-117v58,-2,85,83,22,100v-7,2,-14,3,-22,3r0,-103xm93,-143v-56,5,-73,-80,-21,-97v6,-2,14,-3,21,-3r0,100xm93,-14v-38,-5,-59,-26,-60,-68r-23,0v2,57,28,82,83,87r0,31r14,0r0,-31v48,-2,83,-24,83,-72v0,-51,-41,-64,-83,-73r0,-103v32,0,54,26,53,59r23,0v-2,-47,-29,-77,-76,-78r0,-29r-14,0r0,29v-47,0,-75,25,-76,70v-2,50,36,63,76,72r0,106"},"%":{"d":"44,-186v0,-28,9,-52,38,-52v28,0,38,24,38,52v0,28,-10,52,-38,52v-29,0,-38,-24,-38,-52xm68,12r18,0r162,-273r-17,0xm297,-63v0,-41,-18,-68,-57,-68v-39,0,-57,27,-57,68v0,41,16,68,57,68v41,0,57,-27,57,-68xm202,-62v0,-27,8,-52,38,-52v30,0,38,25,38,52v0,27,-10,51,-38,51v-29,0,-38,-24,-38,-51xm139,-186v0,-41,-16,-68,-57,-68v-41,0,-57,27,-57,68v0,41,17,68,57,68v40,0,57,-27,57,-68","w":320},"&":{"d":"93,-14v-50,0,-73,-58,-39,-89v10,-9,23,-18,35,-25r64,78v-13,18,-31,36,-60,36xm14,-67v-6,86,122,89,153,34r28,33r28,0r-43,-52v10,-17,14,-40,15,-62r-23,0v0,20,0,30,-7,43r-56,-67v22,-17,50,-30,50,-67v0,-34,-24,-52,-57,-52v-34,0,-57,19,-57,52v0,29,20,44,32,62v-29,16,-60,35,-63,76xm97,-153v-26,-17,-47,-82,5,-85v34,-2,45,45,21,64v-7,9,-16,15,-26,21","w":219},"'":{"d":"39,-170r23,0r0,-87r-23,0r0,87","w":100},"(":{"d":"18,-96v0,71,24,119,51,165r18,0v-58,-80,-60,-249,0,-331r-18,0v-29,44,-51,98,-51,166","w":86},")":{"d":"68,-98v0,-72,-23,-118,-50,-164r-18,0v57,81,61,248,0,331r18,0v29,-44,50,-99,50,-167","w":86},"*":{"d":"51,-200r-26,35r11,8r27,-36r26,36r11,-8r-25,-35r42,-14r-5,-14r-42,15r0,-44r-14,0r0,44r-41,-15r-5,14","w":126},"+":{"d":"99,-100r-81,0r0,19r81,0r0,81r19,0r0,-81r81,0r0,-19r-81,0r0,-81r-19,0r0,81","w":216},",":{"d":"33,49v32,-8,34,-46,32,-87r-30,0r0,38r15,0v1,16,-6,29,-17,34r0,15","w":100},"-":{"d":"112,-89r0,-20r-90,0r0,20r90,0","w":133},"\u00ad":{"d":"112,-89r0,-20r-90,0r0,20r90,0","w":133},".":{"d":"65,0r0,-38r-30,0r0,38r30,0","w":100},"\/":{"d":"15,5r110,-267r-19,0r-111,267r20,0","w":119},"0":{"d":"35,-125v0,-55,10,-110,65,-110v55,0,65,55,65,110v0,55,-9,111,-65,111v-55,0,-65,-56,-65,-111xm188,-125v0,-69,-18,-129,-88,-129v-71,0,-88,62,-88,130v0,68,17,129,88,129v71,0,88,-61,88,-130"},"1":{"d":"106,-252v-4,39,-29,49,-71,49r0,16r67,0r0,187r22,0r0,-252r-18,0"},"2":{"d":"99,-235v56,-4,70,65,35,99v-43,41,-116,56,-121,136r166,0r0,-21r-140,0v24,-75,133,-68,139,-162v6,-88,-140,-93,-154,-18v-3,11,-5,23,-5,36r23,0v-2,-43,17,-67,57,-70"},"3":{"d":"98,-14v-41,0,-64,-23,-63,-66r-23,0v-3,56,31,85,86,85v51,0,87,-25,87,-76v0,-35,-20,-58,-52,-63v26,-5,40,-27,42,-56v4,-69,-99,-81,-136,-41v-13,14,-22,34,-21,60r22,0v1,-38,19,-64,58,-64v32,0,55,15,55,47v0,36,-30,49,-71,46r0,19v47,-3,80,11,80,54v0,36,-27,55,-64,55"},"4":{"d":"11,-63r116,0r0,63r21,0r0,-63r38,0r0,-19r-38,0r0,-170r-21,0r-116,167r0,22xm31,-82r96,-137r0,137r-96,0"},"5":{"d":"98,-14v-38,0,-60,-21,-62,-58r-23,0v3,48,32,77,83,77v53,0,83,-33,87,-85v6,-76,-88,-113,-138,-64r16,-84r110,0r0,-21r-126,0r-24,131r19,0v28,-50,127,-32,121,36v-3,39,-22,68,-63,68"},"6":{"d":"42,-78v1,-41,21,-67,62,-67v41,0,61,27,61,67v0,38,-22,64,-60,64v-41,0,-63,-23,-63,-64xm107,-235v30,-1,48,21,52,47r23,0v-5,-43,-31,-66,-78,-66v-68,2,-90,59,-90,125v0,75,14,136,89,134v52,-1,85,-33,85,-85v0,-52,-31,-82,-83,-84v-33,-2,-56,22,-68,42v2,-57,12,-112,70,-113"},"7":{"d":"78,0v5,-101,52,-174,102,-228r0,-21r-162,0r0,21r140,0v-55,62,-96,124,-104,228r24,0"},"8":{"d":"164,-71v0,39,-25,56,-64,57v-39,0,-64,-19,-64,-57v0,-37,26,-54,64,-54v37,0,64,17,64,54xm135,-135v22,-9,42,-25,41,-56v-1,-44,-34,-63,-76,-63v-43,0,-76,20,-77,63v-1,31,19,46,41,56v-86,27,-53,146,36,140v52,-3,87,-24,87,-76v0,-35,-22,-58,-52,-64xm154,-191v0,31,-22,47,-54,47v-32,0,-54,-16,-54,-47v0,-29,24,-44,54,-44v30,0,54,13,54,44"},"9":{"d":"158,-170v0,40,-22,66,-62,66v-40,0,-61,-26,-61,-66v0,-39,22,-65,60,-65v42,0,63,24,63,65xm94,-14v-30,1,-49,-20,-53,-46r-23,0v5,43,32,66,78,65v68,-1,90,-58,90,-125v0,-77,-14,-134,-88,-134v-54,1,-86,33,-86,85v0,52,30,83,83,84v32,2,56,-21,68,-41v-1,57,-13,109,-69,112"},":":{"d":"65,-142r0,-38r-30,0r0,38r30,0xm65,0r0,-38r-30,0r0,38r30,0","w":100},";":{"d":"33,49v32,-8,34,-46,32,-87r-30,0r0,38r15,0v1,16,-6,29,-17,34r0,15xm65,-142r0,-38r-30,0r0,38r30,0","w":100},"\u037e":{"d":"33,49v32,-8,34,-46,32,-87r-30,0r0,38r15,0v1,16,-6,29,-17,34r0,15xm65,-142r0,-38r-30,0r0,38r30,0","w":100},"<":{"d":"199,-17r-160,-74r160,-74r0,-20r-182,84r0,20r182,84r0,-20","w":216},"=":{"d":"199,-136r-181,0r0,19r181,0r0,-19xm199,-65r-181,0r0,19r181,0r0,-19","w":216},">":{"d":"17,-17r0,20r182,-84r0,-20r-182,-84r0,20r160,74","w":216},"?":{"d":"143,-135v50,-39,33,-132,-42,-127v-53,4,-80,31,-82,84r23,0v0,-40,19,-65,58,-65v31,0,52,19,52,48v0,59,-72,59,-65,131r22,0v-3,-40,14,-55,34,-71xm83,0r30,0r0,-38r-30,0r0,38","w":193},"@":{"d":"92,-100v2,-42,22,-79,61,-84v18,2,27,16,29,34v-5,39,-21,84,-60,84v-18,0,-30,-14,-30,-34xm191,-62v-13,-1,-8,-21,-5,-30r35,-104r-19,0r-9,24v-6,-18,-18,-31,-38,-31v-55,0,-86,49,-86,104v0,31,18,53,48,53v19,0,36,-14,46,-24v1,15,11,24,25,24v52,0,83,-48,83,-104v0,-73,-50,-112,-122,-112v-80,0,-126,52,-132,132v-10,136,187,180,245,71r-19,0v-20,26,-49,48,-93,48v-70,0,-114,-46,-114,-116v0,-72,43,-119,114,-119v61,0,102,33,102,94v0,44,-22,83,-61,90","w":288},"A":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226,"k":{"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24}},"B":{"d":"202,-74v0,70,-86,50,-152,53r0,-102v63,3,152,-17,152,49xm217,-194v0,-84,-110,-59,-191,-63r0,257v89,-1,203,17,201,-73v0,-35,-23,-59,-55,-63v27,-7,45,-26,45,-58xm193,-188v-4,58,-84,42,-143,44r0,-92v59,2,147,-14,143,48","w":240},"C":{"d":"135,-242v43,0,71,25,79,63r24,0v-8,-52,-45,-83,-103,-83v-80,0,-113,53,-121,133v-13,129,166,183,217,74v6,-13,9,-27,11,-43r-25,0v-6,48,-32,83,-82,83v-67,0,-97,-49,-97,-114v0,-64,31,-113,97,-113","w":253},"D":{"d":"208,-129v0,95,-60,116,-158,108r0,-215v97,-7,158,12,158,107xm233,-129v0,-83,-39,-128,-118,-128r-89,0r0,257r89,0v80,-2,118,-46,118,-129","w":246},"E":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257","w":213},"F":{"d":"26,0r24,0r0,-122r124,0r0,-21r-124,0r0,-93r139,0r0,-21r-163,0r0,257","w":193,"k":{"A":20,".":46,",":46}},"G":{"d":"135,5v46,1,73,-22,90,-52r3,47r18,0r0,-131r-110,0r0,21r88,0v0,59,-31,95,-89,95v-67,0,-97,-49,-97,-114v0,-64,31,-113,97,-113v46,0,75,27,83,65r24,0v-10,-53,-46,-85,-107,-85v-80,0,-121,53,-121,133v0,81,41,132,121,134","w":266},"H":{"d":"26,0r24,0r0,-125r153,0r0,125r25,0r0,-257r-25,0r0,112r-153,0r0,-112r-24,0r0,257","w":253},"I":{"d":"28,0r24,0r0,-257r-24,0r0,257","w":79},"J":{"d":"79,5v54,0,75,-25,75,-77r0,-185r-24,0r0,175v-1,40,-8,67,-49,67v-40,0,-50,-32,-49,-67r-24,0v-1,53,18,87,71,87","w":180},"K":{"d":"26,0r24,0r0,-88r50,-46r107,134r31,0r-120,-151r115,-106r-33,0r-150,138r0,-138r-24,0r0,257","w":233},"L":{"d":"26,0r168,0r0,-21r-144,0r0,-236r-24,0r0,257","w":193,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"25,0r25,0r0,-222r89,222r23,0r88,-222r0,222r25,0r0,-257r-36,0r-89,225r-89,-225r-36,0r0,257","w":299},"N":{"d":"26,0r24,0r1,-217r150,217r27,0r0,-257r-25,0r0,217r-150,-217r-27,0r0,257","w":253},"O":{"d":"134,-262v-81,0,-122,54,-122,133v0,80,41,134,122,134v80,0,121,-55,121,-134v0,-79,-41,-133,-121,-133xm134,-15v-66,0,-97,-47,-97,-114v0,-66,32,-113,97,-113v66,0,96,49,96,113v0,65,-30,114,-96,114","w":266},"P":{"d":"216,-184v0,-91,-104,-71,-190,-73r0,257r24,0r0,-110v81,1,166,10,166,-74xm192,-184v0,67,-78,52,-142,53r0,-105v63,2,142,-15,142,52","w":226,"k":{"A":27,".":55,",":55}},"Q":{"d":"134,-242v100,-5,122,143,63,201r-37,-28r-13,15r34,26v-73,38,-149,-17,-144,-101v4,-66,32,-110,97,-113xm134,5v28,1,49,-7,66,-19r40,31r12,-16r-36,-28v25,-22,39,-59,39,-102v0,-79,-41,-133,-121,-133v-81,0,-122,54,-122,133v0,80,41,132,122,134","w":266},"R":{"d":"222,-190v1,-88,-111,-64,-196,-67r0,257r24,0r0,-114r93,0v63,-4,43,71,59,114r27,0v-11,-14,-12,-41,-12,-66v0,-34,-17,-52,-45,-59v32,-5,50,-31,50,-65xm197,-185v0,66,-84,48,-147,50r0,-101v63,2,147,-17,147,51","w":240,"k":{"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"S":{"d":"121,-15v-50,0,-84,-19,-84,-70r-24,0v-3,65,41,84,103,90v89,9,134,-94,57,-132v-41,-21,-121,-7,-127,-63v-4,-39,28,-52,64,-52v40,0,68,20,70,59r25,0v-2,-54,-41,-73,-95,-79v-94,-10,-121,114,-31,134v43,9,110,9,110,60v0,37,-33,53,-68,53","w":226},"T":{"d":"-2,-236r90,0r0,236r24,0r0,-236r90,0r0,-21r-204,0r0,21","k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"i":-9,"e":40,"c":40,"a":40,"A":24,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"123,-15v-109,0,-67,-145,-75,-242r-25,0r0,164v2,62,36,98,100,98v64,0,100,-34,100,-98r0,-164r-24,0v-8,98,34,242,-76,242","w":246},"V":{"d":"93,0r28,0r96,-257r-26,0r-84,230r-83,-230r-27,0","w":213,"k":{"y":6,"u":13,"r":13,"o":20,"i":-2,"e":20,"a":20,"A":20,";":27,":":27,".":46,"-":20,",":46}},"W":{"d":"71,0r27,0r65,-230r66,230r26,0r70,-257r-24,0r-59,225r-63,-225r-31,0r-63,225r-59,-225r-26,0","w":326,"k":{"u":6,"r":6,"o":6,"i":-9,"e":6,"a":13,"A":6,";":6,":":6,".":27,",":27}},"X":{"d":"88,-132r-92,132r27,0r80,-113r78,113r29,0r-93,-132r88,-125r-27,0r-75,108r-73,-108r-29,0","w":206},"Y":{"d":"98,0r24,0r0,-106r102,-151r-30,0r-84,130r-84,-130r-30,0r102,151r0,106","w":219,"k":{"v":20,"u":27,"q":33,"p":27,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":36,"-":40,",":44}},"Z":{"d":"13,-236r158,0r-169,214r0,22r200,0r0,-21r-173,0r169,-214r0,-22r-185,0r0,21","w":206},"[":{"d":"85,69r0,-19r-35,0r0,-293r35,0r0,-19r-58,0r0,331r58,0","w":86},"\\":{"d":"125,5r-111,-267r-19,0r110,267r20,0","w":119},"]":{"d":"1,-262r0,19r36,0r0,293r-36,0r0,19r58,0r0,-331r-58,0","w":86},"^":{"d":"37,-86r71,-140r72,140r20,0r-83,-163r-18,0r-83,163r21,0","w":216},"_":{"d":"180,45r0,-18r-180,0r0,18r180,0","w":180},"`":{"d":"36,-212r19,0r-38,-50r-28,0","w":66},"a":{"d":"34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98","w":186},"b":{"d":"109,-172v43,0,61,34,61,79v0,45,-18,79,-61,79v-46,0,-65,-34,-65,-79v0,-45,19,-79,65,-79xm109,-191v-33,0,-54,17,-65,41r0,-107r-22,0r0,257r20,0v1,-11,-2,-26,1,-35v9,24,34,40,66,40v57,-2,84,-41,84,-98v0,-57,-27,-98,-84,-98","w":206},"c":{"d":"100,-172v31,-1,47,19,53,45r22,0v-4,-40,-33,-65,-75,-64v-58,1,-82,41,-88,98v-10,106,154,138,165,26r-23,0v-4,30,-22,53,-54,53v-44,0,-65,-34,-65,-79v0,-45,21,-77,65,-79","w":186},"d":{"d":"97,-14v-44,0,-61,-36,-61,-79v0,-43,17,-79,61,-79v46,0,65,33,65,79v0,46,-19,79,-65,79xm97,5v35,1,54,-19,67,-40r0,35r21,0r0,-257r-23,0r0,107v-10,-25,-32,-41,-65,-41v-57,0,-83,41,-83,98v0,57,26,97,83,98","w":206},"e":{"d":"154,-61v-3,48,-79,63,-105,23v-8,-12,-13,-31,-14,-49r143,0v0,-59,-23,-104,-82,-104v-58,0,-84,42,-84,98v0,58,26,97,84,98v50,1,72,-26,81,-66r-23,0xm35,-106v-3,-67,96,-90,116,-25v3,8,4,16,4,25r-120,0","w":186},"f":{"d":"98,-256v-50,-8,-70,18,-64,70r-32,0r0,19r32,0r0,167r23,0r0,-167r36,0r0,-19r-36,0v-4,-34,3,-61,41,-50r0,-20","w":93,"k":{"f":6}},"g":{"d":"156,-95v0,41,-19,74,-60,74v-42,0,-61,-33,-61,-74v0,-44,18,-77,61,-77v43,0,60,35,60,77xm96,74v120,5,74,-154,83,-260r-23,0v-1,10,2,24,-1,32v-9,-19,-31,-37,-59,-37v-56,1,-84,39,-84,93v0,57,26,95,84,96v29,0,49,-18,60,-38v3,55,-7,96,-60,95v-29,0,-49,-12,-54,-37r-23,0v4,39,35,54,77,56"},"h":{"d":"104,-191v-30,2,-49,17,-60,37r0,-103r-23,0r0,257r23,0v3,-74,-19,-172,58,-172v74,0,39,106,47,172r23,0v-5,-83,26,-197,-68,-191","w":193},"i":{"d":"22,0r23,0r0,-186r-23,0r0,186xm22,-221r23,0r0,-36r-23,0r0,36","w":66},"j":{"d":"-11,68v40,6,57,-14,56,-51r0,-203r-23,0r0,209v1,21,-10,31,-33,26r0,19xm22,-221r23,0r0,-36r-23,0r0,36","w":66},"k":{"d":"22,0r22,0r0,-71r37,-30r73,101r29,0r-85,-117r79,-69r-30,0r-103,90r0,-161r-22,0r0,257","w":180},"l":{"d":"22,0r23,0r0,-257r-23,0r0,257","w":66},"m":{"d":"104,-191v-33,-1,-47,20,-62,37r0,-32r-20,0r0,186r22,0v4,-72,-20,-172,56,-172v27,1,39,18,39,46r0,126r22,0v5,-69,-22,-171,51,-172v73,-1,35,109,44,172r22,0v-5,-78,26,-195,-61,-191v-27,1,-50,14,-59,36v-5,-23,-28,-35,-54,-36","w":299},"n":{"d":"104,-191v-30,2,-49,17,-60,37r0,-32r-23,0r0,186r23,0v3,-74,-19,-172,58,-172v74,0,39,106,47,172r23,0v-5,-83,26,-197,-68,-191","w":193},"o":{"d":"188,-93v0,-57,-30,-98,-88,-98v-58,0,-88,41,-88,98v0,57,30,98,88,98v58,0,88,-41,88,-98xm35,-93v0,-45,21,-79,65,-79v45,0,65,35,65,79v0,44,-20,79,-65,79v-44,0,-65,-34,-65,-79"},"p":{"d":"109,-172v43,0,61,34,61,79v0,45,-18,79,-61,79v-46,0,-65,-34,-65,-79v0,-47,18,-79,65,-79xm109,-191v-32,0,-56,19,-67,41r0,-36r-20,0r0,255r22,0r1,-104v10,24,31,40,64,40v57,0,84,-41,84,-98v0,-57,-27,-96,-84,-98","w":206},"q":{"d":"97,-14v-44,0,-61,-36,-61,-79v0,-43,17,-79,61,-79v46,0,65,33,65,79v0,46,-19,79,-65,79xm97,5v34,0,54,-17,65,-40r0,104r23,0r0,-255r-21,0v-1,11,2,27,-1,36v-9,-25,-34,-41,-66,-41v-57,0,-83,41,-83,98v0,57,26,97,83,98","w":206},"r":{"d":"113,-188v-38,-2,-58,20,-71,46r0,-44r-20,0r0,186r22,0r0,-99v2,-42,27,-65,69,-67r0,-22","w":113,"k":{"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"84,-172v29,0,48,13,49,41r23,0v-3,-39,-27,-60,-69,-60v-61,0,-96,68,-38,95v30,14,90,5,90,47v0,25,-23,35,-50,35v-31,1,-54,-17,-55,-46r-23,0v3,45,31,60,76,65v78,9,104,-94,22,-107v-28,-4,-69,-6,-69,-38v0,-24,21,-32,44,-32","w":173},"t":{"d":"95,-18v-21,4,-37,1,-37,-23r0,-126r37,0r0,-19r-37,0r0,-56r-23,0r0,56r-32,0r0,19r32,0r0,127v-3,40,23,45,60,41r0,-19","w":106},"u":{"d":"86,5v32,0,52,-18,65,-38r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0v5,81,-26,191,65,191","w":193},"v":{"d":"72,0r24,0r70,-186r-23,0r-59,163r-58,-163r-25,0","w":166,"k":{".":27,",":27}},"w":{"d":"63,0r24,0r47,-156r45,156r25,0r60,-186r-24,0r-48,159r-46,-159r-25,0r-46,159r-48,-159r-24,0","w":266,"k":{".":20,",":20}},"x":{"d":"0,0r28,0r58,-78r58,78r29,0r-73,-97r67,-89r-28,0r-52,71r-53,-71r-28,0r66,90","w":173},"y":{"d":"75,-1v-10,25,-16,60,-56,49v-8,22,16,24,35,19v18,-5,24,-21,31,-39r81,-214r-23,0r-57,159r-61,-159r-24,0","w":166,"k":{".":33,",":33}},"z":{"d":"156,-170r0,-16r-142,0r0,19r113,0r-122,149r0,18r156,0r0,-19r-128,0","w":166},"{":{"d":"30,-87v66,18,-23,170,75,156r0,-19v-57,-2,-1,-125,-52,-147v28,-15,25,-64,25,-109v0,-19,3,-40,27,-37r0,-19v-57,-10,-49,46,-49,98v0,27,-2,56,-26,58r0,19","w":119},"|":{"d":"31,77r19,0r0,-360r-19,0r0,360","w":79},"}":{"d":"64,-164v-1,-49,11,-109,-50,-98r0,19v40,-3,25,51,27,87v2,28,11,48,26,60v-29,14,-27,64,-26,109v0,21,-3,40,-27,37r0,19v58,10,50,-46,50,-99v0,-26,1,-56,26,-57r0,-20v-25,-1,-25,-31,-26,-57","w":119},"~":{"d":"68,-93v40,4,85,46,115,4r8,-11r-13,-13v-7,10,-15,24,-31,24v-40,-10,-100,-45,-122,8r13,13v5,-11,14,-26,30,-25","w":216},"\u00a1":{"d":"50,-122r-13,0r-6,117r0,74r25,0r0,-74xm28,-186r0,38r31,0r0,-38r-31,0","w":86},"\u00a2":{"d":"97,-14v-73,-8,-71,-151,0,-157r0,157xm111,-172v29,0,43,20,49,45r23,0v-5,-40,-30,-62,-72,-64r0,-31r-14,0r0,32v-51,6,-78,42,-78,97v0,55,27,92,78,98r0,37r14,0r0,-37v42,-2,68,-32,73,-72r-23,0v-4,29,-19,51,-50,53r0,-158"},"\u00a3":{"d":"40,-18v21,-16,54,-62,30,-101r51,0r0,-11r-58,0v-7,-19,-22,-30,-21,-57v1,-37,23,-56,60,-56v40,0,61,24,60,66r23,0v1,-54,-30,-86,-83,-85v-49,1,-82,24,-83,74v0,25,10,41,20,58r-22,0r0,11r29,0v23,39,-1,89,-31,105r13,19v45,-39,124,32,167,-22r-11,-17v-10,10,-24,20,-42,20v-34,0,-71,-26,-102,-4"},"\u00a4":{"d":"31,-180v-26,25,-26,86,0,111r-21,20r14,14r20,-20v26,24,87,27,112,0r19,20r14,-14r-19,-19v25,-27,25,-86,0,-113r19,-19r-14,-14r-19,20v-25,-26,-86,-24,-112,0r-20,-20r-14,14xm100,-56v-41,0,-66,-28,-66,-69v0,-41,26,-68,66,-68v41,0,67,26,67,68v0,42,-26,69,-67,69"},"\u00a5":{"d":"40,-109v15,2,38,-4,48,3r0,26r-48,0r0,17r48,0r0,63r23,0r0,-63r49,0r0,-17r-49,0v1,-9,-2,-23,2,-29r47,0r0,-17r-39,0r76,-131r-25,0r-72,131r-72,-131r-26,0r76,131r-38,0r0,17"},"\u00a6":{"d":"31,32r19,0r0,-90r-19,0r0,90xm31,-148r19,0r0,-90r-19,0r0,90","w":79},"\u00a7":{"d":"68,-161v34,24,116,43,85,103v-6,6,-13,10,-22,14v-33,-24,-114,-43,-84,-102v6,-6,12,-11,21,-15xm145,-33v20,-9,39,-22,39,-50v0,-78,-110,-61,-124,-128v2,-22,16,-33,40,-32v27,1,42,17,42,44r23,0v1,-41,-27,-63,-67,-63v-52,0,-81,58,-43,90v-20,9,-39,23,-39,51v0,78,111,60,124,128v0,23,-18,32,-40,32v-26,0,-43,-16,-42,-45r-23,0v-1,42,26,64,67,64v53,0,81,-58,43,-91"},"\u00a8":{"d":"77,-218r0,-36r-24,0r0,36r24,0xm14,-218r0,-36r-25,0r0,36r25,0","w":66},"\u00a9":{"d":"144,5v82,0,134,-52,134,-134v0,-81,-53,-133,-134,-133v-82,0,-134,52,-134,133v0,82,52,134,134,134xm144,-243v69,0,113,45,113,114v0,69,-43,115,-113,115v-69,0,-113,-45,-113,-115v0,-70,45,-114,113,-114xm148,-195v26,0,43,16,47,38r19,0v-5,-34,-30,-54,-67,-54v-51,0,-73,33,-78,82v-9,88,128,116,145,29r-19,0v-4,22,-21,38,-47,38v-41,-1,-60,-27,-60,-67v0,-40,20,-65,60,-66","w":288},"\u00aa":{"d":"15,-168v0,-31,50,-17,67,-30v4,34,-12,51,-42,51v-14,0,-25,-7,-25,-21xm99,-156v1,-49,9,-103,-46,-98v-29,3,-49,10,-50,39r16,0v0,-17,15,-25,31,-25v26,-7,49,32,13,35v-30,3,-65,4,-65,38v0,46,72,43,88,11v-2,18,10,23,27,19r0,-12v-6,3,-14,1,-14,-7","w":111},"\u00ab":{"d":"127,-43r0,-24r-33,-32r33,-32r0,-24r-47,45r0,22xm69,-43r0,-24r-33,-32r33,-32r0,-24r-47,45r0,22","w":153},"\u00ac":{"d":"180,-40r19,0r0,-96r-181,0r0,19r162,0r0,77","w":216},"\u00ae":{"d":"278,-129v0,-81,-53,-133,-134,-133v-82,0,-134,52,-134,133v0,82,52,134,134,134v82,0,134,-52,134,-134xm31,-129v0,-70,45,-114,113,-114v69,0,113,45,113,114v0,69,-43,115,-113,115v-69,0,-113,-45,-113,-115xm205,-163v0,-53,-60,-42,-110,-43r0,155r19,0r0,-69r33,0r43,69r22,0r-46,-69v23,-4,39,-16,39,-43xm186,-163v0,33,-40,26,-72,27r0,-54v33,0,72,-6,72,27","w":288},"\u00af":{"d":"93,-228r0,-16r-119,0r0,16r119,0","w":66},"\u02c9":{"d":"93,-228r0,-16r-119,0r0,16r119,0","w":66},"\u00b0":{"d":"72,-254v-31,0,-52,21,-52,52v0,31,21,52,52,52v31,0,52,-21,52,-52v0,-31,-21,-52,-52,-52xm72,-165v-24,0,-38,-15,-38,-37v0,-23,15,-38,38,-38v23,0,38,15,38,38v0,22,-14,37,-38,37","w":144},"\u00b1":{"d":"99,-116r-81,0r0,19r81,0r0,65r19,0r0,-65r81,0r0,-19r-81,0r0,-65r-19,0r0,65xm18,0r181,0r0,-19r-181,0r0,19","w":216},"\u00b2":{"d":"115,-209v4,-48,-69,-57,-94,-30v-9,10,-12,23,-12,40r17,0v-1,-25,11,-41,35,-41v21,1,35,9,37,29v-8,59,-91,47,-93,112r109,0r0,-14r-89,0v16,-45,86,-38,90,-96","w":119},"\u00b3":{"d":"95,-213v-1,23,-21,28,-46,27r0,14v27,-2,52,5,52,30v0,22,-20,33,-42,33v-24,0,-39,-15,-39,-39r-17,0v-3,35,24,49,57,53v58,6,81,-77,24,-85v49,-17,26,-74,-25,-74v-33,0,-52,21,-53,51r17,0v0,-22,12,-38,36,-37v17,1,36,8,36,27","w":119},"\u00b4":{"d":"78,-262r-28,0r-38,50r18,0","w":66},"\u00b5":{"d":"44,-7v35,25,93,7,107,-26r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0r0,255r23,0r0,-76","w":193},"\u03bc":{"d":"44,-7v35,25,93,7,107,-26r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0r0,255r23,0r0,-76","w":193},"\u00b6":{"d":"24,-186v2,41,30,67,74,68r0,182r23,0r0,-302r43,0r0,302r23,0r0,-321v-79,-2,-168,-9,-163,71","w":216},"\u00b7":{"d":"71,-113v0,-12,-9,-22,-21,-22v-12,0,-21,9,-21,21v0,12,9,21,21,21v11,0,21,-9,21,-20","w":100},"\u2219":{"d":"71,-113v0,-12,-9,-22,-21,-22v-12,0,-21,9,-21,21v0,12,9,21,21,21v11,0,21,-9,21,-20","w":100},"\u00b8":{"d":"32,74v39,6,56,-55,11,-54v-5,0,-9,0,-13,1r15,-21v-22,-2,-22,19,-34,28v6,12,39,-7,39,17v0,23,-33,14,-47,10r-5,12v9,5,22,5,34,7","w":66},"\u00b9":{"d":"59,-251v-3,22,-21,27,-46,27r0,14r43,0r0,111r17,0r0,-152r-14,0","w":119},"\u00ba":{"d":"1,-193v0,36,20,61,57,61v39,0,61,-23,61,-61v0,-38,-22,-61,-61,-61v-37,0,-57,24,-57,61xm102,-193v0,28,-15,46,-42,46v-28,0,-42,-19,-42,-46v0,-27,14,-47,42,-47v27,0,42,19,42,47","w":120},"\u00bb":{"d":"84,-43r48,-45r0,-22r-48,-45r0,24r34,32r-34,32r0,24xm26,-43r48,-45r0,-22r-48,-45r0,24r34,32r-34,32r0,24","w":153},"\u00bc":{"d":"48,12r17,0r163,-273r-17,0xm63,-251v-2,23,-21,27,-46,27r0,14r44,0r0,111r17,0r0,-152r-15,0xm231,0r17,0r0,-36r25,0r0,-14r-25,0r0,-102r-16,0r-76,102r0,14r75,0r0,36xm172,-50r59,-78r0,78r-59,0","w":300},"\u00bd":{"d":"48,12r17,0r163,-273r-17,0xm63,-251v-2,23,-21,27,-46,27r0,14r44,0r0,111r17,0r0,-152r-15,0xm257,-67v39,-26,29,-94,-27,-89v-36,3,-54,21,-54,56r17,0v0,-24,11,-41,36,-41v22,0,35,10,37,29v-9,58,-91,47,-93,112r109,0r0,-14r-90,0v9,-30,42,-38,65,-53","w":300},"\u00be":{"d":"95,-213v-1,23,-21,28,-46,27r0,14v27,-2,52,5,52,30v0,22,-20,33,-42,33v-24,0,-39,-15,-39,-39r-17,0v-3,35,24,49,57,53v58,6,81,-77,24,-85v49,-17,26,-74,-25,-74v-33,0,-52,21,-53,51r17,0v0,-22,12,-38,36,-37v17,1,36,8,36,27xm62,12r18,0r162,-273r-17,0xm231,0r17,0r0,-36r25,0r0,-14r-25,0r0,-102r-16,0r-76,102r0,14r75,0r0,36xm172,-50r59,-78r0,78r-59,0","w":300},"\u00bf":{"d":"19,8v0,69,95,84,134,43v13,-14,22,-34,21,-61r-22,0v-2,38,-18,65,-58,65v-30,0,-52,-17,-52,-49v0,-58,72,-59,65,-130r-23,0v7,72,-65,66,-65,132xm111,-186r-31,0r0,38r31,0r0,-38","w":193},"\u00c0":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0xm116,-278r19,0r-38,-50r-28,0","w":226},"\u00c1":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0xm158,-328r-28,0r-38,50r18,0","w":226},"\u00c2":{"d":"126,-328r-25,0r-41,50r21,0r32,-36r31,36r23,0xm-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226},"\u00c3":{"d":"71,-285v12,-50,86,41,99,-36r-14,0v-13,49,-85,-41,-99,36r14,0xm-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226},"\u00c4":{"d":"-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0xm157,-284r0,-36r-24,0r0,36r24,0xm94,-284r0,-36r-25,0r0,36r25,0","w":226},"\u00c5":{"d":"114,-348v-23,0,-39,15,-39,38v0,23,16,39,39,39v23,0,38,-16,38,-39v0,-23,-15,-38,-38,-38xm114,-285v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,24,11,24,24v0,13,-11,25,-24,25xm-3,0r27,0r31,-80r117,0r31,80r26,0r-100,-257r-28,0xm114,-233r49,132r-101,0","w":226},"\u00c6":{"d":"185,-122r124,0r0,-21r-124,0r0,-93r132,0r0,-21r-185,0r-135,257r28,0r42,-81r93,0r0,81r158,0r0,-21r-133,0r0,-101xm78,-102r68,-134r14,0r0,134r-82,0","w":326},"\u00c7":{"d":"125,74v40,6,57,-55,11,-54v-5,0,-9,0,-13,1r12,-16v67,-1,99,-42,107,-103r-25,0v-6,48,-32,83,-82,83v-67,0,-97,-49,-97,-114v0,-64,31,-113,97,-113v43,0,71,25,79,63r24,0v-8,-52,-45,-83,-103,-83v-80,0,-121,53,-121,133v0,76,38,126,108,134v-5,10,-25,20,-12,29v10,-5,35,-4,34,11v0,23,-33,14,-48,10r-5,12v9,5,22,5,34,7","w":253},"\u00c8":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257xm109,-278r19,0r-38,-50r-28,0","w":213},"\u00c9":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257xm151,-328r-28,0r-38,50r18,0","w":213},"\u00ca":{"d":"119,-328r-25,0r-41,50r21,0r32,-36r31,36r23,0xm26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257","w":213},"\u00cb":{"d":"26,0r179,0r0,-21r-155,0r0,-101r144,0r0,-21r-144,0r0,-93r153,0r0,-21r-177,0r0,257xm150,-284r0,-36r-24,0r0,36r24,0xm87,-284r0,-36r-25,0r0,36r25,0","w":213},"\u00cc":{"d":"28,0r24,0r0,-257r-24,0r0,257xm43,-278r19,0r-38,-50r-28,0","w":79},"\u00cd":{"d":"28,0r24,0r0,-257r-24,0r0,257xm85,-328r-28,0r-38,50r18,0","w":79},"\u00ce":{"d":"53,-328r-25,0r-41,50r21,0r31,-36r31,36r24,0xm28,0r24,0r0,-257r-24,0r0,257","w":79},"\u00cf":{"d":"28,0r24,0r0,-257r-24,0r0,257xm84,-284r0,-36r-24,0r0,36r24,0xm21,-284r0,-36r-25,0r0,36r25,0","w":79},"\u00d0":{"d":"208,-129v0,95,-60,116,-158,108r0,-104r85,0r0,-16r-85,0r0,-95v97,-7,158,12,158,107xm233,-129v0,-83,-39,-128,-118,-128r-89,0r0,116r-26,0r0,16r26,0r0,125r89,0v80,-2,118,-46,118,-129","w":246},"\u00d1":{"d":"84,-285v12,-50,87,42,99,-36r-13,0v-16,49,-86,-41,-100,36r14,0xm26,0r24,0r1,-217r150,217r27,0r0,-257r-25,0r0,217r-150,-217r-27,0r0,257","w":253},"\u00d2":{"d":"134,-262v-81,0,-122,54,-122,133v0,80,41,134,122,134v80,0,121,-55,121,-134v0,-79,-41,-133,-121,-133xm134,-15v-66,0,-97,-47,-97,-114v0,-66,32,-113,97,-113v66,0,96,49,96,113v0,65,-30,114,-96,114xm136,-278r19,0r-38,-50r-28,0","w":266},"\u00d3":{"d":"134,-262v-81,0,-122,54,-122,133v0,80,41,134,122,134v80,0,121,-55,121,-134v0,-79,-41,-133,-121,-133xm134,-15v-66,0,-97,-47,-97,-114v0,-66,32,-113,97,-113v66,0,96,49,96,113v0,65,-30,114,-96,114xm178,-328r-28,0r-38,50r18,0","w":266},"\u00d4":{"d":"146,-328r-25,0r-41,50r21,0r31,-36r31,36r24,0xm134,-262v-81,0,-122,54,-122,133v0,80,41,134,122,134v80,0,121,-55,121,-134v0,-79,-41,-133,-121,-133xm134,-15v-66,0,-97,-47,-97,-114v0,-66,32,-113,97,-113v66,0,96,49,96,113v0,65,-30,114,-96,114","w":266},"\u00d5":{"d":"91,-285v11,-51,85,41,99,-36r-14,0v-13,50,-86,-41,-99,36r14,0xm134,-262v-81,0,-122,54,-122,133v0,80,41,134,122,134v80,0,121,-55,121,-134v0,-79,-41,-133,-121,-133xm134,-15v-66,0,-97,-47,-97,-114v0,-66,32,-113,97,-113v66,0,96,49,96,113v0,65,-30,114,-96,114","w":266},"\u00d6":{"d":"134,-262v-81,0,-122,54,-122,133v0,80,41,134,122,134v80,0,121,-55,121,-134v0,-79,-41,-133,-121,-133xm134,-15v-66,0,-97,-47,-97,-114v0,-66,32,-113,97,-113v66,0,96,49,96,113v0,65,-30,114,-96,114xm177,-284r0,-36r-24,0r0,36r24,0xm114,-284r0,-36r-25,0r0,36r25,0","w":266},"\u00d7":{"d":"94,-90r-67,68r13,13r68,-68r68,68r13,-13r-68,-68r68,-68r-13,-14r-68,68r-68,-68r-13,14","w":216},"\u00d8":{"d":"209,-203v43,65,18,192,-75,188v-31,-1,-53,-12,-68,-29xm58,-54v-44,-66,-18,-188,76,-188v31,0,52,13,67,29xm134,5v117,0,151,-148,91,-226r26,-30r-9,-8r-26,28v-19,-18,-45,-32,-82,-31v-81,2,-120,54,-122,133v-1,38,11,71,30,93r-29,31r10,9r27,-31v19,19,46,32,84,32","w":266},"\u00d9":{"d":"123,-15v-109,0,-67,-145,-75,-242r-25,0r0,164v2,62,36,98,100,98v64,0,100,-34,100,-98r0,-164r-24,0v-8,98,34,242,-76,242xm126,-278r19,0r-38,-50r-28,0","w":246},"\u00da":{"d":"123,-15v-109,0,-67,-145,-75,-242r-25,0r0,164v2,62,36,98,100,98v64,0,100,-34,100,-98r0,-164r-24,0v-8,98,34,242,-76,242xm168,-328r-28,0r-38,50r18,0","w":246},"\u00db":{"d":"136,-328r-25,0r-41,50r21,0r31,-36r31,36r24,0xm123,-15v-109,0,-67,-145,-75,-242r-25,0r0,164v2,62,36,98,100,98v64,0,100,-34,100,-98r0,-164r-24,0v-8,98,34,242,-76,242","w":246},"\u00dc":{"d":"123,-15v-109,0,-67,-145,-75,-242r-25,0r0,164v2,62,36,98,100,98v64,0,100,-34,100,-98r0,-164r-24,0v-8,98,34,242,-76,242xm167,-284r0,-36r-24,0r0,36r24,0xm104,-284r0,-36r-25,0r0,36r25,0","w":246},"\u00dd":{"d":"98,0r24,0r0,-106r102,-151r-30,0r-84,130r-84,-130r-30,0r102,151r0,106xm155,-328r-28,0r-38,50r18,0","w":219},"\u00de":{"d":"216,-141v0,-84,-85,-75,-166,-74r0,-42r-24,0r0,257r24,0r0,-68v81,1,166,10,166,-73xm192,-141v0,66,-79,51,-142,52r0,-105v64,1,142,-14,142,53","w":226},"\u00df":{"d":"94,-262v-46,3,-71,23,-72,69r0,193r23,0r0,-191v1,-34,13,-53,49,-52v28,1,47,16,47,45v0,36,-27,46,-62,46r0,20v46,-1,75,11,75,58v0,43,-31,64,-75,56r0,20v60,5,98,-22,98,-80v0,-39,-22,-60,-54,-67v68,-17,44,-122,-29,-117","w":193},"\u00e0":{"d":"34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98xm96,-212r19,0r-38,-50r-28,0","w":186},"\u00e1":{"d":"34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98xm138,-262r-28,0r-38,50r18,0","w":186},"\u00e2":{"d":"106,-262r-25,0r-41,50r21,0r32,-36r30,36r24,0xm34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98","w":186},"\u00e3":{"d":"51,-219v10,-51,86,42,99,-36r-14,0v-14,48,-86,-41,-99,36r14,0xm34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98","w":186},"\u00e4":{"d":"34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98xm137,-218r0,-36r-24,0r0,36r24,0xm74,-218r0,-36r-25,0r0,36r25,0","w":186},"\u00e5":{"d":"94,-282v-23,0,-39,15,-39,38v0,23,16,39,39,39v23,0,38,-16,38,-39v0,-23,-15,-38,-38,-38xm94,-219v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,24,11,24,24v0,13,-11,25,-24,25xm34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm163,-131v6,-65,-80,-73,-121,-45v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-128,-3,-128,85v0,38,25,53,62,54v38,2,52,-17,68,-37v-2,26,15,37,42,31r0,-20v-10,5,-21,1,-21,-12r0,-98","w":186},"\u00e6":{"d":"163,-106v-9,-72,95,-88,113,-25v3,8,4,16,4,25r-117,0xm34,-50v0,-50,75,-29,106,-52v5,55,-15,87,-64,88v-24,0,-42,-13,-42,-36xm279,-60v-2,47,-77,62,-103,25v-9,-13,-15,-31,-13,-52r140,0v-2,-58,-20,-105,-81,-104v-33,0,-55,15,-65,38v-6,-45,-82,-47,-115,-23v-14,10,-22,25,-23,47r23,0v0,-29,21,-43,50,-43v28,1,51,8,48,38v-5,57,-126,-3,-128,85v-2,76,131,66,140,8v10,48,84,60,121,29v14,-11,23,-27,28,-48r-22,0","w":313},"\u00e7":{"d":"92,74v39,6,56,-55,11,-54v-5,0,-9,0,-13,1r12,-16v44,0,70,-32,75,-72r-23,0v-4,30,-22,53,-54,53v-44,0,-65,-34,-65,-79v0,-45,21,-77,65,-79v31,-1,47,19,53,45r22,0v-4,-40,-33,-65,-75,-64v-58,1,-88,41,-88,98v0,55,28,91,77,98v-5,10,-25,20,-12,29v10,-5,35,-4,34,11v0,23,-33,14,-48,10r-5,12v9,5,22,5,34,7","w":186},"\u00e8":{"d":"154,-61v-3,48,-79,63,-105,23v-8,-12,-13,-31,-14,-49r143,0v0,-59,-23,-104,-82,-104v-58,0,-84,42,-84,98v0,58,26,97,84,98v50,1,72,-26,81,-66r-23,0xm35,-106v-3,-67,96,-90,116,-25v3,8,4,16,4,25r-120,0xm96,-212r19,0r-38,-50r-28,0","w":186},"\u00e9":{"d":"154,-61v-3,48,-79,63,-105,23v-8,-12,-13,-31,-14,-49r143,0v0,-59,-23,-104,-82,-104v-58,0,-84,42,-84,98v0,58,26,97,84,98v50,1,72,-26,81,-66r-23,0xm35,-106v-3,-67,96,-90,116,-25v3,8,4,16,4,25r-120,0xm138,-262r-28,0r-38,50r18,0","w":186},"\u00ea":{"d":"106,-262r-25,0r-41,50r21,0r32,-36r30,36r24,0xm154,-61v-3,48,-79,63,-105,23v-8,-12,-13,-31,-14,-49r143,0v0,-59,-23,-104,-82,-104v-58,0,-84,42,-84,98v0,58,26,97,84,98v50,1,72,-26,81,-66r-23,0xm35,-106v-3,-67,96,-90,116,-25v3,8,4,16,4,25r-120,0","w":186},"\u00eb":{"d":"154,-61v-3,48,-79,63,-105,23v-8,-12,-13,-31,-14,-49r143,0v0,-59,-23,-104,-82,-104v-58,0,-84,42,-84,98v0,58,26,97,84,98v50,1,72,-26,81,-66r-23,0xm35,-106v-3,-67,96,-90,116,-25v3,8,4,16,4,25r-120,0xm137,-218r0,-36r-24,0r0,36r24,0xm74,-218r0,-36r-25,0r0,36r25,0","w":186},"\u00ec":{"d":"45,0r0,-186r-23,0r0,186r23,0xm36,-212r19,0r-38,-50r-28,0","w":66},"\u00ed":{"d":"45,0r0,-186r-23,0r0,186r23,0xm78,-262r-28,0r-38,50r18,0","w":66},"\u00ee":{"d":"46,-262r-25,0r-41,50r21,0r31,-36r31,36r24,0xm45,0r0,-186r-23,0r0,186r23,0","w":66},"\u00ef":{"d":"45,0r0,-186r-23,0r0,186r23,0xm77,-218r0,-36r-24,0r0,36r24,0xm14,-218r0,-36r-25,0r0,36r25,0","w":66},"\u00f0":{"d":"35,-89v0,-44,19,-73,64,-74v45,0,64,32,64,73v0,45,-18,76,-64,76v-45,-1,-64,-32,-64,-75xm186,-93v0,-67,-33,-109,-71,-141r39,-22r-11,-11r-41,23r-38,-23r-13,12r34,20r-36,20r11,12r38,-21v19,15,39,35,47,56v-9,-11,-29,-13,-47,-14v-57,0,-86,38,-86,92v0,58,28,95,86,95v61,0,88,-41,88,-98"},"\u00f1":{"d":"54,-219v10,-52,87,42,99,-36r-14,0v-14,48,-86,-40,-99,36r14,0xm104,-191v-30,2,-49,17,-60,37r0,-32r-23,0r0,186r23,0v3,-74,-19,-172,58,-172v74,0,39,106,47,172r23,0v-5,-83,26,-197,-68,-191","w":193},"\u00f2":{"d":"188,-93v0,-57,-30,-98,-88,-98v-58,0,-88,41,-88,98v0,57,30,98,88,98v58,0,88,-41,88,-98xm35,-93v0,-45,21,-79,65,-79v45,0,65,35,65,79v0,44,-20,79,-65,79v-44,0,-65,-34,-65,-79xm103,-212r19,0r-38,-50r-28,0"},"\u00f3":{"d":"188,-93v0,-57,-30,-98,-88,-98v-58,0,-88,41,-88,98v0,57,30,98,88,98v58,0,88,-41,88,-98xm35,-93v0,-45,21,-79,65,-79v45,0,65,35,65,79v0,44,-20,79,-65,79v-44,0,-65,-34,-65,-79xm145,-262r-28,0r-38,50r18,0"},"\u00f4":{"d":"113,-262r-25,0r-41,50r21,0r31,-36r31,36r24,0xm188,-93v0,-57,-30,-98,-88,-98v-58,0,-88,41,-88,98v0,57,30,98,88,98v58,0,88,-41,88,-98xm35,-93v0,-45,21,-79,65,-79v45,0,65,35,65,79v0,44,-20,79,-65,79v-44,0,-65,-34,-65,-79"},"\u00f5":{"d":"58,-219v10,-51,86,42,99,-36r-14,0v-14,48,-86,-41,-99,36r14,0xm188,-93v0,-57,-30,-98,-88,-98v-58,0,-88,41,-88,98v0,57,30,98,88,98v58,0,88,-41,88,-98xm35,-93v0,-45,21,-79,65,-79v45,0,65,35,65,79v0,44,-20,79,-65,79v-44,0,-65,-34,-65,-79"},"\u00f6":{"d":"188,-93v0,-57,-30,-98,-88,-98v-58,0,-88,41,-88,98v0,57,30,98,88,98v58,0,88,-41,88,-98xm35,-93v0,-45,21,-79,65,-79v45,0,65,35,65,79v0,44,-20,79,-65,79v-44,0,-65,-34,-65,-79xm144,-218r0,-36r-24,0r0,36r24,0xm81,-218r0,-36r-25,0r0,36r25,0"},"\u00f7":{"d":"199,-81r0,-19r-181,0r0,19r181,0xm108,-183v-11,0,-20,9,-20,20v0,11,9,20,20,20v10,1,21,-10,20,-20v0,-11,-9,-20,-20,-20xm108,-38v-11,0,-20,9,-20,20v0,11,9,20,20,20v10,1,21,-10,20,-20v0,-11,-9,-20,-20,-20","w":216},"\u00f8":{"d":"48,-44v-36,-55,5,-155,79,-122v8,4,14,10,19,16xm153,-141v33,56,-6,154,-80,121v-8,-4,-14,-9,-19,-15xm100,5v83,4,109,-105,68,-163r20,-22r-8,-7r-19,20v-14,-15,-33,-23,-61,-24v-84,-4,-110,106,-68,164r-22,24r8,7r22,-23v13,15,33,23,60,24"},"\u00f9":{"d":"86,5v32,0,52,-18,65,-38r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0v5,81,-26,191,65,191xm99,-212r19,0r-38,-50r-28,0","w":193},"\u00fa":{"d":"86,5v32,0,52,-18,65,-38r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0v5,81,-26,191,65,191xm141,-262r-28,0r-38,50r18,0","w":193},"\u00fb":{"d":"109,-262r-25,0r-41,50r21,0r32,-36r31,36r23,0xm86,5v32,0,52,-18,65,-38r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0v5,81,-26,191,65,191","w":193},"\u00fc":{"d":"86,5v32,0,52,-18,65,-38r0,33r21,0r0,-186r-23,0v-3,72,18,169,-55,172v-78,3,-42,-105,-50,-172r-23,0v5,81,-26,191,65,191xm140,-218r0,-36r-24,0r0,36r24,0xm77,-218r0,-36r-25,0r0,36r25,0","w":193},"\u00fd":{"d":"75,-1v-10,25,-16,60,-56,49v-8,22,16,24,35,19v18,-5,24,-21,31,-39r81,-214r-23,0r-57,159r-61,-159r-24,0xm128,-262r-28,0r-38,50r18,0","w":166},"\u00fe":{"d":"109,-172v43,0,61,34,61,79v0,45,-18,79,-61,79v-46,0,-65,-34,-65,-79v0,-45,19,-79,65,-79xm109,-191v-33,0,-54,17,-65,41r0,-107r-22,0r0,326r22,0r1,-104v10,24,31,40,64,40v57,0,84,-41,84,-98v0,-57,-27,-98,-84,-98","w":206},"\u00ff":{"d":"75,-1v-10,25,-16,60,-56,49v-8,22,16,24,35,19v18,-5,24,-21,31,-39r81,-214r-23,0r-57,159r-61,-159r-24,0xm127,-218r0,-36r-24,0r0,36r24,0xm64,-218r0,-36r-25,0r0,36r25,0","w":166}}});
Cufon.registerFont({"w":180,"face":{"font-family":"vladimir-script","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"3 5 4 2 4 4 7 7 3 5","ascent":"288","descent":"-72","x-height":"3","cap-height":"12","bbox":"-83 -324 504 112","underline-thickness":"20.918","underline-position":"-27.7734","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":90},"!":{"d":"177,-200v2,6,-51,74,-141,162v-2,0,-4,-2,-4,-5v4,-18,129,-160,139,-163v4,0,6,1,6,6xm33,-20v2,12,-27,35,-30,13v-2,-12,26,-34,30,-13","w":85},"\"":{"d":"97,-164v1,-6,34,-67,45,-44v-9,13,-30,52,-45,44xm142,-164v2,-5,34,-67,46,-44r-34,44v-3,3,-11,3,-12,0","w":90},"#":{"d":"122,-126r34,-1v10,-9,29,-48,39,-38v0,3,-9,16,-27,38v6,0,19,-3,19,3v1,9,-16,8,-26,8r-22,33v7,-1,20,-2,20,4v0,5,-9,7,-28,7v-17,23,-30,51,-49,71v-10,-6,-1,-11,10,-29r26,-42r-35,1v-15,17,-29,53,-50,73v-10,-12,12,-28,38,-73v-7,-1,-22,2,-24,-3v0,-4,10,-7,31,-8r23,-33v-16,4,-44,-5,-11,-9r18,-1v10,-10,31,-51,41,-40v0,2,-9,14,-27,39xm114,-115r-23,33r35,-1r22,-33","w":166},"$":{"d":"129,-86v-23,4,-51,3,-49,-20v2,-25,38,-42,73,-42v18,-18,20,-33,29,-22v-4,6,-10,13,-18,22v11,1,16,6,16,17v0,11,-25,26,-32,14v4,-2,39,-12,6,-14v-19,-1,-92,25,-48,36v20,0,47,-7,45,18v-2,25,-46,55,-80,54v-20,28,-26,46,-37,37v0,-1,8,-15,26,-39v-38,-1,-29,-42,0,-41v2,0,4,1,4,3v2,5,-20,9,-18,14v0,5,6,8,19,8v31,0,63,-18,71,-41v0,-3,-2,-4,-7,-4","w":166},"%":{"d":"82,-146v0,-22,42,-61,64,-57v23,4,9,31,-4,47v25,2,61,-13,112,-32v4,0,5,2,5,6v-59,55,-197,134,-258,184v-2,0,-7,-5,-6,-8v0,-12,73,-66,221,-160v-33,11,-59,17,-80,17v-13,15,-25,22,-36,22v-11,0,-18,-9,-18,-19xm146,-189v-12,0,-35,28,-12,32v12,-12,22,-24,12,-32xm118,-173v-16,11,-23,21,-23,31v6,17,21,4,34,-8v-10,-4,-14,-12,-11,-23xm169,-57v0,20,-39,62,-58,60v-10,0,-20,-7,-19,-18v1,-28,36,-62,62,-62v9,0,15,11,15,20xm112,-6v16,1,64,-38,45,-55v-13,-2,-57,34,-54,48v0,5,3,7,9,7","w":189},"&":{"d":"28,-56v0,-22,36,-48,58,-48v20,0,29,13,25,32v15,-16,28,-40,47,-51v4,0,6,2,6,6v0,6,-17,27,-50,63v33,-1,58,-9,70,4v-22,5,-50,2,-80,8v-12,10,-36,61,-44,39v0,-4,9,-17,26,-38v-23,3,-58,6,-58,-15xm91,-92v-12,-1,-57,24,-55,36v6,13,39,7,59,3v11,-15,18,-36,-4,-39","w":185},"'":{"d":"97,-164v1,-6,34,-67,45,-44v-9,13,-30,52,-45,44","w":45},"(":{"d":"-30,52v46,-121,183,-269,301,-314v5,2,3,8,-3,10v-117,61,-231,189,-293,310v-3,0,-5,-2,-5,-6","w":110},")":{"d":"226,-256v-43,116,-187,271,-301,314v-6,-2,-2,-7,3,-10v119,-61,230,-190,293,-310v3,0,5,2,5,6","w":110},"*":{"d":"154,-182v-20,12,-25,25,-30,14v0,-1,9,-8,26,-19v-5,-5,-27,-14,-17,-20v1,0,9,5,23,16v8,-6,21,-34,29,-27v0,3,-7,13,-21,29v12,-3,51,2,25,7v-5,0,-14,0,-27,-1v12,23,4,40,-4,16","w":118},"+":{"d":"126,-108r48,-55r13,0r-48,55r54,0v-8,17,-41,8,-63,10r-48,55r-12,0r48,-55r-54,0r8,-10r54,0","w":166},",":{"d":"27,-19v3,18,-25,44,-42,48v-7,-5,-2,-4,8,-13v8,-7,13,-12,15,-16v-7,0,-11,-2,-11,-7v-2,-13,26,-35,30,-12","w":66},"-":{"d":"93,-48v-29,-1,-74,9,-88,-5v0,-5,21,-8,64,-8v14,-3,42,5,24,13","w":100},".":{"d":"28,-20v2,12,-26,35,-29,13v-2,-12,26,-35,29,-13","w":66},"\/":{"d":"347,-247v11,3,7,8,-4,17r-135,95r-211,140v-33,22,-52,32,-56,32v-9,-1,-8,-8,0,-13","w":208},"0":{"d":"27,-27v5,-65,85,-150,141,-165v11,8,20,-6,33,-6v14,0,21,8,21,24v0,74,-87,170,-160,179v-18,2,-35,-14,-35,-32xm57,-6v59,-15,141,-108,153,-172v-9,-26,-22,-4,-48,13v-3,-1,-2,-4,0,-8v-34,13,-121,112,-122,152v0,10,6,15,17,15","w":166},"1":{"d":"55,-2v-5,9,-12,0,-13,-6v4,-18,106,-128,138,-161v-38,21,-60,31,-67,31v-7,-3,-5,-8,4,-10v24,-7,79,-43,96,-52v18,5,7,14,-7,28v-39,38,-89,95,-151,170","w":166},"2":{"d":"203,-204v18,-1,36,17,35,35v-26,73,-157,107,-223,154r94,-10v19,-1,24,12,5,13v-34,2,-78,11,-112,15v-15,-5,-9,-29,8,-32v65,-41,159,-82,208,-132v9,-9,13,-28,-6,-28v-38,0,-81,32,-108,51v-3,0,-8,-5,-7,-8v11,-22,87,-64,106,-58","w":166},"3":{"d":"228,-165v9,25,-63,52,-111,59v25,-1,49,11,49,33v0,48,-61,73,-114,77v-43,3,-46,-54,-14,-61v11,6,-17,19,-13,30v0,10,8,15,23,15v38,0,101,-36,101,-66v-1,-25,-39,-24,-60,-17v-10,-6,-7,-11,8,-14v42,-9,103,-30,117,-63v0,-6,-5,-10,-17,-10v-27,-2,-61,15,-92,29v-3,-1,-4,-4,-4,-7v2,-14,64,-41,86,-38v21,-2,39,18,41,33","w":166},"4":{"d":"38,-79v-3,-30,174,-113,196,-116v16,2,8,10,-1,20r-81,86v18,-4,46,14,15,12v-7,0,-16,0,-26,1v-24,25,-45,56,-71,78v-5,0,-7,-2,-7,-6v0,-8,18,-31,54,-70r-69,4v-7,0,-10,-2,-10,-9xm128,-88r79,-85v-45,21,-112,54,-149,87v22,2,47,-2,70,-2","w":166},"5":{"d":"76,-93v-4,1,-8,-9,-8,-12v0,-5,18,-25,55,-62v12,-8,27,-39,41,-25v28,0,60,-13,64,11v-20,7,-54,4,-78,7v-24,23,-44,43,-59,60v29,-15,70,-15,72,21v3,40,-68,101,-111,97v-33,6,-46,-38,-23,-50v4,10,-13,35,13,35v32,0,113,-56,107,-88v-7,-34,-51,-8,-73,6","w":166},"6":{"d":"39,-31v6,-74,95,-162,168,-172v4,0,6,2,6,6v-37,19,-87,42,-112,87v22,-21,68,-27,70,10v3,37,-61,104,-98,104v-19,0,-36,-16,-34,-35xm69,-4v28,0,84,-71,84,-100v0,-10,-4,-15,-12,-15v-35,-3,-91,62,-88,97v0,12,6,18,16,18","w":166},"7":{"d":"61,2v-4,0,-9,-6,-9,-10v19,-37,127,-134,169,-172v-20,-7,-50,4,-87,5v-9,1,-12,-8,-6,-13v11,-2,164,-33,109,12v-56,46,-122,122,-176,178","w":166},"8":{"d":"197,-200v19,0,43,10,29,28v9,-3,8,5,4,11v-28,20,-72,32,-96,47v34,56,-8,118,-65,119v-21,0,-38,-20,-37,-42v0,-34,28,-64,86,-90v-9,-46,37,-73,79,-73xm187,-185v-32,0,-65,20,-58,53v33,-15,62,-28,88,-38v-1,-10,-11,-15,-30,-15xm64,-9v44,-1,80,-51,58,-99v-53,28,-80,54,-80,80v0,12,10,19,22,19","w":166},"9":{"d":"220,-176v-5,67,-106,163,-166,179v-3,0,-5,-2,-5,-5v38,-20,84,-60,110,-96v-20,13,-39,20,-55,20v-16,0,-28,-14,-28,-30v0,-36,77,-97,115,-97v15,0,30,14,29,29xm197,-193v-24,-1,-115,61,-107,93v0,8,4,13,13,13v50,-1,105,-52,105,-95v0,-7,-4,-11,-11,-11","w":166},":":{"d":"81,-87v1,9,-12,22,-21,21v-6,0,-8,-2,-8,-8v-3,-13,25,-34,29,-13xm24,-20v2,12,-27,35,-30,13v-2,-12,26,-34,30,-13","w":66},";":{"d":"69,-87v1,9,-12,22,-21,21v-6,0,-8,-2,-8,-8v-3,-13,25,-34,29,-13xm-27,23v7,-7,28,-14,29,-23v-7,-1,-10,-3,-10,-7v-1,-12,30,-32,32,-11v2,16,-34,53,-51,41","w":66},"<":{"d":"212,-219r0,12r-116,75r116,78r0,32r-148,-99r0,-2"},"=":{"d":"205,-120r-9,10r-120,0r9,-10r120,0xm181,-96r-9,10r-120,0r8,-10r121,0","w":166},">":{"d":"64,-22r0,-12r115,-76r-115,-77r0,-32r148,99r0,2"},"?":{"d":"92,-157v-2,-21,67,-42,92,-42v33,0,40,29,24,51v-29,36,-128,68,-170,103v-13,-13,10,-22,41,-42v35,-22,117,-58,130,-86v0,-5,-7,-8,-21,-8v-31,0,-69,17,-92,29v-2,0,-4,-2,-4,-5xm27,-20v2,12,-26,35,-29,13v-2,-13,25,-34,29,-13","w":135},"@":{"d":"120,-86v0,-31,64,-79,89,-78v9,0,14,5,15,14v7,-7,12,-10,15,-2v8,7,-76,75,-47,78v36,5,95,-87,95,-124v0,-24,-12,-36,-34,-36v-92,0,-176,102,-187,190v-7,54,89,39,107,24v4,0,5,1,5,4v-31,30,-138,31,-130,-34v11,-93,100,-189,201,-193v31,-1,55,18,55,47v0,45,-71,133,-115,129v-22,-2,-16,-20,-6,-35v-24,20,-39,31,-47,31v-10,0,-16,-5,-16,-15xm141,-80v9,4,81,-61,76,-71v0,-4,-2,-5,-5,-5v-7,-3,-95,66,-71,76","w":236},"A":{"d":"179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101r98,-119v7,-10,16,-16,11,-22v-18,3,-160,111,-201,142","w":273},"B":{"d":"338,-194v0,47,-75,55,-134,68v31,2,70,21,65,46v2,45,-87,89,-136,89v-37,0,-62,-19,-52,-56v-14,12,-38,65,-53,39v-5,-9,94,-110,91,-112v-6,-9,-2,-16,14,-14r85,-88v-51,5,-79,16,-109,28v-5,0,-8,-2,-8,-7v10,-25,94,-38,136,-40v7,-6,12,-9,15,-9v4,0,7,5,5,9v54,0,81,16,81,47xm159,-134v58,-8,170,-29,170,-67v0,-15,-21,-23,-63,-23r-24,0xm256,-86v0,-30,-69,-38,-109,-34v-40,39,-60,68,-60,87v0,18,20,24,40,25v47,3,129,-40,129,-78","w":275},"C":{"d":"34,-43v8,-94,147,-203,244,-203v19,0,29,9,30,27v5,-1,10,-4,11,1v0,2,-4,4,-12,7v-3,29,-63,107,-94,104v-9,0,-14,-5,-14,-14v-2,-27,70,-86,94,-93v5,-11,1,-24,-13,-23v-62,6,-148,75,-186,119v-30,34,-46,62,-46,84v2,39,54,28,83,14v18,-8,39,-23,56,-36v2,0,3,3,3,6v-8,28,-63,56,-102,57v-29,1,-57,-21,-54,-50xm290,-205v-27,10,-75,59,-82,81v0,3,1,4,3,4v18,0,71,-68,79,-85","w":219},"D":{"d":"197,-202v-31,3,-63,18,-84,23v-5,0,-8,-1,-8,-5v18,-16,73,-32,113,-39v7,-4,21,-26,25,-10v0,1,-1,4,-3,7v93,-7,87,87,34,140v-37,37,-98,91,-156,93v-29,1,-43,-26,-35,-56v-17,16,-28,38,-49,49v-9,0,-10,-7,-6,-14v15,-24,130,-146,169,-188xm113,-9v77,-10,179,-95,188,-171v4,-33,-42,-35,-74,-27r-133,147v-10,18,-10,55,19,51","w":265},"E":{"d":"22,-49v0,-61,92,-86,166,-94v-28,0,-66,-13,-66,-36v0,-40,110,-65,157,-65v27,0,40,8,40,26v0,19,-52,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-2,3,-16,8,-7,9v14,2,95,-36,28,-36v-35,0,-86,14,-115,26v-24,10,-36,18,-36,27v1,21,75,26,112,26v5,0,7,1,7,5v0,6,-8,11,-23,11v-67,0,-192,42,-196,91v-3,37,77,33,108,16v18,-10,37,-25,53,-38v19,35,-69,68,-105,68v-45,0,-67,-17,-67,-53","w":211},"F":{"d":"388,-239v0,17,-48,25,-72,25v-23,20,-52,53,-86,100v12,0,27,-4,29,4v0,2,-12,5,-37,7v-48,62,-82,113,-137,125v-13,0,-26,-9,-26,-22v-3,-16,32,-72,44,-64v-12,18,-34,39,-35,64v4,22,25,14,41,0v25,-21,63,-71,87,-102v-17,0,-80,8,-91,10v-7,0,-8,-7,-2,-10v10,-5,77,-10,102,-12v39,-51,70,-84,93,-101v-82,-12,-167,7,-201,56v-8,12,-15,18,-20,6v0,-6,11,-22,33,-50v22,-28,35,-42,39,-42v10,1,6,9,0,15v-12,13,-22,27,-30,39v59,-41,114,-53,197,-38v19,-12,37,-19,56,-19v11,0,16,3,16,9xm330,-227v16,3,47,-1,50,-12v-14,-9,-37,2,-50,12","w":231},"G":{"d":"71,-24v57,-4,166,-87,209,-124v8,5,2,17,-5,25r-91,99v6,0,7,9,3,13v-6,6,-6,1,-10,-5r-35,38v-45,46,-73,88,-128,88v-15,0,-23,-6,-23,-18v0,-45,119,-121,171,-119r51,-56v-65,49,-111,73,-138,73v-21,0,-42,-17,-39,-39v13,-100,157,-200,264,-200v21,0,31,8,31,24v0,31,-60,82,-85,81v-8,0,-12,-5,-12,-14v2,-28,50,-61,73,-71v2,0,3,1,3,2v-12,12,-65,43,-66,65v0,3,1,4,4,4v16,3,78,-50,74,-67v0,-9,-6,-13,-19,-13v-64,0,-160,72,-201,114v-33,34,-51,60,-51,82v0,12,6,18,20,18xm154,-17v-49,-2,-151,72,-155,109v6,19,30,6,46,-3v12,-7,81,-75,109,-106","w":249},"H":{"d":"394,-234v-27,41,-73,84,-98,119v11,-1,42,3,26,11v-15,0,-27,0,-35,1r-78,94v-8,12,-18,11,-21,0v2,-12,55,-74,71,-94r-90,4v-56,56,-95,105,-151,114v-17,3,-32,-12,-30,-29v7,-60,79,-96,164,-96v75,-81,113,-124,113,-128v-16,-5,-72,37,-94,50v-2,0,-2,-1,-2,-3v-4,-8,102,-67,110,-63v27,12,11,20,-14,48r-87,95r91,-4v73,-84,112,-125,118,-125v5,0,7,2,7,6xm142,-99v-63,3,-88,15,-121,50v-15,16,-22,29,-22,39v2,20,25,15,40,5v20,-13,86,-74,103,-94","w":291},"I":{"d":"64,-114v8,-69,127,-131,201,-131v18,0,27,6,27,18v0,21,-31,63,-91,123v10,0,25,-10,31,-3v0,3,-15,9,-44,16v-60,55,-78,86,-123,103v-7,0,-11,-3,-11,-10v-1,-3,36,-55,41,-41r-24,29v4,0,32,-25,83,-74v-37,7,-94,5,-90,-30xm271,-236v-59,9,-176,75,-195,125v0,10,15,15,44,15v73,-2,40,2,91,-45v20,-18,64,-69,67,-90v0,-3,-2,-5,-7,-5","w":206},"J":{"d":"59,-105v9,-78,135,-144,220,-144v18,0,27,7,27,21v0,28,-43,91,-128,192v6,0,9,3,9,8v1,6,-5,9,-9,8v1,-6,-1,-7,-8,-8v-53,55,-111,117,-171,127v-35,-9,-16,-39,11,-63v32,-29,93,-64,142,-72v26,-30,139,-150,141,-196v0,-4,-2,-7,-6,-7v-77,9,-214,71,-214,144v0,14,7,21,22,21v39,2,120,-42,129,-72v3,0,4,2,4,7v-10,38,-82,76,-128,76v-21,0,-44,-19,-41,-42xm144,-27v-56,16,-137,61,-158,109v2,13,20,10,32,4v25,-12,100,-85,126,-113","w":241},"K":{"d":"219,-240v15,7,16,9,-1,27r-84,92v5,0,8,1,8,6r169,-88v37,-19,57,-29,62,-29v12,18,-28,28,-42,35r-187,92r17,92v1,5,14,6,16,9v0,3,-14,6,-19,5v-34,-13,-17,-33,-35,-110r-101,109v-4,0,-8,-3,-10,-8v5,-19,148,-169,187,-215v-8,0,-56,37,-72,47v-2,0,-2,-1,-2,-3v-3,-5,89,-66,94,-61","w":232},"L":{"d":"198,-99v0,-41,57,-91,99,-110v1,-8,-2,-15,-9,-14v-70,28,-140,133,-198,188v51,19,67,26,98,23v0,7,-18,14,-26,14v-15,0,-44,-8,-85,-24v-25,23,-50,34,-76,34v-21,1,-42,-9,-40,-27v4,-40,71,-49,110,-27r91,-98v42,-44,76,-92,122,-92v15,0,22,6,24,19v10,-6,20,-1,9,5r-8,3v3,33,-67,121,-96,120v-10,0,-15,-5,-15,-14xm295,-200v-33,12,-83,66,-89,98v0,4,2,6,5,6v28,-7,74,-69,84,-104xm57,-29v-27,-11,-88,-18,-89,13v0,13,9,19,28,19v19,0,39,-11,61,-32","w":229},"M":{"d":"39,-102v18,-32,105,-129,149,-129v9,0,13,6,13,15v0,16,-21,49,-63,101v72,-69,118,-103,136,-103v9,0,13,4,13,13v0,14,-18,42,-51,85v81,-82,133,-123,156,-123v24,0,15,26,4,41v-5,7,-34,41,-89,100v-48,52,-73,82,-73,91v-3,6,14,4,14,7v-3,9,-30,5,-26,-9v14,-53,90,-123,153,-189v16,-17,28,-27,18,-34v-76,31,-209,187,-256,236v-4,0,-9,-5,-9,-9v0,-5,25,-35,74,-95v50,-62,82,-92,72,-106v-87,42,-171,144,-241,213v-4,1,-12,-5,-12,-8v28,-46,149,-160,170,-212v0,-3,-1,-5,-4,-5v-48,17,-90,71,-144,123v-3,0,-4,-1,-4,-3","w":315},"N":{"d":"41,-115v18,-34,109,-117,159,-121v10,0,14,6,14,16v0,25,-45,76,-65,95v64,-51,122,-101,176,-112v10,0,22,8,20,18v-10,54,-163,168,-182,208v-2,9,17,2,18,8v-7,9,-40,11,-38,-8v10,-30,18,-34,57,-72r104,-103v13,-14,22,-25,25,-40v0,-3,-1,-3,-3,-3v-106,41,-193,132,-293,229v-4,0,-9,-5,-9,-9v29,-50,160,-157,180,-215v0,-4,-1,-5,-4,-5v-20,-2,-121,84,-146,116v-5,6,-12,5,-13,-2","w":261},"O":{"d":"46,-42v0,-86,95,-172,152,-200v6,0,9,4,9,11v9,-6,20,-11,31,-13v1,-6,2,-9,3,-9v5,0,7,3,6,9v20,0,33,13,33,33v-1,63,-88,161,-133,194v-37,28,-101,34,-101,-25xm84,-5v76,-13,170,-135,184,-212v2,-13,-9,-22,-22,-18v-15,46,-90,141,-110,130v-9,0,-14,-6,-14,-19v0,-29,23,-60,69,-96v-65,38,-120,108,-130,189v-2,15,9,28,23,26xm236,-232v-39,17,-93,67,-102,112v0,4,2,6,6,6v22,3,91,-98,96,-118","w":213},"P":{"d":"319,-205v0,63,-107,105,-179,103r-88,102v-3,0,-11,-6,-10,-9v0,-4,25,-36,75,-95v-15,-2,-22,-6,-22,-10v2,-11,24,-4,35,-5r99,-107v-42,6,-85,20,-127,35v-4,0,-5,-3,-5,-8v2,-23,127,-47,159,-47v33,0,63,12,63,41xm157,-120v67,-6,144,-27,156,-84v4,-22,-39,-29,-69,-23v4,15,-68,82,-87,107","w":226},"Q":{"d":"246,-244v20,0,34,14,34,35v0,43,-31,95,-93,158v7,0,16,2,16,6v-6,18,-19,14,-36,12v-29,25,-55,38,-76,38v-28,1,-46,-17,-45,-46v3,-80,89,-179,149,-203v11,5,2,11,-10,21v-43,30,-130,129,-122,196v21,-22,58,-30,102,-26v38,-39,99,-111,103,-163v0,-13,-6,-19,-17,-19v-34,1,-84,52,-101,80v-4,9,-13,9,-14,0v9,-33,80,-97,110,-89xm146,-35v-33,-3,-75,0,-80,21v0,7,6,10,19,10v16,0,36,-10,61,-31","w":213},"R":{"d":"171,-111v56,-3,137,-39,143,-86v4,-29,-51,-29,-86,-22v4,13,-2,11,-18,28v-58,62,-112,119,-159,185v-9,12,-19,17,-22,3v0,-12,51,-74,153,-185v7,-8,18,-17,30,-28v-24,3,-56,18,-88,32v-4,0,-6,-3,-6,-9v17,-25,100,-46,146,-46v40,0,58,15,58,53v0,51,-79,88,-146,86v12,12,9,97,41,90v-7,14,-42,12,-41,-12v-9,-30,-11,-70,-30,-89v0,-5,22,-8,25,0","w":254},"S":{"d":"236,-174v16,7,76,-33,76,-46v0,-7,-9,-10,-25,-10v-35,-1,-110,24,-140,40v-42,21,-69,43,-16,54v40,8,105,1,105,43v-16,59,-100,99,-179,100v-37,0,-56,-12,-56,-34v0,-25,54,-53,82,-51v5,0,7,1,7,4v-22,9,-77,19,-77,44v0,12,14,19,43,19v68,-1,152,-37,169,-84v6,-17,-101,-20,-98,-23v-23,-6,-35,-16,-35,-30v0,-63,125,-98,197,-98v23,0,35,8,35,22v0,22,-61,67,-83,67v-11,0,-16,-4,-16,-11v-1,-10,37,-40,48,-31v-10,5,-37,19,-37,25","w":225},"T":{"d":"121,-184v42,-41,88,-56,169,-48v6,-6,14,-11,14,1v31,4,64,-6,89,-2v-23,15,-63,17,-102,17v-38,37,-102,144,-140,184v-25,26,-50,40,-75,40v-18,0,-30,-13,-29,-31v-5,-24,42,-68,57,-55v-13,17,-49,33,-47,62v0,11,4,16,13,16v77,-17,136,-163,207,-217v-85,-12,-141,22,-177,62v-5,0,-7,-2,-7,-5v13,-18,44,-42,40,-75v0,-4,1,-5,4,-5v7,0,11,2,11,6v0,14,-9,31,-27,50","w":230},"U":{"d":"208,-5v-3,10,-31,12,-31,-8v0,-20,19,-53,58,-100v-39,33,-131,115,-170,117v-32,-5,-25,-39,-8,-64v35,-53,103,-118,156,-159v2,-3,5,-6,1,-6v-22,1,-70,37,-89,47v-4,0,-6,-1,-6,-4v11,-18,85,-61,99,-56v23,8,10,28,-8,43v-43,37,-150,141,-155,181v0,4,2,6,4,6v109,-41,216,-157,297,-233v7,0,17,10,9,17v-66,67,-150,156,-175,212v-1,10,12,5,18,7","w":265},"V":{"d":"65,-112v7,6,54,-40,56,-32v2,8,-47,45,-56,41v-9,0,-14,-4,-14,-13v15,-52,109,-121,166,-131v19,1,14,22,4,34v-4,6,-15,19,-34,40v-68,75,-103,127,-103,155v0,10,5,16,14,16v77,-24,208,-160,234,-235v0,-3,-1,-5,-5,-5v-15,-1,-93,68,-87,90v-3,1,-6,-6,-6,-8v9,-29,62,-90,96,-90v9,0,13,4,13,13v0,57,-84,137,-136,181v-47,40,-84,62,-110,62v-18,1,-29,-17,-28,-36v3,-70,111,-155,149,-205v0,-2,-1,-4,-4,-4v-14,-6,-172,107,-149,127","w":250},"W":{"d":"338,-175v-10,-16,65,-69,78,-66v7,0,11,3,11,11v-18,65,-116,173,-167,213v-19,14,-35,21,-50,21v-40,-1,-30,-55,-14,-84v6,-11,15,-26,28,-45v-37,38,-116,128,-160,131v-15,1,-25,-11,-25,-25v4,-73,132,-161,178,-207v-9,-13,-133,66,-115,75v6,1,24,-19,30,-10v-4,6,-50,36,-52,9v13,-36,96,-84,143,-88v6,0,10,3,10,8v0,8,-10,21,-30,39v-102,95,-153,155,-153,180v0,7,3,10,9,10v52,-14,184,-150,240,-207v7,-7,14,-1,15,6v-30,44,-121,123,-121,183v0,29,29,16,48,1v49,-40,146,-144,172,-206v-12,-12,-56,39,-75,51","w":336},"X":{"d":"195,-236v40,10,-2,68,-8,93v89,-58,141,-87,155,-87v10,5,7,9,-6,15v-31,13,-115,65,-158,92v-12,32,-35,76,-40,110v-2,12,14,4,19,9v-9,12,-36,6,-36,-15v0,-16,9,-45,27,-88v-50,30,-102,70,-155,107v-6,-1,-7,-7,-2,-12v26,-23,131,-94,166,-116r20,-47v11,-31,21,-41,13,-50v-22,6,-65,39,-79,56v-3,2,-9,2,-8,-3v-5,-15,78,-68,92,-64","w":215},"Y":{"d":"83,111v-13,-5,-12,-16,0,-29r168,-191v-63,53,-108,97,-160,110v-17,0,-26,-10,-26,-30v0,-79,128,-140,167,-199v-49,-4,-147,73,-167,108v12,12,39,-14,54,-13v-2,9,-62,47,-66,14v15,-49,117,-115,178,-120v10,0,15,4,15,13v-20,61,-170,135,-170,204v0,8,4,12,12,12v42,0,130,-84,174,-122v8,-7,65,-70,97,-93v8,0,14,7,7,15r-208,235v-11,11,-37,35,-41,45v3,1,12,-11,15,-7v-8,10,-38,40,-49,48","w":260},"Z":{"d":"287,-184v0,74,-83,117,-166,147v6,7,7,16,5,27v4,0,7,1,7,5v0,7,-8,7,-10,2v-11,42,-113,114,-164,113v-14,0,-21,-4,-21,-13v17,-52,107,-113,176,-110v2,-8,2,-16,-5,-19v-22,9,-38,13,-50,13v-6,0,-9,-2,-9,-6v3,-14,38,-23,59,-18v45,-17,165,-95,165,-151v0,-12,-8,-18,-25,-18v-53,0,-133,32,-158,60v14,15,69,-28,77,-19v-6,7,-87,51,-94,22v18,-43,104,-75,165,-77v32,0,48,14,48,42xm109,-6v-43,-14,-158,76,-162,102v0,4,3,6,8,6v51,-13,128,-62,154,-108","w":215},"[":{"d":"262,-262v-4,12,-22,10,-38,10r-259,300r30,0r-6,10r-50,0r275,-320r48,0","w":110},"\\":{"d":"211,36v-15,1,-57,-258,-56,-271v-2,-11,13,-21,13,-4v0,69,37,199,54,266v1,4,-8,9,-11,9","w":281},"]":{"d":"204,-251v7,-14,36,-8,56,-9r-278,317r-50,0v6,-11,22,-11,40,-10r261,-298r-29,0","w":110},"^":{"d":"237,-103r-12,0r-76,-116r-77,116r-32,0r99,-149r2,0"},"_":{"d":"57,31r162,0r0,14r-162,0r0,-14"},"`":{"d":"137,-156v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40"},"a":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77","w":134},"b":{"d":"127,-77v0,27,-46,78,-73,76v-28,-2,-24,-31,-11,-54v-20,16,-61,61,-86,53v40,-18,88,-59,118,-97v42,-53,78,-95,124,-114v23,9,6,27,-11,49v-14,19,-68,48,-97,74v14,-11,36,-6,36,13xm107,-110v54,-35,80,-52,96,-90v-11,-10,-86,77,-96,90xm106,-89v-20,-1,-35,35,-9,42v11,-13,16,-25,16,-33v0,-6,-2,-9,-7,-9xm93,-42v-16,-7,-21,-19,-13,-35v-24,30,-36,51,-36,61v0,5,2,7,7,7v11,0,25,-11,42,-33","w":137},"c":{"d":"46,-20v-2,15,18,11,26,17v-13,10,-45,1,-40,-21v0,-6,2,-15,7,-25v-20,14,-59,54,-82,47v45,-17,111,-93,159,-100v11,-1,19,12,11,15v-3,14,-21,41,-36,40v-4,0,-6,-2,-6,-6v0,-13,26,-34,36,-39v0,-2,-1,-3,-3,-3v-11,-4,-76,64,-72,75xm117,-83v-3,3,-28,21,-23,27v6,1,22,-20,23,-27","w":110},"d":{"d":"242,-205v-21,33,-150,166,-158,195v-1,6,13,2,12,7v-3,8,-26,3,-22,-8v0,-6,3,-15,11,-28v-23,25,-39,37,-49,37v-21,0,-15,-22,-6,-40v-18,12,-52,47,-73,40v48,-16,91,-80,142,-93v10,0,16,4,16,13v27,-31,101,-124,122,-130v4,0,5,3,5,7xm106,-87v-10,-2,-84,61,-65,75v8,2,86,-62,65,-75","w":134},"e":{"d":"46,-31v-6,12,-3,27,15,25v4,0,7,1,7,3v-10,9,-59,5,-44,-25v-10,-1,-54,35,-67,26v12,-7,53,-27,70,-33v6,-22,53,-64,79,-64v9,0,14,4,14,12v0,22,-51,48,-74,56xm48,-38v16,-7,57,-35,58,-50v-15,-15,-52,35,-58,50","w":106},"f":{"d":"-24,108v-19,-1,-18,-24,-10,-41v15,-31,77,-108,106,-145v-30,21,-81,80,-115,76v99,-57,135,-99,228,-204v9,-9,18,-17,22,-4v-16,33,-44,55,-67,81r-71,82v8,0,12,4,12,14v0,30,-76,149,-105,141xm68,-42v-13,1,-29,40,-1,37v5,-14,13,-31,1,-37xm64,1v-13,0,-19,-7,-19,-19v-49,61,-74,98,-74,112v0,5,2,8,7,8v23,0,76,-78,86,-101","w":115},"g":{"d":"83,-33v-20,17,-30,28,-49,31v-18,-1,-14,-25,-7,-38v-28,20,-45,41,-70,38v45,-17,103,-95,153,-95v10,0,15,5,15,16v8,-9,13,-14,17,-3v0,4,-21,30,-60,79v8,-4,18,4,4,6r-9,0v-57,71,-99,106,-126,106v-11,0,-17,-4,-17,-13v0,-47,68,-86,125,-96v10,-11,18,-22,24,-31xm40,-11v9,0,101,-64,72,-79v-11,-2,-89,64,-72,79xm52,6v-38,6,-106,56,-112,87v0,5,3,7,7,7v24,-2,87,-71,105,-94","w":130},"h":{"d":"30,0v-18,-12,-5,-18,16,-44r28,-35v-28,24,-74,71,-115,79v-4,-10,22,-9,27,-17v61,-44,97,-70,160,-147v30,-37,47,-54,50,-54v4,0,6,3,6,8v-29,46,-101,122,-139,170v42,-38,71,-57,85,-57v6,0,10,3,10,10v7,9,-64,71,-61,76v-2,6,12,2,13,8v-5,6,-28,3,-24,-9v-8,-19,61,-69,52,-75v-21,6,-89,67,-108,87","w":147},"i":{"d":"144,-149v1,12,-32,27,-33,8v-1,-12,31,-30,33,-8xm98,-89v6,5,-61,75,-56,78v-2,6,11,2,12,8v-3,6,-29,3,-25,-9v0,-10,14,-31,40,-62v-28,19,-85,80,-112,72v38,-15,89,-61,126,-92v4,-1,16,-4,15,5","w":92},"j":{"d":"144,-149v1,11,-32,28,-33,8v-1,-12,31,-30,33,-8xm76,-81v-31,24,-90,83,-119,79v42,-15,100,-76,136,-100v15,2,9,14,1,24r-60,73v8,-3,25,2,7,5r-12,1v-9,9,-78,93,-103,101v-6,0,-9,-4,-9,-11v4,-39,52,-85,95,-94v22,-25,43,-50,64,-78xm7,5v-37,9,-78,50,-83,83v0,3,1,4,3,4v4,0,31,-29,80,-87","w":87},"k":{"d":"106,-3v-26,10,-31,-3,-45,-34v-7,10,-29,36,-35,38v-5,0,-8,-3,-8,-9v2,-9,45,-58,58,-73v-36,25,-69,70,-117,81v-3,-1,-2,-5,1,-6v83,-38,155,-122,218,-194v11,-11,17,-21,22,-8v-23,49,-74,89,-107,132v17,-12,30,-18,38,-18v9,0,15,5,15,14v2,20,-47,37,-70,36v7,10,7,36,27,38v2,0,3,1,3,3xm71,-48v26,-2,55,-16,60,-33v0,-3,-2,-4,-5,-4v-13,0,-31,12,-55,37","w":143},"l":{"d":"54,-57v-24,15,-72,62,-97,55v34,-15,72,-43,106,-70v19,-33,106,-130,140,-136v5,0,8,2,8,8v-3,36,-85,103,-123,130v-8,6,-36,48,-36,60v-2,5,12,1,12,7v-5,8,-28,4,-24,-11v0,-10,5,-24,14,-43xm205,-200v-10,-11,-23,15,-57,51v-31,33,-50,57,-58,70v77,-62,115,-102,115,-121","w":102},"m":{"d":"72,-6v-6,-6,72,-72,52,-78v-13,0,-73,60,-81,71v-7,10,-17,18,-22,7v2,-11,41,-56,53,-73v-28,21,-87,82,-117,77v44,-18,86,-60,132,-97v23,7,3,18,-10,40v26,-23,43,-35,53,-35v18,0,15,18,3,32v24,-23,42,-35,56,-35v8,0,12,3,12,9v6,10,-60,71,-58,77v-2,7,12,3,12,8v-3,8,-28,4,-24,-9v-9,-12,62,-71,48,-76v-25,4,-81,74,-102,88v-5,0,-7,-2,-7,-6","w":195},"n":{"d":"81,-93v3,-7,21,-13,23,-1v0,2,-9,16,-28,41v32,-27,55,-41,68,-41v8,0,12,4,12,12v9,14,-77,66,-50,76v4,0,6,1,6,3v-3,7,-32,5,-27,-9v1,-25,41,-51,54,-71v-28,-6,-88,68,-109,79v-16,-11,-4,-17,17,-41r29,-34v-35,24,-73,69,-117,79v-4,-7,10,-7,18,-12v17,-6,91,-67,104,-81","w":150},"o":{"d":"124,-83v2,22,-60,89,-81,86v-27,-3,-20,-29,-6,-50v-20,13,-59,52,-80,45v3,-8,17,-4,22,-10v27,-16,76,-61,105,-81v3,0,6,2,10,5v11,-9,28,-14,30,5xm111,-89v-15,-1,-42,35,-15,42v7,-6,21,-25,20,-36v0,-4,-1,-6,-5,-6xm79,-69v-24,21,-36,38,-36,51v0,6,3,9,8,9v9,0,22,-11,41,-32v-13,-2,-16,-15,-13,-28","w":126},"p":{"d":"143,-81v0,28,-38,64,-60,75v13,-2,39,4,10,7v-22,-5,-47,6,-44,-27r-94,106v-4,7,-12,5,-12,-5v23,-44,99,-114,136,-157v-33,25,-75,70,-120,82v-4,-8,9,-7,17,-11v26,-12,107,-88,131,-101v15,9,3,12,-11,34v14,-12,25,-18,34,-18v9,0,13,5,13,15xm60,-37v6,-3,11,21,12,22v19,-9,52,-48,56,-66v-17,-18,-53,30,-68,44xm62,-12v6,0,0,-8,0,-12v-2,-6,-3,-10,-4,-10v-4,1,-5,25,4,22","w":145},"q":{"d":"85,0v12,33,-55,102,-76,104v-7,0,-10,-4,-10,-12v1,-31,61,-92,84,-121v-23,19,-38,28,-47,28v-23,-1,-17,-24,-7,-40v-18,11,-51,46,-72,39v53,-19,99,-86,157,-97v16,-3,21,12,14,24v4,1,6,4,6,7v0,1,-17,22,-51,62v5,1,15,-3,15,3v0,3,-4,3,-13,3xm120,-90v-15,-5,-89,62,-84,76v0,3,1,4,4,4v15,3,88,-61,85,-75v0,-3,-2,-5,-5,-5xm14,97v10,-4,84,-71,64,-97v-17,18,-64,77,-67,94v0,2,1,3,3,3","w":136},"r":{"d":"-43,-2v31,-12,79,-51,101,-76v-7,-14,24,-38,30,-28v0,2,-1,6,-4,11v13,0,20,4,20,15v9,13,-65,68,-48,74v3,0,9,-2,8,3v-3,7,-27,5,-23,-8v0,-25,37,-52,50,-69v-2,-6,-6,-2,-13,-1v-5,1,-8,2,-9,3v-56,51,-91,83,-112,76","w":102},"s":{"d":"107,-93v0,19,-38,76,-51,87v10,-1,11,7,1,7v-24,-2,-45,0,-43,-31v-25,19,-43,34,-57,28v3,-8,12,-4,23,-11v3,2,113,-90,115,-91v5,1,12,5,12,11xm42,-15v15,-12,40,-54,47,-76r-63,51v9,1,13,16,16,25xm25,-33v-10,5,1,31,12,24v-2,-7,-7,-23,-12,-24","w":102},"t":{"d":"99,-115v-22,-1,-51,7,-68,0v10,-9,60,-6,77,-10v12,-13,40,-51,50,-54v4,0,5,3,5,7v0,5,-11,20,-32,47v21,-4,60,2,19,7r-27,1v-19,24,-75,92,-76,107v-1,6,13,2,12,7v-27,9,-27,-15,-13,-38r15,-26v-27,17,-74,70,-104,65v3,-7,12,-4,21,-10v30,-19,99,-67,121,-103","w":97},"u":{"d":"148,-86v7,6,-75,74,-48,80v4,0,6,1,6,3v-22,10,-31,-9,-17,-30v-20,20,-35,30,-45,30v-29,-16,13,-57,25,-71v-26,20,-85,80,-112,72v38,-17,88,-60,124,-91v6,-5,18,-3,18,4v4,10,-63,64,-46,76v7,0,23,-13,47,-40v24,-27,38,-41,41,-41v3,0,8,5,7,8","w":144},"v":{"d":"102,-89v5,10,-67,69,-44,79v8,0,23,-11,44,-33v-4,-1,-6,-3,-6,-7v-2,-14,28,-50,41,-49v4,0,6,3,6,7v4,18,-72,98,-91,92v-41,-13,13,-65,24,-81v-26,23,-76,72,-117,81v-3,-8,9,-7,17,-11v26,-12,83,-71,116,-88v7,0,10,3,10,10xm134,-88v-7,-4,-42,33,-27,40v7,-7,26,-31,27,-40","w":136},"w":{"d":"101,-43v-19,21,-30,38,-50,42v-33,-15,12,-61,22,-77v-28,20,-89,83,-116,76v43,-18,93,-66,138,-101v4,0,11,5,10,10v4,7,-68,75,-48,82v6,0,21,-14,43,-41v22,-27,36,-40,39,-40v4,0,6,2,6,6v3,9,-56,66,-34,77v6,0,19,-11,39,-34v-17,-20,24,-60,39,-61v22,19,-66,105,-81,103v-22,-3,-15,-25,-7,-42xm182,-94v-7,0,-39,35,-26,44v19,-24,32,-35,26,-44","w":182},"x":{"d":"94,-61v10,-4,55,-52,62,-38v-16,16,-27,18,-66,49v-6,30,-18,37,-4,44v4,0,5,1,5,3v-5,8,-31,3,-27,-11v0,-4,2,-11,4,-21r-49,35v-2,0,-3,-1,-3,-2v2,-6,42,-35,54,-44r12,-40v-38,26,-75,75,-123,86v-4,-8,9,-6,17,-11v27,-14,83,-64,118,-92v20,3,1,29,0,42","w":129},"y":{"d":"169,-98r-73,93v9,-4,22,4,5,6r-10,0v-25,30,-84,109,-112,111v-6,0,-9,-3,-9,-11v0,-39,68,-99,106,-104r36,-47v-15,13,-51,48,-65,48v-31,-17,12,-61,24,-75v-30,21,-75,77,-114,75v36,-18,99,-70,134,-99v6,0,14,5,13,11v-15,17,-56,62,-56,76v0,2,2,3,4,3v22,-4,86,-75,107,-95v4,-1,11,4,10,8xm70,5v-36,9,-89,58,-93,92v0,4,1,5,4,5v11,0,41,-32,89,-97","w":148},"z":{"d":"23,-16v1,-9,30,-18,43,-14v25,-21,37,-39,37,-53v-8,-22,-18,-2,-42,15v-26,19,-72,71,-104,66v45,-19,102,-74,139,-100v15,-5,29,-1,29,15v0,17,-17,39,-53,62v5,3,7,7,7,13v4,22,-87,121,-115,112v-10,0,-14,-4,-14,-13v3,-37,69,-89,112,-93v4,-5,4,-9,2,-14v-17,7,-32,14,-41,4xm58,1v-39,6,-98,52,-102,86v0,4,2,6,6,6v24,-1,83,-70,96,-92","w":120},"{":{"d":"39,-62v19,-26,37,-36,18,-46v69,-28,107,-143,196,-154v4,0,6,1,6,3v-12,9,-31,8,-47,22v-31,25,-88,118,-131,132v2,2,2,4,2,6v10,9,-114,133,-105,142v-2,11,11,5,16,10v-3,9,-34,6,-30,-10v7,-30,55,-78,75,-105","w":110},"|":{"d":"130,-240r16,0r0,300r-16,0r0,-300"},"}":{"d":"164,-149v-18,25,-33,35,-17,44v-7,8,-22,5,-30,18v-52,49,-96,130,-174,145v-4,0,-5,-1,-5,-3v0,-3,3,-5,9,-5v74,-16,115,-135,177,-159v-2,-1,-3,-3,-3,-5v-9,-7,107,-126,98,-133v-1,-9,-7,-6,-16,-9v5,-11,33,-7,30,9v-5,28,-50,73,-69,98","w":110},"~":{"d":"92,-92v32,-74,107,13,148,-40r4,3v-7,16,-28,32,-48,33v-13,1,-54,-16,-66,-15v-17,1,-24,10,-34,22","w":239},"\u00c4":{"d":"179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101r98,-119v7,-10,16,-16,11,-22v-18,3,-160,111,-201,142xm415,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm383,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":273},"\u00c5":{"d":"421,-306v1,17,-21,35,-38,34v-8,0,-17,-5,-17,-13v0,-18,24,-39,42,-39v8,0,13,8,13,18xm378,-285v9,13,34,-8,32,-19v0,-3,-2,-5,-5,-5v-10,-1,-27,15,-27,24xm179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101v73,-92,116,-134,109,-141v-18,5,-160,111,-201,142","w":273},"\u00c7":{"d":"190,-50v-9,29,-66,57,-107,56v-4,4,-9,9,-15,14v13,-5,29,-2,29,12v0,29,-54,41,-68,19v3,-8,16,6,23,3v13,1,29,-10,29,-21v-1,-17,-26,2,-32,-7r24,-21v-21,-3,-38,-25,-38,-48v0,-95,147,-203,243,-203v19,0,29,9,30,27v6,-2,10,-4,12,1v0,2,-4,4,-12,7v-5,30,-64,106,-95,104v-9,0,-14,-5,-14,-14v-2,-29,70,-85,95,-93v3,-12,0,-24,-14,-23v-62,6,-148,75,-186,119v-30,34,-46,62,-46,84v2,39,54,28,83,14v18,-8,39,-23,56,-36v2,0,3,3,3,6xm290,-205v-26,10,-74,60,-82,81v0,3,1,4,3,4v18,0,71,-68,79,-85","w":219},"\u00c9":{"d":"22,-49v0,-61,92,-86,166,-94v-28,0,-66,-13,-66,-36v0,-40,110,-65,157,-65v27,0,40,8,40,26v0,19,-52,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-2,3,-16,8,-7,9v14,2,95,-36,28,-36v-35,0,-86,14,-115,26v-24,10,-36,18,-36,27v1,21,75,26,112,26v5,0,7,1,7,5v0,6,-8,11,-23,11v-67,0,-192,42,-196,91v-3,37,77,33,108,16v18,-10,37,-25,53,-38v19,35,-69,68,-105,68v-45,0,-67,-17,-67,-53xm306,-289v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":211},"\u00d1":{"d":"41,-115v18,-34,109,-117,159,-121v10,0,14,6,14,16v0,25,-45,76,-65,95v64,-51,122,-101,176,-112v10,0,22,8,20,18v-10,54,-163,168,-182,208v-2,9,17,2,18,8v-7,9,-40,11,-38,-8v10,-30,18,-34,57,-72r104,-103v13,-14,22,-25,25,-40v0,-3,-1,-3,-3,-3v-106,41,-193,132,-293,229v-4,0,-9,-5,-9,-9v29,-50,160,-157,180,-215v0,-4,-1,-5,-4,-5v-20,-2,-121,84,-146,116v-5,6,-12,5,-13,-2xm334,-298v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9","w":261},"\u00d6":{"d":"46,-42v0,-86,95,-172,152,-200v6,0,9,4,9,11v9,-6,20,-11,31,-13v1,-6,2,-9,3,-9v5,0,7,3,6,9v20,0,33,13,33,33v-1,63,-88,161,-133,194v-37,28,-101,34,-101,-25xm84,-5v76,-13,170,-135,184,-212v2,-13,-9,-22,-22,-18v-15,46,-90,141,-110,130v-9,0,-14,-6,-14,-19v0,-29,23,-60,69,-96v-65,38,-120,108,-130,189v-2,15,9,28,23,26xm236,-232v-39,17,-93,67,-102,112v0,4,2,6,6,6v22,3,91,-98,96,-118xm289,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm257,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":213},"\u00dc":{"d":"208,-5v-3,10,-31,12,-31,-8v0,-20,19,-53,58,-100v-39,33,-131,115,-170,117v-32,-5,-25,-39,-8,-64v35,-53,103,-118,156,-159v2,-3,5,-6,1,-6v-22,1,-70,37,-89,47v-4,0,-6,-1,-6,-4v11,-18,85,-61,99,-56v23,8,10,28,-8,43v-43,37,-150,141,-155,181v0,4,2,6,4,6v109,-41,216,-157,297,-233v7,0,17,10,9,17v-66,67,-150,156,-175,212v-1,10,12,5,18,7xm346,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm314,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":264},"\u00e1":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm148,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":134},"\u00e0":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm124,-156v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":134},"\u00e2":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm131,-134r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":134},"\u00e4":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm162,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm130,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":134},"\u00e3":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm166,-140v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9","w":134},"\u00e5":{"d":"139,-84v7,7,-72,73,-49,78v4,0,6,1,6,3v-4,6,-24,6,-24,-7v0,-6,4,-13,10,-23v-12,9,-33,29,-47,30v-18,1,-17,-20,-11,-34v-33,24,-54,42,-67,35v0,-2,1,-4,4,-4v48,-12,93,-90,147,-90v9,0,14,5,15,14v7,-7,13,-11,16,-2xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm165,-148v0,21,-39,43,-46,18v-1,-15,20,-33,35,-32v7,0,11,4,11,14xm129,-130v7,10,27,-6,27,-16v0,-3,-2,-4,-5,-4v-7,-1,-23,13,-22,20","w":134},"\u00e7":{"d":"21,14v-7,-5,18,-21,18,-21v-11,-12,-8,-25,0,-42v-20,13,-60,55,-82,47v44,-16,111,-94,159,-100v11,-1,19,12,11,15v-3,14,-21,41,-36,40v-4,0,-6,-2,-6,-6v0,-13,26,-34,36,-39v0,-2,-1,-3,-3,-3v-11,-4,-76,64,-72,75v-2,15,18,11,26,17v-2,6,-23,4,-29,0v-4,4,-8,7,-12,10v11,-3,23,-1,23,9v0,23,-41,30,-50,14v2,-8,12,5,18,2v13,3,31,-18,11,-20xm117,-83v-3,3,-28,21,-23,27v6,1,22,-20,23,-27","w":110},"\u00e9":{"d":"46,-31v-6,12,-3,27,15,25v4,0,7,1,7,3v-10,9,-59,5,-44,-25v-10,-1,-54,35,-67,26v12,-7,53,-27,70,-33v6,-22,53,-64,79,-64v9,0,14,4,14,12v0,22,-51,48,-74,56xm48,-38v16,-7,57,-35,58,-50v-15,-15,-52,35,-58,50xm134,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":106},"\u00e8":{"d":"46,-31v-6,12,-3,27,15,25v4,0,7,1,7,3v-10,9,-59,5,-44,-25v-10,-1,-54,35,-67,26v12,-7,53,-27,70,-33v6,-22,53,-64,79,-64v9,0,14,4,14,12v0,22,-51,48,-74,56xm48,-38v16,-7,57,-35,58,-50v-15,-15,-52,35,-58,50xm102,-156v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":106},"\u00ea":{"d":"46,-31v-6,12,-3,27,15,25v4,0,7,1,7,3v-10,9,-59,5,-44,-25v-10,-1,-54,35,-67,26v12,-7,53,-27,70,-33v6,-22,53,-64,79,-64v9,0,14,4,14,12v0,22,-51,48,-74,56xm48,-38v16,-7,57,-35,58,-50v-15,-15,-52,35,-58,50xm117,-134r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":106},"\u00eb":{"d":"46,-31v-6,12,-3,27,15,25v4,0,7,1,7,3v-10,9,-59,5,-44,-25v-10,-1,-54,35,-67,26v12,-7,53,-27,70,-33v6,-22,53,-64,79,-64v9,0,14,4,14,12v0,22,-51,48,-74,56xm48,-38v16,-7,57,-35,58,-50v-15,-15,-52,35,-58,50xm144,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm112,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":106},"\u00ed":{"d":"98,-89v6,5,-61,75,-56,78v-2,6,11,2,12,8v-3,6,-29,3,-25,-9v0,-10,14,-31,40,-62v-28,19,-85,80,-112,72v38,-15,89,-61,126,-92v4,-1,16,-4,15,5xm139,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":92},"\u00ec":{"d":"98,-89v6,5,-61,75,-56,78v-2,6,11,2,12,8v-3,6,-29,3,-25,-9v0,-10,14,-31,40,-62v-28,19,-85,80,-112,72v38,-15,89,-61,126,-92v4,-1,16,-4,15,5xm86,-156v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":92},"\u00ee":{"d":"98,-89v6,5,-61,75,-56,78v-2,6,11,2,12,8v-3,6,-29,3,-25,-9v0,-10,14,-31,40,-62v-28,19,-85,80,-112,72v38,-15,89,-61,126,-92v4,-1,16,-4,15,5xm115,-134r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":92},"\u00ef":{"d":"98,-89v6,5,-61,75,-56,78v-2,6,11,2,12,8v-3,6,-29,3,-25,-9v0,-10,14,-31,40,-62v-28,19,-85,80,-112,72v38,-15,89,-61,126,-92v4,-1,16,-4,15,5xm137,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm105,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":92},"\u00f1":{"d":"81,-93v3,-7,21,-13,23,-1v0,2,-9,16,-28,41v32,-27,55,-41,68,-41v8,0,12,4,12,12v9,14,-77,66,-50,76v4,0,6,1,6,3v-3,7,-32,5,-27,-9v1,-25,41,-51,54,-71v-28,-6,-88,68,-109,79v-16,-11,-4,-17,17,-41r29,-34v-35,24,-73,69,-117,79v-4,-7,10,-7,18,-12v17,-6,91,-67,104,-81xm174,-140v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9","w":150},"\u00f3":{"d":"124,-83v2,22,-60,89,-81,86v-27,-3,-20,-29,-6,-50v-20,13,-59,52,-80,45v3,-8,17,-4,22,-10v27,-16,76,-61,105,-81v3,0,6,2,10,5v11,-9,28,-14,30,5xm111,-89v-15,-1,-42,35,-15,42v7,-6,21,-25,20,-36v0,-4,-1,-6,-5,-6xm79,-69v-24,21,-36,38,-36,51v0,6,3,9,8,9v9,0,22,-11,41,-32v-13,-2,-16,-15,-13,-28xm144,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":126},"\u00f2":{"d":"124,-83v2,22,-60,89,-81,86v-27,-3,-20,-29,-6,-50v-20,13,-59,52,-80,45v3,-8,17,-4,22,-10v27,-16,76,-61,105,-81v3,0,6,2,10,5v11,-9,28,-14,30,5xm111,-89v-15,-1,-42,35,-15,42v7,-6,21,-25,20,-36v0,-4,-1,-6,-5,-6xm79,-69v-24,21,-36,38,-36,51v0,6,3,9,8,9v9,0,22,-11,41,-32v-13,-2,-16,-15,-13,-28xm110,-156v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":126},"\u00f4":{"d":"124,-83v2,22,-60,89,-81,86v-27,-3,-20,-29,-6,-50v-20,13,-59,52,-80,45v3,-8,17,-4,22,-10v27,-16,76,-61,105,-81v3,0,6,2,10,5v11,-9,28,-14,30,5xm111,-89v-15,-1,-42,35,-15,42v7,-6,21,-25,20,-36v0,-4,-1,-6,-5,-6xm79,-69v-24,21,-36,38,-36,51v0,6,3,9,8,9v9,0,22,-11,41,-32v-13,-2,-16,-15,-13,-28xm127,-134r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":126},"\u00f6":{"d":"124,-83v2,22,-60,89,-81,86v-27,-3,-20,-29,-6,-50v-20,13,-59,52,-80,45v3,-8,17,-4,22,-10v27,-16,76,-61,105,-81v3,0,6,2,10,5v11,-9,28,-14,30,5xm111,-89v-15,-1,-42,35,-15,42v7,-6,21,-25,20,-36v0,-4,-1,-6,-5,-6xm79,-69v-24,21,-36,38,-36,51v0,6,3,9,8,9v9,0,22,-11,41,-32v-13,-2,-16,-15,-13,-28xm154,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm122,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":126},"\u00f5":{"d":"124,-83v2,22,-60,89,-81,86v-27,-3,-20,-29,-6,-50v-20,13,-59,52,-80,45v3,-8,17,-4,22,-10v27,-16,76,-61,105,-81v3,0,6,2,10,5v11,-9,28,-14,30,5xm111,-89v-15,-1,-42,35,-15,42v7,-6,21,-25,20,-36v0,-4,-1,-6,-5,-6xm79,-69v-24,21,-36,38,-36,51v0,6,3,9,8,9v9,0,22,-11,41,-32v-13,-2,-16,-15,-13,-28xm162,-140v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9","w":126},"\u00fa":{"d":"148,-86v7,6,-75,74,-48,80v4,0,6,1,6,3v-22,10,-31,-9,-17,-30v-20,20,-35,30,-45,30v-29,-16,13,-57,25,-71v-26,20,-85,80,-112,72v38,-17,88,-60,124,-91v6,-5,18,-3,18,4v4,10,-63,64,-46,76v7,0,23,-13,47,-40v24,-27,38,-41,41,-41v3,0,8,5,7,8xm165,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":144},"\u00f9":{"d":"148,-86v7,6,-75,74,-48,80v4,0,6,1,6,3v-22,10,-31,-9,-17,-30v-20,20,-35,30,-45,30v-29,-16,13,-57,25,-71v-26,20,-85,80,-112,72v38,-17,88,-60,124,-91v6,-5,18,-3,18,4v4,10,-63,64,-46,76v7,0,23,-13,47,-40v24,-27,38,-41,41,-41v3,0,8,5,7,8xm129,-156v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":144},"\u00fb":{"d":"148,-86v7,6,-75,74,-48,80v4,0,6,1,6,3v-22,10,-31,-9,-17,-30v-20,20,-35,30,-45,30v-29,-16,13,-57,25,-71v-26,20,-85,80,-112,72v38,-17,88,-60,124,-91v6,-5,18,-3,18,4v4,10,-63,64,-46,76v7,0,23,-13,47,-40v24,-27,38,-41,41,-41v3,0,8,5,7,8xm136,-134r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":144},"\u00fc":{"d":"148,-86v7,6,-75,74,-48,80v4,0,6,1,6,3v-22,10,-31,-9,-17,-30v-20,20,-35,30,-45,30v-29,-16,13,-57,25,-71v-26,20,-85,80,-112,72v38,-17,88,-60,124,-91v6,-5,18,-3,18,4v4,10,-63,64,-46,76v7,0,23,-13,47,-40v24,-27,38,-41,41,-41v3,0,8,5,7,8xm163,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm131,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":144},"\u2020":{"d":"113,-169v7,-17,18,-9,59,-11v20,-18,45,-76,60,-59v-9,17,-29,43,-41,60v16,1,72,6,38,16r-48,-3r-106,150v-24,27,-24,46,-42,38v0,-5,43,-68,129,-188v-15,-2,-40,6,-49,-3","w":171},"\u00b0":{"d":"143,-230v21,0,40,18,40,39v0,21,-19,39,-40,39v-21,0,-40,-18,-40,-39v0,-21,19,-39,40,-39xm143,-218v-16,0,-28,11,-28,27v0,16,12,27,28,27v16,1,28,-11,28,-27v0,-16,-12,-27,-28,-27","w":117},"\u00a2":{"d":"79,-45v-28,-33,32,-80,61,-80v14,-25,37,-32,17,-10v-6,6,-12,11,-6,19v2,12,-24,44,-29,20v0,-4,3,-9,8,-15v-13,6,-46,37,-46,53v0,6,4,9,10,9v9,5,36,-28,38,-17v-1,9,-32,30,-46,24v-7,10,-14,20,-22,30v-11,-9,2,-9,15,-33xm141,-113v-2,2,-16,13,-12,18v4,1,13,-14,12,-18","w":166},"\u00a3":{"d":"-20,-20v3,-29,43,-32,70,-18v14,-12,27,-26,42,-42v-32,0,-47,-3,-47,-7v10,-10,39,0,56,-2v26,-23,66,-70,102,-73v15,-1,11,13,24,12v7,0,6,5,0,6r-6,1v-1,16,-21,46,-36,45v-7,0,-10,-5,-10,-13v-1,-16,19,-34,35,-36v0,-5,-1,-8,-6,-8v-9,0,-36,22,-80,67v19,3,45,-3,59,5v-11,10,-45,3,-67,4r-49,49v30,16,39,25,62,17v1,0,2,1,2,2v-19,22,-41,12,-77,-8v-16,14,-32,21,-47,21v-14,1,-27,-9,-27,-22xm209,-140v-11,4,-35,22,-25,34v10,1,24,-24,25,-34xm38,-27v-13,-9,-51,-12,-50,8v7,23,37,9,50,-8","w":166},"\u00a7":{"d":"74,-73v-43,-38,17,-82,60,-86v-35,-51,46,-84,94,-84v22,0,33,7,33,20v0,18,-33,34,-48,22v6,-5,34,-2,29,-16v0,-5,-6,-8,-18,-8v-32,0,-120,23,-70,54v16,10,43,26,43,48v-1,33,-42,55,-77,60v37,50,-35,90,-90,90v-28,0,-42,-7,-42,-19v-1,-20,32,-34,50,-26v1,6,-35,8,-31,18v0,6,7,9,21,9v39,1,123,-25,73,-61xm104,-76v37,3,108,-25,64,-55r-19,-16v-79,12,-101,31,-45,71","w":166},"\u2022":{"d":"217,-122v0,27,-23,50,-49,50v-26,0,-50,-24,-50,-50v0,-27,23,-51,50,-51v28,0,49,24,49,51","w":239},"\u00b6":{"d":"35,-37v8,6,-27,34,-21,45v0,6,2,8,8,8v60,-19,116,-113,161,-163v26,-28,47,-53,68,-73v-10,0,-20,-2,-29,0r-80,91v-2,4,-32,20,-38,20v-9,0,-13,-7,-13,-20v-1,-46,80,-117,134,-111v37,4,78,1,106,1v0,7,-20,14,-62,20r-162,191v-30,36,-58,54,-82,54v-13,0,-19,-6,-19,-19v0,-10,20,-46,29,-44","w":195},"\u00df":{"d":"207,-171v1,30,-34,65,-58,74v24,30,-26,77,-47,91v12,-3,37,7,8,7v-24,0,-46,-1,-46,-28v-1,-15,17,-17,23,-3r6,15v13,-11,60,-57,48,-78v-9,4,-20,9,-24,1v1,-7,17,-12,26,-9v16,-9,55,-51,55,-70v0,-3,0,-4,-3,-4v-92,61,-172,203,-249,287v-9,-3,-9,-12,-2,-21r128,-167v-10,4,-81,80,-115,74v68,-34,122,-88,187,-150v23,-23,39,-34,50,-34v9,0,13,5,13,15xm76,-33v-11,7,-2,29,12,22v-3,-6,-6,-21,-12,-22","w":162},"\u00ae":{"d":"41,-49v5,-77,103,-175,173,-189v6,0,10,2,13,5v26,-23,79,-14,72,32v-12,84,-105,199,-198,203v-32,1,-62,-20,-60,-51xm291,-203v0,-60,-69,-24,-89,-4v-4,0,-5,-3,-4,-10v-59,19,-143,118,-149,176v-2,21,21,34,44,32v87,-7,198,-109,198,-194xm155,-120v31,9,83,-18,89,-44v-1,-16,-27,-15,-48,-12v-12,24,-39,42,-57,62v-22,24,-36,47,-57,64v-4,0,-6,-2,-6,-6v-1,-13,92,-107,105,-117v-10,1,-29,11,-48,17v-3,0,-5,-2,-5,-6v9,-15,124,-55,124,4v0,28,-53,49,-86,49v3,12,7,27,13,44v0,5,9,2,11,6v-34,26,-29,-48,-45,-57v0,-2,3,-4,10,-4","w":237},"\u00a9":{"d":"41,-49v5,-77,103,-175,173,-189v6,0,10,2,13,5v26,-23,79,-14,72,32v-12,84,-105,199,-198,203v-32,1,-62,-20,-60,-51xm291,-203v0,-60,-69,-24,-89,-4v-4,0,-5,-3,-4,-10v-59,19,-143,118,-149,176v-2,21,21,34,44,32v87,-7,198,-109,198,-194xm89,-78v0,-57,86,-115,145,-115v11,0,18,5,19,15v3,-1,7,-2,7,2v-12,13,-39,64,-64,63v-22,-8,-5,-23,13,-39v13,-12,24,-20,33,-23v3,-6,1,-10,-6,-10v-34,0,-145,80,-136,112v10,34,64,-1,81,-13v2,0,2,1,2,4v-6,25,-94,55,-94,4xm238,-166v-24,15,-43,30,-43,44v9,1,38,-36,43,-44","w":237},"\u2122":{"d":"253,-162v11,-19,63,-69,89,-73v6,0,9,3,9,9v0,7,-9,22,-27,45v37,-31,60,-47,69,-47v6,0,8,3,8,9v0,6,-5,17,-18,34v42,-38,69,-57,80,-57v6,0,9,3,9,9v6,21,-99,103,-101,122v0,3,9,1,8,4v-2,8,-20,6,-18,-4v4,-35,85,-92,102,-125v-44,19,-112,94,-151,133v-2,0,-8,-4,-7,-7v0,-3,15,-20,44,-53v29,-34,48,-51,44,-58v-31,12,-117,93,-142,120v-2,0,-9,-4,-9,-6v0,-2,17,-22,50,-57v33,-36,54,-55,50,-63v-12,0,-39,22,-80,65v-3,3,-8,5,-9,0xm248,-225v-49,-6,-78,15,-101,35v-4,0,-5,-1,-5,-4v16,-18,23,-33,23,-42v0,-3,1,-4,4,-4v16,1,5,15,0,24v26,-18,50,-25,90,-19v3,-4,9,-7,10,0v18,4,38,-4,52,0v1,9,-48,11,-61,11v-35,29,-68,122,-127,125v-12,0,-18,-6,-18,-18v0,-14,23,-42,36,-31v-2,4,-32,23,-28,35v0,5,2,7,6,7v45,-9,85,-96,119,-119","w":357},"\u00b4":{"d":"171,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17"},"\u00a8":{"d":"181,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm149,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11"},"\u2260":{"d":"140,-110r-12,14r53,0v-7,17,-39,8,-61,10r-29,32r-12,0r28,-32r-55,0r8,-10r56,0r12,-14r-52,0v7,-17,39,-8,61,-10r28,-33r12,1r-28,32r56,0v-8,17,-42,8,-65,10","w":166},"\u00c6":{"d":"206,-49v0,-53,75,-72,145,-90r-173,11r-157,128v-3,0,-5,-2,-5,-5v0,-6,37,-38,108,-97r31,-25v-24,4,-70,3,-86,11v1,5,45,0,54,5v0,3,-14,5,-42,5v-30,0,-38,-12,-18,-21v8,-3,45,-7,109,-13v110,-79,172,-118,186,-118v17,8,8,25,-7,42v38,-19,75,-28,112,-28v27,0,41,8,41,26v0,19,-51,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-3,3,-18,9,-7,9v19,0,90,-37,28,-36v-51,1,-133,19,-151,53v1,21,75,26,111,26v5,0,8,1,8,5v0,6,-8,11,-23,11v-66,0,-196,42,-196,91v0,19,17,29,50,29v40,0,77,-21,111,-51v19,35,-69,68,-105,68v-45,0,-68,-17,-68,-53xm307,-179v-7,-11,46,-56,36,-63v-24,11,-112,77,-146,100r143,-8v-22,-7,-33,-16,-33,-29","w":395},"\u00d8":{"d":"47,-30v-10,-97,93,-180,151,-212v6,0,9,4,9,11v23,-15,54,-21,68,2v21,-17,33,-26,35,-26v3,0,3,1,3,4v0,1,-11,11,-34,31v-3,96,-103,207,-188,224v-22,0,-36,-8,-42,-25v-11,10,-22,21,-36,32v-3,-1,-4,-1,-4,-3v0,-3,12,-16,38,-38xm268,-222v-15,-35,-60,6,-78,16v-11,-1,-5,-9,1,-14v-50,25,-123,115,-129,177v59,-54,127,-113,206,-179xm61,-31v-1,15,9,29,23,26v76,-14,162,-131,184,-205","w":213},"\u221e":{"d":"224,-60v-26,-1,-50,-25,-62,-45v-15,24,-27,41,-55,43v-30,2,-54,-28,-54,-57v0,-32,26,-62,57,-61v22,0,41,14,60,44v23,-31,23,-41,57,-44v31,-3,56,27,56,58v0,33,-25,63,-59,62xm274,-120v-1,-52,-82,-54,-99,-9v19,32,40,48,62,48v22,0,38,-18,37,-39xm62,-120v0,35,47,50,75,31v7,-5,13,-13,20,-24v-19,-31,-39,-46,-59,-46v-21,0,-36,18,-36,39","w":240},"\u00b1":{"d":"126,-108r48,-55r13,0r-48,55r54,0v-8,17,-41,8,-63,10r-48,55r-12,0r48,-55r-54,0r8,-10r54,0xm116,-19r-9,10r-120,0r9,-10r120,0","w":166},"\u2264":{"d":"212,-220r0,12r-116,76r116,77r0,32r-148,-99r0,-2xm64,-11r148,0r0,11r-148,0r0,-11"},"\u2265":{"d":"64,-23r0,-12r115,-76r-115,-77r0,-32r148,100r0,2xm64,-11r148,0r0,11r-148,0r0,-11"},"\u00a5":{"d":"125,-82v11,-2,57,2,26,9v-10,0,-23,0,-39,-1v-3,2,-10,9,-22,22v16,3,41,-3,52,5v-8,10,-47,3,-60,4v-8,10,-30,40,-36,42v-18,-9,2,-16,20,-43v-14,-2,-43,2,-49,-7v10,-10,35,-2,56,-2v3,-4,9,-11,19,-22v-15,-2,-47,1,-54,-7v13,-10,43,0,62,-2v2,-2,23,-62,15,-65v-12,-5,-31,27,-37,11v4,-15,60,-37,60,-2v0,7,-3,21,-8,41v58,-34,94,-51,107,-51v6,0,8,2,8,6","w":166},"\u00b5":{"d":"89,-33v-20,19,-26,26,-45,30v-4,0,-7,-3,-9,-7v-29,31,-54,66,-86,94v-4,0,-6,-3,-6,-9v31,-51,97,-109,134,-159v7,-10,17,-16,22,-5v4,9,-63,64,-46,76v7,0,23,-13,47,-40v24,-27,38,-41,41,-41v3,0,8,5,7,8v6,6,-75,74,-48,80v4,0,6,1,6,3v-20,10,-32,-7,-17,-30","w":144},"\u2202":{"d":"191,-131v-17,-54,-42,-85,-90,-109r4,-7v67,24,108,92,111,165v2,47,-32,87,-79,87v-43,0,-77,-39,-77,-83v0,-71,93,-114,131,-53xm192,-79v0,-38,-19,-74,-54,-73v-71,0,-72,147,-1,149v35,1,55,-39,55,-76"},"\u2211":{"d":"187,69v48,0,64,-16,74,-54r6,0r-12,69r-185,0r86,-162r-86,-162r183,0r0,56r-7,0v0,-65,-83,-43,-144,-47r75,142r-85,158r95,0","w":239},"\u220f":{"d":"89,-207v-2,-27,-1,-27,-32,-26r0,-7r222,0r0,7v-29,1,-31,0,-31,26r0,258v2,27,3,25,31,27r0,6r-89,0r0,-6v29,0,32,0,32,-27r0,-258v6,-44,-51,-20,-83,-26v-22,1,-24,3,-24,28r0,255v1,27,3,27,32,28r0,6r-89,0r0,-6v29,0,31,0,31,-27r0,-258","w":239},"\u03c0":{"d":"104,-150v-34,1,-41,10,-59,32r-4,-5v18,-17,22,-45,58,-45r148,1r0,17r-56,0v-19,40,-12,57,-13,104v-2,30,7,39,32,29r0,6r-39,16v-32,-26,-17,-128,7,-155r-62,0v-5,98,3,138,-21,156v-7,1,-12,-8,-12,-14v11,-39,20,-78,21,-142"},"\u222b":{"d":"151,-7v1,58,-8,98,-56,102v-22,2,-41,-15,-41,-36v0,-22,34,-26,35,-3v-2,10,-7,26,7,26v21,0,30,-39,30,-65r0,-164v-4,-58,9,-103,55,-103v21,0,43,15,42,36v-1,9,-7,19,-18,19v-30,0,-1,-41,-25,-41v-22,0,-29,41,-29,70r0,159"},"\u00aa":{"d":"156,-147v6,4,-48,46,-29,45v2,0,3,2,3,3v-9,8,-24,-1,-15,-13v-11,9,-20,14,-26,14v-7,0,-10,-3,-10,-10v-1,-18,49,-64,67,-40v3,-4,9,-4,10,1xm93,-105v3,1,56,-37,45,-43v-4,-2,-56,36,-45,43","w":84},"\u00ba":{"d":"82,-107v0,-11,29,-56,45,-44v7,-6,20,-6,20,5v0,14,-38,52,-52,52v-8,0,-13,-5,-13,-13xm137,-149v-8,0,-24,19,-9,23v8,-9,17,-17,9,-23xm115,-134v-13,13,-25,22,-15,30v5,0,13,-6,24,-17v-6,-2,-9,-6,-9,-13","w":79},"\u2126":{"d":"204,-14v37,-2,79,6,84,-27r7,0r-14,41r-99,0r0,-14v44,-18,76,-58,77,-114v1,-56,-37,-106,-91,-106v-55,0,-92,50,-91,106v1,57,33,95,76,114r0,14r-98,0r-14,-41r7,0v4,31,52,29,84,25v-45,-15,-84,-57,-84,-112v0,-59,53,-116,120,-116v67,0,119,55,120,115v1,58,-42,95,-84,115","w":239},"\u00e6":{"d":"101,-30v-6,17,2,27,26,24v2,0,3,1,3,3v-8,9,-60,6,-51,-17v0,-4,1,-9,3,-14v-23,21,-38,31,-47,31v-19,0,-17,-25,-11,-34v-26,19,-43,38,-67,35v48,-14,99,-94,151,-94v9,0,14,4,15,13v8,-8,14,-12,19,-6v0,2,-2,6,-7,13v14,-10,26,-15,36,-15v9,0,14,4,14,13v0,25,-55,44,-84,48xm40,-11v8,5,81,-62,76,-72v0,-4,-2,-5,-5,-5v-7,-2,-93,65,-71,77xm104,-35v33,-9,57,-22,66,-44v0,-3,-1,-5,-4,-5v-17,-1,-55,36,-62,49","w":168},"\u00f8":{"d":"124,-82v-1,23,-62,105,-94,80v-4,2,-14,17,-22,15v0,-5,22,-14,17,-29v0,-7,4,-17,12,-31v-19,13,-59,52,-80,45v40,-16,88,-65,127,-91v3,0,6,2,10,5v11,-8,22,-13,29,-1v13,-9,17,-19,21,-11v-1,1,-7,7,-20,18xm117,-84v-8,-18,-26,15,-33,11v0,-1,1,-2,3,-4v-14,13,-41,37,-43,56xm44,-14v22,18,60,-40,71,-61","w":126},"\u00bf":{"d":"181,-177v-2,-12,25,-34,30,-14v2,13,-26,36,-30,14xm116,-41v3,22,-67,43,-92,43v-33,0,-40,-30,-23,-51v33,-41,128,-67,170,-103v10,14,-11,21,-42,42v-34,23,-116,57,-129,86v0,5,6,8,20,8v32,0,69,-18,93,-29v2,0,3,1,3,4","w":135},"\u00a1":{"d":"148,-184v-2,-11,25,-35,30,-14v2,12,-25,34,-30,14xm4,-5v-2,-6,51,-74,141,-162v3,0,4,2,4,5v0,13,-132,165,-140,164v-4,0,-5,-3,-5,-7","w":85},"\u00ac":{"d":"185,0r0,-83r-124,0r0,-13r154,0r0,96r-30,0"},"\u221a":{"d":"282,-296r0,9r-43,0r-67,287r-26,0r-31,-130r-61,0r0,-9r82,0r29,121r65,-278r52,0","w":239},"\u0192":{"d":"209,-148v-1,-2,20,-9,10,-10v-46,5,-50,27,-95,70v13,3,35,-4,42,6v-8,8,-31,3,-50,3v-51,61,-81,106,-131,118v-11,3,-22,-8,-12,-11v28,11,38,-11,78,-56r46,-52v-13,0,-57,-2,-36,-11v10,0,24,1,43,2v45,-51,84,-76,114,-76v9,0,12,2,12,7v1,6,-18,21,-21,10","w":166},"\u2248":{"d":"58,-131v35,-75,110,15,155,-39r5,2v-10,16,-28,34,-51,34v-12,1,-56,-17,-69,-15v-17,1,-25,8,-35,21xm58,-75v34,-75,112,13,155,-40r5,3v-10,16,-29,32,-51,33v-14,1,-56,-16,-69,-15v-18,1,-25,8,-35,22"},"\u2206":{"d":"173,-246r111,246r-232,0r110,-246r11,0xm161,-216v-26,63,-59,120,-81,188v0,8,5,11,16,11r153,0","w":239},"\u00ab":{"d":"26,-53v15,-18,58,-48,75,-64v8,17,-18,33,-59,64v33,22,50,35,50,41v-2,7,-9,5,-14,-1v-3,-3,-16,-12,-40,-27v-8,-5,-12,-10,-12,-13xm136,-112v13,11,-50,56,-50,56v30,16,45,28,45,36v0,2,-2,4,-5,4v-14,-11,-42,-23,-56,-39v19,-21,45,-38,66,-57","w":164},"\u00bb":{"d":"156,-65v-13,18,-65,45,-79,59v-11,-17,19,-30,63,-59v-31,-24,-46,-39,-46,-45v0,-3,2,-4,5,-4v10,7,53,40,57,49xm59,-109v11,9,41,29,53,43v-19,19,-46,34,-70,51v-11,-13,17,-25,54,-51v-28,-19,-42,-32,-42,-39v0,-2,2,-4,5,-4","w":164},"\u2026":{"d":"28,-20v2,12,-26,35,-29,13v-2,-12,26,-35,29,-13xm95,-20v2,12,-26,34,-30,13v-2,-12,26,-34,30,-13xm162,-20v1,11,-27,35,-30,13v-2,-12,26,-34,30,-13","w":199},"\u00a0":{"w":90},"\u00c0":{"d":"179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101r98,-119v7,-10,16,-16,11,-22v-18,3,-160,111,-201,142xm355,-307v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":273},"\u00c3":{"d":"179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101r98,-119v7,-10,16,-16,11,-22v-18,3,-160,111,-201,142xm410,-298v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9","w":273},"\u00d5":{"d":"46,-42v0,-86,95,-172,152,-200v6,0,9,4,9,11v9,-6,20,-11,31,-13v1,-6,2,-9,3,-9v5,0,7,3,6,9v20,0,33,13,33,33v-1,63,-88,161,-133,194v-37,28,-101,34,-101,-25xm84,-5v76,-13,170,-135,184,-212v2,-13,-9,-22,-22,-18v-15,46,-90,141,-110,130v-9,0,-14,-6,-14,-19v0,-29,23,-60,69,-96v-65,38,-120,108,-130,189v-2,15,9,28,23,26xm236,-232v-39,17,-93,67,-102,112v0,4,2,6,6,6v22,3,91,-98,96,-118xm296,-298v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9","w":213},"\u0152":{"d":"333,-64v19,35,-69,68,-105,68v-34,0,-56,-11,-64,-33v-25,33,-118,56,-118,-12v0,-100,98,-197,200,-203v28,-2,38,16,33,42v26,-22,92,-43,139,-42v27,0,40,8,40,26v0,19,-51,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-2,3,-16,8,-7,9v14,1,95,-38,28,-36v-51,1,-133,20,-151,53v2,21,75,26,112,26v5,0,7,1,7,5v0,6,-8,11,-23,11v-67,0,-196,41,-196,91v0,19,17,29,50,29v40,0,77,-21,111,-51xm247,-236v-91,9,-185,112,-185,204v0,19,8,28,23,28v22,0,47,-16,75,-47v6,-57,100,-85,167,-92v-27,0,-67,-13,-66,-36v1,-18,23,-60,-14,-57","w":349},"\u0153":{"d":"111,-30v-6,14,1,26,19,24v2,0,3,1,3,3v-8,10,-59,6,-43,-24v-19,20,-35,30,-47,30v-27,0,-20,-29,-6,-50v-20,13,-59,52,-80,45v0,-2,1,-4,4,-4v40,-8,90,-66,123,-87v4,0,6,3,8,7v15,-19,40,-8,30,14v21,-18,38,-27,50,-27v9,0,13,4,13,12v0,22,-50,51,-74,57xm113,-37v15,-7,58,-35,58,-51v-15,-15,-51,36,-58,51xm86,-77v-29,28,-43,47,-43,59v0,6,3,9,8,9v15,4,70,-59,65,-74v-9,-26,-46,43,-30,6","w":171},"\u2013":{"d":"23,-51v16,-19,106,-8,153,-9v7,0,12,2,12,5v0,7,-5,10,-14,10r-143,-1v-5,0,-8,-2,-8,-5","w":206},"\u2014":{"d":"124,-62v68,0,103,-2,109,7v0,7,-5,10,-15,10r-205,-1v-6,0,-8,-2,-8,-5v15,-16,44,-11,119,-11","w":235},"\u201c":{"d":"216,-228v7,9,-17,9,-23,20v6,0,9,3,9,7v1,11,-31,35,-34,13v-2,-15,32,-42,48,-40xm175,-228v6,9,-19,10,-24,20v6,0,9,3,9,7v1,11,-31,35,-34,13v-2,-16,33,-42,49,-40","w":121},"\u201d":{"d":"119,-181v5,-8,21,-8,27,-18v-6,0,-10,-2,-10,-6v-1,-11,33,-37,35,-13v1,15,-36,46,-52,37xm161,-181v5,-7,21,-7,27,-18v-6,0,-10,-2,-10,-6v-1,-11,32,-37,35,-13v1,15,-36,46,-52,37","w":121},"\u2018":{"d":"175,-228v6,9,-19,10,-24,20v6,0,9,3,9,7v1,11,-31,35,-34,13v-2,-16,33,-42,49,-40","w":79},"\u2019":{"d":"146,-203v-5,-10,20,-10,24,-20v-6,0,-10,-2,-10,-6v-2,-11,31,-37,35,-14v2,16,-33,42,-49,40","w":67},"\u00f7":{"d":"167,-150v2,9,-12,23,-21,22v-6,0,-8,-2,-8,-8v-3,-13,25,-34,29,-14xm193,-108r-9,10r-120,0r8,-10r121,0xm119,-68v2,11,-26,35,-29,13v-2,-13,25,-34,29,-13","w":166},"\u25ca":{"d":"168,-249r93,129r-93,129r-93,-129xm168,-218r-71,98r71,97r71,-97","w":239},"\u00ff":{"d":"169,-98r-73,93v9,-4,22,4,5,6r-10,0v-25,30,-84,109,-112,111v-6,0,-9,-3,-9,-11v0,-39,68,-99,106,-104r36,-47v-15,13,-51,48,-65,48v-31,-17,12,-61,24,-75v-30,21,-75,77,-114,75v36,-18,99,-70,134,-99v6,0,14,5,13,11v-15,17,-56,62,-56,76v0,2,2,3,4,3v22,-4,86,-75,107,-95v4,-1,11,4,10,8xm70,5v-36,9,-89,58,-93,92v0,4,1,5,4,5v11,0,41,-32,89,-97xm179,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm147,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":148},"\u0178":{"d":"83,111v-13,-5,-12,-16,0,-29r168,-191v-63,53,-108,97,-160,110v-17,0,-26,-10,-26,-30v0,-79,128,-140,167,-199v-49,-4,-147,73,-167,108v12,12,39,-14,54,-13v-2,9,-62,47,-66,14v15,-49,117,-115,178,-120v10,0,15,4,15,13v-20,61,-170,135,-170,204v0,8,4,12,12,12v42,0,130,-84,174,-122v8,-7,65,-70,97,-93v8,0,14,7,7,15r-208,235v-11,11,-37,35,-41,45v3,1,12,-11,15,-7v-8,10,-38,40,-49,48xm385,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm353,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":260},"\u2215":{"d":"201,-188v3,0,4,1,4,4v-65,60,-185,125,-258,186v-6,-2,-5,-10,0,-15v48,-41,191,-137,254,-175","w":84},"\u20ac":{"d":"204,-175v21,-2,29,28,8,31v5,-12,1,-27,-10,-25v-21,3,-47,20,-80,54v21,3,50,-2,66,6v-18,11,-13,2,-74,2v-7,7,-13,16,-19,24r73,2v2,0,2,2,2,4v-16,11,-57,0,-81,2v-15,22,-22,41,-22,55v0,13,9,17,23,16v21,-1,49,-21,66,-40v10,5,1,14,-10,24v-20,17,-35,25,-59,25v-43,0,-39,-50,-21,-81v-19,0,-30,-7,-15,-10v7,0,6,0,20,1v4,-7,10,-14,18,-22v-23,-1,-36,-6,-20,-10r29,1v24,-23,71,-56,106,-59","w":166},"\u2039":{"d":"22,-55v17,-20,41,-36,65,-57v11,14,-15,28,-50,56v11,7,56,28,41,40v-16,-10,-41,-23,-56,-39","w":113},"\u203a":{"d":"110,-66v-19,20,-48,33,-70,51v-11,-13,17,-25,54,-51v-29,-22,-50,-32,-38,-43v12,8,41,29,54,43","w":113},"\uf001":{"d":"-24,108v-10,0,-17,-9,-16,-19v2,-37,82,-129,112,-167v-30,21,-81,80,-115,76v100,-57,134,-99,228,-204v9,-9,18,-17,22,-4v-16,33,-44,55,-67,81r-71,82v18,2,13,25,6,41v40,-8,95,-67,123,-88v5,-1,17,-4,16,5v6,5,-61,75,-57,78v-2,6,12,2,13,8v-4,6,-30,3,-25,-9v0,-11,13,-32,39,-62v-34,26,-66,67,-112,74v-10,27,-68,108,-96,108xm68,-42v-13,1,-29,40,-1,37v5,-14,13,-31,1,-37xm64,1v-13,0,-19,-7,-19,-19v-49,61,-74,98,-74,112v0,5,2,8,7,8v23,0,76,-78,86,-101xm260,-149v1,12,-32,27,-33,8v-2,-13,31,-30,33,-8","w":208},"\uf002":{"d":"-24,108v-19,-1,-18,-24,-10,-41v15,-31,77,-108,106,-145v-30,21,-81,80,-115,76v100,-57,134,-99,228,-204v9,-9,18,-17,22,-4v-16,33,-44,55,-67,81r-71,82v18,2,13,25,6,41v42,-10,69,-44,104,-66v29,-41,103,-127,140,-136v5,0,8,2,8,8v-3,36,-85,102,-123,130v-9,4,-37,48,-37,60v-2,5,12,1,12,7v-5,8,-26,3,-23,-11v0,-11,4,-25,13,-43v-31,19,-55,50,-97,57v-10,27,-67,109,-96,108xm321,-200v-8,-9,-24,13,-58,51v-30,34,-49,57,-57,70v77,-62,115,-102,115,-121xm68,-42v-13,1,-29,40,-1,37v5,-14,13,-31,1,-37xm64,1v-13,0,-19,-7,-19,-19v-49,61,-74,98,-74,112v0,5,2,8,7,8v23,0,76,-78,86,-101","w":217},"\u2021":{"d":"33,-56v6,-18,17,-9,59,-11r70,-99v-15,-2,-40,6,-49,-3v5,-18,18,-8,59,-11v19,-20,44,-76,60,-59v-9,17,-30,43,-42,60v16,1,72,6,38,16r-47,-3r-71,100v22,1,74,6,41,16r-50,-3r-59,77v-2,2,-10,1,-9,-2v5,-13,38,-58,50,-75v-16,-1,-39,4,-50,-3","w":171},"\u2219":{"d":"87,-104v2,12,-25,34,-30,14v-2,-12,25,-34,30,-14","w":66},"\u201a":{"d":"-47,20v-8,-10,20,-10,24,-20v-6,0,-10,-3,-10,-7v-2,-11,32,-35,35,-13v2,16,-33,42,-49,40","w":67},"\u201e":{"d":"-15,18v2,-4,25,-13,26,-18v-6,0,-9,-2,-9,-6v-1,-11,32,-36,35,-14v2,14,-36,47,-52,38xm27,18v5,-8,22,-9,26,-18v-6,0,-9,-2,-9,-6v-1,-12,32,-36,35,-14v2,14,-35,47,-52,38","w":121},"\u2030":{"d":"82,-146v0,-22,42,-61,64,-57v23,4,9,31,-4,47v25,2,61,-13,112,-32v4,0,5,2,5,6v-59,55,-197,134,-258,184v-2,0,-7,-5,-6,-8v0,-12,73,-66,221,-160v-33,11,-59,17,-80,17v-13,15,-25,22,-36,22v-11,0,-18,-9,-18,-19xm146,-189v-12,0,-35,28,-12,32v12,-12,22,-24,12,-32xm118,-173v-16,11,-23,21,-23,31v6,17,21,4,34,-8v-10,-4,-14,-12,-11,-23xm169,-57v0,20,-39,62,-58,60v-10,0,-20,-7,-19,-18v1,-28,36,-62,62,-62v9,0,15,11,15,20xm112,-6v16,1,64,-38,45,-55v-13,-2,-57,34,-54,48v0,5,3,7,9,7xm249,-57v0,20,-40,61,-59,60v-10,0,-19,-8,-19,-18v1,-28,36,-62,62,-62v9,0,16,10,16,20xm192,-6v16,1,63,-38,44,-55v-13,-2,-56,34,-53,48v0,5,3,7,9,7","w":268},"\u00c2":{"d":"179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101r98,-119v7,-10,16,-16,11,-22v-18,3,-160,111,-201,142xm384,-293r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":273},"\u00ca":{"d":"22,-49v0,-61,92,-86,166,-94v-28,0,-66,-13,-66,-36v0,-40,110,-65,157,-65v27,0,40,8,40,26v0,19,-52,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-2,3,-16,8,-7,9v14,2,95,-36,28,-36v-35,0,-86,14,-115,26v-24,10,-36,18,-36,27v1,21,75,26,112,26v5,0,7,1,7,5v0,6,-8,11,-23,11v-67,0,-192,42,-196,91v-3,37,77,33,108,16v18,-10,37,-25,53,-38v19,35,-69,68,-105,68v-45,0,-67,-17,-67,-53xm296,-293r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":211},"\u00c1":{"d":"179,0v-4,0,-9,-9,-8,-13v0,-4,19,-30,59,-78r-99,3v-33,27,-69,66,-105,88v-3,0,-5,-2,-5,-5v-2,-6,71,-65,91,-82v-62,2,-117,8,-58,11v9,1,23,-3,28,2v0,3,-12,5,-38,5v-42,0,-42,-21,-13,-23r95,-7v33,-29,204,-155,236,-158v6,0,10,4,10,12v-20,46,-77,102,-108,144v14,-3,43,7,19,11r-28,-1v-16,21,-67,89,-76,91xm239,-101r98,-119v7,-10,16,-16,11,-22v-18,3,-160,111,-201,142xm409,-289v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":273},"\u00cb":{"d":"22,-49v0,-61,92,-86,166,-94v-28,0,-66,-13,-66,-36v0,-40,110,-65,157,-65v27,0,40,8,40,26v0,19,-52,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-2,3,-16,8,-7,9v14,2,95,-36,28,-36v-35,0,-86,14,-115,26v-24,10,-36,18,-36,27v1,21,75,26,112,26v5,0,7,1,7,5v0,6,-8,11,-23,11v-67,0,-192,42,-196,91v-3,37,77,33,108,16v18,-10,37,-25,53,-38v19,35,-69,68,-105,68v-45,0,-67,-17,-67,-53xm324,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm292,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":211},"\u00c8":{"d":"22,-49v0,-61,92,-86,166,-94v-28,0,-66,-13,-66,-36v0,-40,110,-65,157,-65v27,0,40,8,40,26v0,19,-52,42,-72,41v-7,0,-11,-3,-11,-9v-1,-8,19,-22,27,-15v-2,3,-16,8,-7,9v14,2,95,-36,28,-36v-35,0,-86,14,-115,26v-24,10,-36,18,-36,27v1,21,75,26,112,26v5,0,7,1,7,5v0,6,-8,11,-23,11v-67,0,-192,42,-196,91v-3,37,77,33,108,16v18,-10,37,-25,53,-38v19,35,-69,68,-105,68v-45,0,-67,-17,-67,-53xm269,-307v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":211},"\u00cd":{"d":"64,-114v8,-69,127,-131,201,-131v18,0,27,6,27,18v0,21,-31,63,-91,123v10,0,25,-10,31,-3v0,3,-15,9,-44,16v-60,55,-78,86,-123,103v-7,0,-11,-3,-11,-10v-1,-3,36,-55,41,-41r-24,29v4,0,32,-25,83,-74v-37,7,-94,5,-90,-30xm271,-236v-59,9,-176,75,-195,125v0,10,15,15,44,15v73,-2,40,2,91,-45v20,-18,64,-69,67,-90v0,-3,-2,-5,-7,-5xm306,-289v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":206},"\u00ce":{"d":"64,-114v8,-69,127,-131,201,-131v18,0,27,6,27,18v0,21,-31,63,-91,123v10,0,25,-10,31,-3v0,3,-15,9,-44,16v-60,55,-78,86,-123,103v-7,0,-11,-3,-11,-10v-1,-3,36,-55,41,-41r-24,29v4,0,32,-25,83,-74v-37,7,-94,5,-90,-30xm271,-236v-59,9,-176,75,-195,125v0,10,15,15,44,15v73,-2,40,2,91,-45v20,-18,64,-69,67,-90v0,-3,-2,-5,-7,-5xm291,-293r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":206},"\u00cf":{"d":"64,-114v8,-69,127,-131,201,-131v18,0,27,6,27,18v0,21,-31,63,-91,123v10,0,25,-10,31,-3v0,3,-15,9,-44,16v-60,55,-78,86,-123,103v-7,0,-11,-3,-11,-10v-1,-3,36,-55,41,-41r-24,29v4,0,32,-25,83,-74v-37,7,-94,5,-90,-30xm271,-236v-59,9,-176,75,-195,125v0,10,15,15,44,15v73,-2,40,2,91,-45v20,-18,64,-69,67,-90v0,-3,-2,-5,-7,-5xm326,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11xm294,-296v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11","w":206},"\u00cc":{"d":"64,-114v8,-69,127,-131,201,-131v18,0,27,6,27,18v0,21,-31,63,-91,123v10,0,25,-10,31,-3v0,3,-15,9,-44,16v-60,55,-78,86,-123,103v-7,0,-11,-3,-11,-10v-1,-3,36,-55,41,-41r-24,29v4,0,32,-25,83,-74v-37,7,-94,5,-90,-30xm271,-236v-59,9,-176,75,-195,125v0,10,15,15,44,15v73,-2,40,2,91,-45v20,-18,64,-69,67,-90v0,-3,-2,-5,-7,-5xm269,-307v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":206},"\u00d3":{"d":"46,-42v0,-86,95,-172,152,-200v6,0,9,4,9,11v9,-6,20,-11,31,-13v1,-6,2,-9,3,-9v5,0,7,3,6,9v20,0,33,13,33,33v-1,63,-88,161,-133,194v-37,28,-101,34,-101,-25xm84,-5v76,-13,170,-135,184,-212v2,-13,-9,-22,-22,-18v-15,46,-90,141,-110,130v-9,0,-14,-6,-14,-19v0,-29,23,-60,69,-96v-65,38,-120,108,-130,189v-2,15,9,28,23,26xm236,-232v-39,17,-93,67,-102,112v0,4,2,6,6,6v22,3,91,-98,96,-118xm259,-289v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":213},"\u00d4":{"d":"46,-42v0,-86,95,-172,152,-200v6,0,9,4,9,11v9,-6,20,-11,31,-13v1,-6,2,-9,3,-9v5,0,7,3,6,9v20,0,33,13,33,33v-1,63,-88,161,-133,194v-37,28,-101,34,-101,-25xm84,-5v76,-13,170,-135,184,-212v2,-13,-9,-22,-22,-18v-15,46,-90,141,-110,130v-9,0,-14,-6,-14,-19v0,-29,23,-60,69,-96v-65,38,-120,108,-130,189v-2,15,9,28,23,26xm236,-232v-39,17,-93,67,-102,112v0,4,2,6,6,6v22,3,91,-98,96,-118xm266,-293r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":213},"\u00d2":{"d":"46,-42v0,-86,95,-172,152,-200v6,0,9,4,9,11v9,-6,20,-11,31,-13v1,-6,2,-9,3,-9v5,0,7,3,6,9v20,0,33,13,33,33v-1,63,-88,161,-133,194v-37,28,-101,34,-101,-25xm84,-5v76,-13,170,-135,184,-212v2,-13,-9,-22,-22,-18v-15,46,-90,141,-110,130v-9,0,-14,-6,-14,-19v0,-29,23,-60,69,-96v-65,38,-120,108,-130,189v-2,15,9,28,23,26xm236,-232v-39,17,-93,67,-102,112v0,4,2,6,6,6v22,3,91,-98,96,-118xm241,-307v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":213},"\u00da":{"d":"208,-5v-3,10,-31,12,-31,-8v0,-20,19,-53,58,-100v-39,33,-131,115,-170,117v-32,-5,-25,-39,-8,-64v35,-53,103,-118,156,-159v2,-3,5,-6,1,-6v-22,1,-70,37,-89,47v-4,0,-6,-1,-6,-4v11,-18,85,-61,99,-56v23,8,10,28,-8,43v-43,37,-150,141,-155,181v0,4,2,6,4,6v109,-41,216,-157,297,-233v7,0,17,10,9,17v-66,67,-150,156,-175,212v-1,10,12,5,18,7xm321,-289v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":264},"\u00db":{"d":"208,-5v-3,10,-31,12,-31,-8v0,-20,19,-53,58,-100v-39,33,-131,115,-170,117v-32,-5,-25,-39,-8,-64v35,-53,103,-118,156,-159v2,-3,5,-6,1,-6v-22,1,-70,37,-89,47v-4,0,-6,-1,-6,-4v11,-18,85,-61,99,-56v23,8,10,28,-8,43v-43,37,-150,141,-155,181v0,4,2,6,4,6v109,-41,216,-157,297,-233v7,0,17,10,9,17v-66,67,-150,156,-175,212v-1,10,12,5,18,7xm316,-293r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23","w":264},"\u00d9":{"d":"208,-5v-3,10,-31,12,-31,-8v0,-20,19,-53,58,-100v-39,33,-131,115,-170,117v-32,-5,-25,-39,-8,-64v35,-53,103,-118,156,-159v2,-3,5,-6,1,-6v-22,1,-70,37,-89,47v-4,0,-6,-1,-6,-4v11,-18,85,-61,99,-56v23,8,10,28,-8,43v-43,37,-150,141,-155,181v0,4,2,6,4,6v109,-41,216,-157,297,-233v7,0,17,10,9,17v-66,67,-150,156,-175,212v-1,10,12,5,18,7xm294,-307v4,3,27,34,20,40v-5,-1,-47,-37,-20,-40","w":264},"\u0131":{"d":"98,-89v6,5,-61,75,-56,78v-2,6,11,2,12,8v-3,6,-29,3,-25,-9v0,-10,14,-31,40,-62v-28,19,-85,80,-112,72v38,-15,89,-61,126,-92v4,-1,16,-4,15,5","w":92},"\u02c6":{"d":"154,-134r-46,23v-2,0,-3,-1,-3,-3v0,-3,16,-15,48,-34v3,-2,6,-3,7,-3v4,-1,22,37,11,40v-7,2,-15,-22,-17,-23"},"\u02dc":{"d":"189,-140v3,28,-42,19,-59,10v-5,-2,-14,17,-17,7v-1,-5,15,-21,20,-20v6,-1,35,13,41,12v4,1,12,-9,15,-9"},"\u02c9":{"d":"185,-121v-23,-2,-58,7,-69,-5v0,-5,16,-7,50,-7v13,-3,36,5,19,12"},"\u02d8":{"d":"195,-148v-4,10,-26,31,-46,28v-18,4,-27,-20,-16,-28v7,5,5,18,22,16v14,4,31,-24,40,-16"},"\u02d9":{"d":"166,-137v1,10,-22,28,-25,11v-2,-11,22,-30,25,-11"},"\u02da":{"d":"180,-148v0,21,-39,43,-46,18v-1,-15,20,-33,35,-32v7,0,11,4,11,14xm144,-130v7,10,27,-6,27,-16v0,-3,-2,-4,-5,-4v-7,-1,-23,13,-22,20"},"\u00b8":{"d":"30,12v7,-5,18,-21,29,-19v-5,5,-10,10,-16,14v11,-3,23,-1,23,9v2,23,-41,30,-50,14v5,-4,37,10,38,-12v0,-11,-19,-1,-24,-6"},"\u02dd":{"d":"162,-151v0,5,-18,43,-27,32v7,-12,11,-51,27,-32xm193,-151v0,5,-18,43,-27,32v6,-6,12,-52,27,-32"},"\u02db":{"d":"97,37v-3,10,-35,13,-35,-5v0,-9,14,-31,40,-32v-19,12,-28,23,-28,31v0,13,20,2,23,6"},"\u02c7":{"d":"133,-152v8,-4,16,22,17,23r46,-23v2,0,4,1,4,3v0,3,-16,14,-49,34v-3,2,-5,3,-6,3v-6,2,-21,-36,-12,-40"},"\u0141":{"d":"256,-172v0,-17,20,-36,37,-39v1,-8,-2,-12,-9,-12v-29,2,-92,75,-118,102v33,-5,42,-16,51,-4v-12,14,-34,9,-66,21r-65,69v48,21,69,24,98,24v1,7,-17,13,-26,13v-15,0,-44,-8,-85,-24v-25,23,-50,34,-76,34v-21,0,-42,-10,-40,-27v4,-40,70,-48,110,-27r51,-55r-51,11v-3,0,-4,-1,-4,-4v8,-14,52,-16,71,-23v40,-43,85,-109,146,-118v12,-2,23,6,24,18v6,-3,19,3,8,6r-7,1v-2,18,-20,47,-38,47v-7,0,-11,-4,-11,-13xm291,-202v-12,3,-38,24,-26,35v10,0,24,-26,26,-35xm53,-28v-26,-11,-87,-19,-89,12v0,13,9,19,28,19v19,0,39,-10,61,-31","w":226},"\u0142":{"d":"54,-57v-24,15,-72,62,-97,55v0,-2,1,-4,3,-4v32,-7,74,-46,102,-65r4,-6v-14,1,-35,10,-46,5v0,-4,40,-11,52,-14v16,-26,104,-122,131,-122v5,0,8,2,8,8v0,25,-68,88,-90,105v20,-2,26,-7,33,-2v1,6,-47,9,-47,13v-34,20,-40,38,-55,74v-2,5,12,1,12,7v-5,8,-28,3,-24,-11v0,-10,5,-24,14,-43xm108,-93v65,-57,102,-87,95,-110v-10,-1,-95,100,-104,112xm90,-79r7,-5v-4,0,-5,3,-7,5","w":102},"\u0160":{"d":"236,-174v16,7,76,-33,76,-46v0,-7,-9,-10,-25,-10v-35,-1,-110,24,-140,40v-42,21,-69,43,-16,54v40,8,105,1,105,43v-16,59,-100,99,-179,100v-37,0,-56,-12,-56,-34v0,-25,54,-53,82,-51v5,0,7,1,7,4v-22,9,-77,19,-77,44v0,12,14,19,43,19v68,-1,152,-37,169,-84v6,-17,-101,-20,-98,-23v-23,-6,-35,-16,-35,-30v0,-63,125,-98,197,-98v23,0,35,8,35,22v0,22,-61,67,-83,67v-11,0,-16,-4,-16,-11v-1,-10,37,-40,48,-31v-10,5,-37,19,-37,25xm271,-312v8,-4,16,22,17,23r46,-23v2,0,4,1,4,3v0,3,-16,14,-49,34v-3,2,-5,3,-6,3v-6,2,-21,-36,-12,-40","w":225},"\u0161":{"d":"107,-93v0,19,-38,76,-51,87v10,-1,11,7,1,7v-24,-2,-45,0,-43,-31v-25,19,-43,34,-57,28v3,-8,12,-4,23,-11v3,2,113,-90,115,-91v5,1,12,5,12,11xm42,-15v15,-12,40,-54,47,-76r-63,51v9,1,13,16,16,25xm25,-33v-10,5,1,31,12,24v-2,-7,-7,-23,-12,-24xm94,-152v8,-4,16,22,17,23r46,-23v2,0,4,1,4,3v0,3,-16,14,-49,34v-3,2,-5,3,-6,3v-6,2,-21,-36,-12,-40","w":102},"\u017d":{"d":"287,-184v0,74,-83,117,-166,147v6,7,7,16,5,27v4,0,7,1,7,5v0,7,-8,7,-10,2v-11,42,-113,114,-164,113v-14,0,-21,-4,-21,-13v17,-52,107,-113,176,-110v2,-8,2,-16,-5,-19v-22,9,-38,13,-50,13v-6,0,-9,-2,-9,-6v3,-14,38,-23,59,-18v45,-17,165,-95,165,-151v0,-12,-8,-18,-25,-18v-53,0,-133,32,-158,60v14,15,69,-28,77,-19v-6,7,-87,51,-94,22v18,-43,104,-75,165,-77v32,0,48,14,48,42xm109,-6v-43,-14,-158,76,-162,102v0,4,3,6,8,6v51,-13,128,-62,154,-108xm250,-312v8,-4,16,22,17,23r46,-23v2,0,4,1,4,3v0,3,-16,14,-49,34v-3,2,-5,3,-6,3v-6,2,-21,-36,-12,-40","w":215},"\u017e":{"d":"23,-16v1,-9,30,-18,43,-14v25,-21,37,-39,37,-53v-8,-22,-18,-2,-42,15v-26,19,-72,71,-104,66v45,-19,102,-74,139,-100v15,-5,29,-1,29,15v0,17,-17,39,-53,62v5,3,7,7,7,13v4,22,-87,121,-115,112v-10,0,-14,-4,-14,-13v3,-37,69,-89,112,-93v4,-5,4,-9,2,-14v-17,7,-32,14,-41,4xm58,1v-39,6,-98,52,-102,86v0,4,2,6,6,6v24,-1,83,-70,96,-92xm103,-152v8,-4,16,22,17,23r46,-23v2,0,4,1,4,3v0,3,-16,14,-49,34v-3,2,-5,3,-6,3v-6,2,-21,-36,-12,-40","w":120},"\u00a6":{"d":"130,-240r16,0r0,119r-16,0r0,-119xm130,-55r16,0r0,115r-16,0r0,-115"},"\u00d0":{"d":"118,7v-29,1,-43,-26,-35,-56v-17,16,-28,38,-49,49v-5,0,-8,-2,-8,-7v4,-15,68,-82,88,-105v-30,-2,-42,3,-46,-6v10,-11,40,-4,58,-7r71,-77v-31,3,-63,18,-84,23v-5,0,-8,-1,-8,-5v18,-16,73,-32,113,-39v7,-4,21,-26,25,-10v0,1,-1,4,-3,7v93,-7,87,87,34,140v-37,37,-98,91,-156,93xm113,-9v77,-11,178,-95,188,-171v4,-33,-42,-35,-74,-27r-75,82v16,1,49,-6,55,5v0,3,-2,6,-7,6r-60,2r-48,55v-8,18,-6,52,21,48","w":265},"\u00f0":{"d":"163,-154v4,-6,6,-40,16,-59v8,14,-1,37,-7,59v12,-2,44,3,21,8r-23,-1v-19,49,-34,69,-68,108v-25,28,-45,42,-59,42v-27,0,-20,-29,-6,-50v-20,13,-59,52,-80,45v48,-17,100,-87,153,-94v13,-2,17,10,12,21v11,-10,33,-54,39,-72v-29,-1,-40,4,-50,-4v3,-7,39,-3,52,-3xm111,-89v-15,-4,-72,56,-68,71v0,6,3,9,8,9v15,4,69,-59,65,-74v0,-4,-1,-6,-5,-6","w":126},"\u00dd":{"d":"83,111v-13,-5,-12,-16,0,-29r168,-191v-63,53,-108,97,-160,110v-17,0,-26,-10,-26,-30v0,-79,128,-140,167,-199v-49,-4,-147,73,-167,108v12,12,39,-14,54,-13v-2,9,-62,47,-66,14v15,-49,117,-115,178,-120v10,0,15,4,15,13v-20,61,-170,135,-170,204v0,8,4,12,12,12v42,0,130,-84,174,-122v8,-7,65,-70,97,-93v8,0,14,7,7,15r-208,235v-11,11,-37,35,-41,45v3,1,12,-11,15,-7v-8,10,-38,40,-49,48xm331,-289v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":260},"\u00fd":{"d":"169,-98r-73,93v9,-4,22,4,5,6r-10,0v-25,30,-84,109,-112,111v-6,0,-9,-3,-9,-11v0,-39,68,-99,106,-104r36,-47v-15,13,-51,48,-65,48v-31,-17,12,-61,24,-75v-30,21,-75,77,-114,75v36,-18,99,-70,134,-99v6,0,14,5,13,11v-15,17,-56,62,-56,76v0,2,2,3,4,3v22,-4,86,-75,107,-95v4,-1,11,4,10,8xm70,5v-36,9,-89,58,-93,92v0,4,1,5,4,5v11,0,41,-32,89,-97xm164,-140v-10,3,-28,23,-37,13v0,-3,6,-8,19,-17v12,-9,20,-13,22,-13v8,2,2,15,-4,17","w":148},"\u00de":{"d":"267,-145v1,70,-113,103,-180,102v-13,11,-35,62,-47,34v0,-2,9,-14,25,-35v-15,-2,-22,-6,-22,-10v2,-11,21,-3,34,-5v23,-28,54,-63,93,-106v-40,6,-81,19,-120,34v-4,0,-6,-3,-6,-8v15,-27,103,-43,144,-46v25,-28,39,-43,40,-43v20,12,6,16,-15,43v29,0,54,14,54,40xm102,-60v69,-6,147,-27,159,-84v4,-21,-33,-28,-64,-24","w":226},"\u00fe":{"d":"143,-81v0,28,-38,64,-60,75v13,-2,39,4,10,7v-22,-5,-47,6,-44,-27r-94,106v-4,7,-12,5,-12,-5v23,-44,99,-114,136,-157v-33,25,-75,70,-120,82v-4,-8,9,-6,17,-11v13,0,92,-57,127,-99r74,-89v8,-10,14,-15,19,-15v4,0,6,2,6,7v-2,13,-82,103,-106,129v14,-12,25,-18,34,-18v9,0,13,5,13,15xm60,-37v6,-3,11,21,12,22v19,-9,52,-48,56,-66v-17,-18,-53,30,-68,44xm62,-12v6,0,0,-8,0,-12v-2,-6,-3,-10,-4,-10v-4,1,-5,25,4,22","w":145},"\u2212":{"d":"193,-108r-9,10r-120,0r8,-10r121,0","w":166},"\u00d7":{"d":"135,-56r-11,-39r-67,39r-3,-11r67,-38r-11,-39r11,-6r11,38r68,-38r2,10r-67,39r11,39","w":166},"\u00b9":{"d":"117,-109v-12,14,-14,20,-20,7v0,-6,28,-37,83,-91v-24,10,-33,20,-41,12v17,-10,45,-23,68,-35v11,2,6,10,-2,16v-30,27,-60,58,-88,91","w":105},"\u00b2":{"d":"125,-184v8,-15,87,-62,91,-13v-9,37,-98,66,-135,89v22,-3,39,-5,52,-5v15,-1,17,9,2,10r-69,9v-13,-7,-6,-20,12,-25v33,-18,125,-61,127,-83v0,-4,-2,-6,-7,-6v-18,-1,-51,20,-67,31v-3,0,-6,-4,-6,-7","w":105},"\u00b3":{"d":"209,-195v2,15,-45,36,-60,35v15,3,22,9,22,20v1,27,-44,46,-74,46v-32,0,-28,-35,-8,-38v9,7,-24,24,6,27v22,2,63,-20,63,-38v1,-14,-25,-13,-37,-9v-3,0,-5,-2,-5,-6v27,-13,73,-15,82,-40v-14,-15,-50,6,-67,12v-3,0,-4,-1,-4,-5v5,-17,78,-41,82,-4","w":105},"\u00bd":{"d":"118,-109v-12,13,-15,20,-20,7v0,-6,27,-37,82,-91v-24,10,-32,20,-40,12v17,-10,45,-21,67,-35v13,2,6,10,-2,16v-30,27,-59,58,-87,91xm306,-188v3,0,4,1,4,4v-65,60,-185,125,-258,186v-6,-2,-5,-10,0,-15v48,-41,190,-138,254,-175xm233,-88v8,-15,87,-62,92,-13v-10,36,-99,67,-136,89v27,-2,52,-12,65,0v0,1,-1,3,-2,4r-78,10v-5,1,-6,-3,-6,-10v0,-11,5,-6,19,-15v32,-19,125,-61,127,-83v0,-4,-2,-6,-7,-6v-18,-1,-52,20,-68,31v-3,0,-6,-4,-6,-7","w":300},"\u00bc":{"d":"118,-109v-12,13,-15,20,-20,7v0,-6,27,-37,82,-91v-24,10,-32,20,-40,12v17,-10,45,-21,67,-35v13,2,6,10,-2,16v-30,27,-59,58,-87,91xm306,-188v3,0,4,1,4,4v-65,60,-185,125,-258,186v-6,-2,-5,-10,0,-15v48,-41,190,-138,254,-175xm196,-48v-2,-17,112,-68,125,-70v13,3,6,8,-3,17r-46,46v14,-1,23,5,13,10r-22,0v-10,11,-37,43,-45,46v-4,0,-6,-2,-6,-5v0,-4,11,-17,32,-40r-42,3v-4,0,-6,-3,-6,-7xm253,-54r45,-46v-31,14,-62,31,-87,47v12,2,28,-1,42,-1","w":300},"\u00be":{"d":"210,-195v2,15,-46,36,-61,35v15,3,22,9,22,20v2,27,-44,46,-73,46v-32,0,-30,-34,-9,-38v9,7,-24,25,7,27v20,1,64,-21,62,-38v1,-14,-25,-13,-37,-9v-4,0,-5,-2,-5,-6v27,-13,73,-16,83,-40v-15,-15,-51,5,-68,12v-3,0,-4,-1,-4,-5v6,-18,79,-41,83,-4xm306,-188v3,0,4,1,4,4v-65,60,-185,125,-258,186v-6,-2,-5,-10,0,-15v48,-41,190,-138,254,-175xm196,-48v-2,-17,112,-68,125,-70v13,3,6,8,-3,17r-46,46v14,-1,23,5,13,10r-22,0v-10,11,-37,43,-45,46v-4,0,-6,-2,-6,-5v0,-4,11,-17,32,-40r-42,3v-4,0,-6,-3,-6,-7xm253,-54r45,-46v-31,14,-62,31,-87,47v12,2,28,-1,42,-1","w":300},"\u00ad":{"d":"93,-48v-29,-1,-74,9,-88,-5v0,-5,21,-8,64,-8v14,-3,42,5,24,13","w":100},"\u00af":{"d":"57,-281r162,0r0,14r-162,0r0,-14"},"\u00b7":{"d":"87,-104v2,12,-25,34,-30,14v-2,-12,25,-34,30,-14","w":66},"\u00a4":{"d":"134,-53v-23,22,-65,27,-76,-2r-20,11r-3,-13r23,-13v6,-25,23,-48,51,-71r-6,-22r12,-8r6,21v14,-8,22,-14,34,-9v15,-11,35,-7,37,12r24,-14r3,13r-28,16v-6,24,-21,47,-45,69r6,22r-13,7xm182,-139v-1,-31,-34,-7,-42,-1v-2,0,-3,-1,-3,-4v-21,7,-70,56,-69,82v0,9,7,15,20,15v40,0,87,-53,94,-92","w":166}}});
(function(){var window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context)},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;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&&elem.id!=match[3])return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret}}else return jQuery(context).find(selector)}else if(jQuery.isFunction(selector))return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context}return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num]},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)ret.selector=this.selector+"."+name+"("+selector+")";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){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this)},attr:function(name,value,type){var options=name;if(typeof name==="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]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)wrap.insertBefore(this[0]);wrap.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,function(elem){if(this.nodeType==1)this.appendChild(elem)})},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild)})},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this)})},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)})},end:function(){return this.prevObject||jQuery([])},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem)})),"find",selector)}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML}return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else return this.cloneNode(true)});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data)}}i++})}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,jQuery.grep(this,function(elem){return elem.nodeType===1})),"filter",selector)},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur}cur=cur.parentNode;closer++}})},not:function(selector){if(typeof selector==="string")if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);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!!selector&&this.is("."+selector)},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))return(elem.attributes.value||{}).specified?elem.value:elem.text;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(option).val();if(one)return value;values.push(value)}}return values}return(elem.value||"").replace(/\r/g,"")}return undefined}if(typeof value==="number")value+='';return this.each(function(){if(this.nodeType!=1)return;if(jQuery.isArray(value)&&/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.replace(/ jQuery\d+="(?:\d+|null)"/g,""):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),"slice",Array.prototype.slice.call(arguments).join(","))},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)},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)for(var i=0,l=this.length;i<l;i++)callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)jQuery.each(scripts,evalScript)}return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem}}};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(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2}if(typeof target!=="object"&&!jQuery.isFunction(target))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 exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery},isFunction:function(obj){return toString.call(obj)==="[object Function]"},isArray:function(obj){return toString.call(obj)==="[object Array]"},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument)},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)script.appendChild(document.createTextNode(data));else script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script)}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase()},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 typeof value==="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 elem&&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,extra){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;if(extra==="border")return;jQuery.each(which,function(){if(!extra)val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0})}if(elem.offsetWidth!==0)getWH();else jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val))}return jQuery.curCSS(elem,name,force)},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret}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)ret=computedStyle.getPropertyValue(name);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,fragment){context=context||document;if(typeof context.createElement==="undefined")context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)return[context.createElement(match[1])]}var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")elem+='';if(!elem)return;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=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();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.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?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(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes)}if(elem.nodeType)ret.push(elem);else ret=jQuery.merge(ret,elem)});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i])}else{if(ret[i].nodeType===1)ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i])}}return scripts}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;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)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;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined}return elem[name]}if(!jQuery.support.style&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr}if(!jQuery.support.opacity&&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||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)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.support.getAll){while((elem=second[i++])!=null)if(elem.nodeType!=8)first[pos++]=elem}else while((elem=second[i++])!=null)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.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};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),name,selector)}});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems)}return this.pushStack(ret,name,selector)}});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,state){if(typeof state!=="boolean")state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames)},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).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).children().remove();while(this.firstChild)this.removeChild(this.firstChild)}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments)}});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0}var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({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]}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)q.push(data)}return q},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")fn=queue[0];if(fn!==undefined)fn.call(elem)}});jQuery.fn.extend({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)})},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx"}if(data===undefined)return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)queue[0].call(this)})},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type)})}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)return[];if(!selector||typeof selector!=="string"){return results}var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])selector+=parts.shift();set=posProcess(selector,set)}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set)}else{prune=false}while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur=""}else{pop=parts.pop()}if(pop==null){pop=context}Expr.relative[cur](checkSet,pop,isXML(context))}}if(!checkSet){checkSet=set}if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector)}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])}}}}else{makeArray(checkSet,results)}if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1)}}}}}return results};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[]}for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break}}}}if(!set){set=context.getElementsByTagName("*")}return{set:set,expr:expr}};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[]}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true}else if(match===true){continue}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true}else{curLoop[i]=false}}else if(pass){result.push(item);anyFound=true}}}}if(found!==undefined){if(!inplace){curLoop=result}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[]}break}}}if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr}else{break}}old=expr}return curLoop};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase()}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part}}if(isPartStr){Sizzle.filter(part,checkSet,true)}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[]}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])}}return ret.length===0?null:ret}},TAG:function(match,context){return context.getElementsByTagName(match[1])}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)result.push(elem)}else if(inplace){curLoop[i]=false}}}return false},ID:function(match){return match[1].replace(/\\/g,"")},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase()},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0}match[0]=done++;return match},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]}if(match[2]==="~="){match[4]=" "+match[4]+" "}return match},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret)}return false}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true}return match},POS:function(match){match.unshift(true);return match}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"},disabled:function(elem){return elem.disabled===true},checked:function(elem){return elem.checked===true},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true},parent:function(elem){return!!elem.firstChild},empty:function(elem){return!elem.firstChild},has:function(elem,i,match){return!!Sizzle(match[3],elem).length},header:function(elem){return/h\d/i.test(elem.nodeName)},text:function(elem){return"text"===elem.type},radio:function(elem){return"radio"===elem.type},checkbox:function(elem){return"checkbox"===elem.type},file:function(elem){return"file"===elem.type},password:function(elem){return"password"===elem.type},submit:function(elem){return"submit"===elem.type},image:function(elem){return"image"===elem.type},reset:function(elem){return"reset"===elem.type},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON"},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)}},setFilters:{first:function(elem,i){return i===0},last:function(elem,i,match,array){return i===array.length-1},even:function(elem,i){return i%2===0},odd:function(elem,i){return i%2===1},lt:function(elem,i,match){return i<match[3]-0},gt:function(elem,i,match){return i>match[3]-0},nth:function(elem,i,match){return match[3]-0==i},eq:function(elem,i,match){return match[3]-0==i}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array)}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false}}return true}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false}if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false}return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count}}parent.sizcache=doneName}var diff=elem.nodeIndex-last;if(first==0){return diff==0}else{return(diff%first==0&&diff/first>=0)}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array)}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results}return array};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i])}}else{for(var i=0;array[i];i++){ret.push(array[i])}}}return ret}}var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true}return ret}}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true}return ret}}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true}return ret}}(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match}}root.removeChild(form)})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i])}}results=tmp}return results}}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)}}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return}Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)}catch(e){}}return oldSizzle(query,context,extra,seed)};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])}}})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i}elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i}if(elem.nodeName===cur){match=elem;break}elem=elem[dir]}checkSet[i]=match}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i}elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i}if(typeof cur!=="string"){if(elem===cur){match=true;break}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break}}elem=elem[dir]}checkSet[i]=match}}}var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument)};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"")}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet)}return Sizzle.filter(later,tmpSet)};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem}).length};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")"}return Sizzle.matches(expr,elems)};jQuery.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};jQuery.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};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n)}return r};return;window.Sizzle=Sizzle})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(elem.setInterval&&elem!=window)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===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 namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)delete events[type][handler.guid];else for(var handle in events[type])if(namespace.test(events[type][handle].type))delete events[type][handle];if(jQuery.event.specialAll[type])jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===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(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true}if(!elem){event.stopPropagation();if(this.global[type])jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])jQuery.event.trigger(event,data,this.handle.elem)})}if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event)}event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]()}catch(e){}}this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)jQuery.event.trigger(event,data,parent,true)}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation()}}if(event.isImmediatePropagationStopped())break}}},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 toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop]}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=proxy||function(){return fn.apply(this,arguments)};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler)},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))remove++});if(remove<1)jQuery.event.remove(this,namespaces[0],liveHandler)}}}}};jQuery.Event=function(src){if(!this.preventDefault)return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type}else this.type=src;this.timeStamp=now();this[expando]=true};function returnFalse(){return false}function returnTrue(){return true}jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)return;if(e.preventDefault)e.preventDefault();e.returnValue=false},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)return;if(e.stopPropagation)e.stopPropagation();e.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation()},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)try{parent=parent.parentNode}catch(e){parent=this}if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments)}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix)},teardown:function(){jQuery.event.remove(this,orig,withinElement)}}});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){return this.each(function(){jQuery.event.trigger(type,data,this)})},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result}},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.mouseenter(fnOver).mouseleave(fnOut)},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else jQuery.readyList.push(fn);return this},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)elems.push({elem:elem,fn:fn})}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest")});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)return(stop=false)});return stop}function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".")}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)});jQuery.readyList=null}jQuery(document).triggerHandler("ready")}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready()},false)}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready()}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left")}catch(error){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,mouseenter,mouseleave,"+"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)}});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)if(id!=1&&jQuery.cache[id].handle)jQuery.event.remove(jQuery.cache[id].handle.elem)});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return}jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"))}catch(e){}root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id]}root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee)});div.cloneNode(true).fireEvent("onclick")}jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none'})})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};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)}var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null}else if(typeof params==="object"){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);if(callback)self.each(callback,[res.responseText,status,res])}});return this},serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?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",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},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 parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=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();script.onload=script.onreadystatechange=null;head.removeChild(script)}}}head.appendChild(script);return undefined}var requestDone=false;var xhr=s.xhr();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){if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");xhr.abort();return false}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop")}}else 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)}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(isTimeout)xhr.abort();if(s.async)xhr=null}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr&&!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}catch(e){}return false},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]}catch(e){}return false},httpData:function(xhr,type,s){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(s&&s.dataFilter)data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")jQuery.globalEval(data);if(type=="json")data=window["eval"]("("+data+")")}return data},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value)};if(jQuery.isArray(a)||a.jquery)jQuery.each(a,function(){add(this.name,this.value)});else for(var j in a)if(jQuery.isArray(a[j]))jQuery.each(a[j],function(){add(j,this)});else add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+")}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type});return obj}jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback)}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName]}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")display="block";elem.remove();elemdisplay[tagName]=display}jQuery.data(this[i],"olddisplay",display)}}for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||""}return this}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback)}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"))}for(var i=0,l=this.length;i<l;i++){this[i].style.display="none"}return this}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]()}):this.animate(genFx("toggle",3),fn,fn2)},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(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&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")&&this.style){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})},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}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback)}});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;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:[],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)this.elem.style.display="block"},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||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;var self=this;function t(gotoEnd){return self.step(gotoEnd)}t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){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(timerId);timerId=undefined}},13)}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());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)jQuery(this.elem).hide();if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);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,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now)},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)fx.elem.style[fx.prop]=fx.now+fx.unit;else fx.elem[fx.prop]=fx.now}}});if(document.documentElement["getBoundingClientRect"])jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left}};else jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent}if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle}if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left}};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left}}};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||document.body;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 null;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",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px")}})})();jQuery.noConflict();
;jQuery.ui||(function($){var _remove=$.fn.remove,isFF2=$.browser.mozilla&&(parseFloat($.browser.version)<1.9);$.ui={version:"1.7.2",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||!instance.element[0].parentNode){return}for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args)}}}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(el,a){if($(el).css('overflow')=='hidden'){return false}var scroll=(a&&a=='left')?'scrollLeft':'scrollTop',has=false;if(el[scroll]>0){return true}el[scroll]=1;has=(el[scroll]>0);el[scroll]=0;return has},isOverAxis:function(x,reference,size){return(x>reference)&&(x<(reference+size))},isOver:function(y,x,top,left,height,width){return $.ui.isOverAxis(y,top,height)&&$.ui.isOverAxis(x,left,width)},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}};if(isFF2){var attr=$.attr,removeAttr=$.fn.removeAttr,ariaNS="http://www.w3.org/2005/07/aaa",ariaState=/^aria-/,ariaRole=/^wairole:/;$.attr=function(elem,name,value){var set=value!==undefined;return(name=='role'?(set?attr.call(this,elem,name,"wairole:"+value):(attr.apply(this,arguments)||"").replace(ariaRole,"")):(ariaState.test(name)?(set?elem.setAttributeNS(ariaNS,name.replace(ariaState,"aaa:"),value):attr.call(this,elem,name.replace(ariaState,"aaa:"))):attr.apply(this,arguments)))};$.fn.removeAttr=function(name){return(ariaState.test(name)?this.each(function(){this.removeAttributeNS(ariaNS,name.replace(ariaState,""))}):removeAttr.call(this,name))}}$.fn.extend({remove:function(){$("*",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})},scrollParent:function(){var scrollParent;if(($.browser.msie&&(/(static|relative)/).test(this.css('position')))||(/absolute/).test(this.css('position'))){scrollParent=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test($.curCSS(this,'position',1))&&(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1))}).eq(0)}else{scrollParent=this.parents().filter(function(){return(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1))}).eq(0)}return(/fixed/).test(this.css('position'))||!scrollParent.length?$(document):scrollParent}});$.extend($.expr[':'],{data:function(elem,i,match){return!!$.data(elem,match[3])},focusable:function(element){var nodeName=element.nodeName.toLowerCase(),tabIndex=$.attr(element,'tabindex');return(/input|select|textarea|button|object/.test(nodeName)?!element.disabled:'a'==nodeName||'area'==nodeName?element.href||!isNaN(tabIndex):!isNaN(tabIndex))&&!$(element)['area'==nodeName?'parents':'closest'](':hidden').length},tabbable:function(element){var tabIndex=$.attr(element,'tabindex');return(isNaN(tabIndex)||tabIndex>=0)&&$(element).is(':focusable')}});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];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&options.substring(0,1)=='_'){return this}if(isMethodCall&&getter(namespace,name,options,args)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined)}return this.each(function(){var instance=$.data(this,name);(!instance&&!isMethodCall&&$.data(this,name,new $[namespace][name](this,options))._init());(instance&&isMethodCall&&$.isFunction(instance[options])&&instance[options].apply(instance,args))})};$[namespace]=$[namespace]||{};$[namespace][name]=function(element,options){var self=this;this.namespace=namespace;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(event,key,value){if(event.target==element){return self._setData(key,value)}}).bind('getData.'+name,function(event,key){if(event.target==element){return self._getData(key)}}).bind('remove',function(){return self.destroy()})};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);$[namespace][name].getterSetter='option'};$.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+'-disabled'+' '+this.namespace+'-state-disabled').removeAttr('aria-disabled')},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'+' '+this.namespace+'-state-disabled').attr("aria-disabled",value)}},enable:function(){this._setData('disabled',false)},disable:function(){this._setData('disabled',true)},_trigger:function(type,event,data){var callback=this.options[type],eventName=(type==this.widgetEventPrefix?type:this.widgetEventPrefix+type);event=$.Event(event);event.type=eventName;if(event.originalEvent){for(var i=$.event.props.length,prop;i;){prop=$.event.props[--i];event[prop]=event.originalEvent[prop]}}this.element.trigger(event,data);return!($.isFunction(callback)&&callback.call(this.element[0],event,data)===false||event.isDefaultPrevented())}};$.widget.defaults={disabled:false};$.ui.mouse={_mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(event){return self._mouseDown(event)}).bind('click.'+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false;event.stopImmediatePropagation();return false}});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on')}this.started=false},_mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable))},_mouseDown:function(event){event.originalEvent=event.originalEvent||{};if(event.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(event));this._mouseDownEvent=event;var self=this,btnIsLeft=(event.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(event.target).parents().add(event.target).filter(this.options.cancel).length:false);if(!btnIsLeft||elIsCancel||!this._mouseCapture(event)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(event)&&this._mouseDelayMet(event)){this._mouseStarted=(this._mouseStart(event)!==false);if(!this._mouseStarted){event.preventDefault();return true}}this._mouseMoveDelegate=function(event){return self._mouseMove(event)};this._mouseUpDelegate=function(event){return self._mouseUp(event)};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);($.browser.safari||event.preventDefault());event.originalEvent.mouseHandled=true;return true},_mouseMove:function(event){if($.browser.msie&&!event.button){return this._mouseUp(event)}if(this._mouseStarted){this._mouseDrag(event);return event.preventDefault()}if(this._mouseDistanceMet(event)&&this._mouseDelayMet(event)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,event)!==false);(this._mouseStarted?this._mouseDrag(event):this._mouseUp(event))}return!this._mouseStarted},_mouseUp:function(event){$(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(event.target==this._mouseDownEvent.target);this._mouseStop(event)}return false},_mouseDistanceMet:function(event){return(Math.max(Math.abs(this._mouseDownEvent.pageX-event.pageX),Math.abs(this._mouseDownEvent.pageY-event.pageY))>=this.options.distance)},_mouseDelayMet:function(event){return this.mouseDelayMet},_mouseStart:function(event){},_mouseDrag:function(event){},_mouseStop:function(event){},_mouseCapture:function(event){return true}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);
function dateAdd(dtDate,lDay){var aDate=new Array();var aMonths=new Array();aDate=dtDate.split('.');if(aDate[0].indexOf('0')==0){aDate[0]=aDate[0].substring(1,aDate[0].length)}if(aDate[1].indexOf('0')==0){aDate[1]=aDate[1].substring(1,aDate[1].length)}aMonths[1]=31;if((parseInt(aDate[2])-2004)%4==0){aMonths[2]=29}else{aMonths[2]=28}aMonths[3]=31;aMonths[4]=30;aMonths[5]=31;aMonths[6]=30;aMonths[7]=31;aMonths[8]=31;aMonths[9]=30;aMonths[10]=31;aMonths[11]=30;aMonths[12]=31;aDate[0]=parseInt(aDate[0])+parseInt(lDay);while(parseInt(aDate[0])>parseInt(aMonths[parseInt(aDate[1])])){aDate[0]=parseInt(aDate[0])-parseInt(aMonths[parseInt(aDate[1])]);aDate[1]=parseInt(aDate[1])+1;if(parseInt(aDate[1])>12){aDate[1]=1;aDate[2]=parseInt(aDate[2])+1}}return aDate[0]+'.'+aDate[1]+'.'+aDate[2]}(function($){$.extend($.ui,{datepicker:{version:"1.7.2"}});var PROP_NAME='datepicker';function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=false;this._mainDivId='ui-datepicker-div';this._inlineClass='ui-datepicker-inline';this._appendClass='ui-datepicker-append';this._triggerClass='ui-datepicker-trigger';this._dialogClass='ui-datepicker-dialog';this._disableClass='ui-datepicker-disabled';this._unselectableClass='ui-datepicker-unselectable';this._currentClass='ui-datepicker-current-day';this._dayOverClass='ui-datepicker-days-cell-over';this.regional=[''];this._defaults={showOn:'focus',showAnim:'show',showOptions:{},defaultDate:null,appendText:'',buttonText:'...',buttonImage:'',buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:'-10:+10',showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:'+10',minDate:null,maxDate:null,duration:'normal',beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:'',altFieldDateAdd:4,altFormat:'dd.mm.yy',constrainInput:true,showButtonPanel:false,januar:''};$.extend(this._defaults,this.regional['']);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:'hasDatepicker',log:function(){if(this.debug)console.log.apply('',arguments)},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute('date:'+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=='div'||nodeName=='span');if(!target.id)target.id='dp'+(++this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=='input'){this._connectDatepicker(target,inst)}else if(inline){this._inlineDatepicker(target,inst)}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,'\\\\$1');return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName))return;var appendText=this._get(inst,'appendText');var isRTL=this._get(inst,'isRTL');if(appendText){inst.append=$('<span class="'+this._appendClass+'">'+appendText+'</span>');input[isRTL?'before':'after'](inst.append)}var showOn=this._get(inst,'showOn');if(showOn=='focus'||showOn=='both')input.focus(this._showDatepicker);if(showOn=='button'||showOn=='both'){var buttonText=this._get(inst,'buttonText');var buttonImage=this._get(inst,'buttonImage');inst.trigger=$(this._get(inst,'buttonImageOnly')?$('<img/>').addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==''?buttonText:$('<img/>').attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?'before':'after'](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target)$.datepicker._hideDatepicker();else $.datepicker._showDatepicker(target);return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName))return;divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id='dp'+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$('body').append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css('left',this._pos[0]+'px').css('top',this._pos[1]+'px');inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI)$.blockUI(this.dpDiv);$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=='input'){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind('focus',this._showDatepicker).unbind('keydown',this._doKeyDown).unbind('keypress',this._doKeyPress)}else if(nodeName=='div'||nodeName=='span')$target.removeClass(this.markerClassName).empty()},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=='input'){target.disabled=false;inst.trigger.filter('button').each(function(){this.disabled=false}).end().filter('img').css({opacity:'1.0',cursor:''})}else if(nodeName=='div'||nodeName=='span'){var inline=$target.children('.'+this._inlineClass);inline.children().removeClass('ui-state-disabled')}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=='input'){target.disabled=true;inst.trigger.filter('button').each(function(){this.disabled=true}).end().filter('img').css({opacity:'0.5',cursor:'default'})}else if(nodeName=='div'||nodeName=='span'){var inline=$target.children('.'+this._inlineClass);inline.children().addClass('ui-state-disabled')}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target)return true}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw'Missing instance data for this datepicker'}},_optionDatepicker:function(target,name,value){var inst=this._getInst(target);if(arguments.length==2&&typeof name=='string'){return(name=='defaults'?$.extend({},$.datepicker._defaults):(inst?(name=='all'?$.extend({},inst.settings):this._get(inst,name)):null))}var settings=name||{};if(typeof name=='string'){settings={};settings[name]=value}if(inst){if(this._curInst==inst){this._hideDatepicker(null)}var date=this._getDateDatepicker(target);extendRemove(inst.settings,settings);this._setDateDatepicker(target,date);this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline)this._setDateFromField(inst);return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is('.ui-datepicker-rtl');inst._keyEvent=true;if($.datepicker._datepickerShowing)switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,'');break;case 13:var sel=$('td.'+$.datepicker._dayOverClass+', td.'+$.datepicker._currentClass,inst.dpDiv);if(sel[0])$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0]);else $.datepicker._hideDatepicker(null,$.datepicker._get(inst,'duration'));return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,'duration'));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,'stepBigMonths'):-$.datepicker._get(inst,'stepMonths')),'M');break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,'stepBigMonths'):+$.datepicker._get(inst,'stepMonths')),'M');break;case 35:if(event.ctrlKey||event.metaKey)$.datepicker._clearDate(event.target);handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey)$.datepicker._gotoToday(event.target);handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey)$.datepicker._adjustDate(event.target,(isRTL?+1:-1),'D');handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey)$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,'stepBigMonths'):-$.datepicker._get(inst,'stepMonths')),'M');break;case 38:if(event.ctrlKey||event.metaKey)$.datepicker._adjustDate(event.target,-7,'D');handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey)$.datepicker._adjustDate(event.target,(isRTL?-1:+1),'D');handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey)$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,'stepBigMonths'):+$.datepicker._get(inst,'stepMonths')),'M');break;case 40:if(event.ctrlKey||event.metaKey)$.datepicker._adjustDate(event.target,+7,'D');handled=event.ctrlKey||event.metaKey;break;default:handled=false}else if(event.keyCode==36&&event.ctrlKey)$.datepicker._showDatepicker(this);else{handled=false}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,'constrainInput')){var chars=$.datepicker._possibleChars($.datepicker._get(inst,'dateFormat'));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<' '||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!='input')input=$('input',input.parentNode)[0];if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input)return;var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,'beforeShow');extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,'');$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog)input.value='';if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css('position')=='fixed';return!isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:'absolute',display:'block',top:'-1000px'});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?'static':(isFixed?'fixed':'absolute')),display:'none',left:offset.left-50+'px',top:offset.top+'px'});if(!inst.inline){var showAnim=$.datepicker._get(inst,'showAnim')||'show';var duration=$.datepicker._get(inst,'duration');var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7)$('iframe.ui-datepicker-cover').css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})};if($.effects&&$.effects[showAnim])inst.dpDiv.show(showAnim,$.datepicker._get(inst,'showOptions'),duration,postProcess);else inst.dpDiv[showAnim](duration,postProcess);if(duration=='')postProcess();if(inst.input[0].type!='hidden')inst.input[0].focus();$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find('iframe.ui-datepicker-cover').css({width:dims.width,height:dims.height}).end().find('button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a').bind('mouseout',function(){$(this).removeClass('ui-state-hover');if(this.className.indexOf('ui-datepicker-prev')!=-1)$(this).removeClass('ui-datepicker-prev-hover');if(this.className.indexOf('ui-datepicker-next')!=-1)$(this).removeClass('ui-datepicker-next-hover')}).bind('mouseover',function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents('.ui-datepicker-calendar').find('a').removeClass('ui-state-hover');$(this).addClass('ui-state-hover');if(this.className.indexOf('ui-datepicker-prev')!=-1)$(this).addClass('ui-datepicker-prev-hover');if(this.className.indexOf('ui-datepicker-next')!=-1)$(this).addClass('ui-datepicker-next-hover')}}).end().find('.'+this._dayOverClass+' a').trigger('mouseover').end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass('ui-datepicker-multi-'+cols).css('width',(width*cols)+'em')}else{inst.dpDiv.removeClass('ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4').width('')}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?'add':'remove')+'Class']('ui-datepicker-multi');inst.dpDiv[(this._get(inst,'isRTL')?'add':'remove')+'Class']('ui-datepicker-rtl');if(inst.input&&inst.input[0].type!='hidden'&&inst==$.datepicker._curInst)$(inst.input[0]).focus()},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,'isRTL')?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=='hidden'||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME)))return;if(inst.stayOpen)this._selectDate('#'+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,'duration'));var showAnim=this._get(inst,'showAnim');var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=''&&$.effects&&$.effects[showAnim])inst.dpDiv.hide(showAnim,$.datepicker._get(inst,'showOptions'),duration,postProcess);else inst.dpDiv[(duration==''?'hide':(showAnim=='slideDown'?'slideUp':(showAnim=='fadeIn'?'fadeOut':'hide')))](duration,postProcess);if(duration=='')this._tidyDialog(inst);var onClose=this._get(inst,'onClose');if(onClose)onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():''),inst]);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:'absolute',left:'0',top:'-100px'});if($.blockUI){$.unblockUI();$('body').append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind('.ui-datepicker-calendar')},_checkExternalClick:function(event){if(!$.datepicker._curInst)return;var $target=$(event.target);if(($target.parents('#'+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI))$.datepicker._hideDatepicker(null,'')},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=='M'?this._get(inst,'showCurrentAtPos'):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,'gotoCurrent')&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst['selected'+(period=='M'?'Month':'Year')]=inst['draw'+(period=='M'?'Month':'Year')]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie)inst.input[0].focus();inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$('a',td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,'')},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input)inst.input.val(dateStr);this._updateAlternate(inst);var onSelect=this._get(inst,'onSelect');if(onSelect)onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst]);else if(inst.input)inst.input.trigger('change');if(inst.inline)this._updateDatepicker(inst);else if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,'duration'));this._lastInput=inst.input[0];if(typeof(inst.input[0])!='object')inst.input[0].focus();this._lastInput=null}},_updateAlternate:function(inst){var altField=this._get(inst,'altField');var altFieldDateAdd=this._get(inst,'altFieldDateAdd');if(altField){var altFormat=this._get(inst,'altFormat')||this._get(inst,'dateFormat');var date=this._getDate(inst);var lDay=dateAdd(date.getDate()+'.'+date.getMonth()+'.'+date.getFullYear(),altFieldDateAdd).split('.')[0];var lMonth=dateAdd(date.getDate()+'.'+date.getMonth()+'.'+date.getFullYear(),altFieldDateAdd).split('.')[1];var lYear=dateAdd(date.getDate()+'.'+date.getMonth()+'.'+date.getFullYear(),altFieldDateAdd).split('.')[2];dateStr=this.formatDate(altFormat,new Date(lYear,lMonth,lDay),this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),'']},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null)throw'Invalid arguments';value=(typeof value=='object'?value.toString():value+'');if(value=='')return null;var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches)iFormat++;return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=='@'?14:(match=='y'?4:(match=='o'?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>='0'&&value.charAt(iValue)<='9'){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize)throw'Missing number at position '+iValue;return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++)size=Math.max(size,names[j].length);var name='';var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++)if(name==names[i])return i+1;size--}throw'Unknown name at position '+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat))throw'Unexpected literal at position '+iValue;iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal)if(format.charAt(iFormat)=="'"&&!lookAhead("'"))literal=false;else checkLiteral();else switch(format.charAt(iFormat)){case'd':day=getNumber('d');break;case'D':getName('D',dayNamesShort,dayNames);break;case'o':doy=getNumber('o');break;case'm':month=getNumber('m');break;case'M':month=getName('M',monthNamesShort,monthNames);break;case'y':year=getNumber('y');break;case'@':var date=new Date(getNumber('@'));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'"))checkLiteral();else literal=true;break;default:checkLiteral()}}if(year==-1)year=new Date().getFullYear();else if(year<100)year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100);if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim)break;month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day)throw'Invalid date';return date},ATOM:'yy-mm-dd',COOKIE:'D, dd M yy',ISO_8601:'yy-mm-dd',RFC_822:'D, d M y',RFC_850:'DD, dd-M-y',RFC_1036:'D, d M y',RFC_1123:'D, d M yy',RFC_2822:'D, d M yy',RSS:'D, d M y',TIMESTAMP:'@',W3C:'yy-mm-dd',formatDate:function(format,date,settings){if(!date)return'';var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches)iFormat++;return matches};var formatNumber=function(match,value,len){var num=''+value;if(lookAhead(match))while(num.length<len)num='0'+num;return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output='';var literal=false;if(date)for(var iFormat=0;iFormat<format.length;iFormat++){if(literal)if(format.charAt(iFormat)=="'"&&!lookAhead("'"))literal=false;else output+=format.charAt(iFormat);else switch(format.charAt(iFormat)){case'd':output+=formatNumber('d',date.getDate(),2);break;case'D':output+=formatName('D',date.getDay(),dayNamesShort,dayNames);break;case'o':var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--)doy+=this._getDaysInMonth(date.getFullYear(),m);output+=formatNumber('o',doy,3);break;case'm':output+=formatNumber('m',date.getMonth()+1,2);break;case'M':output+=formatName('M',date.getMonth(),monthNamesShort,monthNames);break;case'y':output+=(lookAhead('y')?date.getFullYear():(date.getYear()%100<10?'0':'')+date.getYear()%100);break;case'@':output+=date.getTime();break;case"'":if(lookAhead("'"))output+="'";else literal=true;break;default:output+=format.charAt(iFormat)}}return output},_possibleChars:function(format){var chars='';var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++)if(literal)if(format.charAt(iFormat)=="'"&&!lookAhead("'"))literal=false;else chars+=format.charAt(iFormat);else switch(format.charAt(iFormat)){case'd':case'm':case'y':case'@':chars+='0123456789';break;case'D':case'M':return null;case"'":if(lookAhead("'"))chars+="'";else literal=true;break;default:chars+=format.charAt(iFormat)}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,'dateFormat');var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,'defaultDate'),new Date());var minDate=this._getMinMaxDate(inst,'min',true);var maxDate=this._getMinMaxDate(inst,'max');date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||'d'){case'd':case'D':day+=parseInt(matches[1],10);break;case'w':case'W':day+=parseInt(matches[1],10)*7;break;case'm':case'M':month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case'y':case'Y':year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=='string'?offsetString(date,this._getDaysInMonth):(typeof date=='number'?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=='Invalid Date'?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date)return null;date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear)this._notifyChange(inst);this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?'':this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=='')?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,'isRTL');var showButtonPanel=this._get(inst,'showButtonPanel');var hideIfNoPrevNext=this._get(inst,'hideIfNoPrevNext');var navigationAsDateFormat=this._get(inst,'navigationAsDateFormat');var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,'showCurrentAtPos');var stepMonths=this._get(inst,'stepMonths');var stepBigMonths=this._get(inst,'stepBigMonths');var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,'min',true);var maxDate=this._getMinMaxDate(inst,'max');var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,'prevText');prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+'\', -'+stepMonths+', \'M\');"'+' title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?'e':'w')+'">'+prevText+'</span></a>':(hideIfNoPrevNext?'':'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?'e':'w')+'">'+prevText+'</span></a>'));var nextText=this._get(inst,'nextText');nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+'\', +'+stepMonths+', \'M\');"'+' title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?'w':'e')+'">'+nextText+'</span></a>':(hideIfNoPrevNext?'':'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?'w':'e')+'">'+nextText+'</span></a>'));var currentText=this._get(inst,'currentText');var gotoDate=(this._get(inst,'gotoCurrent')&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,'closeText')+'</button>':'');var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:'')+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+'\');"'+'>'+currentText+'</button>':'')+(isRTL?'':controls)+'</div>':'';var firstDay=parseInt(this._get(inst,'firstDay'),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,'dayNames');var dayNamesShort=this._get(inst,'dayNamesShort');var dayNamesMin=this._get(inst,'dayNamesMin');var monthNames=this._get(inst,'monthNames');var monthNamesShort=this._get(inst,'monthNamesShort');var beforeShowDay=this._get(inst,'beforeShowDay');var showOtherMonths=this._get(inst,'showOtherMonths');var calculateWeek=this._get(inst,'calculateWeek')||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html='';for(var row=0;row<numMonths[0];row++){var group='';for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=' ui-corner-all';var calender='';if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+='first';cornerClass=' ui-corner-'+(isRTL?'right':'left');break;case numMonths[1]-1:calender+='last';cornerClass=' ui-corner-'+(isRTL?'left':'right');break;default:calender+='middle';cornerClass='';break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):'')+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):'')+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead>'+'<tr>';var thead='';for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+='<th'+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':'')+'>'+'<span title="'+dayNames[day]+'">'+dayNamesMin[day]+'</span></th>'}calender+=thead+'</tr></thead><tbody>';var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth)inst.selectedDay=Math.min(inst.selectedDay,daysInMonth);var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7)); var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+='<tr>';var tbody='';for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,'']);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?' ui-datepicker-week-end':'')+(otherMonth?' ui-datepicker-other-month':'')+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?' '+this._dayOverClass:'')+(unselectable?' '+this._unselectableClass+' ui-state-disabled':'')+(otherMonth&&!showOtherMonths?'':' '+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?' '+this._currentClass:'')+(printDate.getTime()==today.getTime()?' ui-datepicker-today':''))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':'')+(unselectable?'':' onclick="DP_jQuery.datepicker._selectDay(\'#'+inst.id+'\','+drawMonth+','+drawYear+', this);return false;"')+'>'+(otherMonth?(showOtherMonths?printDate.getDate():'&#xa0;'):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+'</span>':'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?' ui-state-highlight':'')+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?' ui-state-active':'')+'" href="#">'+printDate.getDate()+'</a>'))+'</td>';printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+'</tr>'}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+='</tbody></table>'+(isMultiMonth?'</div>'+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':''):'');group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':'');inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,'changeMonth');var changeYear=this._get(inst,'changeYear');var showMonthAfterYear=this._get(inst,'showMonthAfterYear');var html='<div class="ui-datepicker-title">';var monthHtml='';if(secondary||!changeMonth)monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+'</span> ';else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" '+'onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+'\', this, \'M\');" '+'onclick="DP_jQuery.datepicker._clickMonthYear(\'#'+inst.id+'\');"'+'>';for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth()))monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':'')+'>'+monthNamesShort[month]+'</option>'}monthHtml+='</select>'}if(!showMonthAfterYear)html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?'&#xa0;':'');if(secondary||!changeYear)html+='<span class="ui-datepicker-year">'+drawYear+'</span>';else{var years=this._get(inst,'yearRange').split(':');var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else if(years[0].charAt(0)=='+'||years[0].charAt(0)=='-'){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" '+'onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+'\', this, \'Y\');" '+'onclick="DP_jQuery.datepicker._clickMonthYear(\'#'+inst.id+'\');"'+'>';for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':'')+'>'+year+'</option>'}html+='</select>'}if(showMonthAfterYear)html+=(secondary||changeMonth||changeYear?'&#xa0;':'')+monthHtml;html+='</div>';return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=='Y'?offset:0);var month=inst.drawMonth+(period=='M'?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=='D'?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,'min',true);var maxDate=this._getMinMaxDate(inst,'max');date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=='M'||period=='Y')this._notifyChange(inst)},_notifyChange:function(inst){var onChange=this._get(inst,'onChangeMonthYear');if(onChange)onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,'numberOfMonths');return(numMonths==null?[1,1]:(typeof numMonths=='number'?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+'Date'),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0)date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()));return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,'min');var maxDate=this._getMinMaxDate(inst,'max');return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,'shortYearCutoff');shortYearCutoff=(typeof shortYearCutoff!='string'?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,'dayNamesShort'),dayNames:this._get(inst,'dayNames'),monthNamesShort:this._get(inst,'monthNamesShort'),monthNames:this._get(inst,'monthNames')}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=='object'?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,'dateFormat'),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props)if(props[name]==null||props[name]==undefined)target[name]=props[name];return target};function isArray(a){return(a&&(($.browser.safari&&typeof a=='object'&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))};$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find('body').append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=='string'&&(options=='isDisabled'||options=='getDate'))return $.datepicker['_'+options+'Datepicker'].apply($.datepicker,[this[0]].concat(otherArgs));if(options=='option'&&arguments.length==2&&typeof arguments[1]=='string')return $.datepicker['_'+options+'Datepicker'].apply($.datepicker,[this[0]].concat(otherArgs));return this.each(function(){typeof options=='string'?$.datepicker['_'+options+'Datepicker'].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.2";window.DP_jQuery=$})(jQuery);
/*40.047*/