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){if(sParameter!=''&&sParameter!=undefined){sParameter=' '+sParameter}else{sParameter=''}if(sImg!=''&&sImg!=undefined){document.write('<a'+sParameter+' href="mailto:'+sWem+'@'+sWer+'.'+sWo+'"><img src="'+sImg+'" alt="" /></a>')}else if(sText!=''&&sText!=undefined){document.write('<a'+sParameter+' href="mailto:'+sWem+'@'+sWer+'.'+sWo+'">'+sText+'</a>')}else{document.write('<a'+sParameter+' href="mailto:'+sWem+'@'+sWer+'.'+sWo+'">'+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){if(IsFlashActive()){src=src.slice(0,src.lastIndexOf('.swf'));AC_FL_DomID=id;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,'quality','high','flashvars',flashvars,'wmode',wmode,'bgcolor',bgcolor,'pluginspage','http://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,'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);
function Extended(Objectname){this.LockedID=null;this.bAutoScroll=false;this.Objectname=Objectname;this.OpacityMin=0.01;this.OpacityMax=1.0;this.Scroll='none';this.Scrollx=10;this.Scrolly=10;Extended.prototype.Lock=function(id){this.LockedID=id};Extended.prototype.UnLock=function(){this.LockedID=null};Extended.prototype.InitAutoscroll=function(){this.bAutoScroll=true;window.setTimeout(this.Objectname+'.Autoscroll()',6000)};Extended.prototype.StopAutoscroll=function(){this.bAutoScroll=false};Extended.prototype.Autoscroll=function(){if(this.bAutoScroll){this.ScrollGallerieNext(this.SetScrollGallerie_idPrefix);window.setTimeout(this.Objectname+'.Autoscroll()',6000)}};Extended.prototype.ScrolltoElement=function(id,duration,noLock){if(noLock==null){noLock=false}if(duration==null){duration=1}if((this.LockedID==null)||(noLock)){var left=0;var top=0;var parent=document.getElementById(id).parentNode;var target=document.getElementById(id);left-=parent.offsetLeft+target.offsetLeft;top-=parent.offsetTop+target.offsetTop;new Effect.Move(parent,{x:left,y:top,mode:'relative',duration:duration});if(!noLock){this.Lock(id);window.setTimeout(this.Objectname+'.UnLock()',duration*1000)}}};this.SetScrollGallerie_idPrefix='';this.SetScrollGallerie_nCount=0;this.SetScrollGallerie_nDisplay=0;Extended.prototype.SetScrollGallerie=function(idPrefix,nCount,duration){if(duration==null){duration=1}this.SetScrollGallerie_idPrefix=idPrefix;this.SetScrollGallerie_nCount=nCount;this.SetScrollGallerie_duration=duration;this.SetScrollGallerie_nDisplay=1};Extended.prototype.ScrollGalleriePrevious=function(idPrefix){if((this.SetScrollGallerie_idPrefix==idPrefix)&&(this.SetScrollGallerie_nCount>1)&&(this.SetScrollGallerie_nDisplay!=0)&&(this.LockedID==null)){this.SetScrollGallerie_nDisplay--;if(this.SetScrollGallerie_nDisplay<1){this.SetScrollGallerie_nDisplay=this.SetScrollGallerie_nCount}this.ScrolltoElement(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay,this.SetScrollGallerie_duration,true);this.Lock(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay);window.setTimeout(this.Objectname+'.UnLock()',this.SetScrollGallerie_duration*1000)}};Extended.prototype.ScrollGallerieNext=function(idPrefix){if((this.SetScrollGallerie_idPrefix==idPrefix)&&(this.SetScrollGallerie_nCount>1)&&(this.SetScrollGallerie_nDisplay!=0)&&(this.LockedID==null)){this.SetScrollGallerie_nDisplay++;if(this.SetScrollGallerie_nDisplay>this.SetScrollGallerie_nCount){this.SetScrollGallerie_nDisplay=1}this.ScrolltoElement(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay,this.SetScrollGallerie_duration,true);this.Lock(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay);window.setTimeout(this.Objectname+'.UnLock()',this.SetScrollGallerie_duration*1000)}};Extended.prototype.FadeIn=function(id,duration){if(duration==null){duration=1.5}Effect.Appear(id,{duration:duration,from:this.OpacityMin,to:this.OpacityMax})};Extended.prototype.FadeOut=function(id,duration){if(duration==null){duration=1.5}Effect.Fade(id,{duration:duration,form:this.OpacityMax,to:this.OpacityMin})};Extended.prototype.StartScrollUp=function(id,duration){if(duration==null){duration=0.1}this.Scroll='up';this.ScrollUp(id,duration)};Extended.prototype.StartScrollDown=function(id,duration){if(duration==null){duration=0.1}this.Scroll='down';this.ScrollDown(id,duration)};Extended.prototype.ScrollUp=function(id,duration){if(duration==null){duration=0.1}if(parseInt($(id).getStyle('top'))<0){new Effect.Move(id,{x:0,y:this.Scrollx,mode:'relative',duration:duration})}if(this.Scroll=='up'){window.setTimeout(this.Objectname+'.ScrollUp("'+id+'",'+duration+')',duration*1000)}};Extended.prototype.ScrollDown=function(id,duration){if(duration==null){duration=0.1}var nPos;nPos=0;if(Element.Methods.getHeight(id)!=null){nPos+=parseInt(Element.Methods.getHeight(id))}if($(id).getStyle('top')!=null){nPos+=parseInt($(id).getStyle('top'))}if($(id).parentNode.clientHeight!=null){nPos-=parseInt($(id).parentNode.clientHeight)}if(nPos>0){new Effect.Move(id,{x:0,y:-this.Scrollx,mode:'relative',duration:duration})}if(this.Scroll=='down'){window.setTimeout(this.Objectname+'.ScrollDown("'+id+'",'+duration+')',duration*1000)}};Extended.prototype.ScrollStop=function(){this.Scroll='none'}}
function scrollGallery(Objectname){this.LockedID=null;this.bAutoScroll=false;this.Objectname=Objectname;this.OpacityMin=0.01;this.OpacityMax=1.0;this.Scroll='none';this.Scrollx=10;this.Scrolly=10;this.aParams=null;this.sUrl="";this.sLockedBackID='';this.sLockedForwardID='';this.sFrameClass='';this.lPreloaded=2;var oGallery=null;var oGalleryDiv=null;var self=this;scrollGallery.prototype.convertNullTo0px=function(wert){if(wert==null){return'0px'}else{return wert}};scrollGallery.prototype.Lock=function(id){this.LockedID=id;if(this.sFrameClass!=''){var iframeliste=document.getElementsByClassName(this.sFrameClass);for(var i=0;i<iframeliste.length;i++){iframeliste[i].style.display='none';iframeliste[i].style.height='0px'}}};scrollGallery.prototype.UnLock=function(){this.LockedID=null;if(this.sFrameClass!=''){var iframeliste=document.getElementsByClassName(this.sFrameClass);for(var i=0;i<iframeliste.length;i++){iframeliste[i].style.display='block';iframeliste[i].style.height='auto'}}};scrollGallery.prototype.InitAutoscroll=function(){this.bAutoScroll=true;window.setTimeout(this.Objectname+'.Autoscroll()',6000)};scrollGallery.prototype.StopAutoscroll=function(){this.bAutoScroll=false};scrollGallery.prototype.Autoscroll=function(){if(this.bAutoScroll){this.ScrollGallerieNext(this.SetScrollGallerie_idPrefix);window.setTimeout(this.Objectname+'.Autoscroll()',6000)}};scrollGallery.prototype.ScrolltoElement=function(id,duration,noLock){if(noLock==null){noLock=false}if(duration==null){duration=1}if((this.LockedID==null)||(noLock)){var left=0;var top=0;var parent=document.getElementById(id).parentNode;var target=document.getElementById(id);left-=parent.offsetLeft+target.offsetLeft;top-=parent.offsetTop+target.offsetTop;new Effect.Move(parent,{x:left,y:top,mode:'relative',duration:duration});if(!noLock){this.Lock(id);window.setTimeout(this.Objectname+'.UnLock()',duration*1000)}}};this.SetScrollGallerie_idPrefix='';this.SetScrollGallerie_nCount=0;this.SetScrollGallerie_nDisplay=0;scrollGallery.prototype.SetScrollGallerie=function(idPrefix,nCount,duration){if(duration==null){duration=1}this.SetScrollGallerie_idPrefix=idPrefix;this.SetScrollGallerie_nCount=nCount;this.SetScrollGallerie_duration=duration;this.SetScrollGallerie_nDisplay=1};scrollGallery.prototype.ScrollGalleriePrevious=function(idPrefix){if((this.SetScrollGallerie_idPrefix==idPrefix)&&(this.SetScrollGallerie_nCount>1)&&(this.SetScrollGallerie_nDisplay>1)&&(this.LockedID==null)){this.SetScrollGallerie_nDisplay--;if(this.SetScrollGallerie_nDisplay<1){this.SetScrollGallerie_nDisplay=this.SetScrollGallerie_nCount}this.ScrollPrevious();if(this.sLockedBackID!=''&&this.SetScrollGallerie_nDisplay==1){Element.hide(this.sLockedBackID)}}if(this.sLockedForwardID!=''){Element.show(this.sLockedForwardID)}};scrollGallery.prototype.ScrollPrevious=function(){this.ScrolltoElement(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay,this.SetScrollGallerie_duration,true);this.Lock(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay);window.setTimeout(this.Objectname+'.UnLock()',this.SetScrollGallerie_duration*1000)};scrollGallery.prototype.ScrollGallerieNext=function(idPrefix){if((this.SetScrollGallerie_idPrefix==idPrefix)&&(this.SetScrollGallerie_nCount>1)&&(this.LockedID==null)){this.SetScrollGallerie_nDisplay++;if(((this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))>this.SetScrollGallerie_nCount)&&document.getElementById(this.SetScrollGallerie_idPrefix+(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2)))==undefined){oGallery=document.getElementById(this.SetScrollGallerie_idPrefix);oGalleryDiv=document.createElement("div");oGalleryDiv.setAttribute('id',this.SetScrollGallerie_idPrefix+(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2)));if(document.getElementById(this.SetScrollGallerie_idPrefix+'1').className!=''){oGalleryDiv.setAttribute('class',document.getElementById(this.SetScrollGallerie_idPrefix+'1').className);oGalleryDiv.setAttribute('className',document.getElementById(this.SetScrollGallerie_idPrefix+'1').className)}oGallery.appendChild(oGalleryDiv);document.getElementById(this.SetScrollGallerie_idPrefix).style.width=parseInt(Element.getWidth(document.getElementById(this.SetScrollGallerie_idPrefix)),10)+parseInt(Element.getWidth(document.getElementById(this.SetScrollGallerie_idPrefix+'1')),10)+parseInt(this.convertNullTo0px(Element.getStyle(document.getElementById(this.SetScrollGallerie_idPrefix+1),'marginLeft')).replace('px',''),10)+parseInt(this.convertNullTo0px(Element.getStyle(document.getElementById(this.SetScrollGallerie_idPrefix+1),'marginRight')).replace('px',''),10)+'px';document.getElementById(this.SetScrollGallerie_idPrefix+(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))).innerHTML=document.getElementById(this.SetScrollGallerie_idPrefix+((this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))-this.SetScrollGallerie_nCount)).innerHTML}if((this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))<this.SetScrollGallerie_nCount){if(!this.aParams[(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))][1]){this.aParams[(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))][1]=true;if((this.LockedID==null)||(noLock)){this.Lock(this.SetScrollGallerie_idPrefix+(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2)));new Ajax.Updater(this.SetScrollGallerie_idPrefix,this.sUrl+this.aParams[(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))][0],{evalScripts:false,parameters:{lPageNumber:(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))+1},onComplete:function(){self.IfIsLoaded(self.SetScrollGallerie_idPrefix+(self.SetScrollGallerie_nDisplay+(self.lPreloaded-2)))},insertion:Insertion.Bottom})}}else{this.ScrollNext()}}else{this.ScrollNext()}if(this.sLockedForwardID!=''){if((this.SetScrollGallerie_nDisplay+(this.lPreloaded-2))==(this.SetScrollGallerie_nCount)){Element.hide(this.sLockedForwardID)}}if(this.sLockedBackID!=''){Element.show(this.sLockedBackID)}}};scrollGallery.prototype.ScrollNext=function(){this.UnLock();this.ScrolltoElement(this.SetScrollGallerie_idPrefix+this.SetScrollGallerie_nDisplay,this.SetScrollGallerie_duration,true);this.Lock(this.SetScrollGallerie_idPrefix+(this.SetScrollGallerie_nDisplay+(this.lPreloaded-2)));window.setTimeout(this.Objectname+'.UnLock()',this.SetScrollGallerie_duration*1000)};var globalID=null;scrollGallery.prototype.IfIsLoaded=function(id){globalID=id;if(document.getElementById(id)!=undefined){this.IfIsImgLoaded()}else{window.setTimeout(this.Objectname+'.IfIsLoaded()',250)}};scrollGallery.prototype.IfIsImgLoaded=function(){var id=globalID;var bLoaded=true;for(var i=0;i<document.getElementById(id).getElementsByTagName('img').length;i++){if(!document.getElementById(id).getElementsByTagName('img')[i].complete){bLoaded=false}}if(bLoaded){this.ScrollNext()}else{window.setTimeout(this.Objectname+'.IfIsImgLoaded()',250)}};scrollGallery.prototype.FadeIn=function(id,duration){if(duration==null){duration=1.5}Effect.Appear(id,{duration:duration,from:this.OpacityMin,to:this.OpacityMax})};scrollGallery.prototype.FadeOut=function(id,duration){if(duration==null){duration=1.5}Effect.Fade(id,{duration:duration,form:this.OpacityMax,to:this.OpacityMin})};scrollGallery.prototype.StartScrollUp=function(id,duration){if(duration==null){duration=0.1}this.Scroll='up';this.ScrollUp(id,duration)};scrollGallery.prototype.StartScrollDown=function(id,duration){if(duration==null){duration=0.1}this.Scroll='down';this.ScrollDown(id,duration)};scrollGallery.prototype.ScrollUp=function(id,duration){if(duration==null){duration=0.1}if(parseInt($(id).getStyle('top'))<0){new Effect.Move(id,{x:0,y:this.Scrollx,mode:'relative',duration:duration})}if(this.Scroll=='up'){window.setTimeout(this.Objectname+'.ScrollUp("'+id+'",'+duration+')',duration*1000)}};scrollGallery.prototype.ScrollDown=function(id,duration){if(duration==null){duration=0.1}var nPos;nPos=0;if(Element.Methods.getHeight(id)!=null){nPos+=parseInt(Element.Methods.getHeight(id))}if($(id).getStyle('top')!=null){nPos+=parseInt($(id).getStyle('top'))}if($(id).parentNode.clientHeight!=null){nPos-=parseInt($(id).parentNode.clientHeight)}if(nPos>0){new Effect.Move(id,{x:0,y:-this.Scrollx,mode:'relative',duration:duration})}if(this.Scroll=='down'){window.setTimeout(this.Objectname+'.ScrollDown("'+id+'",'+duration+')',duration*1000)}};scrollGallery.prototype.ScrollStop=function(){this.Scroll='none'}}
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){if(IsFlashActive()){src=src.slice(0,src.lastIndexOf('.swf'));AC_FL_DomID=id;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,'quality','high','flashvars',flashvars,'wmode',wmode,'bgcolor',bgcolor,'pluginspage','http://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,'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}
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":166,"face":{"font-family":"helvetica-neue-condensed","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 5 6 0 0 0 0 0 0","ascent":"284","descent":"-76","x-height":"5","bbox":"-13 -336 278 76.1111","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"30","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":86,"k":{"Y":13,"W":13,"V":13,"T":13,"A":13}},"\u00a0":{"w":86},"!":{"d":"36,-67r-6,-190r33,0r-6,190r-21,0xm30,0r0,-35r33,0r0,35r-33,0","w":92},"\"":{"d":"31,-166r0,-91r24,0r0,91r-24,0xm91,-166r0,-91r24,0r0,91r-24,0","w":146},"#":{"d":"28,0r10,-74r-30,0r0,-24r33,0r7,-55r-32,0r0,-24r35,0r9,-73r24,0r-9,73r38,0r9,-73r23,0r-9,73r29,0r0,24r-32,0r-7,55r30,0r0,24r-33,0r-9,74r-24,0r10,-74r-38,0r-10,74r-24,0xm71,-153r-7,55r39,0r6,-55r-38,0","w":172},"$":{"d":"93,-110r0,89v22,-2,39,-18,39,-43v0,-27,-17,-38,-39,-46xm78,-146r0,-83v-22,3,-34,17,-34,40v0,24,15,35,34,43xm78,-255r0,-21r15,0r0,21v44,2,64,26,65,70r-32,0v0,-24,-8,-41,-33,-44r0,88v33,11,72,20,72,72v0,54,-37,72,-72,74r0,34r-15,0r0,-34v-54,-2,-70,-32,-70,-83r31,0v0,26,2,53,39,57r0,-94v-32,-10,-67,-22,-67,-71v0,-23,9,-65,67,-69","w":172},"%":{"d":"64,-136v20,0,21,-20,21,-50v0,-30,-1,-49,-21,-49v-20,0,-22,19,-22,49v0,30,2,50,22,50xm67,5r112,-260r25,0r-112,260r-25,0xm210,-14v20,0,21,-20,21,-50v0,-30,-1,-50,-21,-50v-20,0,-22,20,-22,50v0,30,2,50,22,50xm64,-117v-43,0,-47,-33,-47,-69v0,-36,4,-69,47,-69v43,0,47,33,47,69v0,36,-4,69,-47,69xm210,5v-43,0,-48,-33,-48,-69v0,-36,5,-69,48,-69v43,0,47,33,47,69v0,36,-4,69,-47,69","w":273},"&":{"d":"80,-172v4,8,8,10,13,2v24,-13,36,-63,-3,-63v-35,0,-29,42,-10,61xm134,-46r-57,-81v-21,12,-36,31,-36,58v0,56,70,60,93,23xm99,-144r51,73v5,-13,8,-27,10,-50r28,0v0,19,-11,62,-21,75r33,46r-34,0r-17,-24v-20,19,-36,29,-64,29v-63,0,-76,-48,-76,-71v-1,-37,28,-64,54,-81v-10,-18,-27,-36,-27,-60v0,-30,24,-50,53,-50v32,0,55,14,55,49v0,30,-26,47,-45,64","w":200},"(":{"d":"68,-257r17,0v-54,98,-51,225,0,323r-17,0v-70,-93,-70,-229,0,-323","w":86},")":{"d":"19,66r-18,0v56,-98,52,-225,0,-323r18,0v69,93,69,229,0,323","w":86},"*":{"d":"53,-214r0,-43r21,0r0,43r39,-15r8,21r-41,12r27,34r-18,13r-26,-36r-26,36r-18,-13r28,-34r-41,-12r8,-21","w":126},"+":{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},",":{"d":"27,0r0,-38r33,0v-1,42,8,79,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86,"k":{" ":13}},"-":{"d":"19,-88r0,-28r88,0r0,28r-88,0","w":126},"\u00ad":{"d":"19,-88r0,-28r88,0r0,28r-88,0","w":126},".":{"d":"27,0r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},"\/":{"d":"-4,5r84,-267r24,0r-84,267r-24,0","w":100},"0":{"d":"86,5v-69,0,-72,-69,-72,-129v0,-56,3,-131,72,-131v69,0,73,68,73,131v0,54,-4,129,-73,129xm45,-124v0,54,2,105,41,105v39,0,41,-51,41,-105v0,-56,-2,-107,-41,-107v-39,0,-41,51,-41,107","w":172},"1":{"d":"24,-192r0,-21v32,-2,62,-6,63,-42r22,0r0,255r-31,0r0,-192r-54,0","w":172},"2":{"d":"158,-28r0,28r-143,0v0,-61,41,-93,76,-122v21,-18,34,-33,34,-61v0,-22,-10,-46,-37,-46v-39,0,-40,41,-40,55r-32,0v0,-48,20,-81,72,-81v59,0,69,46,69,68v3,80,-91,94,-109,159r110,0","w":172},"3":{"d":"65,-120r0,-24v36,4,56,-13,55,-45v0,-23,-10,-42,-34,-42v-33,0,-36,31,-36,50r-32,0v0,-44,21,-74,68,-74v53,0,65,38,65,66v1,27,-14,48,-39,56v29,6,47,24,47,59v0,46,-24,79,-73,79v-69,0,-72,-58,-72,-74r32,0v0,23,11,50,40,50v19,0,41,-9,41,-52v1,-36,-21,-53,-62,-49","w":172},"4":{"d":"103,-205v-24,37,-43,79,-65,118r65,0r0,-118xm11,-90r92,-165r30,0r0,168r29,0r0,25r-29,0r0,62r-30,0r0,-62r-92,0r0,-28","w":172},"5":{"d":"21,-119r14,-131r114,0r0,28r-90,0v-2,24,-9,52,-9,75v43,-42,108,-11,108,65v0,48,-21,87,-74,87v-60,0,-70,-50,-70,-71r32,0v0,13,5,47,39,47v36,0,42,-40,42,-66v0,-28,-11,-58,-43,-58v-22,0,-36,19,-36,25","w":172},"6":{"d":"154,-194r-31,0v0,-21,-12,-37,-34,-37v-49,0,-47,66,-44,97v5,-9,21,-29,49,-29v44,0,66,33,66,81v0,49,-24,87,-72,87v-71,0,-75,-68,-75,-121v0,-58,3,-139,77,-139v59,0,64,49,64,61xm48,-78v0,27,8,59,40,59v32,0,41,-32,41,-59v0,-27,-7,-59,-41,-59v-34,0,-40,32,-40,59","w":172},"7":{"d":"159,-224v-36,48,-78,136,-85,224r-35,0v12,-86,46,-163,91,-222r-116,0r0,-28r145,0r0,26","w":172},"8":{"d":"86,5v-93,0,-95,-121,-28,-141v-63,-19,-41,-127,28,-119v69,-8,92,100,28,119v67,21,64,141,-28,141xm86,-231v-23,0,-33,18,-33,42v0,24,10,41,33,41v23,0,34,-17,34,-41v0,-24,-11,-42,-34,-42xm45,-71v0,30,11,52,41,52v30,0,42,-22,42,-52v0,-30,-12,-53,-42,-53v-30,0,-41,23,-41,53","w":172},"9":{"d":"18,-56r32,0v0,21,12,37,34,37v49,0,47,-66,44,-97v-5,9,-21,29,-49,29v-44,0,-66,-33,-66,-81v0,-49,24,-87,72,-87v71,0,75,68,75,121v0,58,-3,139,-77,139v-59,0,-65,-49,-65,-61xm125,-172v0,-27,-8,-59,-40,-59v-32,0,-41,32,-41,59v0,27,7,59,41,59v34,0,40,-32,40,-59","w":172},":":{"d":"27,-144r0,-38r33,0r0,38r-33,0xm27,0r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},";":{"d":"27,0r0,-38r33,0v-1,42,8,79,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0xm27,-144r0,-38r33,0r0,38r-33,0","w":86},"<":{"d":"17,-80r0,-22r182,-83r0,24r-154,70r154,70r0,24","w":216},"=":{"d":"17,-116r0,-24r182,0r0,24r-182,0xm17,-42r0,-24r182,0r0,24r-182,0","w":216},">":{"d":"17,3r0,-24r154,-70r-154,-70r0,-24r182,83r0,22","w":216},"?":{"d":"62,-67v-9,-63,55,-72,54,-127v0,-21,-12,-40,-35,-40v-35,0,-38,35,-38,53r-30,0v0,-42,21,-79,67,-79v43,0,67,29,67,68v0,55,-62,69,-57,125r-28,0xm59,0r0,-35r34,0r0,35r-34,0","w":159},"@":{"d":"86,-105v0,20,15,34,34,34v33,0,56,-49,56,-76v0,-16,-11,-36,-29,-36v-35,0,-61,45,-61,78xm188,-175v5,-6,5,-16,9,-23r20,0r-34,118v0,5,4,9,11,9v33,0,60,-38,60,-78v0,-54,-48,-91,-110,-91v-62,0,-110,48,-110,111v0,64,48,112,110,112v44,0,79,-14,98,-40r22,0v-23,40,-65,62,-120,62v-74,0,-134,-60,-134,-134v0,-74,60,-133,134,-133v78,0,134,46,134,111v0,62,-51,102,-93,102v-14,0,-24,-7,-26,-22v-26,37,-96,24,-96,-32v0,-50,33,-102,84,-102v18,0,33,8,41,30","w":288},"A":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0","w":180,"k":{"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"B":{"d":"53,-122r0,96r43,0v33,0,45,-22,45,-47v-1,-50,-40,-51,-88,-49xm21,0r0,-257v72,2,143,-17,145,66v1,24,-17,45,-38,54v32,8,46,32,46,64v0,79,-75,75,-153,73xm53,-231r0,85v42,-2,72,13,79,-43v5,-41,-36,-45,-79,-42","w":186},"C":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v53,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67","w":186},"D":{"d":"56,-231r0,205r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0xm24,0r0,-257r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0","w":200,"k":{"Y":7}},"E":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0"},"F":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,120r-32,0","w":159,"k":{"r":7,"o":7,"i":6,"e":9,"a":7,"A":19,".":40,",":40}},"G":{"d":"176,-186r-33,0v-1,-27,-12,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v74,0,76,63,76,76","w":193},"H":{"d":"172,-257r0,257r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0","w":193},"I":{"d":"21,0r0,-257r32,0r0,257r-32,0","w":73},"J":{"d":"132,-257r0,183v0,46,-11,79,-64,79v-51,0,-63,-34,-60,-80r30,0v-2,29,2,55,30,54v29,0,33,-19,33,-54r0,-182r31,0","w":153},"K":{"d":"21,0r0,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0","w":180,"k":{"y":4,"u":7,"o":7}},"L":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0","w":159,"k":{"y":13,"Y":33,"W":27,"V":27,"T":34}},"M":{"d":"22,0r0,-257r53,0r52,204r52,-204r53,0r0,257r-32,0r-1,-225r-56,225r-32,0r-58,-225r0,225r-31,0","w":253},"N":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0","w":200},"O":{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107","w":200,"k":{"Y":9,"X":9}},"P":{"d":"21,0r0,-257r65,0v22,0,80,0,80,74v0,63,-47,80,-113,74r0,109r-32,0xm53,-231r0,96v46,2,78,1,80,-50v2,-42,-35,-50,-80,-46","w":173,"k":{"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"170,15r-26,-23v-11,8,-26,13,-44,13v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v71,0,83,68,83,133v0,37,-4,76,-21,102r26,24xm123,-27r-24,-22r17,-20r24,22v15,-51,26,-189,-40,-189v-44,0,-50,48,-50,107v0,69,15,127,73,102","w":200},"R":{"d":"21,0r0,-257v71,-1,149,-10,149,64v0,29,-12,57,-40,66v57,-1,24,105,53,127r-39,0v-10,-15,-7,-52,-10,-77v-6,-53,-39,-33,-81,-37r0,114r-32,0xm53,-231r0,91v45,-3,78,14,84,-50v3,-39,-41,-44,-84,-41","w":186,"k":{"Y":6,"W":-7,"U":-7,"T":6}},"S":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,25,72,72","w":180},"T":{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0","k":{"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"18,-76r0,-181r32,0r0,181v0,38,12,55,43,55v34,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-51,0,-75,-28,-75,-81","w":186},"V":{"d":"62,0r-63,-257r33,0r52,221r50,-221r33,0r-65,257r-40,0","k":{"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"54,0r-51,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"69,-131r-63,-126r35,0r47,96r47,-96r33,0r-64,126r68,131r-35,0r-51,-103r-52,103r-33,0","w":173},"Y":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","k":{"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0"},"[":{"d":"28,66r0,-323r65,0r0,24r-37,0r0,275r37,0r0,24r-65,0","w":93},"\\":{"d":"80,5r-84,-267r24,0r84,267r-24,0","w":100},"]":{"d":"65,-257r0,323r-64,0r0,-24r36,0r0,-275r-36,0r0,-24r64,0","w":93},"^":{"d":"17,-94r82,-156r18,0r82,156r-24,0r-67,-130r-67,130r-24,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"a":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86","w":159,"k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"b":{"d":"48,-96v0,40,7,75,39,75v28,0,35,-31,35,-75v0,-46,-7,-76,-35,-76v-32,0,-39,39,-39,76xm20,0r0,-257r30,0r1,86v7,-17,25,-27,44,-27v52,0,59,62,59,102v0,54,-18,101,-63,101v-21,0,-38,-15,-42,-29r0,24r-29,0"},"c":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,31,-16,72,-64,72v-47,0,-66,-33,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64","w":153,"k":{"y":7,"l":7}},"d":{"d":"44,-96v0,46,8,75,36,75v33,0,38,-31,38,-75v0,-37,-6,-76,-38,-76v-28,0,-36,30,-36,76xm147,-257r0,257r-29,0v-1,-7,2,-18,-1,-24v-4,14,-20,29,-41,29v-46,0,-63,-40,-63,-101v0,-40,6,-102,60,-102v18,-1,35,12,44,27r0,-86r30,0","k":{"y":-4}},"e":{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105","w":159},"f":{"d":"29,0r0,-169r-28,0r0,-24r28,0v-5,-49,12,-74,64,-67r0,26v-18,-1,-34,-1,-34,18r0,23r33,0r0,24r-33,0r0,169r-30,0","w":93},"g":{"d":"80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-6,-76,-38,-76xm147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-6,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0","k":{"y":-4}},"h":{"d":"20,0r0,-257r30,0r1,86v8,-16,29,-27,46,-27v50,0,50,38,50,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0"},"i":{"d":"22,0r0,-193r30,0r0,193r-30,0xm22,-222r0,-35r30,0r0,35r-30,0","w":73},"j":{"d":"52,-193r0,212v2,37,-22,51,-60,46r0,-26v23,5,30,-7,30,-31r0,-201r30,0xm52,-257r0,35r-30,0r0,-35r30,0","w":73},"k":{"d":"95,-120r69,120r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0","w":159},"l":{"d":"22,0r0,-257r30,0r0,257r-30,0","w":73,"k":{"w":-4}},"m":{"d":"23,0r0,-193r28,0v1,7,-2,18,1,23v15,-35,80,-41,89,3v9,-17,25,-31,45,-31v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0","w":259},"n":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0","k":{"y":-4}},"o":{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77","w":159,"k":{"y":-4,"w":-4}},"p":{"d":"48,-96v0,37,7,75,39,75v28,0,35,-29,35,-79v0,-42,-7,-72,-35,-72v-33,0,-39,32,-39,76xm20,63r0,-256r29,0r0,24v4,-14,21,-29,42,-29v46,0,63,41,63,98v0,44,-13,105,-63,105v-18,1,-32,-12,-41,-27r0,85r-30,0"},"q":{"d":"118,-96v0,-44,-5,-76,-38,-76v-28,0,-36,30,-36,72v0,50,8,79,36,79v32,0,38,-38,38,-75xm117,63r-1,-85v-7,17,-23,27,-40,27v-50,0,-63,-52,-63,-105v0,-57,17,-98,63,-98v22,-1,36,17,42,29r0,-24r29,0r0,256r-30,0"},"r":{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0","w":106,"k":{"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,21,95,90v0,41,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32","w":146,"k":{"w":-4}},"t":{"d":"29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-3,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0","w":93},"u":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0"},"v":{"d":"56,0r-52,-193r33,0r36,155r36,-155r34,0r-53,193r-34,0","w":146,"k":{".":20,",":20}},"w":{"d":"49,0r-45,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{".":13,",":13}},"x":{"d":"55,-100r-49,-93r33,0r35,69r35,-69r33,0r-50,93r52,100r-33,0r-39,-76r-37,76r-33,0","w":146},"y":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-4,35,-31,57,-74,49r0,-23v28,7,45,-11,47,-35","w":146,"k":{"a":-4,".":20,",":20}},"z":{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0","w":140},"{":{"d":"1,-85r0,-21v57,-1,-6,-160,66,-151r26,0r0,24v-53,-11,-37,46,-37,91v0,37,-25,43,-32,47v8,1,32,11,32,46r0,62v-4,22,12,33,37,29r0,24v-40,1,-63,1,-65,-47v-1,-39,9,-104,-27,-104","w":93},"|":{"d":"28,5r0,-267r24,0r0,267r-24,0","w":79},"}":{"d":"93,-106r0,21v-58,0,5,160,-67,151r-25,0r0,-24v52,10,36,-47,36,-91v0,-37,25,-43,32,-47v-8,-1,-32,-11,-32,-46r0,-62v4,-21,-11,-33,-36,-29r0,-24v39,-1,62,-1,64,47v1,40,-8,104,28,104","w":93},"~":{"d":"147,-66v-25,0,-54,-27,-76,-27v-17,0,-30,16,-36,26r-15,-16v11,-15,26,-34,49,-34v25,0,53,28,76,28v17,0,30,-17,36,-27r15,17v-11,15,-26,33,-49,33","w":216},"\u00a1":{"d":"57,-127r6,190r-33,0r6,-190r21,0xm63,-194r0,35r-33,0r0,-35r33,0","w":92},"\u00a2":{"d":"82,-19r0,-155v-15,4,-29,20,-29,80v0,24,1,69,29,75xm82,36r0,-31v-42,-3,-61,-35,-61,-99v0,-46,9,-99,61,-104r0,-25r15,0r0,25v46,3,55,42,55,64r-31,0v0,-18,-6,-37,-24,-40r0,155v20,-5,24,-28,24,-48r31,0v0,30,-14,68,-55,72r0,31r-15,0","w":172},"\u00a3":{"d":"37,-24v40,-22,79,20,116,-13r13,24v-15,10,-32,18,-50,18v-35,0,-65,-27,-95,-3r-14,-23v28,-20,58,-55,37,-95r-34,0r0,-22r25,0v-8,-14,-18,-34,-18,-52v0,-41,33,-65,73,-65v42,0,71,23,71,73r-30,0v0,-27,-10,-49,-41,-49v-61,0,-41,58,-21,93r59,0r0,22r-51,0v19,40,-12,70,-40,92","w":172},"\u00a5":{"d":"72,0r0,-55r-53,0r0,-22r53,0v0,-11,1,-23,-4,-29r-49,0r0,-22r40,0r-56,-122r35,0r49,117r51,-117r32,0r-54,122r39,0r0,22r-49,0v-5,6,-4,18,-4,29r53,0r0,22r-53,0r0,55r-30,0","w":172},"\u00a7":{"d":"149,-208r-32,0v0,-19,-15,-30,-32,-30v-21,0,-30,15,-30,27v14,52,108,49,108,113v0,23,-15,41,-32,53v44,31,14,100,-42,100v-54,0,-66,-38,-66,-62r30,0v0,22,12,39,36,39v52,0,31,-57,1,-69v-28,-21,-79,-36,-79,-78v0,-26,14,-38,35,-51v-14,-9,-23,-27,-23,-44v0,-35,31,-52,62,-52v58,0,63,40,64,54xm41,-119v7,32,50,41,71,61v7,-4,20,-16,20,-35v0,-33,-45,-44,-67,-61v-10,7,-24,18,-24,35","w":173},"\u00a4":{"d":"33,-125v0,31,23,56,53,56v30,0,54,-25,54,-56v0,-31,-24,-55,-54,-55v-30,0,-53,24,-53,55xm6,-60r17,-17v-21,-25,-21,-70,0,-95r-17,-17r16,-16r17,17v25,-21,70,-21,95,0r17,-17r15,16r-17,17v22,25,22,70,0,95r17,17r-15,15r-17,-17v-25,21,-70,21,-95,0r-17,17","w":172},"'":{"d":"31,-166r0,-91r24,0r0,91r-24,0","w":86},"\u00ab":{"d":"71,-88r0,-28r51,-52r0,32r-33,34r33,34r0,31xm18,-88r0,-28r51,-52r0,32r-34,34r34,34r0,31","w":140},"\u00b7":{"d":"23,-118v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u2219":{"d":"23,-118v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u00b6":{"d":"148,50r0,-288r-36,0r0,288r-24,0r0,-166v-44,0,-75,-30,-75,-67v-2,-75,80,-79,159,-74r0,307r-24,0","w":200},"\u00bb":{"d":"122,-116r0,28r-51,51r0,-31r34,-34r-34,-34r0,-32xm69,-116r0,28r-51,51r0,-31r33,-34r-33,-34r0,-32","w":140},"\u00bf":{"d":"98,-127v8,63,-54,73,-54,127v0,21,12,40,35,40v35,0,38,-34,38,-52r30,0v0,42,-21,78,-67,78v-43,0,-67,-28,-67,-67v0,-55,62,-69,57,-126r28,0xm100,-194r0,35r-33,0r0,-35r33,0","w":159},"`":{"d":"-6,-271r36,0r25,51r-22,0","w":73},"\u00b4":{"d":"19,-220r25,-51r35,0r-39,51r-21,0","w":73},"\u00af":{"d":"-11,-236r0,-19r95,0r0,19r-95,0","w":73},"\u02c9":{"d":"-11,-236r0,-19r95,0r0,19r-95,0","w":73},"\u00a8":{"d":"-6,-228r0,-37r28,0r0,37r-28,0xm52,-228r0,-37r28,0r0,37r-28,0","w":73},"\u00b8":{"d":"0,69r5,-12v10,4,48,7,43,-11v1,-21,-34,-3,-36,-17r21,-31r15,0v-4,7,-14,15,-14,22v18,-6,39,1,40,25v1,31,-50,38,-74,24","w":73},"\u00c6":{"d":"116,-231r-50,135r54,0r0,-135r-4,0xm-3,0r99,-257r151,0r0,28r-96,0r0,81r90,0r0,28r-90,0r0,92r100,0r0,28r-131,0r0,-71r-63,0r-27,71r-33,0","w":259},"\u00aa":{"d":"52,-255v64,0,29,51,38,98v-2,8,5,12,11,9r0,15v-12,2,-34,2,-32,-16v-14,28,-71,19,-66,-17v-3,-28,28,-35,52,-40v26,-5,15,-34,-6,-32v-22,1,-21,16,-21,23r-22,0v0,-28,13,-40,46,-40xm69,-197v-12,11,-43,6,-42,30v0,9,4,18,16,18v25,-1,28,-21,26,-48","w":104},"\u00d8":{"d":"58,-55r71,-170v-7,-7,-16,-11,-29,-11v-64,-4,-54,126,-42,181xm142,-202r-70,170v7,7,16,11,28,11v64,4,54,-127,42,-181xm32,9r12,-29v-22,-26,-27,-68,-27,-109v0,-65,12,-133,83,-133v17,0,30,4,40,10r9,-21r19,8r-11,27v22,26,26,68,26,109v0,65,-12,134,-83,134v-16,0,-30,-4,-40,-10r-9,22","w":200},"\u00ba":{"d":"51,-255v38,0,47,30,47,61v0,32,-10,62,-47,62v-37,0,-45,-30,-45,-62v0,-31,8,-61,45,-61xm51,-149v33,-1,33,-88,0,-89v-31,1,-29,88,0,89","w":104},"\u00e6":{"d":"134,-117r65,0v1,-28,-4,-57,-32,-57v-33,0,-33,38,-33,57xm199,-63r30,0v0,21,-12,68,-61,68v-42,0,-48,-29,-52,-35v-9,21,-26,35,-54,35v-62,0,-71,-98,-16,-109v22,-11,58,-4,58,-42v0,-18,-8,-28,-28,-28v-31,1,-31,30,-31,39r-31,0v0,-44,20,-63,64,-63v26,-1,41,13,47,27v6,-16,27,-27,45,-27v59,2,62,56,61,105r-99,0v0,30,0,74,34,74v29,0,33,-30,33,-44xm104,-100v-17,15,-63,7,-63,48v0,18,8,33,27,33v50,-10,33,-41,36,-81","w":240},"\u00f8":{"d":"112,-147r-52,121v38,24,58,-19,58,-70v0,-18,-1,-37,-6,-51xm48,-45r52,-122v-40,-24,-58,19,-58,71v0,19,1,37,6,51xm23,14r12,-27v-50,-53,-29,-224,75,-179r10,-21r17,7r-11,26v47,57,28,223,-76,179r-10,22","w":159},"\u00df":{"d":"17,0r0,-184v0,-45,14,-76,64,-76v65,0,87,97,24,112v34,0,51,31,51,67v1,46,-25,89,-85,81r0,-26v41,8,55,-26,54,-55v-1,-38,-18,-60,-53,-53r0,-24v24,2,40,-10,41,-38v0,-18,-6,-40,-32,-40v-31,0,-33,24,-33,47r0,189r-31,0"},"\u00b9":{"d":"46,-101r0,-112r-34,0r0,-18v21,0,39,-2,40,-24r18,0r0,154r-24,0","w":112},"\u00ac":{"d":"175,-38r0,-78r-158,0r0,-24r182,0r0,102r-24,0","w":216},"\u00b5":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-10,24,-42,36,-67,23r0,63r-30,0r0,-256r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0"},"\u03bc":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-10,24,-42,36,-67,23r0,63r-30,0r0,-256r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0"},"\u00d0":{"d":"24,0r0,-122r-21,0r0,-24r21,0r0,-111r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0xm56,-26r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0r0,85r48,0r0,24r-48,0r0,96","w":200},"\u00bd":{"d":"27,11r156,-272r21,0r-156,272r-21,0xm11,-213r0,-18v21,0,39,-2,40,-24r18,0r0,154r-24,0r0,-112r-34,0xm245,0r-94,0v-3,-57,72,-63,72,-111v0,-13,-7,-21,-24,-21v-21,0,-22,18,-22,27r-26,0v0,-28,13,-49,50,-49v58,0,61,71,19,92v-13,11,-34,25,-40,40r65,0r0,22","w":259},"\u00b1":{"d":"17,-106r0,-24r79,0r0,-52r24,0r0,52r79,0r0,24r-79,0r0,52r-24,0r0,-52r-79,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},"\u00de":{"d":"21,0r0,-257r32,0r0,50r33,0v22,0,80,0,80,74v0,63,-47,81,-113,75r0,58r-32,0xm53,-181r0,97v46,2,78,1,80,-50v2,-42,-35,-51,-80,-47","w":173},"\u00bc":{"d":"163,-55r41,0v-1,-22,2,-47,-1,-67xm144,-57r58,-97r26,0r0,99r16,0r0,19r-16,0r0,36r-24,0r0,-36r-60,0r0,-21xm33,11r157,-272r21,0r-156,272r-22,0xm12,-213r0,-18v21,0,39,-2,40,-24r18,0r0,154r-24,0r0,-112r-34,0","w":259},"\u00f7":{"d":"17,-79r0,-24r182,0r0,24r-182,0xm88,-167v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm88,-15v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":216},"\u00a6":{"d":"28,5r0,-106r24,0r0,106r-24,0xm28,-156r0,-106r24,0r0,106r-24,0","w":79},"\u00b0":{"d":"18,-201v0,-31,23,-54,54,-54v31,0,54,23,54,54v0,31,-23,53,-54,53v-31,0,-54,-22,-54,-53xm38,-201v0,19,15,34,34,34v19,0,34,-15,34,-34v0,-19,-15,-34,-34,-34v-19,0,-34,15,-34,34","w":144},"\u00fe":{"d":"48,-96v0,37,7,75,39,75v28,0,35,-29,35,-79v0,-42,-7,-72,-35,-72v-33,0,-39,32,-39,76xm20,63r0,-320r30,0r1,86v5,-17,24,-27,40,-27v46,0,63,41,63,98v0,44,-13,105,-63,105v-18,1,-32,-12,-41,-27r0,85r-30,0"},"\u00be":{"d":"171,-55r41,0v-1,-22,2,-47,-1,-67xm152,-57r58,-97r25,0r0,99r17,0r0,19r-17,0r0,36r-23,0r0,-36r-60,0r0,-21xm52,11r156,-272r22,0r-156,272r-22,0xm43,-171r0,-19v35,9,50,-45,15,-45v-20,0,-22,16,-22,24r-26,0v0,-26,13,-44,49,-44v59,2,58,63,14,73v18,6,35,13,35,37v0,28,-16,47,-49,47v-49,0,-52,-34,-52,-45r26,0v0,11,7,25,25,25v10,0,24,-5,24,-26v1,-19,-15,-29,-39,-27","w":259},"\u00b2":{"d":"102,-101r-94,0v-2,-56,71,-63,71,-111v0,-13,-7,-21,-24,-21v-21,0,-22,18,-22,27r-26,0v0,-28,13,-49,50,-49v58,0,61,71,19,92v-13,11,-34,26,-39,41r65,0r0,21","w":112},"\u00ae":{"d":"91,-50r0,-156v52,0,113,-8,113,46v0,28,-18,40,-42,43r45,67r-24,0r-43,-65r-26,0r0,65r-23,0xm114,-137v29,-2,68,8,67,-24v-1,-32,-38,-21,-67,-23r0,47xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm144,-17v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111v0,62,49,112,110,112","w":288},"\u00f0":{"d":"79,-169v-31,0,-37,38,-37,73v0,42,6,77,37,77v32,0,39,-35,39,-77v0,-35,-7,-73,-39,-73xm43,-214r-13,-15r25,-15v-8,-8,-18,-16,-28,-24r23,-10v9,8,18,15,26,22r27,-15r14,15r-26,14v37,37,58,78,58,146v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101v0,-60,31,-114,92,-91v-10,-15,-21,-29,-33,-42","w":159},"\u00d7":{"d":"173,-11r-65,-65r-65,65r-15,-15r65,-65r-65,-65r15,-15r65,64r65,-64r15,15r-65,65r65,65","w":216},"\u00b3":{"d":"42,-171r0,-19v21,2,34,-8,34,-25v0,-11,-6,-20,-19,-20v-20,0,-23,16,-23,24r-26,0v0,-26,13,-44,49,-44v59,1,59,63,15,73v18,6,35,13,35,37v0,28,-16,47,-49,47v-49,0,-52,-34,-52,-45r26,0v0,11,7,25,25,25v10,0,24,-5,24,-26v1,-19,-15,-29,-39,-27","w":112},"\u00a9":{"d":"195,-100r22,0v-5,37,-35,55,-71,55v-49,0,-79,-33,-79,-82v0,-92,137,-115,150,-27r-22,0v-19,-62,-104,-34,-104,27v0,34,21,61,55,61v27,0,45,-15,49,-34xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm144,-17v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111v0,62,49,112,110,112","w":288},"\u00c1":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0xm75,-271r25,-51r35,0r-39,51r-21,0","w":180},"\u00c2":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0xm42,-271r37,-51r28,0r36,51r-29,0r-21,-32r-22,32r-29,0","w":180},"\u00c4":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0xm49,-280r0,-36r28,0r0,36r-28,0xm108,-280r0,-36r28,0r0,36r-28,0","w":180},"\u00c0":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0xm50,-322r35,0r26,51r-22,0","w":180},"\u00c5":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0xm57,-300v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,36,-35,36v-20,0,-36,-16,-36,-36xm72,-300v0,11,10,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-21,9,-21,20","w":180},"\u00c3":{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0xm73,-315v19,0,49,28,53,-3r19,0v0,18,-10,40,-31,40v-24,0,-50,-28,-55,3r-19,0v0,-21,14,-40,33,-40","w":180},"\u00c7":{"d":"77,36v-13,-10,7,-21,11,-32v-62,-8,-71,-72,-71,-133v0,-65,12,-133,83,-133v53,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67r33,0v-3,48,-21,92,-75,93v-2,5,-10,10,-9,15v18,-6,37,1,39,25v1,32,-49,38,-74,24r5,-12v10,4,48,7,43,-11v2,-13,-24,-15,-30,-10","w":186},"\u00c9":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm70,-271r25,-51r35,0r-39,51r-21,0"},"\u00ca":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm38,-271r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0"},"\u00cb":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm45,-280r0,-36r28,0r0,36r-28,0xm103,-280r0,-36r28,0r0,36r-28,0"},"\u00c8":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm45,-322r36,0r25,51r-22,0"},"\u00cd":{"d":"21,0r0,-257r32,0r0,257r-32,0xm19,-271r25,-51r35,0r-39,51r-21,0","w":73},"\u00ce":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-13,-271r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u00cf":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-6,-280r0,-36r28,0r0,36r-28,0xm52,-280r0,-36r28,0r0,36r-28,0","w":73},"\u00cc":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-6,-322r36,0r25,51r-22,0","w":73},"\u00d1":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0xm81,-315v19,0,49,28,53,-3r19,0v0,18,-10,40,-31,40v-24,0,-50,-28,-55,3r-20,0v0,-21,15,-40,34,-40","w":200},"\u00d3":{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm82,-271r25,-51r36,0r-39,51r-22,0","w":200},"\u00d4":{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm50,-271r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":200},"\u00d6":{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm57,-280r0,-36r28,0r0,36r-28,0xm115,-280r0,-36r28,0r0,36r-28,0","w":200},"\u00d2":{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm58,-322r35,0r25,51r-22,0","w":200},"\u00d5":{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm81,-315v19,0,49,28,53,-3r19,0v0,18,-10,40,-31,40v-24,0,-50,-28,-55,3r-20,0v0,-21,15,-40,34,-40","w":200},"\u00da":{"d":"18,-76r0,-181r32,0r0,181v0,38,12,55,43,55v34,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-51,0,-75,-28,-75,-81xm76,-271r25,-51r35,0r-39,51r-21,0","w":186},"\u00db":{"d":"18,-76r0,-181r32,0r0,181v0,38,12,55,43,55v34,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-51,0,-75,-28,-75,-81xm44,-271r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":186},"\u00dc":{"d":"18,-76r0,-181r32,0r0,181v0,38,12,55,43,55v34,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-51,0,-75,-28,-75,-81xm50,-280r0,-36r28,0r0,36r-28,0xm109,-280r0,-36r28,0r0,36r-28,0","w":186},"\u00d9":{"d":"18,-76r0,-181r32,0r0,181v0,38,12,55,43,55v34,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-51,0,-75,-28,-75,-81xm51,-322r35,0r26,51r-22,0","w":186},"\u00dd":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101xm65,-271r25,-51r36,0r-39,51r-22,0"},"\u00e1":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm62,-220r25,-51r35,0r-38,51r-22,0","w":159},"\u00e2":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm30,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0","w":159},"\u00e4":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm37,-228r0,-37r28,0r0,37r-28,0xm95,-228r0,-37r28,0r0,37r-28,0","w":159},"\u00e0":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm37,-271r36,0r25,51r-22,0","w":159},"\u00e5":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm44,-248v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,35,-36,35v-20,0,-36,-15,-36,-35xm59,-248v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21v-11,0,-21,10,-21,21","w":159},"\u00e3":{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm60,-264v18,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-24,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":159},"\u00e7":{"d":"60,36v-13,-9,6,-21,11,-31v-42,-4,-59,-36,-59,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,29,-14,67,-56,72v-2,5,-10,10,-9,15v18,-6,37,1,39,25v1,32,-49,38,-74,24r6,-12v9,4,48,7,42,-11v2,-13,-24,-15,-30,-10","w":153},"\u00e9":{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm62,-220r25,-51r35,0r-38,51r-22,0","w":159},"\u00ea":{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm30,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0","w":159},"\u00eb":{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm37,-228r0,-37r28,0r0,37r-28,0xm95,-228r0,-37r28,0r0,37r-28,0","w":159},"\u00e8":{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm37,-271r36,0r25,51r-22,0","w":159},"\u00ed":{"d":"22,0r0,-193r30,0r0,193r-30,0xm19,-220r25,-51r35,0r-39,51r-21,0","w":73},"\u00ee":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-13,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0","w":73},"\u00ef":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-6,-228r0,-37r28,0r0,37r-28,0xm52,-228r0,-37r28,0r0,37r-28,0","w":73},"\u00ec":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-6,-271r36,0r25,51r-22,0","w":73},"\u00f1":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm64,-264v18,1,49,29,53,-2r19,0v0,18,-10,40,-31,40v-24,0,-50,-28,-55,2r-19,0v0,-21,14,-40,33,-40"},"\u00f3":{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm62,-220r25,-51r35,0r-38,51r-22,0","w":159},"\u00f4":{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm30,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0","w":159},"\u00f6":{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm37,-228r0,-37r28,0r0,37r-28,0xm95,-228r0,-37r28,0r0,37r-28,0","w":159},"\u00f2":{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm37,-271r36,0r25,51r-22,0","w":159},"\u00f5":{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm60,-264v18,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-24,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":159},"\u00fa":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm66,-220r25,-51r35,0r-39,51r-21,0"},"\u00fb":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm33,-220r37,-51r28,0r36,51r-29,0r-21,-31r-22,31r-29,0"},"\u00fc":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm40,-228r0,-37r28,0r0,37r-28,0xm99,-228r0,-37r28,0r0,37r-28,0"},"\u00f9":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm41,-271r35,0r26,51r-22,0"},"\u00fd":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-4,35,-31,57,-74,49r0,-23v28,7,45,-11,47,-35xm55,-220r25,-51r36,0r-39,51r-22,0","w":146},"\u00ff":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-4,35,-31,57,-74,49r0,-23v28,7,45,-11,47,-35xm30,-228r0,-37r28,0r0,37r-28,0xm88,-228r0,-37r28,0r0,37r-28,0","w":146}}});
Cufon.registerFont({"w":153,"face":{"font-family":"helvetica-neue-light-condensed","font-weight":300,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 4 6 0 0 0 0 0 0","ascent":"287","descent":"-73","x-height":"4","bbox":"-12 -334 277 72.9331","underline-thickness":"18","underline-position":"-18","stemh":"18","stemv":"22","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":86,"k":{"Y":13,"W":13,"V":13,"T":13,"A":13}},"\u00a0":{"w":86},"!":{"d":"35,-67r-4,-190r24,0r-4,190r-16,0xm31,0r0,-37r24,0r0,37r-24,0","w":86},"\"":{"d":"26,-171r0,-86r21,0r0,86r-21,0xm80,-171r0,-86r21,0r0,86r-21,0","w":126},"#":{"d":"68,-153r-7,56r44,0r7,-56r-44,0xm1,-81r0,-16r42,0r7,-56r-40,0r0,-16r42,0r11,-82r18,0r-11,82r44,0r11,-82r18,0r-11,82r40,0r0,16r-42,0r-7,56r39,0r0,16r-41,0r-11,81r-18,0r11,-81r-44,0r-11,81r-18,0r11,-81r-40,0","w":172},"$":{"d":"79,-143r0,-92v-27,3,-41,21,-41,44v0,28,18,40,41,48xm95,-116r0,101v26,-3,44,-20,44,-51v0,-30,-20,-41,-44,-50xm79,4v-46,-3,-71,-30,-69,-81r23,0v-2,36,13,59,46,62r0,-106v-32,-9,-64,-22,-64,-68v0,-37,23,-63,64,-66r0,-25r16,0r0,25v42,3,61,27,61,69r-24,0v0,-28,-11,-46,-37,-49r0,98v33,11,67,21,67,68v0,45,-26,69,-67,73r0,30r-16,0r0,-30","w":172},"%":{"d":"39,-189v0,39,10,51,25,51v15,0,26,-12,26,-51v0,-38,-11,-50,-26,-50v-15,0,-25,12,-25,50xm66,4r110,-259r18,0r-110,259r-18,0xm170,-62v0,39,10,50,25,50v15,0,26,-11,26,-50v0,-38,-11,-50,-26,-50v-15,0,-25,12,-25,50xm19,-189v0,-52,16,-66,45,-66v29,0,46,14,46,66v0,52,-17,67,-46,67v-29,0,-45,-15,-45,-67xm150,-62v0,-52,16,-66,45,-66v29,0,46,14,46,66v0,52,-17,66,-46,66v-29,0,-45,-14,-45,-66","w":259},"&":{"d":"171,0r-23,-31v-28,57,-140,40,-140,-33v0,-36,32,-64,58,-82v-40,-40,-41,-109,23,-111v30,0,50,19,50,47v0,21,-9,41,-46,67r56,77v6,-16,9,-32,9,-48r22,0v0,22,-6,45,-18,66r33,48r-24,0xm88,-239v-45,0,-31,52,-6,81v28,-22,35,-38,35,-52v0,-17,-12,-29,-29,-29xm137,-48r-60,-84v-36,25,-46,46,-46,66v0,61,85,66,106,18","w":193},"(":{"d":"67,-257r16,0v-56,97,-56,226,0,323r-16,0v-66,-118,-65,-205,0,-323","w":79},")":{"d":"13,66r-16,0v56,-97,56,-226,0,-323r16,0v65,118,64,205,0,323","w":79},"*":{"d":"52,-257r16,0r0,40r38,-12r5,15r-38,12r23,32r-12,10r-24,-33r-23,33r-13,-10r23,-32r-38,-12r5,-15r38,12r0,-40","w":120},"+":{"d":"99,0r0,-82r-82,0r0,-18r82,0r0,-82r18,0r0,82r82,0r0,18r-82,0r0,82r-18,0","w":216},",":{"d":"31,0r0,-37r24,0v-1,39,7,74,-26,87v-2,-24,15,-22,12,-50r-10,0","w":86,"k":{" ":13}},"-":{"d":"21,-112r78,0r0,19r-78,0r0,-19","w":119},"\u00ad":{"d":"21,-112r78,0r0,19r-78,0r0,-19","w":119},".":{"d":"31,0r0,-37r24,0r0,37r-24,0","w":86,"k":{" ":13}},"\/":{"d":"84,-261r20,0r-88,265r-20,0","w":100},"0":{"d":"38,-125v0,82,13,111,48,111v35,0,49,-29,49,-111v0,-82,-14,-112,-49,-112v-35,0,-48,30,-48,112xm15,-125v0,-75,13,-130,71,-130v58,0,72,55,72,130v0,75,-14,129,-72,129v-58,0,-71,-54,-71,-129","w":172},"1":{"d":"83,0r0,-195r-59,0r0,-16v43,0,63,-17,64,-44r16,0r0,255r-21,0","w":172},"2":{"d":"40,-175r-23,0v1,-49,24,-80,72,-80v35,0,66,20,66,69v0,73,-109,100,-115,167r117,0r0,19r-141,0v-4,-54,44,-91,80,-121v26,-22,36,-40,36,-64v0,-34,-19,-52,-45,-52v-29,0,-46,20,-47,62","w":172},"3":{"d":"67,-123r0,-18v38,3,60,-14,60,-48v0,-30,-14,-48,-42,-48v-26,0,-45,17,-45,53r-23,0v0,-42,23,-71,68,-71v72,0,90,106,24,121v30,4,49,30,49,61v0,46,-25,77,-73,77v-44,0,-69,-24,-71,-72r23,0v0,30,15,54,48,54v26,0,50,-15,50,-58v0,-39,-27,-55,-68,-51","w":172},"4":{"d":"110,0r0,-66r-98,0r0,-21r98,-168r21,0r0,170r30,0r0,19r-30,0r0,66r-21,0xm31,-85r79,0r-1,-133","w":172},"5":{"d":"35,-251r111,0r0,20r-94,0r-11,90v39,-52,117,-25,117,58v0,51,-26,87,-76,87v-40,0,-67,-24,-67,-69r23,0v0,29,16,51,47,51v31,0,50,-25,50,-73v0,-61,-73,-86,-94,-33r-21,0","w":172},"6":{"d":"154,-195r-23,0v-1,-25,-16,-42,-41,-42v-35,-1,-52,33,-53,117v23,-73,122,-44,122,37v0,48,-22,87,-71,87v-58,0,-74,-42,-74,-122v0,-84,16,-137,77,-137v40,0,62,25,63,60xm41,-79v0,33,13,65,48,65v35,0,47,-32,47,-65v0,-33,-12,-65,-47,-65v-35,0,-48,32,-48,65","w":172},"7":{"d":"15,-231r0,-20r143,0r0,20v-55,67,-86,162,-91,231r-25,0v4,-70,44,-170,94,-231r-121,0","w":172},"8":{"d":"38,-70v0,31,16,56,48,56v32,0,49,-25,49,-56v0,-31,-17,-57,-49,-57v-32,0,-48,26,-48,57xm86,4v-76,0,-100,-127,-25,-139v-23,-8,-39,-32,-39,-57v0,-42,27,-63,64,-63v68,0,89,102,26,119v29,6,46,32,46,64v0,48,-29,76,-72,76xm45,-191v0,27,14,46,41,46v28,0,41,-19,41,-46v0,-27,-13,-46,-41,-46v-27,0,-41,19,-41,46","w":172},"9":{"d":"19,-55r23,0v1,25,15,41,40,41v34,0,55,-36,53,-116v-23,72,-121,42,-121,-38v0,-48,22,-87,71,-87v58,0,74,43,74,123v0,84,-17,136,-78,136v-40,0,-61,-24,-62,-59xm37,-172v0,33,12,65,47,65v35,0,48,-32,48,-65v0,-33,-13,-65,-48,-65v-35,0,-47,32,-47,65","w":172},":":{"d":"31,-144r0,-36r24,0r0,36r-24,0xm31,0r0,-37r24,0r0,37r-24,0","w":86,"k":{" ":13}},";":{"d":"31,0r0,-37r24,0v-1,39,7,74,-26,87v-2,-24,15,-22,12,-50r-10,0xm31,-144r0,-36r24,0r0,36r-24,0","w":86},"<":{"d":"17,-81r0,-20r182,-84r0,19r-160,75r160,74r0,20","w":216},"=":{"d":"17,-117r0,-18r182,0r0,18r-182,0xm17,-47r0,-18r182,0r0,18r-182,0","w":216},">":{"d":"17,3r0,-20r160,-74r-160,-75r0,-19r182,84r0,20","w":216},"?":{"d":"82,-67r-22,0v-12,-63,57,-79,58,-132v0,-26,-16,-44,-40,-44v-31,0,-46,21,-46,60r-23,0v0,-45,21,-78,67,-78v65,-1,86,75,42,119v-19,19,-41,37,-36,75xm59,0r0,-37r25,0r0,37r-25,0"},"@":{"d":"87,-104v0,22,9,37,31,37v39,0,67,-54,67,-87v0,-23,-9,-35,-31,-35v-39,0,-67,51,-67,85xm196,-177v5,-6,6,-17,10,-24r20,0r-41,127v0,5,4,9,10,9v32,0,64,-50,64,-87v0,-57,-52,-94,-108,-94v-71,0,-122,55,-122,117v0,65,54,117,122,117v39,0,80,-18,99,-49r22,0v-24,40,-72,65,-121,65v-80,0,-140,-60,-140,-133v0,-74,63,-132,140,-132v70,0,126,46,126,110v0,55,-46,102,-85,102v-15,0,-23,-9,-26,-24v-31,39,-99,31,-98,-29v0,-50,37,-105,88,-105v17,0,32,8,40,30","w":288},"A":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0","w":180,"k":{"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"B":{"d":"43,-238r0,94v49,3,94,-3,94,-47v0,-50,-45,-48,-94,-47xm43,-125r0,106v54,3,102,-1,102,-53v0,-52,-48,-56,-102,-53xm20,0r0,-257r71,0v83,-7,90,101,30,120v30,9,47,30,47,65v0,45,-28,72,-77,72r-71,0","w":180},"C":{"d":"153,-87r23,0v-3,59,-30,91,-76,91v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-37,0,-59,30,-59,113v0,83,22,114,59,114v32,0,50,-28,53,-72","w":186},"D":{"d":"20,0r0,-257r62,0v75,0,93,44,93,128v0,84,-18,129,-93,129r-62,0xm43,-238r0,219v80,4,109,-6,109,-109v0,-103,-28,-115,-109,-110","w":193},"E":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0","w":159},"F":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,125r-23,0","k":{"A":13,".":40,",":40}},"G":{"d":"154,-112r-61,0r0,-19r82,0r0,131r-18,0r0,-42v-8,28,-31,46,-57,46v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v49,0,71,32,74,76r-23,0v0,-31,-17,-57,-51,-57v-37,0,-59,30,-59,113v0,83,22,114,59,114v37,0,55,-37,54,-97","w":193},"H":{"d":"144,0r0,-128r-101,0r0,128r-23,0r0,-257r23,0r0,109r101,0r0,-109r23,0r0,257r-23,0","w":186},"I":{"d":"22,0r0,-257r23,0r0,257r-23,0","w":66},"J":{"d":"65,4v-40,0,-61,-26,-58,-79r23,0v-1,36,7,60,34,60v25,0,39,-11,39,-52r0,-190r23,0r0,193v0,44,-20,68,-61,68","w":146},"K":{"d":"20,0r0,-257r23,0r1,135r98,-135r25,0r-79,107r87,150r-24,0r-77,-130r-31,40r0,90r-23,0","w":172},"L":{"d":"20,0r0,-257r23,0r0,238r107,0r0,19r-130,0","k":{"y":13,"Y":33,"W":27,"V":27,"T":27}},"M":{"d":"22,0r0,-257r40,0r63,228r62,-228r38,0r0,257r-23,0r-1,-235r-67,235r-21,0r-68,-235r0,235r-23,0","w":246},"N":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0","w":193},"O":{"d":"18,-129v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,92,-29,133,-82,133v-53,0,-82,-41,-82,-133xm41,-129v0,83,22,114,59,114v37,0,59,-31,59,-114v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113","w":200},"P":{"d":"43,-238r0,107v51,1,93,3,94,-53v1,-55,-41,-56,-94,-54xm20,0r0,-257r70,0v50,0,70,29,70,73v0,40,-19,72,-78,72r-39,0r0,112r-23,0","w":172,"k":{"A":13,".":46,",":46}},"Q":{"d":"172,14r-25,-26v-70,43,-129,-1,-129,-117v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,48,-8,83,-23,104r26,25xm132,-27r-29,-28r13,-13r28,27v10,-18,15,-48,15,-88v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113v-1,101,36,134,91,102","w":200},"R":{"d":"20,0r0,-257r77,0v80,-8,89,117,20,130v61,-3,32,88,55,127r-27,0v-8,-14,-7,-38,-7,-58v0,-65,-38,-60,-95,-59r0,117r-23,0xm43,-238r0,101v51,3,97,-1,97,-50v0,-48,-45,-55,-97,-51","w":180,"k":{"Y":6,"U":-2,"T":6}},"S":{"d":"156,-191r-23,0v0,-32,-15,-51,-46,-51v-31,0,-49,20,-49,46v0,77,125,35,125,125v0,50,-31,75,-78,75v-51,0,-77,-29,-75,-84r23,0v-2,39,13,65,51,65v32,0,56,-16,56,-52v0,-76,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70","w":172},"T":{"d":"68,0r0,-238r-66,0r0,-19r156,0r0,19r-67,0r0,238r-23,0","w":159,"k":{"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"17,-72r0,-185r23,0r0,185v0,39,16,57,50,57v34,0,50,-18,50,-57r0,-185r23,0r0,185v0,54,-26,76,-73,76v-47,0,-73,-22,-73,-76","w":180},"V":{"d":"69,0r-68,-257r25,0r58,233r57,-233r24,0r-67,257r-29,0","w":166,"k":{"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"58,0r-54,-257r23,0r46,226r44,-226r26,0r45,226r45,-226r23,0r-54,257r-29,0r-43,-226r-43,226r-29,0","w":259,"k":{"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"142,0r-60,-111r-59,111r-23,0r70,-131r-66,-126r25,0r55,104r55,-104r23,0r-66,126r71,131r-25,0","w":166},"Y":{"d":"68,0r0,-103r-69,-154r24,0r57,128r56,-128r25,0r-70,154r0,103r-23,0","w":159,"k":{"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r0,-22r125,-216r-118,0r0,-19r142,0r0,22r-124,216r125,0r0,19r-150,0","w":166},"[":{"d":"30,66r0,-323r57,0r0,18r-36,0r0,287r36,0r0,18r-57,0","w":86},"\\":{"d":"-4,-261r20,0r88,265r-20,0","w":100},"]":{"d":"0,66r0,-18r35,0r0,-287r-35,0r0,-18r57,0r0,323r-57,0","w":86},"^":{"d":"181,-87r-73,-142r-73,142r-19,0r83,-164r18,0r83,164r-19,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"a":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37","k":{"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"b":{"d":"19,0r0,-257r21,0r1,95v5,-20,21,-33,45,-33v42,0,61,33,61,99v0,66,-19,100,-61,100v-24,1,-40,-16,-48,-36r0,32r-19,0xm40,-96v0,71,20,82,42,82v22,0,42,-11,42,-82v0,-71,-20,-81,-42,-81v-22,0,-42,10,-42,81","w":159,"k":{"y":-1,"v":-1,"b":-1}},"c":{"d":"114,-63r22,0v-3,41,-26,67,-61,67v-40,0,-64,-28,-64,-100v0,-66,24,-99,66,-99v36,0,57,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49","w":146},"d":{"d":"122,0v-1,-10,2,-24,-1,-32v-6,22,-24,36,-47,36v-42,0,-61,-34,-61,-100v0,-66,19,-99,61,-99v25,-1,39,15,46,33r0,-95r21,0r0,257r-19,0xm36,-96v0,71,20,82,42,82v22,0,42,-11,42,-82v0,-71,-20,-81,-42,-81v-22,0,-42,10,-42,81","w":159},"e":{"d":"117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-66,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm36,-113r81,0v-1,-48,-13,-64,-40,-64v-27,0,-40,16,-41,64","k":{"y":-1}},"f":{"d":"29,0r0,-173r-26,0r0,-18r26,0v-4,-43,3,-76,55,-68r0,18v-30,-9,-37,17,-34,50r34,0r0,18r-34,0r0,173r-21,0","w":86,"k":{"o":-1,"l":-1,"f":-1}},"g":{"d":"119,-162v3,-7,0,-20,1,-29r19,0r0,177v0,53,-20,80,-63,80v-37,0,-57,-20,-57,-47r22,0v0,18,17,29,36,29v37,0,43,-40,40,-82v-7,23,-25,34,-45,34v-30,0,-59,-20,-59,-96v0,-66,19,-99,61,-99v21,0,38,11,45,33xm36,-98v0,61,15,80,41,80v26,0,40,-19,40,-80v0,-61,-14,-79,-40,-79v-26,0,-41,18,-41,79","w":159,"k":{"y":-1,"r":-1,"i":-1,"g":-1}},"h":{"d":"21,0r0,-257r21,0r1,92v5,-19,24,-30,47,-30v29,0,49,15,49,51r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-67,2,-36,113,-43,177r-21,0","w":159},"i":{"d":"22,0r0,-191r22,0r0,191r-22,0xm22,-220r0,-37r22,0r0,37r-22,0","w":66},"j":{"d":"22,15r0,-206r22,0r0,213v-1,38,-23,47,-53,43r0,-18v20,3,31,-1,31,-32xm22,-220r0,-37r22,0r0,37r-22,0","w":66},"k":{"d":"19,0r0,-257r21,0r1,161r74,-95r27,0r-58,71r68,120r-26,0r-57,-101r-29,34r0,67r-21,0","w":146},"l":{"d":"22,0r0,-257r22,0r0,257r-22,0","w":66,"k":{"y":-1,"w":-1}},"m":{"d":"22,0r0,-191r20,0r0,26v16,-42,83,-38,90,3v9,-21,24,-33,48,-33v27,0,45,15,45,49r0,146r-22,0r0,-143v0,-23,-11,-34,-30,-34v-62,0,-33,115,-39,177r-21,0r0,-143v0,-23,-11,-34,-30,-34v-62,0,-33,115,-39,177r-22,0","w":246,"k":{"y":-1}},"n":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v22,-45,98,-42,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-67,2,-36,113,-43,177r-21,0","w":159,"k":{"y":-1}},"o":{"d":"11,-96v0,-66,24,-99,66,-99v42,0,66,33,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-96v0,61,19,82,43,82v24,0,43,-21,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81"},"p":{"d":"19,63r0,-254r19,0v1,8,-2,21,1,27v7,-18,23,-31,47,-31v42,0,61,34,61,100v0,66,-19,99,-61,99v-25,1,-39,-15,-46,-33r0,92r-21,0xm83,-177v-37,0,-43,33,-43,82v0,71,20,81,42,81v22,0,42,-10,42,-81v0,-69,-20,-82,-41,-82","w":159,"k":{"y":-1}},"q":{"d":"120,63r-1,-92v-5,20,-21,33,-45,33v-42,0,-61,-33,-61,-99v0,-66,19,-100,61,-100v25,-1,39,15,48,31r0,-27r19,0r0,254r-21,0xm120,-95v-1,-50,-6,-82,-43,-82v-21,0,-41,13,-41,82v0,71,20,81,42,81v22,0,42,-10,42,-81","w":159},"r":{"d":"21,0r0,-191r21,0v1,9,-2,23,1,30v9,-23,29,-37,56,-33r0,21v-32,-5,-57,12,-57,53r0,120r-21,0","w":100,"k":{"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"107,-48v0,-49,-93,-39,-93,-92v0,-39,25,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-43,0,-49,52,-9,64v29,10,67,26,67,60v0,33,-19,57,-59,57v-41,1,-61,-19,-59,-65r22,0v-1,30,10,48,36,47v23,0,38,-13,38,-34","w":140},"t":{"d":"29,-31r0,-142r-26,0r0,-18r26,0r0,-53r21,0r0,53r34,0r0,18r-34,0r0,137v-1,20,17,22,34,18r0,18v-27,5,-55,1,-55,-31","w":86},"u":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-22,46,-98,43,-98,-20","w":159},"v":{"d":"56,0r-53,-191r23,0r43,167r39,-167r23,0r-51,191r-24,0","w":133,"k":{".":20,",":20}},"w":{"d":"46,0r-42,-191r23,0r33,169r34,-169r27,0r33,169r32,-169r24,0r-43,191r-26,0r-35,-170r-34,170r-26,0","w":213,"k":{".":13,",":13}},"x":{"d":"107,0r-40,-82r-40,82r-25,0r52,-99r-50,-92r25,0r38,75r37,-75r25,0r-49,92r51,99r-24,0","w":133},"y":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-12,43,-25,50,-65,48r0,-18v32,7,41,-17,48,-43","w":133,"k":{".":20,",":20}},"z":{"d":"6,0r0,-18r91,-155r-86,0r0,-18r109,0r0,18r-90,155r90,0r0,18r-114,0","w":126},"{":{"d":"12,-104v56,-5,-30,-173,78,-153r0,18v-22,0,-36,-4,-36,24v-1,43,7,116,-24,120v32,2,24,78,24,119v0,28,14,24,36,24r0,18v-37,4,-57,-9,-57,-43v0,-34,10,-114,-21,-109r0,-18","w":86},"|":{"d":"31,4r0,-265r18,0r0,265r-18,0","w":79},"}":{"d":"75,-86v-56,5,29,172,-78,152r0,-18v22,0,36,4,35,-24v0,-43,-7,-116,25,-120v-33,-2,-25,-78,-25,-119v0,-28,-13,-24,-35,-24r0,-18v36,-3,57,10,57,43v0,35,-10,114,21,110r0,18","w":86},"~":{"d":"70,-112v14,-4,70,26,77,24v12,0,20,-8,31,-26r13,13v-15,21,-26,31,-45,31v-16,4,-61,-30,-78,-24v-16,0,-24,13,-30,26r-13,-13v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"31,62r4,-190r16,0r4,190r-24,0xm31,-158r0,-37r24,0r0,37r-24,0","w":86},"\u00a2":{"d":"84,-14r0,-163v-21,3,-37,20,-37,82v0,67,18,80,37,81xm84,34r0,-30v-38,-2,-60,-31,-60,-100v0,-63,22,-96,60,-99r0,-30r10,0r0,30v34,2,53,24,55,61r-22,0v-2,-27,-12,-41,-33,-43r0,163v18,-4,30,-19,33,-49r22,0v-3,38,-23,63,-55,67r0,30r-10,0","w":172},"\u00a3":{"d":"33,-19v25,-17,54,4,80,4v15,0,28,-8,43,-18r10,16v-26,30,-76,18,-113,8v-15,0,-29,8,-35,11r-11,-17v35,-26,57,-59,38,-102r-36,0r0,-16r30,0v-8,-16,-23,-36,-22,-58v0,-41,34,-64,73,-64v44,0,70,30,70,74r-22,0v7,-69,-97,-74,-98,-12v0,18,14,45,23,60r54,0r0,16r-48,0v17,41,-3,69,-36,98","w":172},"\u00a5":{"d":"75,0r0,-63r-51,0r0,-15r51,0v0,-12,1,-25,-4,-32r-47,0r0,-16r40,0r-59,-125r25,0r56,124r57,-124r24,0r-58,125r39,0r0,16r-46,0v-5,7,-4,20,-4,32r50,0r0,15r-50,0r0,63r-23,0","w":172},"\u00a7":{"d":"146,-208r-22,0v0,-22,-15,-35,-37,-35v-44,0,-51,48,-9,66v28,21,83,43,83,84v0,22,-15,41,-34,50v38,30,22,100,-38,97v-40,-2,-65,-25,-63,-62r22,0v0,26,12,44,40,44v47,0,49,-56,7,-74v-28,-21,-82,-43,-82,-83v0,-21,18,-42,37,-50v-44,-27,-18,-90,38,-90v37,0,58,22,58,53xm139,-94v0,-34,-53,-48,-76,-67v-41,24,-37,53,1,77r48,31v18,-9,27,-22,27,-41","w":173},"\u00a4":{"d":"21,-46r-13,-13r17,-17v-24,-28,-23,-71,0,-99r-17,-17r13,-12r16,16v26,-21,73,-21,99,1r17,-17r12,12r-17,17v23,25,23,74,1,99r16,17r-12,13r-17,-18v-27,23,-73,23,-99,1xm27,-125v0,35,28,61,59,61v31,0,60,-26,60,-61v0,-35,-29,-61,-60,-61v-31,0,-59,26,-59,61","w":172},"'":{"d":"32,-171r0,-86r22,0r0,86r-22,0","w":86},"\u00ab":{"d":"68,-91r0,-22r45,-50r0,24r-32,37r32,36r0,25xm21,-91r0,-22r45,-50r0,24r-33,37r33,36r0,25","w":133},"\u00b7":{"d":"23,-118v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u2219":{"d":"23,-118v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u00b6":{"d":"70,50r0,-170v-32,0,-59,-30,-59,-66v-1,-73,61,-75,133,-71r0,307r-18,0r0,-291r-38,0r0,291r-18,0","w":173},"\u00bb":{"d":"21,-41r0,-25r32,-36r-32,-37r0,-24r45,50r0,22xm68,-41r0,-25r32,-36r-32,-37r0,-24r45,50r0,22","w":133},"\u00bf":{"d":"71,-129r22,0v12,64,-57,79,-58,133v0,26,17,44,41,44v31,0,46,-21,46,-60r23,0v0,45,-22,78,-68,78v-66,1,-85,-75,-41,-119v19,-19,40,-38,35,-76xm70,-158r0,-37r24,0r0,37r-24,0"},"`":{"d":"-4,-266r26,0r27,51r-17,0","w":66},"\u00b4":{"d":"45,-266r26,0r-36,51r-17,0","w":66},"\u00af":{"d":"-9,-233r0,-15r85,0r0,15r-85,0","w":66},"\u02c9":{"d":"-9,-233r0,-15r85,0r0,15r-85,0","w":66},"\u00a8":{"d":"-4,-222r0,-37r21,0r0,37r-21,0xm50,-222r0,-37r21,0r0,37r-21,0","w":66},"\u00b8":{"d":"12,29v11,-10,10,-32,34,-29v-4,7,-14,14,-15,21v18,-7,41,5,40,22v-1,32,-46,36,-70,23r4,-11v13,8,49,6,46,-10v1,-14,-24,-16,-34,-10","w":66},"\u00c6":{"d":"120,0r0,-75r-69,0r-29,75r-25,0r105,-257r142,0r0,19r-101,0r0,94r94,0r0,19r-94,0r0,106r104,0r0,19r-127,0xm58,-94r62,0r0,-144r-4,0","w":253},"\u00aa":{"d":"23,-217r-18,0v0,-25,13,-38,43,-38v58,-2,34,52,39,97v0,8,3,11,11,10r0,14v-13,5,-32,3,-29,-18v-11,34,-73,21,-67,-14v-3,-29,30,-35,55,-41v10,-3,12,-5,12,-16v0,-11,-9,-16,-22,-16v-17,0,-24,9,-24,22xm40,-148v23,2,34,-25,28,-50v-11,12,-47,7,-47,30v0,11,8,20,19,20","w":99},"\u00d8":{"d":"56,-43r79,-185v-54,-35,-96,-4,-94,99v0,39,5,68,15,86xm144,-214r-78,185v9,10,20,14,34,14v37,0,59,-31,59,-114v0,-40,-6,-67,-15,-85xm48,15r-13,-6r11,-28v-19,-21,-28,-57,-28,-110v0,-114,51,-154,125,-120r9,-23r14,5r-12,28v19,21,28,57,28,110v0,113,-50,156,-124,121","w":200},"\u00ba":{"d":"3,-194v0,-41,16,-61,47,-61v32,0,46,20,46,61v0,41,-14,62,-46,62v-31,0,-47,-21,-47,-62xm23,-194v0,33,12,46,27,46v15,0,27,-13,27,-46v0,-33,-12,-45,-27,-45v-15,0,-27,12,-27,45","w":99},"\u00e6":{"d":"39,-134r-22,0v-11,-64,85,-84,102,-31v8,-19,25,-30,45,-30v43,0,58,32,58,100r-98,0v-2,48,13,81,37,81v21,0,38,-20,38,-49r22,0v2,74,-90,91,-108,28v-10,25,-27,39,-54,39v-33,0,-48,-21,-48,-54v0,-43,36,-53,73,-61v29,-6,23,-74,-11,-66v-23,0,-34,15,-34,43xm102,-103v-21,15,-68,12,-68,52v0,22,11,37,30,37v17,0,38,-13,38,-49r0,-40xm124,-113r75,0v0,-48,-15,-64,-37,-64v-22,0,-37,16,-38,64","w":233},"\u00f8":{"d":"44,-36r55,-133v-38,-22,-64,0,-65,73v0,27,4,47,10,60xm109,-155r-55,132v38,24,65,1,66,-73v0,-27,-5,-46,-11,-59xm36,20r-13,-6r11,-27v-15,-16,-23,-44,-23,-83v-1,-80,39,-115,96,-92r10,-23r14,6r-12,27v15,16,24,43,24,82v2,81,-40,117,-97,92"},"\u00df":{"d":"19,0r0,-194v0,-44,23,-66,60,-66v65,0,82,96,20,112v41,5,50,43,50,70v0,55,-33,88,-84,78r0,-18v35,8,60,-12,61,-61v0,-41,-19,-60,-59,-58r0,-18v30,1,47,-12,47,-44v0,-24,-12,-43,-36,-43v-22,0,-38,13,-38,50r0,192r-21,0","w":159},"\u00b9":{"d":"52,-101r0,-115r-39,0r0,-13v29,0,41,-11,42,-26r16,0r0,154r-19,0","w":112},"\u00ac":{"d":"181,-39r0,-78r-164,0r0,-18r182,0r0,96r-18,0","w":216},"\u00b5":{"d":"21,63r0,-254r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-14,30,-51,39,-77,23r0,67r-21,0","w":159},"\u03bc":{"d":"21,63r0,-254r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-14,30,-51,39,-77,23r0,67r-21,0","w":159},"\u00d0":{"d":"20,0r0,-125r-20,0r0,-19r20,0r0,-113r62,0v75,0,93,44,93,128v0,84,-18,129,-93,129r-62,0xm43,-144r58,0r0,19r-58,0r0,106v80,4,109,-6,109,-109v0,-103,-28,-115,-109,-110r0,94","w":193},"\u00bd":{"d":"22,11r162,-272r18,0r-162,272r-18,0xm52,-101r0,-115r-39,0r0,-13v29,0,41,-11,42,-26r16,0r0,154r-19,0xm161,-105r-20,0v0,-30,16,-49,50,-49v48,0,62,61,19,88v-18,11,-46,32,-48,50r75,0r0,16r-94,0v-7,-52,71,-65,73,-112v0,-18,-12,-26,-27,-26v-17,0,-27,12,-28,33","w":259},"\u00b1":{"d":"99,-120r0,-62r18,0r0,62r82,0r0,18r-82,0r0,62r-18,0r0,-62r-82,0r0,-18r82,0xm17,0r0,-18r182,0r0,18r-182,0","w":216},"\u00de":{"d":"43,-187r0,106v51,1,94,3,94,-53v0,-56,-43,-55,-94,-53xm20,0r0,-257r23,0r0,50r48,0v48,0,69,30,69,73v0,40,-19,73,-78,73r-39,0r0,61r-23,0","w":172},"\u00bc":{"d":"204,0r0,-40r-67,0r0,-13r64,-101r21,0r0,101r20,0r0,13r-20,0r0,40r-18,0xm153,-53r51,0v-1,-25,2,-54,-1,-77xm32,11r163,-272r18,0r-163,272r-18,0xm52,-101r0,-115r-39,0r0,-13v29,0,41,-11,42,-26r16,0r0,154r-19,0","w":259},"\u00f7":{"d":"17,-82r0,-18r182,0r0,18r-182,0xm88,-165v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm88,-17v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":216},"\u00a6":{"d":"31,4r0,-97r18,0r0,97r-18,0xm31,-164r0,-97r18,0r0,97r-18,0","w":79},"\u00b0":{"d":"36,-203v0,20,16,35,36,35v20,0,36,-15,36,-35v0,-20,-16,-36,-36,-36v-20,0,-36,16,-36,36xm21,-203v0,-28,23,-52,51,-52v28,0,51,24,51,52v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51","w":144},"\u00fe":{"d":"19,63r0,-320r21,0r1,98v6,-22,24,-36,45,-36v42,0,61,34,61,100v0,66,-19,99,-61,99v-25,1,-39,-15,-46,-33r0,92r-21,0xm40,-95v0,71,20,81,42,81v22,0,42,-10,42,-81v0,-71,-20,-82,-42,-82v-22,0,-42,11,-42,82","w":159},"\u00be":{"d":"204,0r0,-40r-67,0r0,-13r64,-101r21,0r0,101r20,0r0,13r-20,0r0,40r-18,0xm153,-53r51,0v-1,-25,2,-54,-1,-77xm43,11r163,-272r18,0r-163,272r-18,0xm43,-173v1,-6,-4,-17,6,-16v39,4,42,-49,6,-50v-14,0,-27,10,-27,27r-19,0v0,-26,14,-43,46,-43v50,0,61,63,18,73v50,11,39,84,-18,84v-30,0,-47,-15,-48,-44r20,0v0,13,10,28,28,28v14,0,31,-10,31,-31v0,-21,-18,-30,-43,-28","w":259},"\u00b2":{"d":"28,-206r-19,0v0,-30,15,-49,49,-49v48,0,63,63,19,89v-18,11,-46,31,-48,49r75,0r0,16r-94,0v-7,-52,71,-66,74,-112v0,-18,-12,-26,-27,-26v-17,0,-28,12,-29,33","w":112},"\u00ae":{"d":"192,-50r-47,-70r-33,0r0,70r-18,0r0,-158v50,-1,112,-7,112,44v0,28,-18,40,-39,44r46,70r-21,0xm112,-192r0,56v34,-1,76,8,76,-28v-1,-36,-42,-27,-76,-28xm11,-129v0,-73,60,-132,133,-132v73,0,133,59,133,132v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133xm29,-129v0,63,52,115,115,115v63,0,115,-52,115,-115v0,-63,-52,-114,-115,-114v-63,0,-115,51,-115,114","w":288},"\u00f0":{"d":"34,-94v0,59,19,80,43,80v24,0,43,-21,43,-80v0,-59,-19,-79,-43,-79v-24,0,-43,20,-43,79xm42,-215r-13,-12r26,-16v-8,-9,-17,-16,-26,-24r17,-12v10,8,18,17,27,26r26,-15r13,11r-27,16v33,36,58,80,58,145v0,67,-24,100,-66,100v-42,0,-66,-34,-66,-98v0,-64,26,-97,62,-97v14,0,26,9,36,18v-12,-21,-27,-40,-42,-57"},"\u00d7":{"d":"176,-10r-68,-68r-68,68r-13,-13r68,-68r-68,-69r13,-12r68,68r68,-68r13,12r-68,69r68,68","w":216},"\u00b3":{"d":"43,-173v1,-6,-4,-17,6,-16v39,4,42,-49,6,-50v-14,0,-27,10,-27,27r-19,0v0,-26,14,-43,46,-43v50,0,61,63,18,73v50,11,39,84,-18,84v-30,0,-47,-15,-48,-44r20,0v0,13,10,28,28,28v14,0,31,-10,31,-31v0,-21,-18,-30,-43,-28","w":112},"\u00a9":{"d":"196,-101r20,0v-8,33,-34,57,-68,57v-49,0,-80,-37,-80,-85v0,-49,29,-83,79,-83v35,0,64,20,69,55r-20,0v-19,-65,-109,-37,-109,28v0,34,22,67,61,67v26,0,44,-17,48,-39xm11,-129v0,-73,60,-132,133,-132v73,0,133,59,133,132v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133xm29,-129v0,63,52,115,115,115v63,0,115,-52,115,-115v0,-63,-52,-114,-115,-114v-63,0,-115,51,-115,114","w":288},"\u00c1":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm102,-320r25,0r-35,51r-17,0","w":180},"\u00c2":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm66,-269r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":180},"\u00c4":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm52,-277r0,-37r22,0r0,37r-22,0xm106,-277r0,-37r22,0r0,37r-22,0","w":180},"\u00c0":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm53,-320r25,0r27,51r-17,0","w":180},"\u00c5":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm56,-300v0,-19,15,-34,34,-34v19,0,34,15,34,34v0,19,-15,35,-34,35v-19,0,-34,-16,-34,-35xm69,-300v0,12,9,22,21,22v12,0,21,-10,21,-22v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21","w":180},"\u00c3":{"d":"50,-94r80,0r-40,-145xm0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm122,-313r16,0v2,33,-36,45,-59,22v-13,-7,-19,4,-21,15r-16,0v0,-31,34,-46,57,-24v11,10,24,-1,23,-13","w":180},"\u00c7":{"d":"83,35v-11,-10,9,-21,13,-31v-50,-3,-78,-43,-78,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-37,0,-59,30,-59,113v0,83,22,114,59,114v32,0,50,-28,53,-72r23,0v-3,54,-27,87,-67,91v-3,6,-12,12,-11,17v18,-7,41,5,40,22v-2,32,-47,36,-71,23r5,-11v13,9,49,6,46,-10v1,-14,-25,-16,-35,-10","w":186},"\u00c9":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm98,-320r25,0r-35,51r-17,0","w":159},"\u00ca":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm63,-269r-22,0r35,-51r21,0r35,51r-22,0r-24,-36","w":159},"\u00cb":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm49,-277r0,-37r21,0r0,37r-21,0xm103,-277r0,-37r21,0r0,37r-21,0","w":159},"\u00c8":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm49,-320r26,0r27,51r-17,0","w":159},"\u00cd":{"d":"22,0r0,-257r23,0r0,257r-23,0xm45,-320r25,0r-35,51r-17,0","w":66},"\u00ce":{"d":"22,0r0,-257r23,0r0,257r-23,0xm9,-269r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":66},"\u00cf":{"d":"22,0r0,-257r23,0r0,257r-23,0xm-5,-277r0,-37r22,0r0,37r-22,0xm49,-277r0,-37r22,0r0,37r-22,0","w":66},"\u00cc":{"d":"22,0r0,-257r23,0r0,257r-23,0xm-4,-320r26,0r27,51r-18,0","w":66},"\u00d1":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0xm129,-313r16,0v2,32,-37,45,-59,22v-13,-7,-20,3,-22,15r-15,0v1,-31,33,-45,57,-24v11,10,24,-1,23,-13","w":193},"\u00d3":{"d":"18,-129v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,92,-29,133,-82,133v-53,0,-82,-41,-82,-133xm41,-129v0,83,22,114,59,114v37,0,59,-31,59,-114v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113xm112,-320r25,0r-35,51r-17,0","w":200},"\u00d4":{"d":"18,-129v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,92,-29,133,-82,133v-53,0,-82,-41,-82,-133xm41,-129v0,83,22,114,59,114v37,0,59,-31,59,-114v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113xm76,-269r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":200},"\u00d6":{"d":"18,-129v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,92,-29,133,-82,133v-53,0,-82,-41,-82,-133xm41,-129v0,83,22,114,59,114v37,0,59,-31,59,-114v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113xm62,-277r0,-37r22,0r0,37r-22,0xm116,-277r0,-37r22,0r0,37r-22,0","w":200},"\u00d2":{"d":"18,-129v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,92,-29,133,-82,133v-53,0,-82,-41,-82,-133xm41,-129v0,83,22,114,59,114v37,0,59,-31,59,-114v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113xm63,-320r26,0r27,51r-18,0","w":200},"\u00d5":{"d":"18,-129v0,-92,29,-132,82,-132v53,0,82,40,82,132v0,92,-29,133,-82,133v-53,0,-82,-41,-82,-133xm41,-129v0,83,22,114,59,114v37,0,59,-31,59,-114v0,-83,-22,-113,-59,-113v-37,0,-59,30,-59,113xm132,-313r16,0v2,33,-36,45,-59,22v-13,-7,-19,4,-21,15r-16,0v0,-31,34,-46,57,-24v11,10,24,-1,23,-13","w":200},"\u00da":{"d":"17,-72r0,-185r23,0r0,185v0,39,16,57,50,57v34,0,50,-18,50,-57r0,-185r23,0r0,185v0,54,-26,76,-73,76v-47,0,-73,-22,-73,-76xm102,-320r25,0r-35,51r-17,0","w":180},"\u00db":{"d":"17,-72r0,-185r23,0r0,185v0,39,16,57,50,57v34,0,50,-18,50,-57r0,-185r23,0r0,185v0,54,-26,76,-73,76v-47,0,-73,-22,-73,-76xm66,-269r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":180},"\u00dc":{"d":"17,-72r0,-185r23,0r0,185v0,39,16,57,50,57v34,0,50,-18,50,-57r0,-185r23,0r0,185v0,54,-26,76,-73,76v-47,0,-73,-22,-73,-76xm52,-277r0,-37r22,0r0,37r-22,0xm106,-277r0,-37r22,0r0,37r-22,0","w":180},"\u00d9":{"d":"17,-72r0,-185r23,0r0,185v0,39,16,57,50,57v34,0,50,-18,50,-57r0,-185r23,0r0,185v0,54,-26,76,-73,76v-47,0,-73,-22,-73,-76xm53,-320r25,0r27,51r-17,0","w":180},"\u00dd":{"d":"68,0r0,-103r-69,-154r24,0r57,128r56,-128r25,0r-70,154r0,103r-23,0xm91,-320r26,0r-35,51r-18,0","w":159},"\u00e1":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37xm88,-266r26,0r-36,51r-17,0"},"\u00e2":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37xm53,-215r-22,0r35,-51r21,0r35,51r-22,0r-23,-36"},"\u00e4":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37xm39,-222r0,-37r21,0r0,37r-21,0xm93,-222r0,-37r21,0r0,37r-21,0"},"\u00e0":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37xm40,-266r25,0r27,51r-17,0"},"\u00e5":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37xm42,-245v0,-19,16,-34,35,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-35,-15,-35,-34xm55,-245v0,12,10,21,22,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-22,9,-22,21"},"\u00e3":{"d":"39,-134r-22,0v0,-39,19,-61,59,-61v84,0,54,94,54,163v0,14,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-29,32,-50,32v-61,0,-65,-96,-10,-107v24,-12,59,0,59,-41v0,-24,-14,-33,-33,-33v-26,0,-36,15,-36,43xm64,-14v40,0,48,-47,44,-94v-18,22,-74,12,-74,57v0,22,11,37,30,37xm109,-258r16,0v1,22,-23,46,-45,29v-12,-9,-34,-17,-36,7r-16,0v1,-31,35,-46,58,-23v11,10,23,-2,23,-13"},"\u00e7":{"d":"60,35v-11,-10,9,-21,13,-31v-39,-1,-62,-29,-62,-100v0,-66,24,-99,66,-99v36,0,57,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49r22,0v-3,36,-22,62,-50,67v-3,6,-12,12,-12,17v18,-7,41,5,40,22v-1,32,-46,36,-70,23r4,-11v13,8,50,6,47,-10v1,-14,-25,-16,-35,-10","w":146},"\u00e9":{"d":"117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-66,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm36,-113r81,0v-1,-48,-13,-64,-40,-64v-27,0,-40,16,-41,64xm90,-266r26,0r-36,51r-17,0"},"\u00ea":{"d":"117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-66,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm36,-113r81,0v-1,-48,-13,-64,-40,-64v-27,0,-40,16,-41,64xm55,-215r-22,0r35,-51r21,0r35,51r-22,0r-24,-36"},"\u00eb":{"d":"117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-66,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm36,-113r81,0v-1,-48,-13,-64,-40,-64v-27,0,-40,16,-41,64xm41,-222r0,-37r21,0r0,37r-21,0xm95,-222r0,-37r21,0r0,37r-21,0"},"\u00e8":{"d":"117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-66,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm36,-113r81,0v-1,-48,-13,-64,-40,-64v-27,0,-40,16,-41,64xm41,-266r26,0r27,51r-17,0"},"\u00ed":{"d":"22,0r0,-191r22,0r0,191r-22,0xm45,-266r25,0r-35,51r-17,0","w":66},"\u00ee":{"d":"22,0r0,-191r22,0r0,191r-22,0xm9,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":66},"\u00ef":{"d":"22,0r0,-191r22,0r0,191r-22,0xm-5,-222r0,-37r22,0r0,37r-22,0xm49,-222r0,-37r22,0r0,37r-22,0","w":66},"\u00ec":{"d":"22,0r0,-191r22,0r0,191r-22,0xm-4,-266r26,0r27,51r-18,0","w":66},"\u00f1":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v22,-45,98,-42,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-67,2,-36,113,-43,177r-21,0xm112,-258r16,0v1,22,-23,46,-45,29v-12,-9,-34,-17,-35,7r-16,0v0,-31,34,-46,57,-23v11,10,24,-1,23,-13","w":159},"\u00f3":{"d":"11,-96v0,-66,24,-99,66,-99v42,0,66,33,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-96v0,61,19,82,43,82v24,0,43,-21,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm88,-266r26,0r-36,51r-17,0"},"\u00f4":{"d":"11,-96v0,-66,24,-99,66,-99v42,0,66,33,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-96v0,61,19,82,43,82v24,0,43,-21,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm53,-215r-22,0r35,-51r21,0r35,51r-22,0r-23,-36"},"\u00f6":{"d":"11,-96v0,-66,24,-99,66,-99v42,0,66,33,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-96v0,61,19,82,43,82v24,0,43,-21,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm39,-222r0,-37r21,0r0,37r-21,0xm93,-222r0,-37r21,0r0,37r-21,0"},"\u00f2":{"d":"11,-96v0,-66,24,-99,66,-99v42,0,66,33,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-96v0,61,19,82,43,82v24,0,43,-21,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm40,-266r25,0r27,51r-17,0"},"\u00f5":{"d":"11,-96v0,-66,24,-99,66,-99v42,0,66,33,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-96v0,61,19,82,43,82v24,0,43,-21,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm109,-258r16,0v1,22,-23,46,-45,29v-12,-9,-34,-17,-36,7r-16,0v1,-31,35,-46,58,-23v11,10,23,-2,23,-13"},"\u00fa":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-22,46,-98,43,-98,-20xm91,-266r26,0r-35,51r-18,0","w":159},"\u00fb":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-22,46,-98,43,-98,-20xm56,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":159},"\u00fc":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-22,46,-98,43,-98,-20xm42,-222r0,-37r22,0r0,37r-22,0xm96,-222r0,-37r22,0r0,37r-22,0","w":159},"\u00f9":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-22,46,-98,43,-98,-20xm43,-266r25,0r27,51r-17,0","w":159},"\u00fd":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-12,43,-25,50,-65,48r0,-18v32,7,41,-17,48,-43xm78,-266r26,0r-36,51r-17,0","w":133},"\u00ff":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-12,43,-25,50,-65,48r0,-18v32,7,41,-17,48,-43xm29,-222r0,-37r21,0r0,37r-21,0xm83,-222r0,-37r21,0r0,37r-21,0","w":133}}});
Cufon.registerFont({"w":213,"face":{"font-family":"levenim-mt","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 1 8 2 6 1 1 1 1 1","ascent":"288","descent":"-72","x-height":"5","bbox":"-21 -316.245 317 91.0661","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+00F7"},"glyphs":{" ":{"w":120},"!":{"d":"49,-84v-15,0,-20,-2,-20,-18r-2,-133v-1,-18,13,-16,29,-16v10,0,14,5,14,16r-2,133v-1,13,-5,18,-19,18xm48,-65v15,0,25,16,25,33v0,17,-10,32,-25,32v-16,0,-25,-15,-25,-32v0,-17,10,-33,25,-33","w":96},"\"":{"d":"136,-248v18,-9,55,-2,40,23r-53,87v-7,16,-33,21,-35,1v0,-2,12,-34,35,-96v3,-8,8,-13,13,-15xm59,-248v18,-9,56,-2,41,23r-53,87v-6,16,-34,19,-35,0v0,-2,12,-33,35,-95v3,-8,7,-13,12,-15","w":187},"#":{"d":"225,-61r-53,0r-14,65r-38,0r14,-65r-58,0r-14,65r-38,0r14,-65r-28,0r0,-38r36,0r10,-48r-46,0r0,-38r53,0r15,-66r38,0r-15,66r58,0r14,-66r38,0r-14,66r28,0r0,38r-36,0r-9,48r45,0r0,38xm152,-147r-58,0r-10,48r58,0","w":234},"$":{"d":"124,-251v21,3,65,17,65,34v1,9,-11,27,-19,26v-19,-8,-108,-46,-108,7v-8,28,95,56,91,59v53,30,34,125,-29,125v2,19,2,39,-18,39v-25,0,-24,-15,-22,-38v-20,-1,-70,-16,-69,-32v1,-8,9,-27,18,-26v21,7,106,45,107,-8v-11,-53,-122,-43,-122,-114v0,-41,27,-66,66,-71v-2,-19,-1,-42,19,-40v24,-2,24,19,21,39","w":204},"%":{"d":"218,-109v29,0,56,26,56,56v0,31,-25,56,-56,56v-31,0,-56,-26,-56,-56v-1,-29,27,-56,56,-56xm226,-255r-120,258r-42,0r119,-258r43,0xm71,-255v29,-1,57,27,56,56v0,30,-25,56,-56,56v-30,0,-56,-26,-56,-56v0,-31,26,-56,56,-56xm218,-28v14,0,25,-11,25,-25v0,-14,-12,-25,-25,-25v-13,0,-25,12,-25,25v0,13,11,25,25,25xm71,-174v14,0,25,-12,25,-25v0,-13,-12,-25,-25,-25v-13,0,-25,11,-25,25v0,14,11,25,25,25","w":289},"&":{"d":"147,-125v-2,-33,44,-17,72,-21r0,146v-84,-4,-198,23,-198,-66v0,-32,17,-52,51,-60v-23,-5,-42,-30,-42,-58v0,-45,37,-72,84,-72v38,0,77,26,82,49v1,6,-20,22,-26,22v-7,-1,-42,-35,-57,-30v-33,-5,-48,39,-27,60v10,10,45,1,39,27v8,42,-56,7,-56,56v0,46,63,29,107,32r0,-65v-23,1,-27,-2,-29,-20","w":252},"'":{"d":"60,-248v18,-8,56,-2,41,23r-53,87v-6,16,-34,19,-35,0v0,-2,12,-33,35,-95v3,-8,7,-13,12,-15","w":112},"(":{"d":"62,-119v0,65,26,113,43,153v0,18,-23,26,-36,10v-53,-65,-68,-198,-23,-287v16,-32,28,-47,40,-47v10,0,19,10,19,19v-17,42,-43,84,-43,152","w":115},")":{"d":"11,-271v-1,-10,9,-20,19,-19v23,-3,59,86,62,111v15,89,-5,170,-45,223v-12,16,-37,9,-36,-10v16,-41,43,-86,43,-153v0,-69,-25,-108,-43,-152","w":115},"*":{"d":"111,-199v17,-7,58,-27,61,5v2,19,-32,24,-50,29v8,10,27,32,27,42v-16,43,-47,-4,-56,-20v-9,12,-23,37,-37,38v-36,-5,-6,-44,8,-60v-18,-5,-51,-11,-49,-29v3,-31,43,-12,60,-5v-2,-23,-2,-60,18,-57v20,-4,21,34,18,57","w":186},"+":{"d":"200,-99r-73,0r0,73r-41,0r0,-73r-73,0r0,-41r73,0r0,-74r41,0r0,74r73,0r0,41"},",":{"d":"30,3v-5,-28,-14,-74,18,-77v54,10,13,130,-16,134v-8,-5,-13,-15,-20,-23v1,-6,20,-22,18,-34","w":96},"-":{"d":"165,-86r-150,0r0,-33r150,0r0,33","w":180},".":{"d":"48,-74v17,0,25,18,25,37v0,19,-8,37,-25,37v-34,-2,-32,-73,0,-74","w":96},"\/":{"d":"172,-255r-119,258r-42,0r119,-258r42,0","w":182},"0":{"d":"194,-122v0,84,-29,126,-87,126v-59,0,-88,-43,-88,-127v0,-88,30,-131,90,-131v57,0,85,44,85,132xm107,-34v33,0,42,-50,42,-92v0,-60,-14,-90,-42,-90v-32,0,-42,50,-42,92v0,60,14,90,42,90"},"1":{"d":"135,-38v31,1,65,-13,56,29v1,7,-4,9,-11,9r-130,0v-13,1,-11,-15,-10,-26v1,-22,35,-8,54,-12r0,-162v-27,-4,-76,16,-64,-30v9,-15,69,7,71,-24r34,0r0,216"},"2":{"d":"186,-183v0,69,-88,94,-114,146r82,0v-2,-20,6,-25,29,-25v7,0,10,3,9,10r-6,52r-168,0v3,-60,55,-96,93,-127v20,-17,29,-35,29,-52v0,-36,-45,-48,-66,-27v-10,6,-6,42,-21,41v-12,-1,-30,6,-30,-10v0,-48,34,-79,84,-79v45,0,79,27,79,71"},"3":{"d":"98,-254v47,0,83,21,83,65v0,27,-13,44,-39,54v31,13,46,35,46,66v1,47,-36,73,-84,73v-56,0,-84,-27,-84,-80v0,-13,18,-7,30,-8v5,-1,8,3,8,7v4,29,14,42,44,43v23,0,41,-15,40,-37v0,-24,-13,-39,-40,-43v-14,2,-7,-18,-7,-37v19,-6,40,-8,40,-34v0,-20,-12,-31,-36,-31v-26,0,-30,19,-43,31v-12,-1,-32,5,-32,-8v-1,-39,34,-61,74,-61"},"4":{"d":"162,-38v30,-1,43,-6,39,29v0,4,-3,10,-8,9r-113,0v-15,2,-14,-17,-12,-29v0,-9,2,-9,11,-9r44,0r0,-27r-99,0v-23,0,-18,-35,-7,-49r101,-133v6,-10,21,-6,35,-7v6,0,9,3,9,9r0,144v28,-4,46,0,38,32v-5,8,-26,2,-38,4r0,27xm123,-197v-6,10,-30,42,-71,96r71,0r0,-96"},"5":{"d":"74,-156v55,-33,115,11,115,74v0,52,-36,86,-87,86v-49,0,-83,-27,-83,-76v1,-10,22,-5,32,-6v4,0,9,0,8,6v4,25,14,37,41,38v25,0,43,-21,43,-47v0,-48,-38,-61,-70,-39v-13,-2,-35,5,-39,-5v0,-37,5,-88,8,-126r131,0v15,-2,8,12,10,32v-1,4,-4,6,-10,6r-96,0"},"6":{"d":"70,-152v53,-41,127,1,127,71v0,52,-32,85,-84,85v-60,0,-90,-43,-90,-126v0,-74,28,-132,94,-132v39,0,74,18,73,54v0,11,-24,4,-35,6v-13,-7,-15,-23,-38,-23v-31,0,-46,32,-47,65xm111,-35v25,0,41,-22,41,-47v1,-26,-15,-47,-41,-47v-26,0,-40,22,-40,47v0,25,16,47,40,47"},"7":{"d":"65,-213v-1,4,1,23,-8,24v-10,-1,-29,4,-29,-6v0,-2,2,-21,5,-56r152,0r0,35r-66,208v-4,11,-39,12,-48,3v3,-17,56,-166,72,-208r-78,0"},"8":{"d":"110,-254v74,-8,103,87,44,121v77,30,39,149,-48,137v-84,10,-125,-105,-47,-136v-60,-36,-31,-134,51,-122xm106,-150v19,0,36,-13,35,-33v0,-22,-12,-33,-35,-33v-22,-1,-34,12,-35,33v-1,20,15,33,35,33xm107,-35v26,0,42,-15,43,-38v0,-23,-19,-39,-43,-39v-24,0,-43,16,-43,39v0,25,17,38,43,38"},"9":{"d":"16,-170v0,-52,32,-84,84,-84v61,0,91,42,91,125v0,73,-29,132,-95,133v-40,1,-73,-18,-72,-55v1,-11,23,-4,34,-6v15,6,15,23,38,23v31,0,46,-33,48,-65v-53,41,-128,-1,-128,-71xm102,-121v25,1,42,-22,41,-48v0,-25,-18,-47,-41,-47v-25,0,-40,22,-40,47v0,26,15,48,40,48"},":":{"d":"53,-207v34,0,33,72,0,73v-34,-1,-35,-73,0,-73xm52,-74v17,0,25,18,25,37v0,19,-8,37,-25,37v-34,-2,-32,-73,0,-74","w":104},";":{"d":"52,-208v17,0,25,19,25,37v0,19,-8,37,-25,37v-33,-1,-33,-73,0,-74xm34,3v-6,-25,-16,-75,18,-77v55,11,12,129,-16,134v-10,-4,-14,-15,-21,-23v2,-6,21,-21,19,-34","w":104},"<":{"d":"200,-24r-187,-77r0,-38r187,-78r0,45r-131,52r131,52r0,44"},"=":{"d":"200,-140r-187,0r0,-41r187,0r0,41xm200,-59r-187,0r0,-42r187,0r0,42"},">":{"d":"200,-101r-187,77r0,-44r131,-52r-131,-52r0,-45r187,78r0,38"},"?":{"d":"83,-251v35,0,59,19,59,53v0,30,-45,73,-42,104v1,11,-6,13,-17,13v-17,0,-18,-6,-20,-24v-3,-24,41,-73,40,-91v5,-27,-35,-31,-41,-12v-4,14,-1,34,-21,32v-14,0,-18,-5,-18,-20v0,-33,25,-55,60,-55xm83,-65v15,0,25,16,25,33v0,21,-8,32,-25,32v-31,0,-33,-66,0,-65","w":165},"@":{"d":"140,-271v63,-1,125,51,125,113v0,53,-37,98,-90,104v-13,2,-22,-5,-22,-18v-34,39,-96,4,-96,-48v0,-62,79,-116,118,-61r4,-19r35,0r-20,115v0,4,3,6,7,6v24,-6,40,-38,40,-69v1,-57,-42,-95,-102,-97v-63,-2,-110,45,-112,111v-4,99,120,149,189,81r33,0v-27,35,-53,58,-109,58v-81,0,-139,-57,-139,-138v0,-81,58,-136,139,-138xm130,-92v20,1,36,-20,35,-41v0,-17,-10,-32,-28,-32v-38,0,-52,72,-7,73","w":266},"A":{"d":"258,0r-51,0r-21,-53r-105,0r-21,53r-51,0r99,-259r50,0xm168,-101r-34,-89r-35,89r69,0","w":266},"B":{"d":"30,-259v75,-3,140,1,142,67v0,20,-8,37,-26,50v76,31,48,154,-44,142r-72,0r0,-259xm125,-185v0,-22,-20,-29,-46,-27r0,55v27,2,46,-6,46,-28xm79,-47v34,1,64,-1,64,-30v0,-27,-26,-38,-64,-36r0,66","w":208},"C":{"d":"17,-130v0,-126,177,-183,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,51,35,89,89,89v37,0,55,-15,78,-37r33,35v-33,30,-58,49,-112,50v-79,2,-137,-57,-137,-137","w":280},"D":{"d":"88,-259v100,-5,147,45,147,133v0,84,-45,134,-146,126r-59,0r0,-259r58,0xm79,-48v71,6,104,-17,106,-79v1,-62,-38,-88,-106,-84r0,163","w":252},"E":{"d":"171,0r-141,0r0,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48","w":187},"F":{"d":"159,-116r-80,0r0,116r-49,0r0,-259r129,0r0,48r-80,0r0,47r80,0r0,48","w":172},"G":{"d":"67,-130v0,85,131,126,164,45r-75,0r0,-46r130,0v6,76,-55,141,-128,138v-83,-3,-138,-56,-140,-138v-2,-75,64,-134,139,-134v44,0,81,17,111,49r-34,34v-51,-65,-167,-32,-167,52","w":302},"H":{"d":"216,0r-50,0r0,-113r-87,0r0,113r-50,0r0,-259r50,0r0,98r87,0r0,-98r50,0r0,259","w":244},"I":{"d":"75,0r-49,0r0,-259r49,0r0,259","w":100},"J":{"d":"42,-64v22,28,52,34,52,-14r0,-181r49,0r0,172v17,102,-91,120,-136,56","w":172},"K":{"d":"218,0r-59,0r-79,-115r0,115r-50,0r0,-259r50,0r0,89r70,-89r59,0r-90,116","w":223},"L":{"d":"150,0r-120,0r0,-259r49,0r0,212r71,0r0,47","w":158},"M":{"d":"314,0r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0r44,-259r49,0r59,181r61,-181r48,0","w":323},"N":{"d":"237,0r-47,0r-111,-170r0,170r-49,0r0,-259r47,0r111,171r0,-171r49,0r0,259","w":266},"O":{"d":"152,-265v74,-2,133,63,133,137v0,74,-60,135,-133,135v-74,0,-137,-62,-135,-136v2,-79,56,-134,135,-136xm152,-41v47,1,84,-40,84,-88v0,-47,-38,-88,-85,-88v-49,0,-85,40,-85,89v0,49,38,86,86,87","w":302},"P":{"d":"29,-259v81,-3,158,-1,154,75v-3,56,-35,77,-104,74r0,110r-50,0r0,-259xm79,-158v30,0,56,1,56,-26v0,-26,-26,-26,-56,-26r0,52","w":201},"Q":{"d":"152,-265v111,-5,178,146,99,227r45,58r-58,0r-23,-29v-91,50,-202,-23,-198,-120v3,-78,56,-132,135,-136xm66,-128v0,59,61,105,119,80r-46,-60r58,0r24,30v39,-56,-2,-139,-69,-139v-50,0,-86,40,-86,89","w":302},"R":{"d":"33,-259v83,-3,154,0,154,75v0,34,-17,57,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259xm82,-158v30,1,57,2,57,-26v0,-27,-26,-27,-57,-26r0,52","w":208},"S":{"d":"68,-201v15,45,105,74,102,134v-2,43,-35,75,-80,74v-37,0,-64,-20,-83,-57r42,-25v12,23,26,35,42,35v28,-1,40,-30,17,-50v-32,-29,-88,-62,-89,-110v-1,-36,34,-66,71,-65v26,0,51,14,75,42r-36,32v-13,-18,-26,-27,-39,-27v-11,-1,-23,7,-22,17","w":187},"T":{"d":"147,-210r-47,0r0,210r-50,0r0,-210r-46,0r0,-49r143,0r0,49","w":151},"U":{"d":"114,-41v31,0,39,-16,39,-56r0,-162r50,0r0,155v6,75,-28,111,-88,111v-62,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,9,50,37,50","w":230},"V":{"d":"242,-259r-93,259r-48,0r-91,-259r50,0r66,184r65,-184r51,0","w":252},"W":{"d":"315,-259r-58,259r-47,0r-48,-167r-47,167r-47,0r-58,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0","w":323},"X":{"d":"237,0r-55,0r-60,-91r-59,91r-56,0r88,-133r-82,-126r55,0r54,83r55,-83r55,0r-82,126","w":244},"Y":{"d":"212,-259r-75,147r0,112r-50,0r0,-112r-76,-147r53,0r48,93r48,-93r52,0","w":223},"Z":{"d":"172,-259r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49r156,0","w":180},"[":{"d":"133,28v-2,34,-64,17,-97,21r0,-335v34,4,95,-13,97,21v2,23,-29,23,-54,22r0,249v25,-1,55,-1,54,22","w":143},"\\":{"d":"172,3r-42,0r-119,-258r42,0","w":182},"]":{"d":"108,49v-34,-4,-95,13,-97,-21v-2,-23,29,-23,54,-22r0,-249v-25,1,-55,1,-54,-22v2,-34,64,-17,97,-21r0,335","w":143},"^":{"d":"46,-147v-11,18,-34,11,-35,-8v17,-40,54,-67,78,-101v25,34,59,62,79,101v-1,18,-26,27,-36,8r-43,-51","w":178},"_":{"d":"225,73v0,12,-8,18,-24,18r-198,0v-16,0,-24,-6,-24,-18v0,-12,8,-18,24,-18r198,0v16,0,24,6,24,18","w":203},"`":{"d":"109,-226r-34,0r-65,-69r57,0","w":151},"a":{"d":"15,-95v0,-82,94,-135,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-58,60,-151,2,-151,-75xm115,-39v31,0,53,-25,53,-57v0,-31,-22,-56,-53,-56v-30,0,-52,25,-52,56v-1,31,22,57,52,57","w":237},"b":{"d":"72,-170v56,-60,150,-7,150,75v0,78,-92,135,-150,75r0,20r-48,0r0,-265r48,0r0,95xm122,-39v30,0,53,-26,52,-57v0,-31,-22,-56,-52,-56v-31,-1,-52,24,-52,56v0,31,21,57,52,57","w":237},"c":{"d":"15,-95v0,-101,147,-136,196,-58r-39,22v-33,-41,-109,-18,-109,37v0,56,79,73,109,33r37,26v-52,75,-194,38,-194,-60","w":230},"d":{"d":"15,-95v0,-82,94,-135,151,-75r0,-95r47,0r0,265r-47,0r0,-20v-58,60,-151,2,-151,-75xm115,-39v31,0,53,-25,53,-57v0,-31,-22,-56,-53,-56v-30,0,-52,25,-52,56v-1,31,22,57,52,57","w":237},"e":{"d":"114,-196v63,0,107,47,102,114r-154,0v3,46,71,60,101,26r40,19v-48,77,-188,41,-188,-58v0,-57,43,-102,99,-101xm168,-120v-10,-46,-92,-47,-104,0r104,0","w":230},"f":{"d":"18,-191v-9,-72,26,-90,81,-72r0,36v-16,-4,-31,-7,-32,12r-1,24r31,0r0,41r-31,0r0,150r-48,0r0,-150r-17,0r0,-41r17,0","w":100},"g":{"d":"16,-98v0,-81,93,-131,150,-72r0,-21r47,0r0,164v2,70,-34,102,-98,102v-52,0,-87,-21,-99,-61r53,0v16,23,82,21,92,-5v3,-6,5,-18,5,-33v-55,57,-150,5,-150,-74xm117,-43v30,0,51,-24,51,-55v0,-31,-22,-53,-52,-53v-29,0,-52,23,-52,53v0,32,22,55,53,55","w":237},"h":{"d":"72,-172v45,-45,122,-23,122,46r0,126r-47,0v-6,-55,21,-149,-33,-152v-57,-3,-39,91,-42,152r-48,0r0,-265r48,0r0,93","w":216},"i":{"d":"43,-270v17,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-31,-14,-31,-31v-1,-16,15,-31,31,-31xm67,0r-48,0r0,-191r48,0r0,191","w":86},"j":{"d":"47,-270v17,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-31,-14,-31,-31v0,-17,15,-31,31,-31xm71,6v4,62,-34,81,-86,62r0,-38v20,10,39,7,38,-20r0,-201r48,0r0,197","w":93},"k":{"d":"213,0r-59,0r-81,-88r0,88r-48,0r0,-265r48,0r0,153r70,-79r60,0r-82,92","w":208},"l":{"d":"67,0r-48,0r0,-265r48,0r0,265","w":86},"m":{"d":"188,-162v37,-58,129,-42,129,50r0,112r-48,0v-6,-54,21,-153,-33,-153v-57,0,-37,94,-41,153r-48,0v-5,-55,18,-153,-34,-153v-57,0,-38,94,-41,153r-48,0r0,-191r48,0r0,22v30,-36,95,-38,116,7","w":338},"n":{"d":"72,-172v46,-45,122,-24,122,46r0,126r-48,0v-7,-54,23,-150,-32,-152v-57,-2,-39,91,-42,152r-48,0r0,-191r48,0r0,19","w":216},"o":{"d":"114,-196v59,1,102,42,102,100v0,58,-42,99,-102,101v-55,1,-99,-47,-99,-100v0,-54,45,-102,99,-101xm115,-40v31,0,52,-25,52,-56v0,-32,-20,-55,-52,-55v-30,-1,-52,24,-52,55v0,32,21,56,52,56","w":230},"p":{"d":"72,-170v56,-60,150,-7,150,75v0,78,-92,135,-150,75r0,90r-48,0r0,-261r48,0r0,21xm122,-39v30,0,53,-26,52,-57v0,-31,-22,-56,-52,-56v-31,-1,-52,24,-52,56v0,31,21,57,52,57","w":237},"q":{"d":"15,-95v0,-82,94,-135,151,-75r0,-21r47,0r0,261r-47,0r0,-90v-58,60,-151,2,-151,-75xm115,-39v31,0,53,-25,53,-57v0,-31,-22,-56,-53,-56v-30,0,-52,25,-52,56v-1,31,22,57,52,57","w":237},"r":{"d":"101,-150v-37,-16,-40,30,-40,73r0,77r-48,0r0,-191r41,0r0,24v12,-25,35,-36,62,-24","w":115},"s":{"d":"16,-141v0,-62,95,-73,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-24,2,-20,18,0,28v32,15,66,28,66,70v0,68,-105,79,-136,27r30,-32v13,15,26,22,40,22v28,-2,26,-27,0,-37v-31,-12,-63,-37,-63,-66","w":158},"t":{"d":"106,-150r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71r48,0r0,71r28,0r0,41","w":107},"u":{"d":"108,-40v57,2,30,-96,36,-151r48,0r0,81v2,80,-21,110,-84,115v-94,6,-86,-99,-84,-196r49,0v6,56,-22,149,35,151","w":216},"v":{"d":"198,-191r-82,191r-31,0r-81,-191r49,0r48,113r48,-113r49,0","w":201},"w":{"d":"285,-191r-70,191r-30,0r-41,-109r-42,109r-30,0r-69,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0","w":287},"x":{"d":"201,0r-55,0r-46,-63r-45,63r-55,0r73,-101r-66,-90r56,0r37,52r38,-52r55,0r-65,90","w":201},"y":{"d":"206,-191r-120,261r-50,0r40,-84r-73,-177r49,0r50,120r55,-120r49,0","w":208},"z":{"d":"163,-191r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40r147,0","w":165},"{":{"d":"97,-7v0,25,39,12,36,39v-1,12,-11,21,-23,21v-29,1,-57,-28,-56,-57r0,-77v3,-27,-40,-11,-35,-39v-5,-27,35,-12,35,-38r0,-76v-1,-29,27,-57,56,-56v12,0,22,9,23,21v3,27,-36,14,-36,39v0,39,8,90,-13,110v22,21,13,73,13,113","w":143},"|":{"d":"36,-272v-2,-21,35,-24,35,-5r1,312v2,22,-35,24,-35,5","w":108},"}":{"d":"89,-158v-3,26,41,10,35,38v5,27,-35,12,-35,39r0,77v1,29,-27,58,-56,57v-12,0,-22,-9,-22,-21v0,-27,35,-14,35,-39v0,-40,-9,-92,13,-113v-22,-20,-13,-71,-13,-110v0,-25,-35,-12,-35,-39v0,-12,10,-21,22,-21v29,-1,57,27,56,56r0,76","w":143},"~":{"d":"65,-162v18,0,70,28,88,28v16,0,33,-9,52,-27r0,45v-19,17,-38,25,-56,25v-17,4,-66,-29,-87,-28v-17,0,-35,8,-54,26r0,-44v19,-17,38,-25,57,-25"},"\u00a0":{"w":270},"\u00a1":{"d":"48,-160v15,0,25,15,25,32v0,17,-10,33,-25,33v-15,0,-25,-16,-25,-33v0,-17,9,-32,25,-32xm49,-76v14,0,18,5,19,18r2,133v2,18,-14,16,-30,16v-9,0,-13,-5,-13,-16r2,-133v0,-16,5,-18,20,-18","w":96},"\u00a2":{"d":"48,-15v-66,-61,-30,-199,79,-180r17,-38r28,12r-17,37v13,8,23,17,30,28r-39,24v-3,-4,-7,-8,-10,-11r-44,102v23,7,42,1,57,-14r31,30v-26,27,-64,37,-106,25r-20,43r-27,-12xm109,-153v-43,0,-57,52,-40,90","w":201},"\u00a3":{"d":"184,-44v23,0,30,2,30,22v0,20,-7,22,-32,22r-147,0v-19,-1,-23,-4,-24,-23v-2,-23,17,-21,39,-21r0,-60v-22,0,-42,2,-39,-23v-2,-24,17,-21,39,-20v-6,-68,13,-109,75,-109v26,0,79,19,79,43v0,7,-15,24,-22,23v-6,-1,-44,-28,-55,-24v-34,-1,-34,28,-33,67v25,0,57,-7,53,22v3,25,-30,23,-53,21r0,60r90,0","w":224},"\u00a4":{"d":"200,-75r-21,22r-19,-19v-31,24,-72,24,-104,0r-18,19r-21,-22r18,-18v-22,-31,-21,-72,0,-102r-18,-18r21,-22r19,18v32,-22,71,-23,103,0r18,-18r21,22r-18,17v22,31,23,73,0,103xm108,-88v30,0,55,-25,55,-56v0,-30,-24,-56,-54,-56v-31,0,-56,26,-56,57v0,29,26,55,55,55","w":216},"\u00a5":{"d":"193,-259r-54,122r46,0r0,29r-59,0r0,22r59,0r0,30r-59,0r0,56r-50,0r0,-56r-60,0r0,-30r60,0r0,-22r-60,0r0,-29r47,0r-55,-122r52,0r41,92r41,-92r51,0","w":201},"\u00a6":{"d":"122,-140r-28,9r0,-134r28,0r0,125xm122,70r-28,0r0,-160r28,-10r0,170","w":216},"\u00a7":{"d":"99,-291v47,0,124,35,73,63v-20,-7,-103,-52,-106,3v-8,24,97,60,89,60v41,25,42,69,7,100v51,42,11,119,-58,119v-24,0,-86,-17,-84,-36v-1,-7,10,-26,18,-25v19,8,102,50,104,-5v-11,-50,-126,-49,-123,-113v0,-17,9,-33,27,-49v-49,-41,-12,-117,53,-117xm130,-83v43,-36,-26,-62,-55,-74v-39,37,27,62,55,74","w":208},"\u00a8":{"d":"129,-277v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26xm51,-277v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26","w":180},"\u00a9":{"d":"133,-267v78,0,135,56,135,134v0,78,-57,134,-135,134v-77,0,-134,-57,-134,-134v0,-77,57,-134,134,-134xm133,-27v60,0,106,-43,107,-106v2,-58,-49,-108,-107,-106v-62,2,-107,45,-107,106v0,62,46,106,107,106xm93,-136v-7,49,67,80,79,28r31,0v-3,30,-31,53,-64,53v-45,1,-76,-35,-76,-80v-1,-43,31,-78,75,-78v36,0,57,18,65,52r-31,0v-16,-51,-84,-23,-79,25","w":266},"\u00aa":{"d":"8,-202v0,-44,40,-85,73,-50r0,-10r35,0r0,120r-35,0r0,-10v-33,33,-73,-8,-73,-50xm63,-171v13,1,19,-16,19,-31v0,-15,-6,-32,-19,-32v-25,1,-26,63,0,63","w":129},"\u00ab":{"d":"161,0r-45,0r-32,-95r32,-96r45,0r-32,96xm81,0r-44,0r-33,-95r33,-96r44,0r-32,96","w":165},"\u00ac":{"d":"196,-70r-44,0r0,-75r-132,0r0,-44r176,0r0,119","w":216},"\u00ad":{"d":"196,-107r-176,0r0,-44r176,0r0,44","w":216},"\u00ae":{"d":"133,-267v78,0,135,56,135,134v0,78,-57,134,-135,134v-77,0,-134,-57,-134,-134v0,-77,57,-134,134,-134xm133,-27v62,0,105,-43,107,-105v2,-58,-48,-107,-106,-107v-59,0,-110,49,-108,106v2,61,46,106,107,106xm177,-130v25,7,6,57,24,71r-37,0v-10,-20,7,-64,-28,-57r-26,0r0,57r-32,0r0,-147v52,2,120,-13,116,43v0,14,-6,25,-17,33xm110,-143v23,-1,53,6,53,-18v0,-23,-31,-16,-53,-17r0,35","w":266},"\u00af":{"d":"126,-226r-101,0r0,-39r101,0r0,39","w":151},"\u00b0":{"d":"71,-255v30,0,56,25,56,56v0,29,-26,56,-56,56v-30,0,-56,-26,-56,-56v0,-30,27,-57,56,-56xm71,-172v15,0,27,-12,27,-27v0,-14,-13,-27,-27,-27v-14,0,-27,13,-27,27v0,14,13,27,27,27","w":141},"\u00b1":{"d":"200,-99r-73,0r0,61r-41,0r0,-61r-73,0r0,-41r73,0r0,-74r41,0r0,74r73,0r0,41xm200,25r-187,0r0,-42r187,0r0,42"},"\u00b2":{"d":"141,-264v0,50,-65,66,-82,104r59,0v0,-18,4,-17,21,-17v5,0,7,2,6,7r-4,37r-121,0v1,-61,88,-75,88,-128v0,-18,-9,-27,-26,-27v-35,0,-15,42,-52,36v-5,1,-6,-3,-6,-7v0,-35,25,-57,60,-57v32,0,57,20,57,52","w":165},"\u00b3":{"d":"78,-316v56,-5,83,68,31,86v22,9,33,25,33,47v1,34,-27,52,-61,52v-40,0,-60,-19,-60,-57v0,-10,14,-5,22,-6v11,12,9,36,37,36v17,0,27,-12,29,-27v3,-26,-23,-24,-35,-35v-7,-35,30,-17,30,-46v0,-15,-9,-22,-26,-22v-26,0,-18,28,-47,22v-4,0,-6,-1,-6,-5v-1,-28,26,-42,53,-45","w":165},"\u00b4":{"d":"141,-295r-65,69r-34,0r42,-69r57,0","w":151},"\u00b5":{"d":"104,-36v59,0,34,-97,39,-155r49,0r0,191r-49,0r0,-22v-16,36,-62,36,-79,1r0,91r-49,0r0,-261r49,0v5,60,-21,155,40,155","w":207},"\u00b6":{"d":"97,-125v-43,0,-68,-26,-68,-69v0,-76,79,-75,157,-72r0,20r-15,0r0,313r-24,0r0,-313r-26,0r0,313r-24,0r0,-192","w":216},"\u00b7":{"d":"50,-157v16,0,28,12,28,28v0,16,-12,27,-28,27v-15,0,-27,-12,-27,-27v0,-16,11,-28,27,-28","w":100},"\u00b8":{"d":"74,5v13,3,25,13,25,27v-2,37,-50,42,-84,27r6,-23v14,5,43,8,43,-8v1,-10,-13,-10,-24,-10r6,-21r30,0","w":122},"\u00b9":{"d":"106,-160v19,0,46,-11,40,20v1,5,-3,8,-8,7r-93,0v-10,1,-8,-10,-8,-19v1,-15,26,-6,39,-8r0,-117v-23,-3,-53,14,-45,-21v10,-10,49,4,51,-17r24,0r0,155","w":165},"\u00ba":{"d":"64,-265v33,0,58,30,58,63v0,33,-25,62,-58,62v-31,0,-56,-29,-56,-62v0,-33,24,-63,56,-63xm65,-171v27,-1,28,-62,0,-62v-14,-1,-22,16,-22,31v0,15,8,31,22,31","w":129},"\u00bb":{"d":"161,-96r-32,96r-45,0r33,-96r-33,-95r45,0xm81,-96r-32,96r-45,0r33,-96r-33,-95r45,0","w":165},"\u00bc":{"d":"254,-62v23,-6,27,19,14,26r-14,1v0,18,6,39,-18,35v-17,1,-12,-19,-12,-35v-30,0,-80,6,-53,-34v18,-26,35,-53,59,-74v12,0,25,-1,24,11r0,70xm224,-255r-119,258r-43,0r120,-258r42,0xm73,-141v18,0,32,-5,30,17v-1,11,-2,12,-13,12r-65,0v-11,-1,-10,-4,-11,-17v-1,-15,16,-14,29,-12r0,-76v-19,0,-36,4,-34,-19v2,-18,38,-1,39,-19r25,0r0,114xm224,-62r0,-34r-26,34r26,0","w":278},"\u00bd":{"d":"242,-29v1,-12,4,-13,18,-13v18,0,4,29,5,42r-97,0v7,-41,15,-48,49,-74v16,-12,25,-38,1,-40v-24,-2,-5,34,-36,27v-7,0,-11,-3,-11,-9v0,-27,21,-47,49,-47v26,0,46,17,46,43v0,36,-42,50,-56,71r32,0xm218,-255r-119,258r-43,0r119,-258r43,0xm73,-141v18,0,32,-5,30,17v-1,11,-2,12,-13,12r-65,0v-11,-1,-10,-4,-11,-17v-1,-15,16,-14,29,-12r0,-76v-19,0,-36,4,-34,-19v2,-18,38,-1,39,-19r25,0r0,114","w":278},"\u00be":{"d":"254,-62v23,-6,27,19,14,26r-14,1v0,18,6,39,-18,35v-15,1,-13,-19,-12,-35v-23,-4,-64,13,-59,-19v13,-31,39,-55,56,-82v6,-10,33,-12,33,4r0,70xm224,-255r-119,258r-42,0r119,-258r42,0xm55,-255v41,0,64,44,33,68v35,22,15,76,-31,76v-33,0,-49,-15,-49,-45v-1,-10,9,-10,19,-10v14,0,10,30,28,26v31,-6,15,-34,-6,-34v-1,-1,-2,-7,-2,-17v0,-13,22,-10,22,-23v0,-8,-5,-12,-14,-12v-15,0,-14,23,-35,17v-6,0,-9,-3,-9,-9v0,-23,20,-37,44,-37xm224,-62r0,-34r-25,34r25,0","w":278},"\u00bf":{"d":"82,-170v16,-1,25,16,25,32v0,17,-9,32,-25,32v-15,0,-25,-15,-25,-32v0,-21,8,-32,25,-32xm107,16v5,-16,40,-16,35,9v0,33,-25,56,-60,56v-34,0,-59,-20,-59,-54v0,-30,45,-73,42,-104v-1,-10,6,-12,17,-12v17,1,18,5,20,23v3,24,-40,73,-40,91v-5,27,37,32,41,13","w":165},"\u00d7":{"d":"196,-179r-60,60r60,59r-30,29r-59,-59r-60,59r-29,-29r60,-59r-61,-61r29,-29r61,60r60,-60"},"\u00f7":{"d":"106,-214v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24xm200,-100r-187,0r0,-39r187,0r0,39xm106,-75v13,0,25,11,25,24v0,14,-11,25,-25,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24"}}});
var map=new Array();var lLat=new Array();var lLng=new Array();function GoogleMap(oObject){this.sMap='';this.lLat=-1;this.lLng=-1;this.sKunde='';this.sKundeStrasse='';this.sKundeAdresse='';this.sKundeTel='';this.sKundeFax='';this.sUnbekannteAdresse='';this.sAnfragenichtbearbeitet='';this.sStartpunkt='';this.sKeyungultig='';this.sunbekannterFehler='';var sMap='';var gdir=null;var sKunde='';var sKundeStrasse='';var sKundeAdresse='';var sKundeTel='';var sKundeFax='';var sUnbekannteAdresse='';var sAnfragenichtbearbeitet='';var sStartpunkt='';var sKeyungultig='';var sunbekannterFehler='';GoogleMap.prototype.load=function(){if(GBrowserIsCompatible()){map[oObject]=new GMap2(document.getElementById(sMap));map[oObject].setCenter(new GLatLng(lLat[oObject],lLng[oObject]),10);map[oObject].addControl(new GSmallMapControl());map[oObject].addControl(new GMapTypeControl());map[oObject].setMapType(G_NORMAL_MAP);function createMarker(point,number){var marker=new GMarker(point);GEvent.addListener(marker,"click",function(){marker.openInfoWindowHtml("<div style=\"width:290px;\"><div style=\"float:left; color: #232323;\"><strong>"+sKunde+"</strong><br />"+sKundeStrasse+"<br />"+sKundeAdresse+"<br/><br/>"+sKundeTel+"<br/>"+sKundeFax+"<br /><br /></div></div>")});return marker};var bounds=map[oObject].getBounds();var southWest=bounds.getSouthWest();var northEast=bounds.getNorthEast();var point=new GLatLng(lLat[oObject],lLng[oObject]);map[oObject].addOverlay(createMarker(point,1))}};GoogleMap.prototype.setDirections=function(oObject,fromStreet,fromZip,fromCity,fromCountry,locale,sDirections){document.getElementById(sDirections).innerHTML='';fromStreet+=',';fromZip+=',';fromCity+=',';fromAddress=fromStreet+" "+fromZip+" "+fromCity+" "+fromCountry;gdir=new GDirections(map[oObject],document.getElementById(sDirections));GEvent.addListener(gdir,"load",onGDirectionsLoad);GEvent.addListener(gdir,"error",this.handleErrors);gdir.load("from: "+fromAddress+" to: "+lLat[oObject]+", "+lLng[oObject],{"locale":locale});document.getElementById(sDirections).style.display='block'};GoogleMap.prototype.handleErrors=function(){if(gdir.getStatus().code==G_GEO_UNKNOWN_ADDRESS){alert(sUnbekannteAdresse)}else if(gdir.getStatus().code==G_GEO_SERVER_ERROR){alert(sAnfragenichtbearbeitet)}else if(gdir.getStatus().code==G_GEO_MISSING_QUERY){alert(sStartpunkt)}else if(gdir.getStatus().code==G_GEO_BAD_KEY){alert(sKeyungultig)}else if(gdir.getStatus().code==G_GEO_BAD_REQUEST){alert(sAnfragenichtbearbeitet)}else{alert(sunbekannterFehler)}};function onGDirectionsLoad(){};GoogleMap.prototype.init=function(){sMap=this.sMap;lLat[oObject]=this.lLat;lLng[oObject]=this.lLng;sKunde=this.sKunde;sKundeStrasse=this.sKundeStrasse;sKundeAdresse=this.sKundeAdresse;sKundeTel=this.sKundeTel;sKundeFax=this.sKundeFax;sUnbekannteAdresse=this.sUnbekannteAdresse;sAnfragenichtbearbeitet=this.sAnfragenichtbearbeitet;sStartpunkt=this.sStartpunkt;sKeyungultig=this.sKeyungultig;sunbekannterFehler=this.sunbekannterFehler;if(window.addEventListener){window.addEventListener("load",this.load,false);window.addEventListener("unload",GUnload,false)}else if(window.attachEvent){window.attachEvent("onload",this.load);window.attachEvent("onunload",GUnload)}}}
