/* JS: jquery*/
/*!
 * jQuery JavaScript Library v1.5.2
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2011, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Thu Mar 31 15:28:23 2011 -0400
 */
(function(window,undefined){var document=window.document;var jQuery=(function(){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context,rootjQuery);},_jQuery=window.jQuery,_$=window.$,rootjQuery,quickExpr=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,rnotwhite=/\S/,trimLeft=/^\s+/,trimRight=/\s+$/,rdigit=/\d/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,rvalidchars=/^[\],:{}\s]*$/,rvalidescape=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,rvalidtokens=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rwebkit=/(webkit)[ \/]([\w.]+)/,ropera=/(opera)(?:.*version)?[ \/]([\w.]+)/,rmsie=/(msie) ([\w.]+)/,rmozilla=/(mozilla)(?:.*? rv:([\w.]+))?/,userAgent=navigator.userAgent,browserMatch,readyList,DOMContentLoaded,toString=Object.prototype.toString,hasOwn=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,trim=String.prototype.trim,indexOf=Array.prototype.indexOf,class2type={};jQuery.fn=jQuery.prototype={constructor:jQuery,init:function(selector,context,rootjQuery){var match,elem,ret,doc;if(!selector){return this;}if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}if(selector==="body"&&!context&&document.body){this.context=document;this[0]=document.body;this.selector="body";this.length=1;return this;}if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){context=context instanceof jQuery?context[0]:context;doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=jQuery.buildFragment([match[1]],[doc]);selector=(ret.cacheable?jQuery.clone(ret.fragment):ret.fragment).childNodes;}return jQuery.merge(this,selector);}else{elem=document.getElementById(match[2]);if(elem&&elem.parentNode){if(elem.id!==match[2]){return rootjQuery.find(selector);}this.length=1;this[0]=elem;}this.context=document;this.selector=selector;return this;}}else{if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return this.constructor(context).find(selector);}}}else{if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}}if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}return jQuery.makeArray(selector,this);},selector:"",jquery:"1.5.2",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this[this.length+num]:this[num]);},pushStack:function(elems,name,selector){var ret=this.constructor();if(jQuery.isArray(elems)){push.apply(ret,elems);}else{jQuery.merge(ret,elems);}ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else{if(name){ret.selector=this.selector+"."+name+"("+selector+")";}}return ret;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();readyList.done(fn);return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||this.constructor(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}if(typeof target!=="object"&&!jQuery.isFunction(target)){target={};}if(length===i){target=this;--i;}for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue;}if(deep&&copy&&(jQuery.isPlainObject(copy)||(copyIsArray=jQuery.isArray(copy)))){if(copyIsArray){copyIsArray=false;clone=src&&jQuery.isArray(src)?src:[];}else{clone=src&&jQuery.isPlainObject(src)?src:{};}target[name]=jQuery.extend(deep,clone,copy);}else{if(copy!==undefined){target[name]=copy;}}}}}return target;};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery;}return jQuery;},isReady:false,readyWait:1,ready:function(wait){if(wait===true){jQuery.readyWait--;}if(!jQuery.readyWait||(wait!==true&&!jQuery.isReady)){if(!document.body){return setTimeout(jQuery.ready,1);}jQuery.isReady=true;if(wait!==true&&--jQuery.readyWait>0){return;}readyList.resolveWith(document,[jQuery]);if(jQuery.fn.trigger){jQuery(document).trigger("ready").unbind("ready");}}},bindReady:function(){if(readyList){return;}readyList=jQuery._Deferred();if(document.readyState==="complete"){return setTimeout(jQuery.ready,1);}if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else{if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}}},isFunction:function(obj){return jQuery.type(obj)==="function";},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array";},isWindow:function(obj){return obj&&typeof obj==="object"&&"setInterval" in obj;},isNaN:function(obj){return obj==null||!rdigit.test(obj)||isNaN(obj);},type:function(obj){return obj==null?String(obj):class2type[toString.call(obj)]||"object";},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false;}if(obj.constructor&&!hasOwn.call(obj,"constructor")&&!hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false;}var key;for(key in obj){}return key===undefined||hasOwn.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}data=jQuery.trim(data);if(rvalidchars.test(data.replace(rvalidescape,"@").replace(rvalidtokens,"]").replace(rvalidbraces,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))();}else{jQuery.error("Invalid JSON: "+data);}},parseXML:function(data,xml,tmp){if(window.DOMParser){tmp=new DOMParser();xml=tmp.parseFromString(data,"text/xml");}else{xml=new ActiveXObject("Microsoft.XMLDOM");xml.async="false";xml.loadXML(data);}tmp=xml.documentElement;if(!tmp||!tmp.nodeName||tmp.nodeName==="parsererror"){jQuery.error("Invalid XML: "+data);}return xml;},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){var head=document.head||document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");if(jQuery.support.scriptEval()){script.appendChild(document.createTextNode(data));}else{script.text=data;}head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()===name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length,isObj=length===undefined||jQuery.isFunction(object);if(args){if(isObj){for(name in object){if(callback.apply(object[name],args)===false){break;}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break;}}}}else{if(isObj){for(name in object){if(callback.call(object[name],name,object[name])===false){break;}}}else{for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}}return object;},trim:trim?function(text){return text==null?"":trim.call(text);}:function(text){return text==null?"":text.toString().replace(trimLeft,"").replace(trimRight,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){var type=jQuery.type(array);if(array.length==null||type==="string"||type==="function"||type==="regexp"||jQuery.isWindow(array)){push.call(ret,array);}else{jQuery.merge(ret,array);}}return ret;},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem);}for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i;}}return -1;},merge:function(first,second){var i=first.length,j=0;if(typeof second.length==="number"){for(var l=second.length;j<l;j++){first[i++]=second[j];}}else{while(second[j]!==undefined){first[i++]=second[j++];}}first.length=i;return first;},grep:function(elems,callback,inv){var ret=[],retVal;inv=!!inv;for(var i=0,length=elems.length;i<length;i++){retVal=!!callback(elems[i],i);if(inv!==retVal){ret.push(elems[i]);}}return ret;},map:function(elems,callback,arg){var ret=[],value;for(var i=0,length=elems.length;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}return ret.concat.apply([],ret);},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;fn=thisObject[proxy];proxy=undefined;}else{if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;proxy=undefined;}}}if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments);};}if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;}return proxy;},access:function(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){jQuery.access(elems,k,key[k],exec,fn,value);}return elems;}if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}return elems;}return length?fn(elems[0],key):undefined;},now:function(){return(new Date()).getTime();},uaMatch:function(ua){ua=ua.toLowerCase();var match=rwebkit.exec(ua)||ropera.exec(ua)||rmsie.exec(ua)||ua.indexOf("compatible")<0&&rmozilla.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},sub:function(){function jQuerySubclass(selector,context){return new jQuerySubclass.fn.init(selector,context);}jQuery.extend(true,jQuerySubclass,this);jQuerySubclass.superclass=this;jQuerySubclass.fn=jQuerySubclass.prototype=this();jQuerySubclass.fn.constructor=jQuerySubclass;jQuerySubclass.subclass=this.subclass;jQuerySubclass.fn.init=function init(selector,context){if(context&&context instanceof jQuery&&!(context instanceof jQuerySubclass)){context=jQuerySubclass(context);}return jQuery.fn.init.call(this,selector,context,rootjQuerySubclass);};jQuerySubclass.fn.init.prototype=jQuerySubclass.fn;var rootjQuerySubclass=jQuerySubclass(document);return jQuerySubclass;},browser:{}});jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,name){class2type["[object "+name+"]"]=name.toLowerCase();});browserMatch=jQuery.uaMatch(userAgent);if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;jQuery.browser.version=browserMatch.version;}if(jQuery.browser.webkit){jQuery.browser.safari=true;}if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem);};}if(rnotwhite.test("\xA0")){trimLeft=/^[\s\xA0]+/;trimRight=/[\s\xA0]+$/;}rootjQuery=jQuery(document);if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready();};}else{if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready();}};}}function doScrollCheck(){if(jQuery.isReady){return;}try{document.documentElement.doScroll("left");}catch(e){setTimeout(doScrollCheck,1);return;}jQuery.ready();}return jQuery;})();var promiseMethods="then done fail isResolved isRejected promise".split(" "),sliceDeferred=[].slice;jQuery.extend({_Deferred:function(){var callbacks=[],fired,firing,cancelled,deferred={done:function(){if(!cancelled){var args=arguments,i,length,elem,type,_fired;if(fired){_fired=fired;fired=0;}for(i=0,length=args.length;i<length;i++){elem=args[i];type=jQuery.type(elem);if(type==="array"){deferred.done.apply(deferred,elem);}else{if(type==="function"){callbacks.push(elem);}}}if(_fired){deferred.resolveWith(_fired[0],_fired[1]);}}return this;},resolveWith:function(context,args){if(!cancelled&&!fired&&!firing){args=args||[];firing=1;try{while(callbacks[0]){callbacks.shift().apply(context,args);}}finally{fired=[context,args];firing=0;}}return this;},resolve:function(){deferred.resolveWith(this,arguments);return this;},isResolved:function(){return !!(firing||fired);},cancel:function(){cancelled=1;callbacks=[];return this;}};return deferred;},Deferred:function(func){var deferred=jQuery._Deferred(),failDeferred=jQuery._Deferred(),promise;jQuery.extend(deferred,{then:function(doneCallbacks,failCallbacks){deferred.done(doneCallbacks).fail(failCallbacks);return this;},fail:failDeferred.done,rejectWith:failDeferred.resolveWith,reject:failDeferred.resolve,isRejected:failDeferred.isResolved,promise:function(obj){if(obj==null){if(promise){return promise;}promise=obj={};}var i=promiseMethods.length;while(i--){obj[promiseMethods[i]]=deferred[promiseMethods[i]];}return obj;}});deferred.done(failDeferred.cancel).fail(deferred.cancel);delete deferred.cancel;if(func){func.call(deferred,deferred);}return deferred;},when:function(firstParam){var args=arguments,i=0,length=args.length,count=length,deferred=length<=1&&firstParam&&jQuery.isFunction(firstParam.promise)?firstParam:jQuery.Deferred();function resolveFunc(i){return function(value){args[i]=arguments.length>1?sliceDeferred.call(arguments,0):value;if(!(--count)){deferred.resolveWith(deferred,sliceDeferred.call(args,0));}};}if(length>1){for(;i<length;i++){if(args[i]&&jQuery.isFunction(args[i].promise)){args[i].promise().then(resolveFunc(i),deferred.reject);}else{--count;}}if(!count){deferred.resolveWith(deferred,args);}}else{if(deferred!==firstParam){deferred.resolveWith(deferred,length?[firstParam]:[]);}}return deferred.promise();}});(function(){jQuery.support={};var div=document.createElement("div");div.style.display="none";div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0],select=document.createElement("select"),opt=select.appendChild(document.createElement("option")),input=div.getElementsByTagName("input")[0];if(!all||!all.length||!a){return;}jQuery.support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:input.value==="on",optSelected:opt.selected,deleteExpando:true,optDisabled:false,checkClone:false,noCloneEvent:true,noCloneChecked:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true,reliableMarginRight:true};input.checked=true;jQuery.support.noCloneChecked=input.cloneNode(true).checked;select.disabled=true;jQuery.support.optDisabled=!opt.disabled;var _scriptEval=null;jQuery.support.scriptEval=function(){if(_scriptEval===null){var root=document.documentElement,script=document.createElement("script"),id="script"+jQuery.now();try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}root.insertBefore(script,root.firstChild);if(window[id]){_scriptEval=true;delete window[id];}else{_scriptEval=false;}root.removeChild(script);}return _scriptEval;};try{delete div.test;}catch(e){jQuery.support.deleteExpando=false;}if(!div.addEventListener&&div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}div=document.createElement("div");div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;jQuery(function(){var div=document.createElement("div"),body=document.getElementsByTagName("body")[0];if(!body){return;}div.style.width=div.style.paddingLeft="1px";body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;if("zoom" in div.style){div.style.display="inline";div.style.zoom=1;jQuery.support.inlineBlockNeedsLayout=div.offsetWidth===2;div.style.display="";div.innerHTML="<div style='width:4px;'></div>";jQuery.support.shrinkWrapBlocks=div.offsetWidth!==2;}div.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var tds=div.getElementsByTagName("td");jQuery.support.reliableHiddenOffsets=tds[0].offsetHeight===0;tds[0].style.display="";tds[1].style.display="none";jQuery.support.reliableHiddenOffsets=jQuery.support.reliableHiddenOffsets&&tds[0].offsetHeight===0;div.innerHTML="";if(document.defaultView&&document.defaultView.getComputedStyle){div.style.width="1px";div.style.marginRight="0";jQuery.support.reliableMarginRight=(parseInt((document.defaultView.getComputedStyle(div,null)||{marginRight:0}).marginRight,10)||0)===0;}body.removeChild(div).style.display="none";div=tds=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;if(!el.attachEvent){return true;}var isSupported=(eventName in el);if(!isSupported){el.setAttribute(eventName,"return;");isSupported=typeof el[eventName]==="function";}return isSupported;};jQuery.support.submitBubbles=eventSupported("submit");jQuery.support.changeBubbles=eventSupported("change");div=all=a=null;})();var rbrace=/^(?:\{.*\}|\[.*\])$/;jQuery.extend({cache:{},uuid:0,expando:"jQuery"+(jQuery.fn.jquery+Math.random()).replace(/\D/g,""),noData:{"embed":true,"object":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000","applet":true},hasData:function(elem){elem=elem.nodeType?jQuery.cache[elem[jQuery.expando]]:elem[jQuery.expando];return !!elem&&!isEmptyDataObject(elem);},data:function(elem,name,data,pvt){if(!jQuery.acceptData(elem)){return;}var internalKey=jQuery.expando,getByName=typeof name==="string",thisCache,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:elem[jQuery.expando]&&jQuery.expando;if((!id||(pvt&&id&&!cache[id][internalKey]))&&getByName&&data===undefined){return;}if(!id){if(isNode){elem[jQuery.expando]=id=++jQuery.uuid;}else{id=jQuery.expando;}}if(!cache[id]){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}}if(typeof name==="object"||typeof name==="function"){if(pvt){cache[id][internalKey]=jQuery.extend(cache[id][internalKey],name);}else{cache[id]=jQuery.extend(cache[id],name);}}thisCache=cache[id];if(pvt){if(!thisCache[internalKey]){thisCache[internalKey]={};}thisCache=thisCache[internalKey];}if(data!==undefined){thisCache[name]=data;}if(name==="events"&&!thisCache[name]){return thisCache[internalKey]&&thisCache[internalKey].events;}return getByName?thisCache[name]:thisCache;},removeData:function(elem,name,pvt){if(!jQuery.acceptData(elem)){return;}var internalKey=jQuery.expando,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:jQuery.expando;if(!cache[id]){return;}if(name){var thisCache=pvt?cache[id][internalKey]:cache[id];if(thisCache){delete thisCache[name];if(!isEmptyDataObject(thisCache)){return;}}}if(pvt){delete cache[id][internalKey];if(!isEmptyDataObject(cache[id])){return;}}var internalCache=cache[id][internalKey];if(jQuery.support.deleteExpando||cache!=window){delete cache[id];}else{cache[id]=null;}if(internalCache){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}cache[id][internalKey]=internalCache;}else{if(isNode){if(jQuery.support.deleteExpando){delete elem[jQuery.expando];}else{if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}else{elem[jQuery.expando]=null;}}}}},_data:function(elem,name,data){return jQuery.data(elem,name,data,true);},acceptData:function(elem){if(elem.nodeName){var match=jQuery.noData[elem.nodeName.toLowerCase()];if(match){return !(match===true||elem.getAttribute("classid")!==match);}}return true;}});jQuery.fn.extend({data:function(key,value){var data=null;if(typeof key==="undefined"){if(this.length){data=jQuery.data(this[0]);if(this[0].nodeType===1){var attr=this[0].attributes,name;for(var i=0,l=attr.length;i<l;i++){name=attr[i].name;if(name.indexOf("data-")===0){name=name.substr(5);dataAttr(this[0],name,data[name]);}}}}return data;}else{if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}}var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);data=dataAttr(this[0],key,data);}return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.each(function(){var $this=jQuery(this),args=[parts[0],value];$this.triggerHandler("setData"+parts[1]+"!",args);jQuery.data(this,key,value);$this.triggerHandler("changeData"+parts[1]+"!",args);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});function dataAttr(elem,key,data){if(data===undefined&&elem.nodeType===1){data=elem.getAttribute("data-"+key);if(typeof data==="string"){try{data=data==="true"?true:data==="false"?false:data==="null"?null:!jQuery.isNaN(data)?parseFloat(data):rbrace.test(data)?jQuery.parseJSON(data):data;}catch(e){}jQuery.data(elem,key,data);}else{data=undefined;}}return data;}function isEmptyDataObject(obj){for(var name in obj){if(name!=="toJSON"){return false;}}return true;}jQuery.extend({queue:function(elem,type,data){if(!elem){return;}type=(type||"fx")+"queue";var q=jQuery._data(elem,type);if(!data){return q||[];}if(!q||jQuery.isArray(data)){q=jQuery._data(elem,type,jQuery.makeArray(data));}else{q.push(data);}return q;},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift();if(fn==="inprogress"){fn=queue.shift();}if(fn){if(type==="fx"){queue.unshift("inprogress");}fn.call(elem,function(){jQuery.dequeue(elem,type);});}if(!queue.length){jQuery.removeData(elem,type+"queue",true);}}});jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}if(data===undefined){return jQuery.queue(this[0],type);}return this.each(function(i){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);}});var rclass=/[\n\t\r]/g,rspaces=/\s+/,rreturn=/\r/g,rspecialurl=/^(?:href|src|style)$/,rtype=/^(?:button|input)$/i,rfocusable=/^(?:button|input|object|select|textarea)$/i,rclickable=/^a(?:rea)?$/i,rradiocheck=/^(?:radio|checkbox)$/i;jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};jQuery.fn.extend({attr:function(name,value){return jQuery.access(this,name,value,true,jQuery.attr);},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");if(this.nodeType===1){this.removeAttribute(name);}});},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.addClass(value.call(this,i,self.attr("class")));});}if(value&&typeof value==="string"){var classNames=(value||"").split(rspaces);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ",setClass=elem.className;for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c];}}elem.className=jQuery.trim(setClass);}}}}return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspaces);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}elem.className=jQuery.trim(className);}else{elem.className="";}}}}return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspaces);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else{if(type==="undefined"||type==="boolean"){if(this.className){jQuery._data(this,"__className__",this.className);}this.className=this.className||value===false?"":jQuery._data(this,"__className__")||"";}}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}return false;},val:function(value){if(!arguments.length){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){var val=elem.attributes.value;return !val||val.specified?elem.value:elem.text;}if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected&&(jQuery.support.optDisabled?!option.disabled:option.getAttribute("disabled")===null)&&(!option.parentNode.disabled||!jQuery.nodeName(option.parentNode,"optgroup"))){value=jQuery(option).val();if(one){return value;}values.push(value);}}if(one&&!values.length&&options.length){return jQuery(options[index]).val();}return values;}if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value;}return(elem.value||"").replace(rreturn,"");}return undefined;}var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val=value;if(this.nodeType!==1){return;}if(isFunction){val=value.call(this,i,self.val());}if(val==null){val="";}else{if(typeof val==="number"){val+="";}else{if(jQuery.isArray(val)){val=jQuery.map(val,function(value){return value==null?"":value+"";});}}}if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0;}else{if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){this.selectedIndex=-1;}}else{this.value=val;}}});}});jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8||elem.nodeType===2){return undefined;}if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.nodeType===1){var special=rspecialurl.test(name);if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}if((name in elem||elem[name]!==undefined)&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}if(value===null){if(elem.nodeType===1){elem.removeAttribute(name);}}else{elem[name]=value;}}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue;}if(name==="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}return elem[name];}if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value;}return elem.style.cssText;}if(set){elem.setAttribute(name,""+value);}if(!elem.attributes[name]&&(elem.hasAttribute&&!elem.hasAttribute(name))){return undefined;}var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(set){elem[name]=value;}return elem[name];}});var rnamespaces=/\.(.*)$/,rformElems=/^(?:textarea|input|select)$/i,rperiod=/\./g,rspace=/ /g,rescape=/[^\w\s.|`]/g,fcleanup=function(nm){return nm.replace(rescape,"\\$&");};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}try{if(jQuery.isWindow(elem)&&(elem!==window&&!elem.frameElement)){elem=window;}}catch(e){}if(handler===false){handler=returnFalse;}else{if(!handler){return;}}var handleObjIn,handleObj;if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}if(!handler.guid){handler.guid=jQuery.guid++;}var elemData=jQuery._data(elem);if(!elemData){return;}var events=elemData.events,eventHandle=elemData.handle;if(!events){elemData.events=events={};}if(!eventHandle){elemData.handle=eventHandle=function(e){return typeof jQuery!=="undefined"&&(!e||jQuery.event.triggered!==e.type)?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};}eventHandle.elem=elem;types=types.split(" ");var type,i=0,namespaces;while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};if(type.indexOf(".")>-1){namespaces=type.split(".");type=namespaces.shift();handleObj.namespace=namespaces.slice(0).sort().join(".");}else{namespaces=[];handleObj.namespace="";}handleObj.type=type;if(!handleObj.guid){handleObj.guid=handler.guid;}var handlers=events[type],special=jQuery.event.special[type]||{};if(!handlers){handlers=events[type]=[];if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false);}else{if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle);}}}}if(special.add){special.add.call(elem,handleObj);if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid;}}handlers.push(handleObj);jQuery.event.global[type]=true;}elem=null;},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return;}if(handler===false){handler=returnFalse;}var ret,type,fn,j,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.hasData(elem)&&jQuery._data(elem),events=elemData&&elemData.events;if(!elemData||!events){return;}if(types&&types.type){handler=types.handler;types=types.type;}if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";for(type in events){jQuery.event.remove(elem,type+types);}return;}types=types.split(" ");while((type=types[i++])){origType=type;handleObj=null;all=type.indexOf(".")<0;namespaces=[];if(!all){namespaces=type.split(".");type=namespaces.shift();namespace=new RegExp("(^|\\.)"+jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)");}eventType=events[type];if(!eventType){continue;}if(!handler){for(j=0;j<eventType.length;j++){handleObj=eventType[j];if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);eventType.splice(j--,1);}}continue;}special=jQuery.event.special[type]||{};for(j=pos||0;j<eventType.length;j++){handleObj=eventType[j];if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1);}if(special.remove){special.remove.call(elem,handleObj);}}if(pos!=null){break;}}}if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){jQuery.removeEvent(elem,type,elemData.handle);}ret=null;delete events[type];}}if(jQuery.isEmptyObject(events)){var handle=elemData.handle;if(handle){handle.elem=null;}delete elemData.events;delete elemData.handle;if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem,undefined,true);}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];if(!bubbling){event=typeof event==="object"?event[jQuery.expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}if(!elem){event.stopPropagation();if(jQuery.event.global[type]){jQuery.each(jQuery.cache,function(){var internalKey=jQuery.expando,internalCache=this[internalKey];if(internalCache&&internalCache.events&&internalCache.events[type]){jQuery.event.trigger(event,data,internalCache.handle.elem);}});}}if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}event.currentTarget=elem;var handle=jQuery._data(elem,"handle");if(handle){handle.apply(elem,data);}var parent=elem.parentNode||elem.ownerDocument;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false;event.preventDefault();}}}catch(inlineError){}if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else{if(!event.isDefaultPrevented()){var old,target=event.target,targetType=type.replace(rnamespaces,""),isClick=jQuery.nodeName(target,"a")&&targetType==="click",special=jQuery.event.special[targetType]||{};if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[targetType]){old=target["on"+targetType];if(old){target["on"+targetType]=null;}jQuery.event.triggered=event.type;target[targetType]();}}catch(triggerError){}if(old){target["on"+targetType]=old;}jQuery.event.triggered=undefined;}}}},handle:function(event){var all,handlers,namespaces,namespace_re,events,namespace_sort=[],args=jQuery.makeArray(arguments);event=args[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;all=event.type.indexOf(".")<0&&!event.exclusive;if(!all){namespaces=event.type.split(".");event.type=namespaces.shift();namespace_sort=namespaces.slice(0).sort();namespace_re=new RegExp("(^|\\.)"+namespace_sort.join("\\.(?:.*\\.)?")+"(\\.|$)");}event.namespace=event.namespace||namespace_sort.join(".");events=jQuery._data(this,"events");handlers=(events||{})[event.type];if(events&&handlers){handlers=handlers.slice(0);for(var j=0,l=handlers.length;j<l;j++){var handleObj=handlers[j];if(all||namespace_re.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.handler.apply(this,args);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}if(event.isImmediatePropagationStopped()){break;}}}}return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[jQuery.expando]){return event;}var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}if(!event.target){event.target=event.srcElement||document;}if(event.target.nodeType===3){event.target=event.target.parentNode;}if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement;}if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0);}if(event.which==null&&(event.charCode!=null||event.keyCode!=null)){event.which=event.charCode!=null?event.charCode:event.keyCode;}if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey;}if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}return event;},guid:100000000,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,liveConvert(handleObj.origType,handleObj.selector),jQuery.extend({},handleObj,{handler:liveHandler,guid:handleObj.handler.guid}));},remove:function(handleObj){jQuery.event.remove(this,liveConvert(handleObj.origType,handleObj.selector),handleObj);}},beforeunload:{setup:function(data,namespaces,eventHandle){if(jQuery.isWindow(this)){this.onbeforeunload=eventHandle;}},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};jQuery.removeEvent=document.removeEventListener?function(elem,type,handle){if(elem.removeEventListener){elem.removeEventListener(type,handle,false);}}:function(elem,type,handle){if(elem.detachEvent){elem.detachEvent("on"+type,handle);}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src);}if(src&&src.type){this.originalEvent=src;this.type=src.type;this.isDefaultPrevented=(src.defaultPrevented||src.returnValue===false||src.getPreventDefault&&src.getPreventDefault())?returnTrue:returnFalse;}else{this.type=src;}this.timeStamp=jQuery.now();this[jQuery.expando]=true;};function returnFalse(){return false;}function returnTrue(){return true;}jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return;}if(e.preventDefault){e.preventDefault();}else{e.returnValue=false;}},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}if(e.stopPropagation){e.stopPropagation();}e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;try{if(parent&&parent!==document&&!parent.parentNode){return;}while(parent&&parent!==this){parent=parent.parentNode;}if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}}catch(e){}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(this.nodeName&&this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){trigger("submit",this,arguments);}});}else{return false;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}if(!jQuery.support.changeBubbles){var changeFilters,getVal=function(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else{if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else{if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}}}return val;},testChange=function testChange(e){var elem=e.target,data,val;if(!rformElems.test(elem.nodeName)||elem.readOnly){return;}data=jQuery._data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery._data(elem,"_change_data",val);}if(data===undefined||val===data){return;}if(data!=null||val){e.type="change";e.liveFired=undefined;jQuery.event.trigger(e,arguments[1],elem);}};jQuery.event.special.change={filters:{focusout:testChange,beforedeactivate:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;jQuery._data(elem,"_change_data",getVal(elem));}},setup:function(data,namespaces){if(this.type==="file"){return false;}for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type]);}return rformElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return rformElems.test(this.nodeName);}};changeFilters=jQuery.event.special.change.filters;changeFilters.focus=changeFilters.beforeactivate;}function trigger(type,elem,args){var event=jQuery.extend({},args[0]);event.type=type;event.originalEvent={};event.liveFired=undefined;jQuery.event.handle.call(elem,event);if(event.isDefaultPrevented()){args[0].preventDefault();}}if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){var attaches=0;jQuery.event.special[fix]={setup:function(){if(attaches++===0){document.addEventListener(orig,handler,true);}},teardown:function(){if(--attaches===0){document.removeEventListener(orig,handler,true);}}};function handler(donor){var e=jQuery.event.fix(donor);e.type=fix;e.originalEvent={};jQuery.event.trigger(e,null,e.target);if(e.isDefaultPrevented()){donor.preventDefault();}}});}jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}return this;}if(jQuery.isFunction(data)||data===false){fn=data;data=undefined;}var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;if(type==="unload"&&name!=="one"){this.one(type,data,fn);}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.add(this[i],type,handler,data);}}return this;};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.remove(this[i],type,fn);}}return this;},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector);},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live");}else{return this.die(types,null,fn,selector);}},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.proxy(fn,args[i++]);}return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery._data(this,"lastToggle"+fn.guid)||0)%i;jQuery._data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);if(typeof types==="object"&&!types.preventDefault){for(var key in types){context[name](key,data,types[key],selector);}return this;}if(jQuery.isFunction(data)){fn=data;data=undefined;}types=(types||"").split(" ");while((type=types[i++])!=null){match=rnamespaces.exec(type);namespaces="";if(match){namespaces=match[0];type=type.replace(rnamespaces,"");}if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);continue;}preType=type;if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);type=type+namespaces;}else{type=(liveMap[type]||type)+namespaces;}if(name==="live"){for(var j=0,l=context.length;j<l;j++){jQuery.event.add(context[j],"live."+liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});}}else{context.unbind("live."+liveConvert(type,selector),fn);}}return this;};});function liveHandler(event){var stop,maxLevel,related,match,handleObj,elem,j,i,l,data,close,namespace,ret,elems=[],selectors=[],events=jQuery._data(this,"events");if(event.liveFired===this||!events||!events.live||event.target.disabled||event.button&&event.type==="click"){return;}if(event.namespace){namespace=new RegExp("(^|\\.)"+event.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");}event.liveFired=this;var live=events.live.slice(0);for(j=0;j<live.length;j++){handleObj=live[j];if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector);}else{live.splice(j--,1);}}match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){close=match[i];for(j=0;j<live.length;j++){handleObj=live[j];if(close.selector===handleObj.selector&&(!namespace||namespace.test(handleObj.namespace))&&!close.elem.disabled){elem=close.elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){event.type=handleObj.preType;related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];}if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj,level:close.level});}}}}for(i=0,l=elems.length;i<l;i++){match=elems[i];if(maxLevel&&match.level>maxLevel){break;}event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;ret=match.handleObj.origHandler.apply(match.elem,arguments);if(ret===false||event.isPropagationStopped()){maxLevel=match.level;if(ret===false){stop=false;}if(event.isImmediatePropagationStopped()){break;}}}return stop;}function liveConvert(type,selector){return(type&&type!=="*"?type+".":"")+selector.replace(rperiod,"`").replace(rspace,"&");}jQuery.each(("blur focus focusin focusout load resize scroll unload click dblclick "+"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave "+"change select submit keydown keypress keyup error").split(" "),function(i,name){jQuery.fn[name]=function(data,fn){if(fn==null){fn=data;data=null;}return arguments.length>0?this.bind(name,data,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});
/*!
 * Sizzle CSS Selector Engine
 *  Copyright 2011, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true,rBackslash=/\\/g,rNonWord=/\W/;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;var origContext=context;if(context.nodeType!==1&&context.nodeType!==9){return[];}if(!selector||typeof selector!=="string"){return results;}var m,set,checkSet,extra,ret,cur,pop,i,prune=true,contextXML=Sizzle.isXML(context),parts=[],soFar=selector;do{chunker.exec("");m=chunker.exec(soFar);if(m){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}}while(m);if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift();}set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}if(context){ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}while(parts.length){cur=parts.pop();pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}if(pop==null){pop=context;}Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}if(!checkSet){checkSet=set;}if(!checkSet){Sizzle.error(cur||selector);}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else{if(context&&context.nodeType===1){for(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&Sizzle.contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}}else{makeArray(checkSet,results);}if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.matchesSelector=function(node,expr){return Sizzle(expr,null,null,[node]).length>0;};Sizzle.find=function(expr,context,isXML){var set;if(!expr){return[];}for(var i=0,l=Expr.order.length;i<l;i++){var match,type=Expr.order[i];if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(rBackslash,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}if(!set){set=typeof context.getElementsByTagName!=="undefined"?context.getElementsByTagName("*"):[];}return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var match,anyFound,old=expr,result=[],curLoop=set,isXMLFilter=set&&set[0]&&Sizzle.isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var found,item,filter=Expr.filter[type],left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}if(curLoop===result){result=[];}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else{if(match===true){continue;}}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else{if(pass){result.push(item);anyFound=true;}}}}}if(found!==undefined){if(!inplace){curLoop=result;}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}break;}}}if(expr===old){if(anyFound==null){Sizzle.error(expr);}else{break;}}old=expr;}return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");},type:function(elem){return elem.getAttribute("type");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!rNonWord.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part;}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var elem,isPartStr=typeof part==="string",i=0,l=checkSet.length;if(isPartStr&&!rNonWord.test(part)){part=part.toLowerCase();for(;i<l;i++){elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(;i<l;i++){elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m&&m.parentNode?[m]:[];}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}return ret.length===0?null:ret;}},TAG:function(match,context){if(typeof context.getElementsByTagName!=="undefined"){return context.getElementsByTagName(match[1]);}}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(rBackslash,"")+" ";if(isXML){return match;}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n\r]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else{if(inplace){curLoop[i]=false;}}}}return false;},ID:function(match){return match[1].replace(rBackslash,"");},TAG:function(match,curLoop){return match[1].replace(rBackslash,"").toLowerCase();},CHILD:function(match){if(match[1]==="nth"){if(!match[2]){Sizzle.error(match[0]);}match[2]=match[2].replace(/^\+|\s*/g,"");var test=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}else{if(match[2]){Sizzle.error(match[0]);}}match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1]=match[1].replace(rBackslash,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}match[4]=(match[4]||match[5]||"").replace(rBackslash,"");if(match[2]==="~="){match[4]=" "+match[4]+" ";}return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}return false;}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}}return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){if(elem.parentNode){elem.parentNode.selectedIndex;}return elem.selected===true;},parent:function(elem){return !!elem.firstChild;},empty:function(elem){return !elem.firstChild;},has:function(elem,i,match){return !!Sizzle(match[3],elem).length;},header:function(elem){return(/h\d/i).test(elem.nodeName);},text:function(elem){var attr=elem.getAttribute("type"),type=elem.type;return"text"===type&&(attr===type||attr===null);},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button";},input:function(elem){return(/input|select|textarea|button/i).test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0===i;},eq:function(elem,i,match){return match[3]-0===i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else{if(name==="contains"){return(elem.textContent||elem.innerText||Sizzle.getText([elem])||"").indexOf(match[3])>=0;}else{if(name==="not"){var not=match[3];for(var j=0,l=not.length;j<l;j++){if(not[j]===elem){return false;}}return true;}else{Sizzle.error(name);}}}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while((node=node.previousSibling)){if(node.nodeType===1){return false;}}if(type==="first"){return true;}node=elem;case"last":while((node=node.nextSibling)){if(node.nodeType===1){return false;}}return true;case"nth":var first=match[2],last=match[3];if(first===1&&last===0){return true;}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}parent.sizcache=doneName;}var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS,fescape=function(all,num){return"\\"+(num-0+1);};for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+(/(?![^\[]*\])(?![^\(]*\))/.source));Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,fescape));}var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType;}catch(e){makeArray=function(array,results){var i=0,ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var l=array.length;i<l;i++){ret.push(array[i]);}}else{for(;array[i];i++){ret.push(array[i]);}}}return ret;};}var sortOrder,siblingCheck;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}if(!a.compareDocumentPosition||!b.compareDocumentPosition){return a.compareDocumentPosition?-1:1;}return a.compareDocumentPosition(b)&4?-1:1;};}else{sortOrder=function(a,b){var al,bl,ap=[],bp=[],aup=a.parentNode,bup=b.parentNode,cur=aup;if(a===b){hasDuplicate=true;return 0;}else{if(aup===bup){return siblingCheck(a,b);}else{if(!aup){return -1;}else{if(!bup){return 1;}}}}while(cur){ap.unshift(cur);cur=cur.parentNode;}cur=bup;while(cur){bp.unshift(cur);cur=cur.parentNode;}al=ap.length;bl=bp.length;for(var i=0;i<al&&i<bl;i++){if(ap[i]!==bp[i]){return siblingCheck(ap[i],bp[i]);}}return i===al?siblingCheck(a,bp[i],-1):siblingCheck(ap[i],b,1);};siblingCheck=function(a,b,ret){if(a===b){return ret;}var cur=a.nextSibling;while(cur){if(cur===b){return -1;}cur=cur.nextSibling;}return 1;};}Sizzle.getText=function(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else{if(elem.nodeType!==8){ret+=Sizzle.getText(elem.childNodes);}}}return ret;};(function(){var form=document.createElement("div"),id="script"+(new Date()).getTime(),root=document.documentElement;form.innerHTML="<a name='"+id+"'/>";root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}results=tmp;}return results;};}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div"),id="__sizzle__";div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&!Sizzle.isXML(context)){var match=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(query);if(match&&(context.nodeType===1||context.nodeType===9)){if(match[1]){return makeArray(context.getElementsByTagName(query),extra);}else{if(match[2]&&Expr.find.CLASS&&context.getElementsByClassName){return makeArray(context.getElementsByClassName(match[2]),extra);}}}if(context.nodeType===9){if(query==="body"&&context.body){return makeArray([context.body],extra);}else{if(match&&match[3]){var elem=context.getElementById(match[3]);if(elem&&elem.parentNode){if(elem.id===match[3]){return makeArray([elem],extra);}}else{return makeArray([],extra);}}}try{return makeArray(context.querySelectorAll(query),extra);}catch(qsaError){}}else{if(context.nodeType===1&&context.nodeName.toLowerCase()!=="object"){var oldContext=context,old=context.getAttribute("id"),nid=old||id,hasParent=context.parentNode,relativeHierarchySelector=/^\s*[+~]/.test(query);if(!old){context.setAttribute("id",nid);}else{nid=nid.replace(/'/g,"\\$&");}if(relativeHierarchySelector&&hasParent){context=context.parentNode;}try{if(!relativeHierarchySelector||hasParent){return makeArray(context.querySelectorAll("[id='"+nid+"'] "+query),extra);}}catch(pseudoError){}finally{if(!old){oldContext.removeAttribute("id");}}}}}return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}div=null;})();}(function(){var html=document.documentElement,matches=html.matchesSelector||html.mozMatchesSelector||html.webkitMatchesSelector||html.msMatchesSelector;if(matches){var disconnectedMatch=!matches.call(document.createElement("div"),"div"),pseudoWorks=false;try{matches.call(document.documentElement,"[test!='']:sizzle");}catch(pseudoError){pseudoWorks=true;}Sizzle.matchesSelector=function(node,expr){expr=expr.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!Sizzle.isXML(node)){try{if(pseudoWorks||!Expr.match.PSEUDO.test(expr)&&!/!=/.test(expr)){var ret=matches.call(node,expr);if(ret||!disconnectedMatch||node.document&&node.document.nodeType!==11){return ret;}}}catch(e){}}return Sizzle(expr,null,null,[node]).length>0;};}})();(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var match=false;elem=elem[dir];while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}if(elem.nodeName.toLowerCase()===cur){match=elem;break;}elem=elem[dir];}checkSet[i]=match;}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var match=false;elem=elem[dir];while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}}elem=elem[dir];}checkSet[i]=match;}}}if(document.documentElement.contains){Sizzle.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):true);};}else{if(document.documentElement.compareDocumentPosition){Sizzle.contains=function(a,b){return !!(a.compareDocumentPosition(b)&16);};}else{Sizzle.contains=function(){return false;};}}Sizzle.isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var match,tmpSet=[],later="",root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.text=Sizzle.getText;jQuery.isXMLDoc=Sizzle.isXML;jQuery.contains=Sizzle.contains;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,isSimple=/^.[^:#\[\.,]*$/,slice=Array.prototype.slice,POS=jQuery.expr.match.POS,guaranteedUnique={children:true,contents:true,next:true,prev:true};jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;for(var i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(var n=length;n<ret.length;n++){for(var r=0;r<length;r++){if(ret[r]===ret[n]){ret.splice(n--,1);break;}}}}}return ret;},has:function(target){var targets=jQuery(target);return this.filter(function(){for(var i=0,l=targets.length;i<l;i++){if(jQuery.contains(this,targets[i])){return true;}}});},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector);},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector);},is:function(selector){return !!selector&&jQuery.filter(selector,this).length>0;},closest:function(selectors,context){var ret=[],i,l,cur=this[0];if(jQuery.isArray(selectors)){var match,selector,matches={},level=1;if(cur&&selectors.length){for(i=0,l=selectors.length;i<l;i++){selector=selectors[i];if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector;}}while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur,level:level});}}cur=cur.parentNode;level++;}}return ret;}var pos=POS.test(selectors)?jQuery(selectors,context||this.context):null;for(i=0,l=this.length;i<l;i++){cur=this[i];while(cur){if(pos?pos.index(cur)>-1:jQuery.find.matchesSelector(cur,selectors)){ret.push(cur);break;}else{cur=cur.parentNode;if(!cur||!cur.ownerDocument||cur===context){break;}}}}ret=ret.length>1?jQuery.unique(ret):ret;return this.pushStack(ret,"closest",selectors);},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children());}return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all));},andSelf:function(){return this.add(this.prevObject);}});function isDisconnected(node){return !node||!node.parentNode||node.parentNode.nodeType===11;}jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null;},parents:function(elem){return jQuery.dir(elem,"parentNode");},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until);},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until);},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until);},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(until,selector){var ret=jQuery.map(this,fn,until),args=slice.call(arguments);if(!runtil.test(name)){selector=until;}if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}ret=this.length>1&&!guaranteedUnique[name]?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}return this.pushStack(ret,name,args.join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}return elems.length===1?jQuery.find.matchesSelector(elems[0],expr)?[elems[0]]:[]:jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur);}cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType===1&&++num===result){break;}}return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n);}}return r;}});function winnow(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){var retVal=!!qualifier.call(elem,i,elem);return retVal===keep;});}else{if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else{if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}}}return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});}var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<(?:script|object|embed|option|style)/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}return jQuery.text(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}return elem;}).append(this);}return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else{if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else{if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}}},remove:function(selector,keepData){for(var i=0,elem;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem]);}if(elem.parentNode){elem.parentNode.removeChild(elem);}}}return this;},empty:function(){for(var i=0,elem;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));}while(elem.firstChild){elem.removeChild(elem.firstChild);}}return this;},clone:function(dataAndEvents,deepDataAndEvents){dataAndEvents=dataAndEvents==null?false:dataAndEvents;deepDataAndEvents=deepDataAndEvents==null?dataAndEvents:deepDataAndEvents;return this.map(function(){return jQuery.clone(this,dataAndEvents,deepDataAndEvents);});},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else{if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,"<$1></$2>");try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else{if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this);self.html(value.call(this,i,self.html()));});}else{this.empty().append(value);}}}return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}if(typeof value!=="string"){value=jQuery(value).detach();}return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.length?this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value):this;}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,fragment,parent,value=args[0],scripts=[];if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}if(this[0]){parent=value&&value.parentNode;if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent};}else{results=jQuery.buildFragment(args,this,scripts);}fragment=results.fragment;if(fragment.childNodes.length===1){first=fragment=fragment.firstChild;}else{first=fragment.firstChild;}if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length,lastIndex=l-1;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||(l>1&&i<lastIndex)?jQuery.clone(fragment,true,true):fragment);}}if(scripts.length){jQuery.each(scripts,evalScript);}}return this;}});function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}function cloneCopyEvent(src,dest){if(dest.nodeType!==1||!jQuery.hasData(src)){return;}var internalKey=jQuery.expando,oldData=jQuery.data(src),curData=jQuery.data(dest,oldData);if((oldData=oldData[internalKey])){var events=oldData.events;curData=curData[internalKey]=jQuery.extend({},oldData);if(events){delete curData.handle;curData.events={};for(var type in events){for(var i=0,l=events[type].length;i<l;i++){jQuery.event.add(dest,type+(events[type][i].namespace?".":"")+events[type][i].namespace,events[type][i],events[type][i].data);}}}}}function cloneFixAttributes(src,dest){if(dest.nodeType!==1){return;}var nodeName=dest.nodeName.toLowerCase();dest.clearAttributes();dest.mergeAttributes(src);if(nodeName==="object"){dest.outerHTML=src.outerHTML;}else{if(nodeName==="input"&&(src.type==="checkbox"||src.type==="radio")){if(src.checked){dest.defaultChecked=dest.checked=src.checked;}if(dest.value!==src.value){dest.value=src.value;}}else{if(nodeName==="option"){dest.selected=src.defaultSelected;}else{if(nodeName==="input"||nodeName==="textarea"){dest.defaultValue=src.defaultValue;}}}}dest.removeAttribute(jQuery.expando);}jQuery.buildFragment=function(args,nodes,scripts){var fragment,cacheable,cacheresults,doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&args[0].charAt(0)==="<"&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}if(!fragment){fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}return{fragment:fragment,cacheable:cacheable};};jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector),parent=this.length===1&&this[0].parentNode;if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);return this;}else{for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery(insert[i])[original](elems);ret=ret.concat(elems);}return this.pushStack(ret,name,insert.selector);}};});function getAll(elem){if("getElementsByTagName" in elem){return elem.getElementsByTagName("*");}else{if("querySelectorAll" in elem){return elem.querySelectorAll("*");}else{return[];}}}jQuery.extend({clone:function(elem,dataAndEvents,deepDataAndEvents){var clone=elem.cloneNode(true),srcElements,destElements,i;if((!jQuery.support.noCloneEvent||!jQuery.support.noCloneChecked)&&(elem.nodeType===1||elem.nodeType===11)&&!jQuery.isXMLDoc(elem)){cloneFixAttributes(elem,clone);srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneFixAttributes(srcElements[i],destElements[i]);}}if(dataAndEvents){cloneCopyEvent(elem,clone);if(deepDataAndEvents){srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneCopyEvent(srcElements[i],destElements[i]);}}}return clone;},clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}var ret=[];for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}if(!elem){continue;}if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else{if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,"<$1></$2>");var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}elem=div.childNodes;}}if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}}if(fragment){for(i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));}fragment.appendChild(ret[i]);}}}return ret;},cleanData:function(elems){var data,id,cache=jQuery.cache,internalKey=jQuery.expando,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;for(var i=0,elem;(elem=elems[i])!=null;i++){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){continue;}id=elem[jQuery.expando];if(id){data=cache[id]&&cache[id][internalKey];if(data&&data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{jQuery.removeEvent(elem,type,data.handle);}}if(data.handle){data.handle.elem=null;}}if(deleteExpando){delete elem[jQuery.expando];}else{if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}}delete cache[id];}}}});function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"});}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");}if(elem.parentNode){elem.parentNode.removeChild(elem);}}var ralpha=/alpha\([^)]*\)/i,ropacity=/opacity=([^)]*)/,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z]|^ms)/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],curCSS,getComputedStyle,currentStyle,fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){if(arguments.length===2&&value===undefined){return this;}return jQuery.access(this,name,value,true,function(elem,name,value){return value!==undefined?jQuery.style(elem,name,value):jQuery.css(elem,name);});};jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity","opacity");return ret===""?"1":ret;}else{return elem.style.opacity;}}}},cssNumber:{"zIndex":true,"fontWeight":true,"opacity":true,"zoom":true,"lineHeight":true},cssProps:{"float":jQuery.support.cssFloat?"cssFloat":"styleFloat"},style:function(elem,name,value,extra){if(!elem||elem.nodeType===3||elem.nodeType===8||!elem.style){return;}var ret,origName=jQuery.camelCase(name),style=elem.style,hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(value!==undefined){if(typeof value==="number"&&isNaN(value)||value==null){return;}if(typeof value==="number"&&!jQuery.cssNumber[origName]){value+="px";}if(!hooks||!("set" in hooks)||(value=hooks.set(elem,value))!==undefined){try{style[name]=value;}catch(e){}}}else{if(hooks&&"get" in hooks&&(ret=hooks.get(elem,false,extra))!==undefined){return ret;}return style[name];}},css:function(elem,name,extra){var ret,origName=jQuery.camelCase(name),hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(hooks&&"get" in hooks&&(ret=hooks.get(elem,true,extra))!==undefined){return ret;}else{if(curCSS){return curCSS(elem,name,origName);}}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(name in options){elem.style[name]=old[name];}},camelCase:function(string){return string.replace(rdashAlpha,fcamelCase);}});jQuery.curCSS=jQuery.css;jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){var val;if(computed){if(elem.offsetWidth!==0){val=getWH(elem,name,extra);}else{jQuery.swap(elem,cssShow,function(){val=getWH(elem,name,extra);});}if(val<=0){val=curCSS(elem,name,name);if(val==="0px"&&currentStyle){val=currentStyle(elem,name,name);}if(val!=null){return val===""||val==="auto"?"0px":val;}}if(val<0||val==null){val=elem.style[name];return val===""||val==="auto"?"0px":val;}return typeof val==="string"?val:val+"px";}},set:function(elem,value){if(rnumpx.test(value)){value=parseFloat(value);if(value>=0){return value+"px";}}else{return value;}}};});if(!jQuery.support.opacity){jQuery.cssHooks.opacity={get:function(elem,computed){return ropacity.test((computed&&elem.currentStyle?elem.currentStyle.filter:elem.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":computed?"1":"";},set:function(elem,value){var style=elem.style;style.zoom=1;var opacity=jQuery.isNaN(value)?"":"alpha(opacity="+value*100+")",filter=style.filter||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):style.filter+" "+opacity;}};}jQuery(function(){if(!jQuery.support.reliableMarginRight){jQuery.cssHooks.marginRight={get:function(elem,computed){var ret;jQuery.swap(elem,{"display":"inline-block"},function(){if(computed){ret=curCSS(elem,"margin-right","marginRight");}else{ret=elem.style.marginRight;}});return ret;}};}});if(document.defaultView&&document.defaultView.getComputedStyle){getComputedStyle=function(elem,newName,name){var ret,defaultView,computedStyle;name=name.replace(rupper,"-$1").toLowerCase();if(!(defaultView=elem.ownerDocument.defaultView)){return undefined;}if((computedStyle=defaultView.getComputedStyle(elem,null))){ret=computedStyle.getPropertyValue(name);if(ret===""&&!jQuery.contains(elem.ownerDocument.documentElement,elem)){ret=jQuery.style(elem,name);}}return ret;};}if(document.documentElement.currentStyle){currentStyle=function(elem,name){var left,ret=elem.currentStyle&&elem.currentStyle[name],rsLeft=elem.runtimeStyle&&elem.runtimeStyle[name],style=elem.style;if(!rnumpx.test(ret)&&rnum.test(ret)){left=style.left;if(rsLeft){elem.runtimeStyle.left=elem.currentStyle.left;}style.left=name==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;if(rsLeft){elem.runtimeStyle.left=rsLeft;}}return ret===""?"auto":ret;};}curCSS=getComputedStyle||currentStyle;function getWH(elem,name,extra){var which=name==="width"?cssWidth:cssHeight,val=name==="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return val;}jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.css(elem,"padding"+this))||0;}if(extra==="margin"){val+=parseFloat(jQuery.css(elem,"margin"+this))||0;}else{val-=parseFloat(jQuery.css(elem,"border"+this+"Width"))||0;}});return val;}if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight;return(width===0&&height===0)||(!jQuery.support.reliableHiddenOffsets&&(elem.style.display||jQuery.css(elem,"display"))==="none");};jQuery.expr.filters.visible=function(elem){return !jQuery.expr.filters.hidden(elem);};}var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rhash=/#.*$/,rheaders=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,rinput=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,rlocalProtocol=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rquery=/\?/,rscript=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,rselectTextarea=/^(?:select|textarea)/i,rspacesAjax=/\s+/,rts=/([?&])_=[^&]*/,rucHeaders=/(^|\-)([a-z])/g,rucHeadersFunc=function(_,$1,$2){return $1+$2.toUpperCase();},rurl=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,_load=jQuery.fn.load,prefilters={},transports={},ajaxLocation,ajaxLocParts;try{ajaxLocation=document.location.href;}catch(e){ajaxLocation=document.createElement("a");ajaxLocation.href="";ajaxLocation=ajaxLocation.href;}ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase())||[];function addToPrefiltersOrTransports(structure){return function(dataTypeExpression,func){if(typeof dataTypeExpression!=="string"){func=dataTypeExpression;dataTypeExpression="*";}if(jQuery.isFunction(func)){var dataTypes=dataTypeExpression.toLowerCase().split(rspacesAjax),i=0,length=dataTypes.length,dataType,list,placeBefore;for(;i<length;i++){dataType=dataTypes[i];placeBefore=/^\+/.test(dataType);if(placeBefore){dataType=dataType.substr(1)||"*";}list=structure[dataType]=structure[dataType]||[];list[placeBefore?"unshift":"push"](func);}}};}function inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,dataType,inspected){dataType=dataType||options.dataTypes[0];inspected=inspected||{};inspected[dataType]=true;var list=structure[dataType],i=0,length=list?list.length:0,executeOnly=(structure===prefilters),selection;for(;i<length&&(executeOnly||!selection);i++){selection=list[i](options,originalOptions,jqXHR);if(typeof selection==="string"){if(!executeOnly||inspected[selection]){selection=undefined;}else{options.dataTypes.unshift(selection);selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,selection,inspected);}}}if((executeOnly||!selection)&&!inspected["*"]){selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,"*",inspected);}return selection;}jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"&&_load){return _load.apply(this,arguments);}else{if(!this.length){return this;}}var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=undefined;}else{if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);type="POST";}}}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(jqXHR,status,responseText){responseText=jqXHR.responseText;if(jqXHR.isResolved()){jqXHR.done(function(r){responseText=r;});self.html(selector?jQuery("<div>").append(responseText.replace(rscript,"")).find(selector):responseText);}if(callback){self.each(callback,[responseText,status,jqXHR]);}}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val.replace(rCRLF,"\r\n")};}):{name:elem.name,value:val.replace(rCRLF,"\r\n")};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.each(["get","post"],function(i,method){jQuery[method]=function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=undefined;}return jQuery.ajax({type:method,url:url,data:data,success:callback,dataType:type});};});jQuery.extend({getScript:function(url,callback){return jQuery.get(url,undefined,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},ajaxSetup:function(target,settings){if(!settings){settings=target;target=jQuery.extend(true,jQuery.ajaxSettings,settings);}else{jQuery.extend(true,target,jQuery.ajaxSettings,settings);}for(var field in {context:1,url:1}){if(field in settings){target[field]=settings[field];}else{if(field in jQuery.ajaxSettings){target[field]=jQuery.ajaxSettings[field];}}}return target;},ajaxSettings:{url:ajaxLocation,isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":window.String,"text html":true,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML}},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(url,options){if(typeof url==="object"){options=url;url=undefined;}options=options||{};var s=jQuery.ajaxSetup({},options),callbackContext=s.context||s,globalEventContext=callbackContext!==s&&(callbackContext.nodeType||callbackContext instanceof jQuery)?jQuery(callbackContext):jQuery.event,deferred=jQuery.Deferred(),completeDeferred=jQuery._Deferred(),statusCode=s.statusCode||{},ifModifiedKey,requestHeaders={},responseHeadersString,responseHeaders,transport,timeoutTimer,parts,state=0,fireGlobals,i,jqXHR={readyState:0,setRequestHeader:function(name,value){if(!state){requestHeaders[name.toLowerCase().replace(rucHeaders,rucHeadersFunc)]=value;}return this;},getAllResponseHeaders:function(){return state===2?responseHeadersString:null;},getResponseHeader:function(key){var match;if(state===2){if(!responseHeaders){responseHeaders={};while((match=rheaders.exec(responseHeadersString))){responseHeaders[match[1].toLowerCase()]=match[2];}}match=responseHeaders[key.toLowerCase()];}return match===undefined?null:match;},overrideMimeType:function(type){if(!state){s.mimeType=type;}return this;},abort:function(statusText){statusText=statusText||"abort";if(transport){transport.abort(statusText);}done(0,statusText);return this;}};function done(status,statusText,responses,headers){if(state===2){return;}state=2;if(timeoutTimer){clearTimeout(timeoutTimer);}transport=undefined;responseHeadersString=headers||"";jqXHR.readyState=status?4:0;var isSuccess,success,error,response=responses?ajaxHandleResponses(s,jqXHR,responses):undefined,lastModified,etag;if(status>=200&&status<300||status===304){if(s.ifModified){if((lastModified=jqXHR.getResponseHeader("Last-Modified"))){jQuery.lastModified[ifModifiedKey]=lastModified;}if((etag=jqXHR.getResponseHeader("Etag"))){jQuery.etag[ifModifiedKey]=etag;}}if(status===304){statusText="notmodified";isSuccess=true;}else{try{success=ajaxConvert(s,response);statusText="success";isSuccess=true;}catch(e){statusText="parsererror";error=e;}}}else{error=statusText;if(!statusText||status){statusText="error";if(status<0){status=0;}}}jqXHR.status=status;jqXHR.statusText=statusText;if(isSuccess){deferred.resolveWith(callbackContext,[success,statusText,jqXHR]);}else{deferred.rejectWith(callbackContext,[jqXHR,statusText,error]);}jqXHR.statusCode(statusCode);statusCode=undefined;if(fireGlobals){globalEventContext.trigger("ajax"+(isSuccess?"Success":"Error"),[jqXHR,s,isSuccess?success:error]);}completeDeferred.resolveWith(callbackContext,[jqXHR,statusText]);if(fireGlobals){globalEventContext.trigger("ajaxComplete",[jqXHR,s]);if(!(--jQuery.active)){jQuery.event.trigger("ajaxStop");}}}deferred.promise(jqXHR);jqXHR.success=jqXHR.done;jqXHR.error=jqXHR.fail;jqXHR.complete=completeDeferred.done;jqXHR.statusCode=function(map){if(map){var tmp;if(state<2){for(tmp in map){statusCode[tmp]=[statusCode[tmp],map[tmp]];}}else{tmp=map[jqXHR.status];jqXHR.then(tmp,tmp);}}return this;};s.url=((url||s.url)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//");s.dataTypes=jQuery.trim(s.dataType||"*").toLowerCase().split(rspacesAjax);if(s.crossDomain==null){parts=rurl.exec(s.url.toLowerCase());s.crossDomain=!!(parts&&(parts[1]!=ajaxLocParts[1]||parts[2]!=ajaxLocParts[2]||(parts[3]||(parts[1]==="http:"?80:443))!=(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?80:443))));}if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}inspectPrefiltersOrTransports(prefilters,s,options,jqXHR);if(state===2){return false;}fireGlobals=s.global;s.type=s.type.toUpperCase();s.hasContent=!rnoContent.test(s.type);if(fireGlobals&&jQuery.active++===0){jQuery.event.trigger("ajaxStart");}if(!s.hasContent){if(s.data){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}ifModifiedKey=s.url;if(s.cache===false){var ts=jQuery.now(),ret=s.url.replace(rts,"$1_="+ts);s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}}if(s.data&&s.hasContent&&s.contentType!==false||options.contentType){requestHeaders["Content-Type"]=s.contentType;}if(s.ifModified){ifModifiedKey=ifModifiedKey||s.url;if(jQuery.lastModified[ifModifiedKey]){requestHeaders["If-Modified-Since"]=jQuery.lastModified[ifModifiedKey];}if(jQuery.etag[ifModifiedKey]){requestHeaders["If-None-Match"]=jQuery.etag[ifModifiedKey];}}requestHeaders.Accept=s.dataTypes[0]&&s.accepts[s.dataTypes[0]]?s.accepts[s.dataTypes[0]]+(s.dataTypes[0]!=="*"?", */*; q=0.01":""):s.accepts["*"];for(i in s.headers){jqXHR.setRequestHeader(i,s.headers[i]);}if(s.beforeSend&&(s.beforeSend.call(callbackContext,jqXHR,s)===false||state===2)){jqXHR.abort();return false;}for(i in {success:1,error:1,complete:1}){jqXHR[i](s[i]);}transport=inspectPrefiltersOrTransports(transports,s,options,jqXHR);if(!transport){done(-1,"No Transport");}else{jqXHR.readyState=1;if(fireGlobals){globalEventContext.trigger("ajaxSend",[jqXHR,s]);}if(s.async&&s.timeout>0){timeoutTimer=setTimeout(function(){jqXHR.abort("timeout");},s.timeout);}try{state=1;transport.send(requestHeaders,done);}catch(e){if(status<2){done(-1,e);}else{jQuery.error(e);}}}return jqXHR;},param:function(a,traditional){var s=[],add=function(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);};if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}if(jQuery.isArray(a)||(a.jquery&&!jQuery.isPlainObject(a))){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix],traditional,add);}}return s.join("&").replace(r20,"+");}});function buildParams(prefix,obj,traditional,add){if(jQuery.isArray(obj)&&obj.length){jQuery.each(obj,function(i,v){if(traditional||rbracket.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v,traditional,add);}});}else{if(!traditional&&obj!=null&&typeof obj==="object"){if(jQuery.isArray(obj)||jQuery.isEmptyObject(obj)){add(prefix,"");}else{for(var name in obj){buildParams(prefix+"["+name+"]",obj[name],traditional,add);}}}else{add(prefix,obj);}}}jQuery.extend({active:0,lastModified:{},etag:{}});function ajaxHandleResponses(s,jqXHR,responses){var contents=s.contents,dataTypes=s.dataTypes,responseFields=s.responseFields,ct,type,finalDataType,firstDataType;for(type in responseFields){if(type in responses){jqXHR[responseFields[type]]=responses[type];}}while(dataTypes[0]==="*"){dataTypes.shift();if(ct===undefined){ct=s.mimeType||jqXHR.getResponseHeader("content-type");}}if(ct){for(type in contents){if(contents[type]&&contents[type].test(ct)){dataTypes.unshift(type);break;}}}if(dataTypes[0] in responses){finalDataType=dataTypes[0];}else{for(type in responses){if(!dataTypes[0]||s.converters[type+" "+dataTypes[0]]){finalDataType=type;break;}if(!firstDataType){firstDataType=type;}}finalDataType=finalDataType||firstDataType;}if(finalDataType){if(finalDataType!==dataTypes[0]){dataTypes.unshift(finalDataType);}return responses[finalDataType];}}function ajaxConvert(s,response){if(s.dataFilter){response=s.dataFilter(response,s.dataType);}var dataTypes=s.dataTypes,converters={},i,key,length=dataTypes.length,tmp,current=dataTypes[0],prev,conversion,conv,conv1,conv2;for(i=1;i<length;i++){if(i===1){for(key in s.converters){if(typeof key==="string"){converters[key.toLowerCase()]=s.converters[key];}}}prev=current;current=dataTypes[i];if(current==="*"){current=prev;}else{if(prev!=="*"&&prev!==current){conversion=prev+" "+current;conv=converters[conversion]||converters["* "+current];if(!conv){conv2=undefined;for(conv1 in converters){tmp=conv1.split(" ");if(tmp[0]===prev||tmp[0]==="*"){conv2=converters[tmp[1]+" "+current];if(conv2){conv1=converters[conv1];if(conv1===true){conv=conv2;}else{if(conv2===true){conv=conv1;}}break;}}}}if(!(conv||conv2)){jQuery.error("No conversion from "+conversion.replace(" "," to "));}if(conv!==true){response=conv?conv(response):conv2(conv1(response));}}}}return response;}var jsc=jQuery.now(),jsre=/(\=)\?(&|$)|\?\?/i;jQuery.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return jQuery.expando+"_"+(jsc++);}});jQuery.ajaxPrefilter("json jsonp",function(s,originalSettings,jqXHR){var dataIsString=(typeof s.data==="string");if(s.dataTypes[0]==="jsonp"||originalSettings.jsonpCallback||originalSettings.jsonp!=null||s.jsonp!==false&&(jsre.test(s.url)||dataIsString&&jsre.test(s.data))){var responseContainer,jsonpCallback=s.jsonpCallback=jQuery.isFunction(s.jsonpCallback)?s.jsonpCallback():s.jsonpCallback,previous=window[jsonpCallback],url=s.url,data=s.data,replace="$1"+jsonpCallback+"$2",cleanUp=function(){window[jsonpCallback]=previous;if(responseContainer&&jQuery.isFunction(previous)){window[jsonpCallback](responseContainer[0]);}};if(s.jsonp!==false){url=url.replace(jsre,replace);if(s.url===url){if(dataIsString){data=data.replace(jsre,replace);}if(s.data===data){url+=(/\?/.test(url)?"&":"?")+s.jsonp+"="+jsonpCallback;}}}s.url=url;s.data=data;window[jsonpCallback]=function(response){responseContainer=[response];};jqXHR.then(cleanUp,cleanUp);s.converters["script json"]=function(){if(!responseContainer){jQuery.error(jsonpCallback+" was not called");}return responseContainer[0];};s.dataTypes[0]="json";return"script";}});jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(text){jQuery.globalEval(text);return text;}}});jQuery.ajaxPrefilter("script",function(s){if(s.cache===undefined){s.cache=false;}if(s.crossDomain){s.type="GET";s.global=false;}});jQuery.ajaxTransport("script",function(s){if(s.crossDomain){var script,head=document.head||document.getElementsByTagName("head")[0]||document.documentElement;return{send:function(_,callback){script=document.createElement("script");script.async="async";if(s.scriptCharset){script.charset=s.scriptCharset;}script.src=s.url;script.onload=script.onreadystatechange=function(_,isAbort){if(!script.readyState||/loaded|complete/.test(script.readyState)){script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}script=undefined;if(!isAbort){callback(200,"success");}}};head.insertBefore(script,head.firstChild);},abort:function(){if(script){script.onload(0,1);}}};}});var xhrId=jQuery.now(),xhrCallbacks,testXHR;function xhrOnUnloadAbort(){jQuery(window).unload(function(){for(var key in xhrCallbacks){xhrCallbacks[key](0,1);}});}function createStandardXHR(){try{return new window.XMLHttpRequest();}catch(e){}}function createActiveXHR(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}jQuery.ajaxSettings.xhr=window.ActiveXObject?function(){return !this.isLocal&&createStandardXHR()||createActiveXHR();}:createStandardXHR;testXHR=jQuery.ajaxSettings.xhr();jQuery.support.ajax=!!testXHR;jQuery.support.cors=testXHR&&("withCredentials" in testXHR);testXHR=undefined;if(jQuery.support.ajax){jQuery.ajaxTransport(function(s){if(!s.crossDomain||jQuery.support.cors){var callback;return{send:function(headers,complete){var xhr=s.xhr(),handle,i;if(s.username){xhr.open(s.type,s.url,s.async,s.username,s.password);}else{xhr.open(s.type,s.url,s.async);}if(s.xhrFields){for(i in s.xhrFields){xhr[i]=s.xhrFields[i];}}if(s.mimeType&&xhr.overrideMimeType){xhr.overrideMimeType(s.mimeType);}if(!s.crossDomain&&!headers["X-Requested-With"]){headers["X-Requested-With"]="XMLHttpRequest";}try{for(i in headers){xhr.setRequestHeader(i,headers[i]);}}catch(_){}xhr.send((s.hasContent&&s.data)||null);callback=function(_,isAbort){var status,statusText,responseHeaders,responses,xml;try{if(callback&&(isAbort||xhr.readyState===4)){callback=undefined;if(handle){xhr.onreadystatechange=jQuery.noop;delete xhrCallbacks[handle];}if(isAbort){if(xhr.readyState!==4){xhr.abort();}}else{status=xhr.status;responseHeaders=xhr.getAllResponseHeaders();responses={};xml=xhr.responseXML;if(xml&&xml.documentElement){responses.xml=xml;}responses.text=xhr.responseText;try{statusText=xhr.statusText;}catch(e){statusText="";}if(!status&&s.isLocal&&!s.crossDomain){status=responses.text?200:404;}else{if(status===1223){status=204;}}}}}catch(firefoxAccessException){if(!isAbort){complete(-1,firefoxAccessException);}}if(responses){complete(status,statusText,responses,responseHeaders);}};if(!s.async||xhr.readyState===4){callback();}else{if(!xhrCallbacks){xhrCallbacks={};xhrOnUnloadAbort();}handle=xhrId++;xhr.onreadystatechange=xhrCallbacks[handle]=callback;}},abort:function(){if(callback){callback(0,1);}}};}});}var elemdisplay={},rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];jQuery.fn.extend({show:function(speed,easing,callback){var elem,display;if(speed||speed===0){return this.animate(genFx("show",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){elem=this[i];display=elem.style.display;if(!jQuery._data(elem,"olddisplay")&&display==="none"){display=elem.style.display="";}if(display===""&&jQuery.css(elem,"display")==="none"){jQuery._data(elem,"olddisplay",defaultDisplay(elem.nodeName));}}for(i=0;i<j;i++){elem=this[i];display=elem.style.display;if(display===""||display==="none"){elem.style.display=jQuery._data(elem,"olddisplay")||"";}}return this;}},hide:function(speed,easing,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){var display=jQuery.css(this[i],"display");if(display!=="none"&&!jQuery._data(this[i],"olddisplay")){jQuery._data(this[i],"olddisplay",display);}}for(i=0;i<j;i++){this[i].style.display="none";}return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2,callback){var bool=typeof fn==="boolean";if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments);}else{if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();});}else{this.animate(genFx("toggle",3),fn,fn2,callback);}}return this;},fadeTo:function(speed,to,easing,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,easing,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete);}return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,isElement=this.nodeType===1,hidden=isElement&&jQuery(this).is(":hidden"),self=this;for(p in prop){var name=jQuery.camelCase(p);if(p!==name){prop[name]=prop[p];delete prop[p];p=name;}if(prop[p]==="hide"&&hidden||prop[p]==="show"&&!hidden){return opt.complete.call(this);}if(isElement&&(p==="height"||p==="width")){opt.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(jQuery.css(this,"display")==="inline"&&jQuery.css(this,"float")==="none"){if(!jQuery.support.inlineBlockNeedsLayout){this.style.display="inline-block";}else{var display=defaultDisplay(this.nodeName);if(display==="inline"){this.style.display="inline-block";}else{this.style.display="inline";this.style.zoom=1;}}}}if(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];prop[p]=prop[p][0];}}if(opt.overflow!=null){this.style.overflow="hidden";}opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop);}else{var parts=rfxnum.exec(val),start=e.cur();if(parts){var end=parseFloat(parts[2]),unit=parts[3]||(jQuery.cssNumber[name]?"":"px");if(unit!=="px"){jQuery.style(self,name,(end||1)+unit);start=((end||1)/e.cur())*start;jQuery.style(self,name,start+unit);}if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start;}e.custom(start,end,unit);}else{e.custom(start,val,"");}}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([]);}this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem===this){if(gotoEnd){timers[i](true);}timers.splice(i,1);}}});if(!gotoEnd){this.dequeue();}return this;}});function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(name,props){jQuery.fn[name]=function(speed,easing,callback){return this.animate(props,speed,easing,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?jQuery.extend({},speed):{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:opt.duration in jQuery.fx.speeds?jQuery.fx.speeds[opt.duration]:jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue();}if(jQuery.isFunction(opt.old)){opt.old.call(this);}};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={};}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}var parsed,r=jQuery.css(this.elem,this.prop);return isNaN(parsed=parseFloat(r))?!r||r==="auto"?0:r:parsed;},custom:function(from,to,unit){var self=this,fx=jQuery.fx;this.startTime=jQuery.now();this.start=from;this.end=to;this.unit=unit||this.unit||(jQuery.cssNumber[this.prop]?"":"px");this.now=this.start;this.pos=this.state=0;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(fx.tick,fx.interval);}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=jQuery.now(),done=true;if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false;}}if(done){if(this.options.overflow!=null&&!jQuery.support.shrinkWrapBlocks){var elem=this.elem,options=this.options;jQuery.each(["","X","Y"],function(index,value){elem.style["overflow"+value]=options.overflow[index];});}if(this.options.hide){jQuery(this.elem).hide();}if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.style(this.elem,p,this.options.orig[p]);}}this.options.complete.call(this.elem);}return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");this.pos=jQuery.easing[specialEasing||defaultEasing](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.extend(jQuery.fx,{tick:function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1);}}if(!timers.length){jQuery.fx.stop();}},interval:13,stop:function(){clearInterval(timerId);timerId=null;},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};}function defaultDisplay(nodeName){if(!elemdisplay[nodeName]){var elem=jQuery("<"+nodeName+">").appendTo("body"),display=elem.css("display");elem.remove();if(display==="none"||display===""){display="block";}elemdisplay[nodeName]=display;}return elemdisplay[nodeName];}var rtable=/^t(?:able|d|h)$/i,rroot=/^(?:body|html)$/i;if("getBoundingClientRect" in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0],box;if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}if(!elem||!elem.ownerDocument){return null;}if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}try{box=elem.getBoundingClientRect();}catch(e){}var doc=elem.ownerDocument,docElem=doc.documentElement;if(!box||!jQuery.contains(docElem,elem)){return box?{top:box.top,left:box.left}:{top:0,left:0};}var body=doc.body,win=getWindow(doc),clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,scrollTop=win.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop,scrollLeft=win.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft,top=box.top+scrollTop-clientTop,left=box.left+scrollLeft-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}if(!elem||!elem.ownerDocument){return null;}if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}jQuery.offset.initialize();var computedStyle,offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break;}computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;top-=elem.scrollTop;left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop;left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&rtable.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}prevOffsetParent=offsetParent;offsetParent=elem.offsetParent;}if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}prevComputedStyle=computedStyle;}if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;left+=body.offsetLeft;}if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);left+=Math.max(docElem.scrollLeft,body.scrollLeft);}return{top:top,left:left};};}jQuery.offset={initialize:function(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.css(body,"marginTop"))||0,html="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild;checkDiv=innerDiv.firstChild;td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);checkDiv.style.position="fixed";checkDiv.style.top="20px";this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);checkDiv.style.position=checkDiv.style.top="";innerDiv.style.overflow="hidden";innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);body.removeChild(container);jQuery.offset.initialize=jQuery.noop;},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;jQuery.offset.initialize();if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.css(body,"marginTop"))||0;left+=parseFloat(jQuery.css(body,"marginLeft"))||0;}return{top:top,left:left};},setOffset:function(elem,options,i){var position=jQuery.css(elem,"position");if(position==="static"){elem.style.position="relative";}var curElem=jQuery(elem),curOffset=curElem.offset(),curCSSTop=jQuery.css(elem,"top"),curCSSLeft=jQuery.css(elem,"left"),calculatePosition=(position==="absolute"||position==="fixed")&&jQuery.inArray("auto",[curCSSTop,curCSSLeft])>-1,props={},curPosition={},curTop,curLeft;if(calculatePosition){curPosition=curElem.position();}curTop=calculatePosition?curPosition.top:parseInt(curCSSTop,10)||0;curLeft=calculatePosition?curPosition.left:parseInt(curCSSLeft,10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}if(options.top!=null){props.top=(options.top-curOffset.top)+curTop;}if(options.left!=null){props.left=(options.left-curOffset.left)+curLeft;}if("using" in options){options.using.call(elem,props);}else{curElem.css(props);}}};jQuery.fn.extend({position:function(){if(!this[0]){return null;}var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=rroot.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.css(elem,"marginTop"))||0;offset.left-=parseFloat(jQuery.css(elem,"marginLeft"))||0;parentOffset.top+=parseFloat(jQuery.css(offsetParent[0],"borderTopWidth"))||0;parentOffset.left+=parseFloat(jQuery.css(offsetParent[0],"borderLeftWidth"))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!rroot.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent;}return offsetParent;});}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){var elem=this[0],win;if(!elem){return null;}if(val!==undefined){return this.each(function(){win=getWindow(this);if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop());}else{this[method]=val;}});}else{win=getWindow(elem);return win?("pageXOffset" in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method];}};});function getWindow(elem){return jQuery.isWindow(elem)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false;}jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?parseFloat(jQuery.css(this[0],type,"padding")):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?parseFloat(jQuery.css(this[0],type,margin?"margin":"border")):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}if(jQuery.isWindow(elem)){var docElemProp=elem.document.documentElement["client"+name];return elem.document.compatMode==="CSS1Compat"&&docElemProp||elem.document.body["client"+name]||docElemProp;}else{if(elem.nodeType===9){return Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]);}else{if(size===undefined){var orig=jQuery.css(elem,type),ret=parseFloat(orig);return jQuery.isNaN(ret)?orig:ret;}else{return this.css(type,typeof size==="string"?size:size+"px");}}}};});window.jQuery=window.$=jQuery;})(window);
/* JS: mod_login_main*/
function mod_login_on_submit() {
	var form;
	if (form = document.getElementById('form_id_login')) {
		var inputs = form.elements;	var err = '';
		for (var i = 0; i < inputs.length; i++) {
			if ((inputs[i].name == 'ed_login') && (inputs[i].value == '')) {
				err = err + "Zadejte uživatelské jméno.";
			}
			if ((inputs[i].name == 'ed_password') && (inputs[i].value == '')) {
				err = err + "Zadejte heslo.";
			}
		}
		if (err != '') {alert(err);	return false;} else {return true;}
	}
}

/* JS: new_window*/

function openwin(elm, isImage) {

    if (!isImage) {
      window.open(elm.getAttribute("href"), "_blank");
      return true;
    }


    var msgWindow = window.open(elm.getAttribute("href"), "_blank", "toolbar=no");
    msgWindow.document.write("<?xml version='1.0' encoding='UTF-8' standalone='yes'?>");
    msgWindow.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>");
    msgWindow.document.write("<html>");
    msgWindow.document.write("<meta http-equiv='content-type' content='text/html; charset=utf-8'>");
    msgWindow.document.write("<head>");
    msgWindow.document.write("<title>Obrázek</title>");
    msgWindow.document.write("<style media='screen,tv,projection' type='text/css'> html, body {margin:0;padding:0} a, img {border: 0px solid #fff}</style>");
    msgWindow.document.write("<script type='text/javascript'>");
    msgWindow.document.writeln("    function getInnerHeight() { ");
    msgWindow.document.writeln("           if (window.innerHeight) {");
    msgWindow.document.writeln("             return window.innerHeight;");
    msgWindow.document.writeln("           } else {");
    msgWindow.document.writeln("             return document.documentElement.offsetHeight;"); // document.body.clientHeight;
    msgWindow.document.writeln("           }");
    msgWindow.document.writeln("    }");
    msgWindow.document.writeln("    function getInnerWidth() { ");
    msgWindow.document.writeln("           if (window.innerWidth) {");
    msgWindow.document.writeln("             return window.innerWidth;");
    msgWindow.document.writeln("           } else {");
    msgWindow.document.writeln("             return document.documentElement.offsetWidth;"); //document.body.clientWidth;
    msgWindow.document.writeln("           }");
    msgWindow.document.writeln("    }");
    msgWindow.document.writeln("    function imgSize(controlHeight,fotoMargin) {");
    msgWindow.document.writeln("      image=document.getElementById('image_elm');");
    msgWindow.document.writeln("      if (screen.height <= (image.height + 31)) {");
    msgWindow.document.writeln("        window.resizeTo(image.width + 12,screen.height - 100);");
    msgWindow.document.writeln("      } else {");
    msgWindow.document.writeln("        window.resizeTo(image.width+2*fotoMargin,image.height+controlHeight+fotoMargin);");
    msgWindow.document.writeln("        controlx = image.width+2*fotoMargin - getInnerWidth();");
    msgWindow.document.writeln("        controly = image.height+controlHeight+fotoMargin - getInnerHeight();");
    msgWindow.document.writeln("        window.resizeTo(image.width + controlx+2*fotoMargin, image.height + controly+controlHeight+fotoMargin);");
    msgWindow.document.writeln("      }");
    msgWindow.document.writeln("    }");
    msgWindow.document.write("</script>");
    msgWindow.document.write("</head>");
    msgWindow.document.write("<body style='margin:0;padding:0;background:#fff' onload='imgSize(0,0);'>");
    msgWindow.document.write("<a style='border:0px solid #fff;' href='#' onclick='window.close();'><img src='"+elm.getAttribute("href")+"' style='border:0px solid #fff;' id='image_elm' alt=''></a>");
    msgWindow.document.write("</body>");
    msgWindow.document.write("</html>");
    msgWindow.document.close();
    msgWindow.focus();
    return true;
}

function open_win_external(elm) {
    window.open(elm.getAttribute("href"), "_blank");
    return true;
}

/* JS: cufon*/
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/* JS: franklin*/
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (URW)++, Copyright ř 2000 by (URW)++ Design & Development
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Full name:
 * FranklinGotItcTOT-Boo
 * 
 * Description:
 * Type1 to OpenType conversion by Studio Marvil, s.r.o. http://www.marvil.cz/
 * 
 * Vendor URL:
 * http://www.urw.de/
 */
Cufon.registerFont({"w":211,"face":{"font-family":"franklin","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-22 -319 335 86","underline-thickness":"24.12","underline-position":"-12.24","stemh":"22","stemv":"24","unicode-range":"U+0020-U+201E"},"glyphs":{" ":{"w":90},"\u00a0":{"w":90},"!":{"d":"67,0r-37,0r0,-37r37,0r0,37xm55,-60r-14,0r-13,-180r41,0","w":96},"\"":{"d":"41,-147r-17,0r-5,-93r28,0xm90,-147r-18,0r-5,-93r28,0","w":113},"#":{"d":"200,-170r-4,22r-37,0r-9,50r37,0r-4,22r-37,0r-13,76r-23,0r13,-76r-51,0r-13,76r-23,0r14,-76r-39,0r4,-22r38,0r9,-50r-38,0r4,-22r38,0r12,-70r24,0r-13,70r51,0r12,-70r23,0r-13,70r38,0xm136,-148r-51,0r-9,50r51,0"},"$":{"d":"186,-72v0,38,-28,63,-73,64r0,34r-21,0r0,-34v-40,-4,-64,-23,-75,-55r24,-9v9,24,27,38,51,40r0,-81v-41,-9,-65,-22,-65,-61v0,-36,26,-58,65,-62r0,-29r21,0r0,29v35,3,57,18,68,46r-23,8v-6,-19,-23,-30,-45,-31r0,75v45,8,73,25,73,66xm113,-108r0,76v45,1,61,-46,30,-67v-8,-5,-15,-6,-30,-9xm92,-141r0,-72v-26,3,-40,16,-40,36v0,20,13,31,40,36"},"%":{"d":"62,-243v30,0,50,26,50,63v0,36,-21,62,-49,62v-29,0,-50,-25,-50,-62v0,-37,20,-63,49,-63xm62,-229v-19,0,-30,18,-30,48v0,31,11,49,31,49v18,0,30,-18,30,-46v0,-32,-12,-51,-31,-51xm68,0r-22,0r146,-240r21,0xm197,-122v30,0,49,26,49,63v0,36,-20,62,-49,62v-29,0,-49,-26,-49,-63v0,-37,20,-62,49,-62xm196,-109v-19,0,-30,18,-30,48v0,31,11,49,31,49v19,0,31,-17,31,-46v0,-32,-12,-51,-32,-51","w":259},"&":{"d":"227,-25r0,25v-37,5,-37,8,-66,-19v-49,49,-148,19,-146,-48v0,-33,23,-59,63,-73v-39,-45,-27,-105,31,-105v33,0,55,21,55,51v0,27,-13,45,-50,63r50,76v17,-22,27,-44,33,-76r25,5v-5,28,-25,71,-44,90v16,16,22,12,49,11xm147,-37r-58,-85v-66,18,-55,104,11,104v19,0,31,-5,47,-19xm102,-149v25,-14,39,-19,39,-43v0,-17,-13,-30,-31,-30v-17,0,-30,12,-30,27v0,11,4,18,22,46","w":240},"(":{"d":"89,60r-18,0v-70,-89,-69,-209,-1,-300r19,0v-60,93,-61,206,0,300","w":105},")":{"d":"17,-240r18,0v70,89,69,209,0,300r-18,0v59,-92,59,-207,0,-300","w":105},"*":{"d":"99,-174r-7,-66r27,0r-7,66r63,-27r8,25r-68,14r45,49r-22,15r-33,-56r-32,56r-22,-15r45,-49r-68,-14r8,-25"},"+":{"d":"22,-132r71,0r0,-74r26,0r0,74r71,0r0,24r-71,0r0,74r-26,0r0,-74r-71,0r0,-24"},",":{"d":"64,-40r0,36r-26,49r-15,0r21,-45r-18,0r0,-40r38,0","w":90,"k":{"1":14}},"-":{"d":"85,-101r0,22r-80,0r0,-22r80,0","w":90,"k":{"Y":13,"W":-1,"V":1,"T":12,"A":-9}},"\u00ad":{"d":"85,-101r0,22r-80,0r0,-22r80,0","w":90},".":{"d":"65,-39r0,39r-39,0r0,-39r39,0","w":90,"k":{"1":14}},"\/":{"d":"6,60r-23,0r145,-300r24,0","w":163},"0":{"d":"15,-121v0,-65,32,-124,90,-124v60,0,92,63,92,126v0,60,-33,124,-91,124v-54,0,-91,-52,-91,-126xm166,-115v0,-51,-15,-106,-61,-106v-38,0,-60,37,-60,100v0,64,23,102,61,102v42,0,60,-49,60,-96","k":{"7":18,"1":13}},"1":{"d":"201,-22r0,22r-168,0r0,-22r72,0r0,-186v-23,23,-42,38,-66,52r0,-30v32,-17,54,-35,73,-59r22,0r0,223r67,0","k":{"9":6,"8":4,"7":25,"6":14,"5":5,"4":12,"3":5,"1":6,"0":13,".":3,",":3}},"2":{"d":"188,-172v0,50,-86,114,-131,147r132,0r0,25r-170,0r0,-25v53,-39,52,-39,79,-61v47,-39,60,-59,60,-86v0,-28,-23,-49,-54,-49v-29,0,-56,21,-57,55r-28,-9v8,-45,40,-70,86,-70v48,0,83,32,83,73","k":{"7":15,"4":16,"1":13}},"3":{"d":"39,-63v6,58,123,57,123,-3v0,-38,-43,-51,-92,-47r0,-24v44,3,83,-6,83,-42v0,-57,-98,-52,-106,-3r-28,-8v13,-35,43,-52,86,-55v81,-6,110,102,33,119v35,6,55,28,55,59v0,66,-105,94,-154,52v-14,-11,-21,-20,-28,-39","k":{"7":16,"1":18}},"4":{"d":"159,0r-29,0r0,-57r-119,0r0,-20r110,-168r38,0r0,164r39,0r0,24r-39,0r0,57xm130,-81r0,-140r-88,140r88,0","k":{"7":24,"4":-3,"1":24}},"5":{"d":"176,-240r-2,26r-119,0r-5,78v49,-57,142,-17,142,56v0,76,-106,112,-156,60v-10,-10,-16,-17,-21,-32r26,-9v18,65,122,50,122,-19v0,-63,-86,-79,-113,-25r-24,-5r8,-130r142,0","k":{"7":16,"1":22}},"6":{"d":"18,-114v0,-71,28,-131,98,-131v39,0,64,18,77,54r-27,7v-18,-53,-92,-44,-109,5v-7,19,-11,38,-11,70v12,-30,38,-48,73,-48v43,0,78,35,78,79v0,47,-38,83,-86,83v-57,0,-93,-46,-93,-119xm114,-133v-33,0,-61,26,-61,58v0,31,26,56,58,56v32,0,58,-25,58,-57v0,-32,-24,-57,-55,-57","k":{"7":13,"4":-2,"1":16}},"7":{"d":"186,-222v-41,51,-88,137,-85,222r-31,0v-1,-82,42,-165,85,-214r-130,0r3,-26r158,0r0,18","k":{":":19,"7":10,"6":23,"4":37,"1":30,".":39}},"8":{"d":"141,-129v35,15,57,29,57,66v0,40,-37,68,-92,68v-55,0,-93,-28,-93,-67v0,-27,19,-48,57,-63v-77,-27,-51,-120,37,-120v87,0,112,93,34,116xm106,-140v39,-10,55,-23,55,-45v0,-23,-20,-37,-53,-37v-32,0,-53,15,-53,37v0,21,20,37,51,45xm103,-112v-80,11,-81,94,2,94v38,0,63,-16,63,-41v0,-24,-20,-40,-65,-53","k":{"7":13,"4":-3,"1":15}},"9":{"d":"193,-126v0,70,-30,132,-98,131v-37,-1,-65,-16,-74,-49r24,-9v10,23,26,34,50,34v44,0,69,-37,70,-107v-33,73,-150,46,-150,-36v0,-47,36,-83,84,-83v64,0,93,51,94,119xm101,-220v-34,0,-57,23,-57,57v0,32,23,56,56,56v32,0,58,-27,58,-58v0,-32,-24,-55,-57,-55","k":{"7":19,"4":3,"1":15}},":":{"d":"65,-40r0,40r-39,0r0,-40r39,0xm65,-177r0,39r-39,0r0,-39r39,0","w":90},";":{"d":"64,-177r0,38r-38,0r0,-38r38,0xm64,-40r0,36r-27,49r-14,0r21,-45r-18,0r0,-40r38,0","w":90},"<":{"d":"180,-204r0,27r-127,58r127,58r0,27r-156,-73r0,-24"},"=":{"d":"22,-163r168,0r0,24r-168,0r0,-24xm22,-107r168,0r0,25r-168,0r0,-25"},">":{"d":"31,-34r0,-27r127,-58r-127,-58r0,-27r156,73r0,24"},"?":{"d":"100,-35r0,35r-35,0r0,-35r35,0xm7,-174v7,-45,36,-71,82,-71v47,0,79,28,79,69v0,27,-14,45,-45,62v-33,17,-29,20,-29,54r-25,0v-5,-44,11,-63,42,-76v44,-18,29,-87,-23,-84v-32,2,-49,19,-55,52","w":181},"@":{"d":"145,5v-79,1,-131,-56,-131,-125v0,-70,55,-125,126,-125v65,0,114,46,114,107v0,47,-28,88,-61,88v-14,0,-23,-8,-28,-22v-32,47,-95,13,-95,-43v0,-57,66,-97,100,-51r2,-17r23,0r-10,98v0,8,4,12,12,12v18,0,35,-30,35,-62v0,-51,-38,-88,-92,-88v-57,0,-102,45,-102,103v0,56,40,102,106,102v28,0,56,-7,79,-19r8,21v-30,14,-55,21,-86,21xm135,-163v-21,0,-37,22,-37,49v0,24,12,41,29,41v20,0,38,-25,38,-52v0,-22,-12,-38,-30,-38","w":268},"A":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0","w":198,"k":{"\u0162":25,"\u0164":21,"\u00fd":9,"\u00dd":21,"\u00ab":5,"y":9,"w":9,"v":9,"u":7,"t":5,"q":5,"o":5,"g":-5,"e":5,"d":5,"c":5,"Y":21,"W":13,"V":17,"U":9,"T":25,"Q":10,"O":10,"J":-11,"G":10,"C":10,".":-4,"-":-7,",":-4}},"B":{"d":"153,-127v81,18,56,127,-28,127r-95,0r0,-240r95,0v77,-10,95,98,28,113xm172,-68v0,-53,-58,-48,-113,-46r0,88v50,0,113,8,113,-42xm59,-137v50,0,107,7,107,-41v0,-45,-61,-38,-107,-38r0,79","w":217,"k":{"\u00d6":1,"Y":6,"W":4,"V":4,"O":1,"J":-1}},"C":{"d":"113,-21v35,0,54,-24,61,-60r27,6v-10,48,-37,80,-88,80v-66,0,-98,-61,-98,-127v0,-74,40,-123,100,-123v45,0,73,26,86,77r-28,6v-12,-40,-29,-57,-59,-57v-42,0,-66,37,-66,100v0,60,25,98,65,98","w":208,"k":{"\u00d3":-1,"y":-8,"Z":3,"O":-1,"J":-1,";":-14,":":-12,".":-3,",":-2}},"D":{"d":"110,-240v68,-1,107,54,108,119v0,69,-42,121,-98,121r-90,0r0,-240r80,0xm187,-121v0,-51,-25,-95,-79,-94r-48,0r0,189r49,0v55,1,78,-43,78,-95","w":232,"k":{"\u00c4":6,"Y":13,"W":5,"V":8,"T":12,"J":9,"A":6}},"E":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0","w":197,"k":{"\u010c":13,"\u00d6":13,"\u00d3":13,"v":15,"O":13,"C":13}},"F":{"d":"60,0r-30,0r0,-240r147,0r0,26r-117,0r0,76r97,0r0,24r-97,0r0,114","w":182,"k":{"\u016f":13,"\u0151":7,"\u0104":16,"\u0102":17,"\u00fa":13,"\u00f3":7,"\u00e9":7,"\u00e1":7,"\u00d6":5,"\u00c4":17,"\u00c2":17,"\u00c1":17,"u":13,"r":13,"o":7,"e":7,"a":7,"O":5,"J":27,"A":17,".":32,",":32}},"G":{"d":"48,-118v-2,53,22,99,70,99v39,0,63,-31,59,-77r-59,0r0,-25r90,0r0,124r-19,0r-8,-30v-17,23,-37,32,-67,32v-62,0,-99,-59,-99,-122v0,-130,159,-178,190,-58r-28,7v-6,-34,-27,-51,-61,-51v-49,0,-68,49,-68,101","w":232,"k":{"\u00c4":-2,"Y":12,"W":7,"V":9,"T":9,"A":-2,";":-12,":":-12,".":-1}},"H":{"d":"201,0r-30,0r0,-114r-111,0r0,114r-30,0r0,-240r30,0r0,99r111,0r0,-99r30,0r0,240","w":231},"I":{"d":"60,0r-30,0r0,-240r30,0r0,240","w":90},"J":{"d":"0,-24v45,6,77,6,77,-49r0,-167r30,0v-6,108,38,281,-107,240r0,-24","w":134,"k":{"\u00c4":6,"A":6}},"K":{"d":"220,0r-34,0r-71,-132r-55,68r0,64r-30,0r0,-240r30,0r0,139r108,-139r33,0r-65,84","w":226,"k":{"\u0105":3,"\u00f3":10,"\u00d6":13,"\u00d3":13,"y":17,"u":13,"o":10,"e":10,"a":4,"O":13,"G":14,"C":13,"-":3}},"L":{"d":"171,-26r0,26r-141,0r0,-240r30,0r0,214r111,0","w":176,"k":{"\u0162":24,"\u0164":24,"\u010c":10,"\u00fd":17,"\u00fc":6,"\u00dd":26,"\u00dc":7,"\u00d6":10,"\u00d3":10,"y":17,"u":6,"j":2,"Y":26,"W":18,"V":24,"U":7,"T":24,"O":10,"G":11,"C":10,"-":32}},"M":{"d":"261,0r-29,0r0,-210r-78,210r-20,0r-79,-210r0,210r-25,0r0,-240r45,0r72,192r70,-192r44,0r0,240","w":291,"k":{"j":3}},"N":{"d":"207,0r-30,0r-124,-209r1,209r-24,0r0,-240r37,0r117,196r-1,-196r24,0r0,240","w":236,"k":{"u":4,"o":1,"j":3,"e":1,"a":2,".":1,",":1}},"O":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99","w":227,"k":{"\u00c4":6,"Z":12,"Y":11,"X":8,"W":5,"V":6,"T":9,"J":9,"A":6,";":-14,":":-13,".":5,",":6}},"P":{"d":"115,-240v48,-2,77,30,78,72v2,63,-62,76,-133,70r0,98r-30,0r0,-240r85,0xm60,-122v50,2,102,4,102,-46v0,-50,-51,-50,-102,-47r0,93","w":201,"k":{"\u0104":14,"\u0102":14,"\u00c4":14,"\u00c2":14,"\u00c1":14,"o":4,"e":5,"a":1,"Y":1,"J":28,"A":14,".":35,"-":1,",":33}},"Q":{"d":"140,0v-5,33,28,35,59,30r0,24v-45,11,-84,-2,-84,-50v-70,-3,-100,-54,-100,-123v0,-75,40,-126,100,-126v60,0,100,50,100,124v0,60,-25,106,-75,121xm113,-21v50,0,70,-45,69,-98v0,-64,-24,-100,-67,-100v-52,0,-68,46,-68,101v0,60,25,97,66,97","w":229},"R":{"d":"124,-240v83,-8,101,109,32,129r47,111r-32,0r-44,-104r-69,0r0,104r-28,0r0,-240r94,0xm58,-129v53,1,112,7,112,-45v0,-49,-63,-40,-112,-40r0,85","w":220,"k":{"\u0162":5,"\u0164":3,"\u00fd":-3,"\u00dd":6,"\u00dc":4,"\u00d6":4,"\u00d3":4,"y":-3,"u":7,"o":6,"e":6,"Y":6,"W":5,"V":4,"U":4,"T":3,"O":4,"J":-6,"G":4,"C":4,"-":2}},"S":{"d":"155,-178v-5,-52,-107,-57,-110,-3v-2,34,54,39,84,47v41,11,61,32,61,66v0,72,-114,96,-159,49v-13,-12,-18,-22,-27,-45r27,-6v11,33,34,49,71,49v64,0,77,-69,20,-82v-48,-11,-108,-19,-107,-76v0,-39,32,-66,81,-66v43,0,73,20,86,59","w":204,"k":{"\u00c4":1,"v":4,"Y":8,"W":6,"V":6,"T":6,"J":-1,"A":1}},"T":{"d":"102,0r-30,0r0,-214r-68,0r0,-26r167,0r0,26r-69,0r0,214","w":174,"k":{"\u015f":18,"\u0171":14,"\u016f":19,"\u015b":14,"\u0155":10,"\u0151":13,"\u0119":23,"\u0107":19,"\u0105":20,"\u0150":10,"\u0104":21,"\u0102":22,"\u00fd":3,"\u00fa":19,"\u00f4":8,"\u00f3":21,"\u00ed":-2,"\u00e9":23,"\u00e7":23,"\u00e1":21,"\u00d6":10,"\u00d3":10,"\u00c4":22,"\u00c2":22,"\u00c1":22,"\u00ab":23,"y":23,"w":26,"v":24,"u":25,"s":20,"r":23,"o":23,"i":1,"g":22,"e":23,"c":23,"a":24,"Y":-14,"W":-9,"V":-12,"O":10,"J":21,"G":10,"C":9,"A":22,";":9,":":10,".":22,"-":12,",":22}},"U":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61","w":218,"k":{"\u00c4":6,"r":3,"p":3,"n":3,"m":3,"j":3,"A":6,".":4,",":5}},"V":{"d":"192,-240r-81,240r-29,0r-81,-240r31,0r67,198r67,-198r26,0","w":193,"k":{"\u0159":-2,"\u0171":11,"\u016f":11,"\u015b":9,"\u0155":11,"\u0151":13,"\u0119":13,"\u011b":11,"\u010f":13,"\u0105":10,"\u0150":7,"\u0104":12,"\u0102":12,"\u00fd":-3,"\u00fc":11,"\u00fa":11,"\u00f6":10,"\u00f4":10,"\u00f3":13,"\u00e9":13,"\u00e4":11,"\u00e1":12,"\u00d6":7,"\u00d4":7,"\u00d3":7,"\u00c4":12,"\u00c2":12,"\u00c1":12,"\u00ab":12,"y":-3,"u":11,"r":11,"o":13,"g":12,"e":13,"c":13,"a":12,"T":-12,"S":1,"O":7,"J":22,"G":7,"C":7,"A":12,";":-1,".":19,"-":1,",":20}},"W":{"d":"287,-240r-57,240r-31,0r-52,-186r-49,186r-30,0r-61,-240r31,0r48,194r51,-194r24,0r55,194r45,-194r26,0","w":294,"k":{"\u0159":1,"\u0171":10,"\u016f":10,"\u015b":5,"\u0155":9,"\u0151":8,"\u0119":8,"\u011b":8,"\u010f":8,"\u0105":5,"\u0150":5,"\u0104":8,"\u0102":10,"\u00fd":-3,"\u00fc":10,"\u00fa":10,"\u00f6":8,"\u00f4":8,"\u00f3":8,"\u00ed":1,"\u00e9":8,"\u00e4":9,"\u00e1":9,"\u00d6":5,"\u00d4":5,"\u00d3":5,"\u00c4":10,"\u00c2":10,"\u00c1":10,"\u00ab":8,"y":-3,"u":10,"r":9,"o":8,"i":3,"g":7,"e":8,"c":8,"a":9,"Y":-13,"T":-9,"S":1,"O":5,"G":5,"C":5,"A":10,";":-5,".":14,"-":-3,",":14}},"X":{"d":"176,-240r-67,110r77,130r-34,0r-61,-102r-62,102r-28,0r77,-124r-69,-116r33,0r53,89r54,-89r27,0","w":187,"k":{"y":10,"o":8,"e":9,"Q":9,"O":9,"C":9,"-":2}},"Y":{"d":"187,-240r-80,139r0,101r-30,0r0,-101r-81,-139r36,0r63,110r64,-110r28,0","w":183,"k":{"\u0171":16,"\u0155":13,"\u0151":15,"\u0119":22,"\u0105":17,"\u0104":19,"\u0102":19,"\u00fa":16,"\u00f3":20,"\u00e9":22,"\u00e1":20,"\u00d6":12,"\u00c4":19,"\u00c2":19,"\u00c1":19,"\u00ab":22,"v":6,"u":17,"q":20,"p":15,"o":20,"i":-2,"g":19,"e":22,"a":20,"W":-12,"T":-14,"S":3,"O":12,"J":22,"G":12,"C":11,"A":19,";":6,":":8,".":24,"-":12,",":24}},"Z":{"d":"179,-26r0,26r-169,0r0,-26r130,-188r-124,0r0,-24r159,0r0,19r-132,193r136,0","w":187,"k":{"\u00d3":12,"O":12,";":2,":":2,".":2,",":2}},"[":{"d":"91,60r-63,0r0,-300r63,0r0,18r-38,0r0,263r38,0r0,19","w":105},"\\":{"d":"157,60r-145,-300r23,0r145,300r-23,0","w":163},"]":{"d":"15,-240r62,0r0,300r-62,0r0,-18r38,0r0,-263r-38,0r0,-19","w":105},"^":{"d":"171,-131r-29,0r-52,-89r-52,89r-29,0r63,-110r36,0","w":180},"_":{"d":"0,24r180,0r0,24r-180,0r0,-24","w":180},"a":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72","w":190,"k":{"y":8,"w":7,"v":8}},"b":{"d":"41,0r-13,0r0,-240r27,0r0,92v38,-68,125,-26,125,58v0,87,-89,130,-129,60xm104,-159v-40,0,-53,41,-49,90v3,33,21,51,49,51v28,0,46,-27,46,-68v0,-37,-11,-73,-46,-73","w":193,"k":{"y":5,"w":5,"v":6,"j":3}},"c":{"d":"132,-116v-3,-28,-17,-43,-42,-43v-29,0,-48,27,-48,70v0,79,77,97,90,27r25,4v-6,38,-29,63,-68,63v-45,0,-75,-37,-75,-94v0,-103,130,-129,143,-31","w":167,"k":{"j":3,"J":-4}},"d":{"d":"166,-240r0,240r-25,0r0,-30v-37,69,-127,28,-127,-57v0,-84,80,-130,125,-66r0,-87r27,0xm90,-18v39,0,53,-41,49,-91v-3,-33,-21,-52,-48,-52v-28,0,-47,28,-47,70v0,46,17,73,46,73","w":193,"k":{"j":4}},"e":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0","w":187,"k":{"\u017e":6,"y":6,"x":6,"w":6,"v":6,"t":3,"j":4}},"f":{"d":"32,-177v-2,-57,26,-73,80,-66r0,23v-34,-8,-60,1,-54,43r43,0r0,21r-43,0r0,156r-26,0r0,-156r-31,0r0,-21r31,0","w":108,"k":{"\u016f":4,"\u0155":4,"\u00fd":-8,"\u00f3":7,"\u00ed":-5,"\u00e9":7,"\u00e1":1,"t":-10,"s":-1,"o":7,"l":-1,"j":-3,"i":-2,"f":-9,"e":7,"a":1}},"g":{"d":"124,-175v4,-23,17,-35,48,-30r0,22v-24,0,-30,4,-33,20v45,48,-5,120,-75,99v-17,-1,-27,23,-10,30v10,6,105,1,106,15v44,38,9,86,-70,86v-53,0,-81,-16,-81,-47v0,-17,8,-28,27,-35v-27,-18,-24,-47,7,-60v-47,-36,-16,-111,45,-108v13,0,24,2,36,8xm89,-161v-23,0,-40,17,-40,40v0,23,15,39,39,39v23,0,40,-17,40,-39v0,-23,-16,-40,-39,-40xm153,17v-8,-22,-13,-21,-55,-22v-18,0,-35,-1,-43,-2v-14,7,-19,13,-19,24v2,25,28,29,56,29v25,0,61,-6,61,-29","w":176},"h":{"d":"55,-145v28,-64,112,-45,112,37r0,108r-28,0v-7,-57,23,-159,-34,-159v-64,0,-49,92,-50,159r-27,0r0,-240r27,0r0,95","w":194,"k":{"\u00fd":9,"y":9,"v":9}},"i":{"d":"55,-177r0,177r-28,0r0,-177r28,0xm56,-240r0,30r-30,0r0,-30r30,0","w":82,"k":{"j":4}},"j":{"d":"55,-180r0,186v1,47,-33,65,-77,52r0,-22v28,8,49,2,49,-30r0,-186r28,0xm57,-240r0,30r-32,0r0,-30r32,0","w":82,"k":{"\u0119":2,"\u00f3":2}},"k":{"d":"175,0r-29,0r-52,-99r-39,44r0,55r-27,0r0,-240r27,0r0,154r83,-91r29,0r-55,62","w":180,"k":{"\u0119":9,"\u0105":3,"\u00fc":6,"\u00f6":9,"\u00f3":9,"\u00e4":4,"u":6,"o":9,"g":-5,"e":9,"c":7,"a":4,".":-1,"-":6}},"l":{"d":"55,0r-27,0r0,-240r27,0r0,240","w":82,"k":{"j":4}},"m":{"d":"156,-140v23,-65,110,-54,110,30r0,110r-27,0v-6,-57,22,-158,-35,-158v-60,0,-43,94,-45,158r-27,0v-7,-57,23,-159,-34,-159v-60,0,-42,97,-44,159r-26,0r0,-177r23,0r0,34v21,-51,91,-53,105,3","w":293,"k":{"y":9,"w":7,"v":9,"p":5,"j":5}},"n":{"d":"53,-145v35,-64,115,-43,115,42r0,103r-26,0v-6,-57,23,-156,-37,-158v-28,0,-50,25,-50,60r0,98r-27,0r0,-177r25,0r0,32","w":195,"k":{"y":9,"w":8,"v":9,"p":5,"j":5}},"o":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71","w":186,"k":{"\u017e":6,"y":6,"x":6,"w":5,"v":6,"t":3,"j":3}},"p":{"d":"55,60r-27,0r0,-237r25,0r0,34v35,-74,126,-34,126,54v0,85,-83,128,-124,62r0,87xm103,-18v31,-2,46,-31,46,-69v0,-83,-81,-94,-94,-27v-9,49,8,98,48,96","w":192,"k":{"\u00fd":5,"y":5,"t":1,"j":3}},"q":{"d":"165,-180r0,240r-27,0r0,-92v-34,71,-124,32,-124,-55v0,-86,86,-133,126,-61r11,-32r14,0xm90,-19v35,-1,52,-38,48,-84v-3,-36,-19,-56,-48,-56v-27,0,-46,28,-46,70v0,42,18,70,46,70","w":192,"k":{"u":5,"c":2}},"r":{"d":"52,-136v15,-32,24,-48,63,-46r0,26v-33,-3,-60,24,-60,62r0,94r-27,0r0,-177r24,0r0,41","w":118,"k":{"\u0159":2,"\u0163":-12,"\u017c":-3,"\u017a":-3,"\u0171":2,"\u016f":2,"\u0165":-13,"\u0155":2,"\u0151":7,"\u0148":2,"\u0144":2,"\u0119":7,"\u010f":5,"\u010d":6,"\u017e":-3,"\u00fd":-10,"\u00fa":2,"\u00f6":7,"\u00f4":7,"\u00f3":7,"\u00e9":7,"\u00e4":1,"\u00e1":1,"z":-2,"y":-10,"x":-8,"w":-8,"v":-9,"u":2,"t":-12,"s":-2,"r":2,"q":4,"p":2,"o":7,"n":2,"m":2,"l":2,"k":2,"h":2,"g":1,"f":-11,"e":7,"d":5,"c":6,"b":2,"a":1,".":21,"-":10,",":21}},"s":{"d":"30,-51v3,42,96,44,97,4v1,-26,-43,-29,-68,-34v-30,-6,-48,-24,-48,-49v0,-31,27,-52,67,-52v37,0,61,15,70,45r-26,5v-6,-35,-81,-36,-83,-1v-2,24,39,27,63,31v36,6,54,23,54,52v0,55,-99,72,-134,35v-9,-8,-14,-16,-18,-31","w":167,"k":{"\u00e9":1,"p":4,"k":4}},"t":{"d":"108,-19r0,22v-46,8,-78,-6,-77,-52r0,-107r-31,0r0,-21r31,0r1,-45r26,-2r0,47r40,0r0,21r-40,0r0,111v-1,26,23,32,50,26","w":110,"k":{"\u0119":6,"\u0105":-2,"\u00f6":6,"\u00f3":6,"\u00e4":-1,"y":-5,"o":6,"e":6,"c":5,"a":-1,";":-5,":":-5}},"u":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0","w":194,"k":{"j":4}},"v":{"d":"158,-177r-62,177r-28,0r-64,-177r31,0r49,144r49,-144r25,0","w":162,"k":{"\u00f6":5,"\u00f3":5,"\u00e9":5,"\u00e4":3,"\u00e1":3,"o":5,"j":3,"g":4,"e":5,"c":5,"a":3,";":-8,":":-7,".":16,"-":-4,",":16}},"w":{"d":"232,-177r-51,177r-22,0r-40,-132r-36,132r-23,0r-53,-177r28,0r38,132r37,-132r20,0r40,132r40,-132r22,0","w":239,"k":{"\u00f6":4,"\u00f3":4,"\u00e4":4,"s":1,"o":4,"g":4,"e":4,"c":4,"a":4,";":-8,":":-8,".":13,"-":-5,",":13}},"x":{"d":"151,0r-32,0r-45,-72r-46,72r-27,0r60,-92r-54,-85r32,0r38,60r38,-60r27,0r-52,79","w":152,"k":{"q":5,"o":7,"e":7,"c":5,"a":3}},"y":{"d":"149,-177r-71,198v-9,32,-32,50,-73,39r0,-21v38,8,49,-9,58,-42r-61,-174r28,0r47,133r49,-133r23,0","w":149,"k":{"\u015b":-1,"\u010d":4,"s":-1,"o":6,"g":3,"e":6,"c":4,"a":2,";":-8,":":-7,".":16,"-":-5,",":17}},"z":{"d":"143,-21r0,21r-131,0r0,-21r94,-135r-87,0r0,-21r124,0r0,15r-98,141r98,0","w":152,"k":{"o":8,"e":8,";":-6,":":-6,",":4}},"{":{"d":"99,-221v-71,-8,1,109,-56,131v33,11,23,59,23,99v0,26,6,32,33,32r0,19v-65,10,-59,-50,-58,-109v0,-20,-5,-29,-20,-33r0,-17v53,-16,-25,-156,78,-141r0,19","w":105},"|":{"d":"77,-240r27,0r0,300r-27,0r0,-300","w":180},"}":{"d":"7,41v71,8,-1,-109,56,-131v-33,-11,-23,-59,-23,-99v0,-26,-6,-32,-33,-32r0,-19v65,-10,58,50,57,109v0,20,6,29,21,33r0,17v-55,15,25,156,-78,141r0,-19","w":105},"~":{"d":"143,-95v-14,2,-58,-24,-77,-24v-12,0,-20,7,-31,26r-16,-10v14,-30,28,-42,49,-42v16,0,61,24,76,24v13,0,21,-6,32,-24r16,9v-13,23,-22,36,-49,41"},"\u00a1":{"d":"30,-177r37,0r0,37r-37,0r0,-37xm41,-120r15,0r13,180r-41,0","w":96},"\u00a2":{"d":"98,-40v-85,-5,-83,-160,0,-166r0,-44r19,0r0,44v30,3,52,24,57,54r-24,5v-4,-21,-19,-38,-33,-39r0,125v17,-3,29,-18,33,-38r24,4v-8,33,-26,50,-57,55r0,50r-19,0r0,-50xm98,-61r0,-124v-22,4,-36,28,-36,63v0,34,12,54,36,61"},"\u00a3":{"d":"-1,-26v59,4,79,-29,67,-88r-39,0r0,-21r37,0v-15,-58,12,-110,62,-110v23,0,41,10,58,33r-20,15v-24,-40,-71,-28,-72,18r3,44r52,0r0,21r-49,0v4,43,-1,65,-27,88v48,-1,99,8,113,-28r23,15v-26,63,-129,32,-208,39r0,-26"},"\u00a5":{"d":"148,-149r45,0r0,21r-57,0r-15,28r72,0r0,21r-73,0r0,79r-29,0r0,-79r-72,0r0,-21r72,0r-16,-28r-56,0r0,-21r44,0r-53,-91r36,0r63,110r65,-110r27,0"},"\u0192":{"d":"106,-206v7,-48,35,-68,82,-63v-3,7,2,23,-11,21v-33,2,-36,7,-43,42r43,0r-5,25r-43,0r-30,170v-6,45,-33,67,-81,62v3,-8,-2,-24,12,-21v34,-4,35,-10,43,-51r29,-160r-33,0r4,-25r33,0"},"\u00a7":{"d":"55,8v10,45,104,45,104,-4v0,-52,-128,-33,-128,-96v0,-21,10,-36,34,-52v-54,-27,-28,-105,39,-101v37,2,64,16,73,47r-27,3v-9,-40,-86,-40,-87,1v-1,51,120,33,120,96v0,17,-8,30,-29,48v65,30,29,119,-47,115v-41,-2,-72,-18,-83,-52xm157,-90v0,-28,-45,-37,-71,-45v-39,20,-36,57,11,69r35,9v16,-8,25,-20,25,-33"},"\u00a4":{"d":"18,-45r35,-34v-24,-34,-25,-67,-1,-102r-34,-35r16,-16r34,35v38,-25,65,-26,103,-1r35,-34r16,16r-34,35v25,40,25,62,0,101r34,35r-15,16r-35,-34v-37,25,-64,24,-103,0r-35,34xm121,-192v-35,0,-62,28,-62,62v0,33,28,61,61,61v33,0,61,-28,61,-61v0,-33,-28,-62,-60,-62","w":240},"'":{"d":"41,-147r-17,0r-5,-93r28,0","w":65},"\u201c":{"d":"27,-163v-4,-39,16,-54,27,-77r13,0r-20,42r15,0r0,35r-35,0xm80,-163v-5,-40,17,-53,28,-77r13,0r-21,42r15,0r0,35r-35,0","w":144,"k":{"Y":-4,"W":-4,"V":-5,"T":-1,"A":18}},"\u00ab":{"d":"45,-42r-31,-52r31,-49r15,0r-18,49r18,52r-15,0xm91,-42r-31,-52r31,-49r16,0r-19,49r19,52r-16,0","w":123},"\u00b7":{"d":"39,-111r0,39r-39,0r0,-39r39,0","w":39},"\u2219":{"d":"39,-111r0,39r-39,0r0,-39r39,0","w":39},"\u00b6":{"d":"13,-180v2,-43,22,-60,76,-60r102,0r0,17r-24,0r0,283r-18,0r0,-283r-17,0r0,283r-18,0r0,-187v-57,2,-104,-3,-101,-53xm114,-223v-45,-1,-72,0,-72,40v0,36,32,42,72,39r0,-79"},"\u201e":{"d":"119,-35v4,39,-16,54,-27,77r-13,0r20,-42r-14,0r0,-35r34,0xm67,-35r0,30r-29,47r-13,0r21,-42r-15,0r0,-35r36,0","w":144,"k":{"\u0164":24,"\u00dd":25,"Y":25,"W":14,"V":21,"T":22,"A":-8}},"\u00bb":{"d":"79,-143r30,51r-30,50r-16,0r19,-50r-19,-51r16,0xm33,-143r30,51r-30,50r-16,0r19,-50r-19,-51r16,0","w":123,"k":{"Y":23,"W":9,"V":12,"T":23,"A":2}},"\u00bf":{"d":"82,-143r0,-34r35,0r0,34r-35,0xm175,-6v-7,45,-35,71,-82,71v-46,0,-79,-28,-79,-69v0,-27,14,-46,45,-62v33,-17,29,-22,28,-54r26,0v1,28,0,54,-19,63v-21,11,-48,26,-48,54v0,25,20,43,48,43v32,0,50,-19,55,-52","w":181},"`":{"d":"33,-238r11,-22r69,41r-7,14","w":180},"\u00b4":{"d":"147,-238r-73,33r-7,-14r69,-41","w":180},"\u00af":{"d":"144,-237r0,20r-109,0r0,-20r109,0","w":180},"\u02c9":{"d":"144,-237r0,20r-109,0r0,-20r109,0","w":180},"\u00a8":{"d":"118,-248v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm62,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":180},"\u00b8":{"d":"84,16v21,1,33,7,35,24v2,27,-44,33,-65,18r4,-12v15,9,41,11,43,-6v2,-12,-18,-13,-33,-12r9,-28r12,0","w":180},"\u00c6":{"d":"314,-26r0,26r-165,0r0,-74r-80,0r-45,74r-29,0r143,-240r172,0r0,25r-131,0r0,77r106,0r0,25r-106,0r0,87r135,0xm149,-98r0,-116r-67,116r67,0","w":326},"\u00aa":{"d":"12,-214v4,-25,22,-28,50,-31v60,-6,40,60,47,110r-21,0v-1,-5,-2,-8,-2,-14v-15,28,-79,20,-77,-16v2,-32,37,-39,77,-37v0,-21,-6,-28,-27,-28v-17,0,-25,5,-28,19xm86,-181v2,-9,-7,-7,-13,-7v-28,0,-42,9,-42,24v11,33,57,13,55,-17","w":125},"\u0141":{"d":"171,-26r0,26r-141,0r0,-93r-23,23r0,-29r23,-22r0,-119r31,0r0,100r46,-41r0,28r-46,41r0,86r110,0","w":176,"k":{"\u0162":24,"\u0164":24,"\u00fd":17,"\u00dd":26,"w":14,"v":17,"Y":26,"W":18,"V":24,"T":24,"O":10}},"\u00d8":{"d":"186,-208v53,68,23,213,-74,213v-24,0,-39,-5,-59,-22r-17,26r-25,0r28,-43v-52,-72,-16,-211,75,-211v23,0,38,6,57,20r18,-24r25,0xm58,-59r96,-145v-51,-41,-108,3,-108,83v0,25,4,44,12,62xm113,-19v70,0,82,-109,55,-166r-97,146v12,14,24,20,42,20","w":227},"\u0152":{"d":"335,-25r0,25r-152,0r0,-25v-63,71,-168,8,-168,-94v0,-103,103,-167,168,-97r0,-24r152,0r0,24r-121,0r0,79r97,0r0,24r-97,0r0,88r121,0xm119,-20v34,0,56,-18,64,-50r0,-105v-7,-28,-31,-45,-63,-45v-45,0,-74,39,-74,100v0,60,29,100,73,100","w":346},"\u00ba":{"d":"62,-245v31,0,51,22,51,57v0,32,-22,56,-53,56v-30,0,-50,-23,-50,-57v0,-33,21,-56,52,-56xm62,-229v-18,0,-29,15,-29,40v0,26,11,41,29,41v18,0,29,-15,29,-40v0,-26,-11,-41,-29,-41","w":123},"\u00e6":{"d":"160,-86v-10,70,78,93,101,34r24,4v-18,65,-119,73,-146,8v-15,63,-129,58,-128,-8v1,-53,61,-66,123,-61v2,-34,-11,-53,-45,-53v-24,0,-40,12,-45,32r-26,-5v8,-53,106,-64,136,-22v53,-56,144,-11,135,71r-129,0xm161,-106r97,0v-1,-34,-18,-55,-46,-55v-28,0,-48,22,-51,55xm76,-18v34,-1,62,-28,57,-70v-45,-8,-92,6,-92,38v0,18,15,32,35,32","w":302},"\u0131":{"d":"55,-177r0,177r-28,0r0,-177r28,0","w":82},"\u0142":{"d":"55,0r-28,0r0,-104r-23,22r0,-26r23,-23r0,-109r28,0r0,93r23,-22r0,26r-23,22r0,121","w":82},"\u00f8":{"d":"6,10r26,-36v-41,-56,-10,-156,63,-156v18,0,30,4,44,14r16,-21r25,0r-26,35v42,55,12,159,-63,159v-18,0,-31,-4,-45,-15r-16,20r-24,0xm122,-149v-55,-38,-98,39,-71,100xm135,-132r-72,101v36,33,80,0,80,-56v0,-20,-2,-33,-8,-45","w":186},"\u0153":{"d":"168,-87v-9,67,76,95,98,34r25,4v-15,57,-98,74,-134,23v-49,63,-143,25,-143,-63v0,-86,94,-124,143,-63v50,-65,146,-16,136,65r-125,0xm169,-107r95,0v3,-56,-62,-71,-86,-31v-5,9,-8,17,-9,31xm94,-17v34,0,50,-31,50,-71v0,-46,-17,-71,-49,-71v-33,0,-50,25,-50,72v0,43,15,70,49,70","w":307},"\u00df":{"d":"28,-161v1,-57,27,-91,77,-91v37,0,67,23,67,53v0,30,-29,49,-71,49v-5,0,-7,0,-7,3v0,4,4,7,25,15v57,21,76,39,76,72v0,53,-57,82,-115,62r8,-20v61,23,107,-45,51,-73v-27,-14,-90,-26,-65,-68v2,-4,5,-5,13,-6v33,-3,54,-17,54,-36v0,-17,-14,-28,-36,-28v-31,0,-50,22,-50,58r0,186r-27,0r0,-154r-19,0r0,-22r19,0","w":204},"\u00b9":{"d":"125,-112r0,16r-97,0r0,-16r40,0r0,-105v-14,13,-25,22,-41,30r0,-21v21,-10,34,-21,46,-35r15,0r0,131r37,0","w":139},"\u00ac":{"d":"184,0r-27,0r0,-72r-129,0r0,-24r156,0r0,96"},"\u00b5":{"d":"105,-20v61,0,39,-95,43,-157r27,0r0,177r-25,0r0,-28v-19,44,-67,44,-87,5r0,83r-27,0r0,-237r27,0v4,61,-18,157,42,157"},"\u03bc":{"d":"105,-20v61,0,39,-95,43,-157r27,0r0,177r-25,0r0,-28v-19,44,-67,44,-87,5r0,83r-27,0r0,-237r27,0v4,61,-18,157,42,157"},"\u00d0":{"d":"110,-240v68,-1,107,54,108,119v0,69,-42,121,-98,121r-90,0r0,-115r-24,0r0,-24r24,0r0,-101r80,0xm187,-121v0,-51,-26,-95,-79,-94r-48,0r0,76r57,0r0,24r-57,0r0,89r49,0v55,1,78,-43,78,-95","w":232},"\u00bd":{"d":"113,-112r0,16r-96,0r0,-16r39,0r0,-105v-14,13,-25,22,-41,30r0,-21v21,-10,35,-21,47,-35r15,0r0,131r36,0xm92,0r-22,0r145,-240r22,0xm302,-17r0,17r-108,0r0,-16v75,-53,86,-66,86,-87v0,-40,-66,-33,-67,5r-20,-5v5,-61,108,-55,109,0v0,24,-21,47,-80,86r80,0","w":316},"\u00b1":{"d":"22,-132r71,0r0,-74r26,0r0,74r71,0r0,24r-71,0r0,74r-26,0r0,-74r-71,0r0,-24xm22,-17r168,0r0,24r-168,0r0,-24"},"\u00de":{"d":"115,-205v47,-2,77,30,78,71v2,63,-62,78,-133,71r0,63r-30,0r0,-240r30,0r0,35r55,0xm60,-87v51,2,102,3,102,-47v0,-50,-52,-48,-102,-46r0,93","w":203},"\u00bc":{"d":"116,-112r0,16r-97,0r0,-16r40,0r0,-105v-14,13,-25,22,-41,30r0,-21v21,-10,34,-21,46,-35r15,0r0,131r37,0xm94,0r-22,0r146,-240r21,0xm278,0r-20,0r0,-33r-73,0r0,-14r68,-100r25,0r0,97r25,0r0,17r-25,0r0,33xm258,-50r0,-77r-51,77r51,0","w":316},"\u00f7":{"d":"106,-85v9,0,16,8,16,17v0,9,-8,17,-17,17v-9,0,-16,-8,-16,-17v0,-9,7,-17,17,-17xm106,-191v9,0,16,8,16,17v0,9,-8,17,-17,17v-9,0,-16,-8,-16,-17v0,-9,7,-17,17,-17xm22,-132r168,0r0,24r-168,0r0,-24"},"\u00a6":{"d":"77,-240r27,0r0,120r-27,0r0,-120xm77,-55r27,0r0,115r-27,0r0,-115","w":180},"\u00b0":{"d":"106,-245v26,0,47,22,47,48v0,27,-21,47,-48,47v-26,0,-47,-21,-47,-47v0,-26,22,-48,48,-48xm105,-225v-15,0,-27,13,-27,28v0,15,12,27,27,27v15,0,28,-13,28,-28v0,-15,-13,-27,-28,-27"},"\u00fe":{"d":"55,60r-27,0r0,-300r27,0r0,93v38,-69,124,-28,124,58v0,85,-83,128,-124,62r0,87xm103,-18v31,-2,46,-31,46,-69v0,-83,-81,-94,-94,-27v-9,49,8,98,48,96","w":192},"\u00be":{"d":"44,-163r0,-16v26,2,53,-2,52,-24v-1,-30,-59,-31,-64,0r-19,-5v11,-48,104,-46,104,4v0,15,-9,27,-24,32v19,4,30,18,30,36v0,26,-23,43,-58,43v-29,0,-48,-13,-58,-37r20,-6v3,36,75,34,75,0v0,-23,-29,-29,-58,-27xm107,0r-22,0r145,-240r22,0xm283,0r-20,0r0,-33r-74,0r0,-14r69,-100r25,0r0,97r24,0r0,17r-24,0r0,33xm263,-50r0,-77r-51,77r51,0","w":316},"\u00b2":{"d":"122,-113r0,17r-108,0r0,-16v75,-53,87,-66,87,-87v0,-40,-66,-33,-67,5r-20,-5v5,-60,107,-56,108,0v0,25,-20,46,-79,86r79,0","w":139},"\u00ae":{"d":"198,-48r-24,0r-27,-61r-40,0r0,61r-21,0r0,-144v49,-1,111,-6,109,41v0,17,-9,31,-27,37xm107,-126v30,1,66,4,66,-25v0,-29,-38,-23,-66,-23r0,48xm141,-244v67,0,122,57,122,124v0,69,-56,124,-124,124v-69,0,-124,-56,-124,-125v0,-68,56,-123,126,-123xm141,-226v-58,0,-108,47,-108,105v0,59,47,107,106,107v58,0,107,-47,107,-106v0,-58,-48,-106,-105,-106","w":278},"\u00f0":{"d":"92,5v-48,2,-78,-43,-78,-91v0,-69,69,-121,117,-71v-6,-20,-14,-34,-29,-50r-31,18r-11,-15r26,-16v-9,-6,-13,-9,-28,-17r13,-14v12,4,25,11,36,19r31,-17r12,15r-26,15v64,53,74,221,-32,224xm93,-155v-30,0,-49,27,-49,68v0,44,18,69,49,69v30,0,49,-26,49,-67v0,-42,-19,-70,-49,-70","w":186},"\u00d7":{"d":"160,-49r-54,-54r-55,54r-17,-17r55,-54r-55,-55r17,-17r55,54r54,-54r17,17r-54,55r54,54"},"\u00b3":{"d":"46,-163r0,-16v26,2,53,-3,52,-24v-1,-31,-60,-30,-65,0r-19,-5v11,-48,104,-46,105,4v0,15,-9,27,-24,32v19,4,30,18,30,36v0,26,-23,43,-58,43v-29,0,-48,-13,-58,-37r20,-6v3,36,74,34,74,0v0,-23,-28,-29,-57,-27","w":139},"\u00a9":{"d":"174,-98r20,4v-18,80,-120,56,-120,-27v0,-81,106,-103,120,-26r-21,4v-7,-24,-17,-34,-35,-34v-24,0,-40,21,-40,57v0,64,64,79,76,22xm141,-244v67,0,122,57,122,124v0,69,-56,124,-124,124v-69,0,-124,-56,-124,-125v0,-68,56,-123,126,-123xm141,-226v-58,0,-108,47,-108,105v0,59,47,107,106,107v58,0,107,-47,107,-106v0,-58,-48,-106,-105,-106","w":278},"\u00c1":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm153,-294r-73,31r-7,-14r70,-38","w":198,"k":{"\u0164":21,"T":25}},"\u00c2":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm154,-267r-24,3r-34,-21r-32,21r-26,-3r59,-44","w":198,"k":{"\u0162":25,"\u0164":20,"\u00fd":9,"\u00dd":17,"w":9,"v":9,"Y":21,"W":13,"V":17,"T":25}},"\u00c4":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm124,-304v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm68,-303v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":198},"\u00c0":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm39,-294r11,-21r69,38r-7,14","w":198},"\u00c5":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm97,-319v17,0,31,14,31,32v0,17,-14,31,-32,31v-18,0,-32,-15,-32,-32v0,-18,15,-31,33,-31xm97,-303v-9,0,-17,6,-17,15v0,9,7,17,16,17v9,0,16,-7,16,-16v0,-9,-7,-16,-15,-16","w":198},"\u00c3":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm36,-280v23,-33,47,-21,85,-10v8,0,13,-2,22,-9r13,13v-33,46,-71,-18,-105,16","w":198},"\u00c7":{"d":"113,-21v35,0,54,-23,61,-60r27,6v-13,52,-42,80,-87,80r-4,14v20,-4,38,9,38,26v0,29,-48,34,-72,19r4,-13v18,9,46,12,48,-7v2,-13,-21,-15,-37,-12r9,-28v-51,-6,-85,-56,-85,-126v0,-74,40,-123,100,-123v45,0,73,26,86,77r-28,6v-12,-40,-29,-57,-59,-57v-42,0,-66,37,-66,100v0,60,25,98,65,98","w":208},"\u00c9":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm160,-294r-73,31r-8,-14r70,-38","w":197},"\u00ca":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm165,-267r-25,3r-34,-21r-32,21r-26,-3r59,-44","w":197},"\u00cb":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm134,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm78,-303v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":197},"\u00c8":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm57,-294r10,-21r70,38r-7,14","w":197},"\u00cd":{"d":"60,0r-30,0r0,-240r30,0r0,240xm95,-294r-66,31r-7,-14r62,-38","w":90},"\u00ce":{"d":"60,0r-30,0r0,-240r30,0r0,240xm96,-267r-24,3r-27,-21r-27,21r-24,-3r51,-44","w":90},"\u00cf":{"d":"60,0r-30,0r0,-240r30,0r0,240xm69,-304v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm20,-303v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":90},"\u00cc":{"d":"60,0r-30,0r0,-240r30,0r0,240xm-5,-294r11,-21r62,38r-7,14","w":90},"\u00d1":{"d":"207,0r-30,0r-124,-209r1,209r-24,0r0,-240r37,0r117,196r-1,-196r24,0r0,240xm59,-280v23,-33,47,-21,85,-10v8,0,13,-2,22,-9r14,13v-31,30,-44,14,-82,4v-10,0,-16,3,-24,12","w":236},"\u00d3":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm168,-294r-73,31r-7,-14r69,-38","w":227,"k":{"Z":12,"W":5,"T":9,";":-14,":":-13,".":5,",":6}},"\u00d4":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm172,-267r-25,3r-33,-21r-33,21r-26,-3r59,-44","w":227},"\u00d6":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm141,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm85,-303v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":227,"k":{"Y":11,"X":8,"W":5,"V":6,"T":9,"A":6,";":-14,":":-13,".":5,",":6}},"\u00d2":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm62,-294r10,-21r70,38r-8,14","w":227},"\u00d5":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm56,-280v23,-33,46,-21,85,-10v8,0,13,-2,22,-9r13,13v-33,46,-71,-18,-105,16","w":227},"\u0160":{"d":"155,-178v-5,-52,-107,-57,-110,-3v-2,34,54,39,84,47v41,11,61,32,61,66v0,72,-114,96,-159,49v-13,-12,-18,-22,-27,-45r27,-6v11,33,34,49,71,49v64,0,77,-69,20,-82v-48,-11,-108,-19,-107,-76v0,-39,32,-66,81,-66v43,0,73,20,86,59xm40,-305r25,-4r33,22r33,-22r26,4r-59,43","w":204},"\u00da":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm167,-294r-73,31r-7,-14r69,-38","w":218},"\u00db":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm168,-267r-24,3r-34,-21r-32,21r-26,-3r59,-44","w":218},"\u00dc":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm138,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm82,-303v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":218,"k":{"r":3,"p":3,"n":3,"b":3,"A":6,".":4,",":5}},"\u00d9":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm56,-294r11,-21r69,38r-7,14","w":218},"\u00dd":{"d":"187,-240r-80,139r0,101r-30,0r0,-101r-81,-139r36,0r63,110r64,-110r28,0xm150,-294r-73,31r-8,-14r70,-38","w":183,"k":{"\u015f":15,"\u0151":15,"\u0119":22,"\u0104":17,"\u0102":19,"\u00fa":16,"\u00f3":20,"\u00e9":22,"\u00e1":20,"\u00c4":19,"\u00c2":14,"\u00c1":19,"J":22,";":6,":":8,".":24,"-":12,",":24}},"\u0178":{"d":"187,-240r-80,139r0,101r-30,0r0,-101r-81,-139r36,0r63,110r64,-110r28,0xm122,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm66,-303v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":183},"\u017d":{"d":"179,-26r0,26r-169,0r0,-26r130,-188r-124,0r0,-24r159,0r0,19r-132,193r136,0xm37,-305r25,-4r34,22r32,-22r26,4r-59,43","w":187},"\u00e1":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm146,-238r-73,33r-7,-14r69,-41","w":190},"\u00e2":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm152,-210r-25,4r-33,-24r-32,24r-26,-4r58,-46","w":190},"\u00e4":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm122,-248v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm66,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":190,"k":{"y":8,"w":7,"v":8}},"\u00e0":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm44,-238r11,-22r70,41r-8,14","w":190},"\u00e5":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm94,-264v17,0,30,14,30,31v0,17,-13,30,-30,30v-17,0,-31,-13,-31,-30v0,-17,14,-31,31,-31xm94,-249v-9,0,-16,7,-16,16v0,9,7,16,16,16v9,0,16,-7,16,-16v0,-9,-8,-16,-16,-16","w":190},"\u00e3":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm35,-224v23,-33,47,-21,85,-10v8,0,13,-2,22,-9r14,13v-32,47,-71,-18,-106,17","w":190},"\u00e7":{"d":"132,-116v-3,-28,-17,-43,-42,-43v-29,0,-48,27,-48,70v0,79,77,97,90,27r25,4v-6,39,-33,63,-68,63r-3,12v21,-1,32,7,34,23v2,28,-44,32,-65,18r5,-12v15,10,40,11,43,-6v1,-11,-19,-14,-34,-11r8,-25v-39,-6,-63,-41,-63,-92v0,-104,129,-130,143,-32","w":167},"\u00e9":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm149,-238r-72,33r-8,-14r70,-41","w":187,"k":{"t":3}},"\u00ea":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm154,-210r-24,4r-34,-24r-32,24r-26,-4r58,-46","w":187},"\u00eb":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm123,-248v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm69,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":187},"\u00e8":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm48,-238r10,-22r70,41r-7,14","w":187},"\u00ed":{"d":"55,-177r0,177r-28,0r0,-177r28,0xm88,-240r-60,35r-8,-14r57,-41","w":82,"k":{"v":3}},"\u00ee":{"d":"55,-177r0,177r-27,0r0,-177r27,0xm89,-210r-23,4r-25,-24r-23,24r-24,-4r48,-46","w":82},"\u00ef":{"d":"55,-177r0,177r-28,0r0,-177r28,0xm65,-248v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm17,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":82},"\u00ec":{"d":"55,-177r0,177r-28,0r0,-177r28,0xm-5,-240r11,-20r56,41r-8,14","w":82},"\u00f1":{"d":"53,-145v35,-64,115,-43,115,42r0,103r-26,0v-6,-57,23,-156,-37,-158v-28,0,-50,25,-50,60r0,98r-27,0r0,-177r25,0r0,32xm39,-224v23,-33,47,-21,85,-10v8,0,13,-2,22,-9r13,13v-31,32,-42,13,-82,5v-10,0,-15,3,-23,12","w":195},"\u00f3":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm145,-238r-72,33r-8,-14r70,-41","w":186,"k":{"\u017a":6,"w":5}},"\u00f4":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm152,-210r-25,4r-34,-24r-32,24r-26,-4r59,-46","w":186},"\u00f6":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm121,-248v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm65,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":186,"k":{"y":6,"x":6,"w":5,"v":6,"t":3}},"\u00f2":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm44,-238r10,-22r70,41r-7,14","w":186},"\u00f5":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm36,-224v23,-34,47,-20,85,-10v8,0,13,-2,22,-9r13,13v-31,32,-42,13,-82,5v-10,0,-16,3,-24,12","w":186},"\u0161":{"d":"30,-51v3,42,96,44,97,4v1,-26,-43,-29,-68,-34v-30,-6,-48,-24,-48,-49v0,-31,27,-52,67,-52v37,0,61,15,70,45r-26,5v-6,-35,-81,-36,-83,-1v-2,24,39,27,63,31v36,6,54,23,54,52v0,55,-99,72,-134,35v-9,-8,-14,-16,-18,-31xm21,-249r25,-4r33,23r33,-23r26,4r-59,45","w":167,"k":{"p":4,"k":4}},"\u00fa":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm153,-238r-72,33r-8,-14r70,-41","w":194},"\u00fb":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm156,-210r-25,4r-33,-24r-33,24r-26,-4r59,-46","w":194},"\u00fc":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm125,-248v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm69,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":194},"\u00f9":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm43,-238r11,-22r69,41r-7,14","w":194},"\u00fd":{"d":"149,-177r-71,198v-9,32,-32,50,-73,39r0,-21v38,8,49,-9,58,-42r-61,-174r28,0r47,133r49,-133r23,0xm135,-238r-73,33r-7,-14r69,-41","w":149,"k":{"\u010d":4,".":16,",":17}},"\u00ff":{"d":"149,-177r-71,198v-9,32,-32,50,-73,39r0,-21v38,8,49,-9,58,-42r-61,-174r28,0r47,133r49,-133r23,0xm104,-248v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm48,-247v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":149},"\u017e":{"d":"143,-21r0,21r-131,0r0,-21r94,-135r-87,0r0,-21r124,0r0,15r-98,141r98,0xm23,-249r25,-4r33,23r32,-23r26,4r-58,45","w":152,"k":{"e":8,";":-6,":":-6,",":3}},"\u0102":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm44,-308r20,0v2,30,63,29,65,0r20,0v-5,29,-22,43,-53,43v-31,0,-47,-14,-52,-43","w":198,"k":{"\u0162":25,"\u0164":21,"\u00fd":9,"\u00dd":21,"y":9,"Y":21,"T":25}},"\u0104":{"d":"174,0r-13,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0r79,240v-17,10,-24,18,-24,28v-1,17,20,20,35,14r4,12v-22,12,-60,7,-60,-21v0,-15,8,-25,27,-33xm130,-93r-37,-115r-37,115r74,0","w":198,"k":{"\u0162":14,"\u0164":21,"\u00fd":-16,"\u00dd":21,"y":-16,"Y":21,"T":24,"C":9,";":-10,":":-9,".":-4,",":-6}},"\u0106":{"d":"113,-21v35,0,54,-24,61,-60r27,6v-10,48,-37,80,-88,80v-66,0,-98,-61,-98,-127v0,-74,40,-123,100,-123v45,0,73,26,86,77r-28,6v-12,-40,-29,-57,-59,-57v-42,0,-66,37,-66,100v0,60,25,98,65,98xm170,-294r-73,31r-7,-14r69,-38","w":208},"\u010c":{"d":"113,-21v35,0,54,-24,61,-60r27,6v-10,48,-37,80,-88,80v-66,0,-98,-61,-98,-127v0,-74,40,-123,100,-123v45,0,73,26,86,77r-28,6v-12,-40,-29,-57,-59,-57v-42,0,-66,37,-66,100v0,60,25,98,65,98xm56,-305r25,-4r33,22r33,-22r25,4r-58,43","w":208,"k":{"O":-1}},"\u010e":{"d":"110,-240v68,-1,107,54,108,119v0,69,-42,121,-98,121r-90,0r0,-240r80,0xm187,-121v0,-51,-25,-95,-79,-94r-48,0r0,189r49,0v55,1,78,-43,78,-95xm51,-305r25,-4r33,22r32,-22r26,4r-58,43","w":232},"\u011a":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm48,-305r25,-4r34,22r32,-22r26,4r-59,43","w":197},"\u0116":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm107,-305v10,0,19,8,19,18v0,10,-9,20,-19,20v-26,0,-23,-39,0,-38","w":197},"\u0118":{"d":"185,-26r0,26v-18,11,-23,18,-23,28v-1,17,20,20,35,14r3,12v-22,12,-60,6,-60,-21v0,-15,9,-25,28,-33r-138,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0","w":197},"\u011e":{"d":"48,-118v-2,53,22,99,70,99v39,0,63,-31,59,-77r-59,0r0,-25r90,0r0,124r-19,0r-8,-30v-17,23,-37,32,-67,32v-62,0,-99,-59,-99,-122v0,-130,159,-178,190,-58r-28,7v-6,-34,-27,-51,-61,-51v-49,0,-68,49,-68,101xm66,-308r20,0v2,30,63,29,65,0r20,0v-5,29,-21,43,-52,43v-31,0,-48,-14,-53,-43","w":232},"\u0130":{"d":"60,0r-30,0r0,-240r30,0r0,240xm45,-305v10,0,19,8,19,18v0,10,-9,20,-19,20v-26,0,-23,-39,0,-38","w":90},"\u0139":{"d":"171,-26r0,26r-141,0r0,-240r30,0r0,214r111,0xm105,-294r-73,31r-8,-14r70,-38","w":176},"\u013d":{"d":"171,-26r0,26r-141,0r0,-240r30,0r0,214r111,0xm109,-240r30,0r-27,67r-14,0","w":176,"k":{"\u0162":5,"\u0164":5,"\u00fd":17,"\u00dd":3,"v":17,"Y":3,"V":5,"T":5,"O":10}},"\u0143":{"d":"207,0r-30,0r-124,-209r1,209r-24,0r0,-240r37,0r117,196r-1,-196r24,0r0,240xm175,-294r-73,31r-8,-14r70,-38","w":236},"\u0147":{"d":"207,0r-30,0r-124,-209r1,209r-24,0r0,-240r37,0r117,196r-1,-196r24,0r0,240xm60,-305r25,-4r33,22r32,-22r26,4r-58,43","w":236},"\u0150":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm133,-296r-56,33r-9,-13r53,-39xm193,-296r-57,33r-8,-13r53,-39","w":227},"\u0154":{"d":"124,-240v83,-8,101,109,32,129r47,111r-32,0r-44,-104r-69,0r0,104r-28,0r0,-240r94,0xm58,-129v53,1,112,7,112,-45v0,-49,-63,-40,-112,-40r0,85xm160,-294r-73,31r-7,-14r69,-38","w":220},"\u0158":{"d":"124,-240v83,-8,101,109,32,129r47,111r-32,0r-44,-104r-69,0r0,104r-28,0r0,-240r94,0xm58,-129v53,1,112,7,112,-45v0,-49,-63,-40,-112,-40r0,85xm46,-305r25,-4r33,22r33,-22r26,4r-59,43","w":220},"\u015a":{"d":"155,-178v-5,-52,-107,-57,-110,-3v-2,34,54,39,84,47v41,11,61,32,61,66v0,72,-114,96,-159,49v-13,-12,-18,-22,-27,-45r27,-6v11,33,34,49,71,49v64,0,77,-69,20,-82v-48,-11,-108,-19,-107,-76v0,-39,32,-66,81,-66v43,0,73,20,86,59xm154,-294r-73,31r-8,-14r70,-38","w":204},"\u015e":{"d":"190,-68v0,45,-37,76,-93,73r-4,14v20,-4,38,9,38,26v1,29,-48,34,-72,19r4,-13v18,9,45,12,48,-7v2,-13,-22,-15,-38,-12r10,-28v-39,-4,-65,-28,-79,-68r27,-6v11,33,34,49,71,49v64,0,77,-69,20,-82v-48,-11,-108,-19,-107,-76v0,-39,32,-66,81,-66v43,0,73,20,86,59r-27,8v-5,-52,-107,-57,-110,-3v-2,34,54,39,84,47v41,11,61,32,61,66","w":204},"\uf6c1":{"d":"190,-68v0,45,-37,76,-93,73r-4,14v20,-4,38,9,38,26v1,29,-48,34,-72,19r4,-13v18,9,45,12,48,-7v2,-13,-22,-15,-38,-12r10,-28v-39,-4,-65,-28,-79,-68r27,-6v11,33,34,49,71,49v64,0,77,-69,20,-82v-48,-11,-108,-19,-107,-76v0,-39,32,-66,81,-66v43,0,73,20,86,59r-27,8v-5,-52,-107,-57,-110,-3v-2,34,54,39,84,47v41,11,61,32,61,66","w":204},"\u0164":{"d":"102,0r-30,0r0,-214r-68,0r0,-26r167,0r0,26r-69,0r0,214xm29,-305r25,-4r33,22r33,-22r26,4r-59,43","w":174,"k":{"\u0159":-4,"\u0163":4,"\u017c":14,"\u017a":14,"\u0171":14,"\u0165":3,"\u015b":14,"\u0155":10,"\u0151":13,"\u0148":9,"\u0144":19,"\u0119":23,"\u0105":21,"\u0104":18,"\u0102":18,"\u017e":1,"\u00fd":3,"\u00fa":19,"\u00f3":21,"\u00e9":23,"\u00e1":21,"\u00d6":10,"\u00c4":18,"\u00c2":17,"\u00c1":18,"J":21,"A":18,";":10,":":12,".":24,"-":14,",":23}},"\u016e":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm111,-319v17,0,31,14,31,32v0,17,-14,31,-31,31v-18,0,-33,-15,-33,-32v0,-18,15,-31,33,-31xm111,-303v-9,0,-17,6,-17,15v0,9,8,17,17,17v9,0,15,-7,15,-16v0,-9,-6,-16,-15,-16","w":218},"\u0170":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm130,-296r-57,33r-9,-13r53,-39xm190,-296r-57,33r-9,-13r53,-39","w":218},"\u0179":{"d":"179,-26r0,26r-169,0r0,-26r130,-188r-124,0r0,-24r159,0r0,19r-132,193r136,0xm153,-294r-73,31r-8,-14r70,-38","w":187},"\u017b":{"d":"179,-26r0,26r-169,0r0,-26r130,-188r-124,0r0,-24r159,0r0,19r-132,193r136,0xm95,-305v10,0,19,8,19,18v0,10,-9,20,-19,20v-26,0,-23,-39,0,-38","w":187},"\u0100":{"d":"192,0r-31,0r-25,-70r-88,0r-22,70r-25,0r78,-240r34,0xm130,-93r-37,-115r-37,115r74,0xm154,-292r0,19r-115,0r0,-19r115,0","w":198},"\u0162":{"d":"102,0r-30,0r0,-214r-68,0r0,-26r167,0r0,26r-69,0r0,214xm72,19r30,0r-27,67r-15,0","w":174,"k":{"\u0159":-3,"\u0163":4,"\u017c":16,"\u017a":15,"\u0171":14,"\u016f":21,"\u0165":3,"\u015b":14,"\u0155":10,"\u0151":13,"\u0148":10,"\u0144":21,"\u0119":23,"\u0105":20,"\u0104":22,"\u0102":22,"\u017e":1,"\u00fd":5,"\u00fa":21,"\u00f3":21,"\u00e9":23,"\u00e1":21,"\u00c4":22,"\u00c2":22,"\u00c1":22}},"\u021a":{"d":"102,0r-30,0r0,-214r-68,0r0,-26r167,0r0,26r-69,0r0,214xm72,19r30,0r-27,67r-15,0","w":174},"\u0112":{"d":"185,-26r0,26r-155,0r0,-240r152,0r0,26r-122,0r0,77r97,0r0,24r-97,0r0,87r125,0xm164,-292r0,19r-115,0r0,-19r115,0","w":197},"\u012a":{"d":"60,0r-30,0r0,-240r30,0r0,240xm85,-292r0,19r-80,0r0,-19r80,0","w":90},"\u012e":{"d":"43,0r-13,0r0,-240r30,0r0,240v-13,9,-19,18,-19,28v0,17,16,20,31,14r3,12v-23,13,-56,5,-56,-21v0,-13,9,-24,24,-33","w":90},"\u0136":{"d":"220,0r-34,0r-71,-132r-55,68r0,64r-30,0r0,-240r30,0r0,139r108,-139r33,0r-65,84xm106,19r30,0r-27,67r-15,0","w":226},"\u013b":{"d":"171,-26r0,26r-141,0r0,-240r30,0r0,214r111,0xm89,19r31,0r-28,67r-14,0","w":176},"\u0145":{"d":"207,0r-30,0r-124,-209r1,209r-24,0r0,-240r37,0r117,196r-1,-196r24,0r0,240xm105,19r30,0r-27,67r-14,0","w":236},"\u014c":{"d":"113,5v-64,0,-98,-60,-98,-125v0,-74,41,-125,99,-125v59,0,98,50,98,125v0,62,-35,125,-99,125xm113,-220v-41,0,-67,40,-67,101v0,60,27,99,68,99v40,0,67,-41,67,-101v0,-62,-26,-99,-68,-99xm171,-292r0,19r-115,0r0,-19r115,0","w":227},"\u0156":{"d":"124,-240v83,-8,101,109,32,129r47,111r-32,0r-44,-104r-69,0r0,104r-28,0r0,-240r94,0xm58,-129v53,1,112,7,112,-45v0,-49,-63,-40,-112,-40r0,85xm98,19r30,0r-28,67r-14,0","w":220},"\u0122":{"d":"48,-118v-2,53,22,99,70,99v39,0,63,-31,59,-77r-59,0r0,-25r90,0r0,124r-19,0r-8,-30v-17,23,-37,32,-67,32v-62,0,-99,-59,-99,-122v0,-130,159,-178,190,-58r-28,7v-6,-34,-27,-51,-61,-51v-49,0,-68,49,-68,101xm101,19r30,0r-27,67r-15,0","w":232},"\u016a":{"d":"111,-22v38,0,56,-19,56,-61r0,-157r25,0r0,157v1,57,-30,86,-84,88v-115,5,-75,-143,-82,-245r30,0r0,157v-1,45,16,61,55,61xm168,-292r0,19r-115,0r0,-19r115,0","w":218},"\u0172":{"d":"192,-83v7,57,-44,73,-55,110v-1,17,20,20,35,14r4,12v-22,12,-60,7,-60,-21v0,-14,7,-22,23,-31v-67,15,-113,-13,-113,-84r0,-157r30,0r0,157v-1,45,16,61,55,61v38,0,56,-19,56,-61r0,-157r25,0r0,157","w":218},"\u0103":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm41,-253r21,0v3,32,61,33,64,0r21,0v-5,31,-22,45,-54,45v-30,0,-47,-14,-52,-45","w":190},"\u0105":{"d":"167,0v-12,7,-24,17,-22,25v-1,15,18,19,34,14r4,11v-21,11,-60,5,-60,-19v0,-13,9,-23,27,-31r-11,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50v95,-7,57,105,71,183xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72","w":190},"\u0107":{"d":"132,-116v-3,-28,-17,-43,-42,-43v-29,0,-48,27,-48,70v0,79,77,97,90,27r25,4v-6,38,-29,63,-68,63v-45,0,-75,-37,-75,-94v0,-103,130,-129,143,-31xm143,-238r-73,33r-8,-14r70,-41","w":167},"\u010d":{"d":"132,-116v-3,-28,-17,-43,-42,-43v-29,0,-48,27,-48,70v0,79,77,97,90,27r25,4v-6,38,-29,63,-68,63v-45,0,-75,-37,-75,-94v0,-103,130,-129,143,-31xm31,-249r25,-4r33,23r33,-23r26,4r-59,45","w":167},"\u010f":{"d":"166,-240r0,240r-25,0r0,-30v-37,69,-127,28,-127,-57v0,-84,80,-130,125,-66r0,-87r27,0xm90,-18v39,0,53,-41,49,-91v-3,-33,-21,-52,-48,-52v-28,0,-47,28,-47,70v0,46,17,73,46,73xm195,-240r29,0r-27,67r-14,0","w":226,"k":{"\u016f":14,"\u00fc":14,"\u00fa":14,"\u00f3":19,"\u00e9":19,"\u00e1":19,"z":19,"y":1,"u":22,"s":16,"r":14,"o":19,"n":14,"m":14,"e":19,"a":19,";":5,":":7,".":19,",":19}},"\u011b":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm38,-249r25,-4r33,23r33,-23r25,4r-58,45","w":187},"\u0117":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm96,-248v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18","w":187},"\u0119":{"d":"170,-48v2,22,-53,54,-53,72v0,16,19,19,35,13r4,11v-21,12,-62,5,-60,-19v0,-11,5,-18,18,-26v-61,11,-96,-30,-100,-91v-5,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0v-11,73,82,90,101,33xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0","w":187,"k":{"\u017c":6}},"\u011f":{"d":"37,-253r20,0v3,32,62,33,65,0r20,0v-5,31,-22,45,-54,45v-30,0,-46,-14,-51,-45xm144,-157v38,54,-18,112,-80,93v-16,-1,-28,23,-10,30v10,6,105,1,106,15v44,38,9,86,-70,86v-53,0,-81,-16,-81,-47v0,-17,8,-28,27,-35v-26,-18,-23,-47,7,-60v-47,-36,-16,-111,45,-108v18,0,31,4,43,13v10,-23,28,-25,53,-16r-5,21v-18,-4,-27,-6,-35,8xm89,-161v-23,0,-40,17,-40,40v0,23,15,39,39,39v23,0,40,-17,40,-39v0,-23,-16,-40,-39,-40xm153,17v-8,-22,-13,-21,-55,-22v-18,0,-35,-1,-43,-2v-14,7,-19,13,-19,24v2,25,28,29,56,29v25,0,61,-6,61,-29","w":176},"\u013a":{"d":"55,0r-27,0r0,-240r27,0r0,240xm88,-294r-60,31r-7,-14r57,-38","w":82},"\u013e":{"d":"55,0r-27,0r0,-240r27,0r0,240xm84,-240r29,0r-27,67r-14,0","w":113,"k":{"\u016f":12,"\u010f":13,"\u010d":6,"\u017e":2,"\u00fa":12,"\u0161":1,"\u00f4":10,"\u00f3":15,"\u00e9":15,"\u00e1":14,"z":9,"v":1,"u":13,"t":-2,"s":11,"p":12,"o":15,"g":12,"f":-1,"e":15,"d":13,"a":14,":":1,".":14,",":14}},"\u0144":{"d":"53,-145v35,-64,115,-43,115,42r0,103r-26,0v-6,-57,23,-156,-37,-158v-28,0,-50,25,-50,60r0,98r-27,0r0,-177r25,0r0,32xm152,-238r-72,33r-8,-14r69,-41","w":195},"\u0148":{"d":"53,-145v35,-64,115,-43,115,42r0,103r-26,0v-6,-57,23,-156,-37,-158v-28,0,-50,25,-50,60r0,98r-27,0r0,-177r25,0r0,32xm39,-249r25,-4r34,23r32,-23r26,4r-59,45","w":195},"\u0151":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm115,-240r-57,35r-9,-14r54,-41xm172,-240r-56,35r-9,-14r53,-41","w":186},"\u0155":{"d":"52,-136v15,-32,24,-48,63,-46r0,26v-33,-3,-60,24,-60,62r0,94r-27,0r0,-177r24,0r0,41xm121,-238r-68,33r-7,-14r65,-41","w":118,"k":{"z":-3,"v":-9,"t":-12,"s":-2,"p":2,"n":2,"m":2,"d":5,".":19,",":19}},"\u015b":{"d":"30,-51v3,42,96,44,97,4v1,-26,-43,-29,-68,-34v-30,-6,-48,-24,-48,-49v0,-31,27,-52,67,-52v37,0,61,15,70,45r-26,5v-6,-35,-81,-36,-83,-1v-2,24,39,27,63,31v36,6,54,23,54,52v0,55,-99,72,-134,35v-9,-8,-14,-16,-18,-31xm133,-238r-73,33r-7,-14r69,-41","w":167,"k":{"w":5}},"\u0165":{"d":"108,-19r0,22v-46,8,-78,-6,-77,-52r0,-107r-31,0r0,-21r31,0r1,-45r26,-2r0,47r40,0r0,21r-40,0r0,111v-1,26,23,32,50,26xm89,-264r29,0r-27,67r-14,0","w":117,"k":{"\u0159":-5,"\u016f":9,"\u017e":-4,"\u00fd":-3,"\u00fa":9,"\u0161":-1,"\u00f3":9,"\u00e9":9,"\u00e1":1,"z":-3,"y":-3,"u":9,"t":-4,"s":-1,"r":4,"o":9,"n":4,"m":4,"e":9,"a":1,".":3,",":3}},"\u016f":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm98,-264v17,0,30,14,30,31v0,17,-13,30,-30,30v-17,0,-31,-13,-31,-30v0,-17,14,-31,31,-31xm98,-249v-9,0,-17,7,-17,16v0,9,8,16,17,16v9,0,15,-7,15,-16v0,-9,-7,-16,-15,-16","w":194},"\u0171":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm118,-240r-56,35r-9,-14r53,-41xm176,-240r-56,35r-9,-14r53,-41","w":194},"\u017a":{"d":"143,-21r0,21r-131,0r0,-21r94,-135r-87,0r0,-21r124,0r0,15r-98,141r98,0xm136,-238r-72,33r-8,-14r70,-41","w":152,"k":{";":-9,":":-9,",":3}},"\u017c":{"d":"143,-21r0,21r-131,0r0,-21r94,-135r-87,0r0,-21r124,0r0,15r-98,141r98,0xm80,-248v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18","w":152,"k":{"\u00f3":7,"e":8,"c":6,";":-9,":":-9,",":3}},"\u0163":{"d":"108,-19r0,22v-46,8,-78,-6,-77,-52r0,-107r-31,0r0,-21r31,0r1,-45r26,-2r0,47r40,0r0,21r-40,0r0,111v-1,26,23,32,50,26xm57,19r29,0r-27,63r-14,0","w":110},"\u021b":{"d":"108,-19r0,22v-46,8,-78,-6,-77,-52r0,-107r-31,0r0,-21r31,0r1,-45r26,-2r0,47r40,0r0,21r-40,0r0,111v-1,26,23,32,50,26xm57,19r29,0r-27,63r-14,0","w":110},"\u0101":{"d":"96,-183v95,-7,57,105,71,183r-28,0v-2,-9,-2,-12,-3,-32v-20,57,-127,45,-124,-17v2,-54,60,-67,124,-61v2,-37,-11,-51,-46,-51v-27,0,-43,11,-48,32r-25,-4v7,-37,36,-47,79,-50xm136,-89v-48,-5,-95,7,-95,41v0,19,15,31,38,31v36,-1,61,-30,57,-72xm148,-237r0,20r-109,0r0,-20r109,0","w":190},"\u0113":{"d":"44,-86v-11,73,82,90,101,33r25,5v-12,33,-39,53,-75,53v-49,0,-81,-38,-81,-93v0,-93,113,-127,149,-53v7,15,11,31,11,55r-130,0xm143,-107v4,-52,-58,-71,-85,-35v-8,10,-10,18,-12,35r97,0xm150,-237r0,20r-109,0r0,-20r109,0","w":187},"\u012b":{"d":"55,-177r0,177r-27,0r0,-177r27,0xm79,-237r0,20r-75,0r0,-20r75,0","w":82},"\u0137":{"d":"175,0r-29,0r-52,-99r-39,44r0,55r-27,0r0,-240r27,0r0,154r83,-91r29,0r-55,62xm84,19r29,0r-27,63r-13,0","w":180},"\u013c":{"d":"55,0r-27,0r0,-240r27,0r0,240xm27,19r30,0r-27,63r-14,0","w":82},"\u0146":{"d":"53,-145v35,-64,115,-43,115,42r0,103r-26,0v-6,-57,23,-156,-37,-158v-28,0,-50,25,-50,60r0,98r-27,0r0,-177r25,0r0,32xm85,19r29,0r-27,63r-13,0","w":195},"\u014d":{"d":"91,5v-49,0,-77,-43,-77,-94v0,-55,32,-93,80,-93v48,0,79,37,79,95v0,53,-34,92,-82,92xm143,-89v0,-41,-17,-70,-50,-70v-33,0,-49,29,-49,69v0,45,18,72,49,72v31,0,50,-27,50,-71xm148,-237r0,20r-109,0r0,-20r109,0","w":186},"\u0157":{"d":"52,-136v15,-32,24,-48,63,-46r0,26v-33,-3,-60,24,-60,62r0,94r-27,0r0,-177r24,0r0,41xm28,19r29,0r-27,63r-14,0","w":118},"\u016b":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177r-24,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0xm152,-237r0,20r-109,0r0,-20r109,0","w":194},"\u0173":{"d":"55,-177v6,57,-22,159,35,159v27,0,50,-26,50,-59r0,-100r27,0r0,177v-11,8,-24,17,-22,25v-1,16,20,19,35,14r4,11v-22,10,-60,5,-60,-19v0,-13,8,-23,26,-31r-7,0r0,-34v-13,25,-32,39,-57,39v-76,2,-56,-107,-58,-182r27,0","w":194},"\u0159":{"d":"52,-136v15,-32,24,-48,63,-46r0,26v-33,-3,-60,24,-60,62r0,94r-27,0r0,-177r24,0r0,41xm12,-249r25,-4r31,23r30,-23r25,4r-56,45","w":118,"k":{"\u016f":2,"\u010f":5,"\u00fa":2,"\u00f3":7,"\u00ed":2,"\u00e9":7,"\u00e1":1,"v":-9,"u":2,"o":7,"i":2,"e":7,"d":5,"a":1,".":21,",":21}},"\u015f":{"d":"80,17v22,-1,33,6,35,23v2,27,-44,33,-65,18r4,-12v15,10,41,10,43,-6v1,-11,-18,-14,-33,-11r8,-25v-36,-3,-61,-21,-68,-50r26,-5v3,42,96,45,97,4v1,-26,-43,-29,-68,-34v-30,-6,-48,-23,-48,-49v0,-31,27,-52,67,-52v37,0,61,15,70,45r-26,5v-6,-35,-81,-36,-83,-1v-2,25,39,27,63,31v36,6,54,23,54,52v0,33,-29,54,-73,55","w":167},"\uf6c2":{"d":"80,17v22,-1,33,6,35,23v2,27,-44,33,-65,18r4,-12v15,10,41,10,43,-6v1,-11,-18,-14,-33,-11r8,-25v-36,-3,-61,-21,-68,-50r26,-5v3,42,96,45,97,4v1,-26,-43,-29,-68,-34v-30,-6,-48,-23,-48,-49v0,-31,27,-52,67,-52v37,0,61,15,70,45r-26,5v-6,-35,-81,-36,-83,-1v-2,25,39,27,63,31v36,6,54,23,54,52v0,33,-29,54,-73,55","w":167},"\u0123":{"d":"103,-208r-29,0r27,-63r13,0xm144,-157v38,54,-18,112,-80,93v-16,-1,-28,23,-10,30v10,6,105,1,106,15v44,38,9,86,-70,86v-53,0,-81,-16,-81,-47v0,-17,8,-28,27,-35v-26,-18,-23,-47,7,-60v-47,-36,-16,-111,45,-108v18,0,31,4,43,13v10,-23,28,-25,53,-16r-5,21v-18,-4,-27,-6,-35,8xm89,-161v-23,0,-40,17,-40,40v0,23,15,39,39,39v23,0,40,-17,40,-39v0,-23,-16,-40,-39,-40xm153,17v-8,-22,-13,-21,-55,-22v-18,0,-35,-1,-43,-2v-14,7,-19,13,-19,24v2,25,28,29,56,29v25,0,61,-6,61,-29","w":176},"\u012f":{"d":"55,-177r0,177v-26,13,-17,51,13,39r4,11v-22,10,-56,6,-54,-20v0,-13,7,-21,22,-30r-12,0r0,-177r27,0xm57,-240r0,30r-30,0r0,-30r30,0","w":82},"\u0110":{"d":"110,-240v68,-1,107,54,108,119v0,69,-42,121,-98,121r-90,0r0,-115r-24,0r0,-24r24,0r0,-101r80,0xm187,-121v0,-51,-26,-95,-79,-94r-48,0r0,76r57,0r0,24r-57,0r0,89r49,0v55,1,78,-43,78,-95","w":232},"\u0111":{"d":"139,-240r27,0r0,21r24,0r0,20r-24,0r0,199r-25,0r0,-30v-38,69,-127,28,-127,-57v0,-84,80,-130,125,-66r0,-46r-52,0r0,-20r52,0r0,-21xm90,-18v39,0,53,-41,49,-91v-3,-33,-22,-52,-49,-52v-28,0,-46,28,-46,70v0,46,17,73,46,73","w":193},"\u0219":{"d":"30,-51v3,42,96,44,97,4v1,-26,-43,-29,-68,-34v-30,-6,-48,-24,-48,-49v0,-31,27,-52,67,-52v37,0,61,15,70,45r-26,5v-6,-35,-81,-36,-83,-1v-2,24,39,27,63,31v36,6,54,23,54,52v0,55,-99,72,-134,35v-9,-8,-14,-16,-18,-31xm70,19r29,0r-27,63r-13,0","w":167},"\u0218":{"d":"155,-178v-5,-52,-107,-57,-110,-3v-2,34,54,39,84,47v41,11,61,32,61,66v0,72,-114,96,-159,49v-13,-12,-18,-22,-27,-45r27,-6v11,33,34,49,71,49v64,0,77,-69,20,-82v-48,-11,-108,-19,-107,-76v0,-39,32,-66,81,-66v43,0,73,20,86,59xm88,19r29,0r-27,63r-13,0","w":204}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (URW)++, Copyright ř 2000 by (URW)++ Design & Development
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Full name:
 * FranklinGotItcTOT-Dem
 * 
 * Description:
 * Type1 to OpenType conversion by Studio Marvil, s.r.o. http://www.marvil.cz/
 * 
 * Vendor URL:
 * http://www.urw.de/
 */
Cufon.registerFont({"w":211,"face":{"font-family":"franklin","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-23 -321 325 87","underline-thickness":"42.12","underline-position":"4.32","stemh":"35","stemv":"51","unicode-range":"U+0020-U+201E"},"glyphs":{" ":{"w":90},"\u00a0":{"w":90},"!":{"d":"25,0r0,-55r56,0r0,55r-56,0xm37,-72r-18,-168r67,0r-17,168r-32,0","w":105},"\"":{"d":"50,-140r-30,0r-6,-100r42,0xm114,-140r-30,0r-7,-100r43,0","w":133},"#":{"d":"189,-109r-6,35r-35,0r-13,74r-35,0r13,-74r-28,0r-13,74r-35,0r13,-74r-38,0r6,-35r39,0r5,-27r-38,0r6,-35r38,0r12,-69r35,0r-12,69r27,0r12,-69r36,0r-12,69r33,0r-6,35r-34,0r-4,27r34,0xm124,-136r-28,0r-4,27r27,0"},"$":{"d":"162,-133v57,38,22,126,-48,126r0,33r-28,0r0,-33v-41,-4,-69,-26,-77,-61r48,-11v1,38,76,41,81,8v4,-27,-78,-28,-90,-43v-52,-31,-26,-118,38,-121r0,-28r28,0r0,27v36,4,60,21,71,52r-44,15v-8,-20,-18,-26,-39,-26v-19,0,-30,6,-30,19v0,30,84,28,90,43"},"%":{"d":"59,-242v31,0,50,25,50,63v0,36,-20,61,-50,61v-30,0,-49,-25,-49,-62v0,-37,19,-62,49,-62xm60,-220v-13,0,-18,10,-18,39v0,30,5,40,18,40v13,0,17,-11,17,-38v0,-30,-4,-41,-17,-41xm44,0r133,-240r26,0r-133,240r-26,0xm188,-122v31,0,50,25,50,63v0,36,-20,61,-50,61v-30,0,-49,-25,-49,-62v0,-37,19,-62,49,-62xm188,-100v-13,0,-17,10,-17,39v0,30,4,40,17,40v13,0,18,-11,18,-38v0,-30,-5,-41,-18,-41","w":248},"&":{"d":"10,-71v1,-37,25,-57,59,-69v-45,-51,-16,-103,53,-105v79,-3,98,95,26,118r33,37v9,-10,18,-28,22,-48r49,7v-5,24,-19,53,-39,76v14,11,18,12,39,10r0,43v-33,7,-56,3,-76,-19v-55,49,-168,27,-166,-50xm147,-54r-49,-54v-44,10,-32,69,10,68v14,0,26,-4,39,-14xm123,-208v-39,3,-18,39,0,51v34,-7,34,-50,0,-51","w":258},"(":{"d":"96,60r-38,0v-67,-93,-67,-210,1,-300r38,0v-56,91,-54,210,-1,300","w":105},")":{"d":"9,-240r39,0v67,94,67,210,-2,300r-38,0v57,-91,55,-210,1,-300","w":105},"*":{"d":"167,-117r-35,24r-27,-46r-28,46r-35,-24r35,-40r-51,-12r14,-39r49,22r-5,-54r42,0r-5,54r51,-22r13,39r-53,12"},"+":{"d":"194,-140r0,38r-69,0r0,72r-39,0r0,-72r-69,0r0,-38r69,0r0,-73r39,0r0,73r69,0"},",":{"d":"73,-54r0,49r-34,61r-20,0r27,-56r-27,0r0,-54r54,0","w":92,"k":{"1":-5}},"-":{"d":"4,-111r84,0r0,39r-84,0r0,-39","w":92,"k":{"Y":8,"W":-3,"V":-3,"T":6,"A":-9}},"\u00ad":{"d":"4,-111r84,0r0,39r-84,0r0,-39","w":92},".":{"d":"73,0r-54,0r0,-54r54,0r0,54","w":92,"k":{"1":-5}},"\/":{"d":"12,60r-35,0r171,-300r35,0","w":192},"0":{"d":"12,-120v0,-65,30,-125,93,-124v58,0,94,49,94,126v0,63,-31,122,-94,122v-63,0,-93,-61,-93,-124xm141,-118v0,-43,0,-85,-36,-85v-25,0,-35,22,-35,81v0,62,9,84,36,84v25,0,35,-23,35,-80","k":{"7":10,"4":-1,"1":3}},"1":{"d":"22,-145r0,-50v39,-11,69,-30,81,-49r41,0r0,200r66,0r0,44r-194,0r0,-44r73,0r0,-137v-30,18,-49,29,-67,36","k":{"9":-1,"8":-5,"7":18,"6":3,"5":-2,"4":-3,"3":-5,"2":-6,"1":-4,"0":2,".":-13,",":-13}},"2":{"d":"192,-168v0,56,-56,87,-111,120r114,0r-3,48r-180,0r0,-47v35,-25,75,-56,105,-83v25,-23,24,-68,-15,-69v-24,0,-37,15,-41,46r-49,-12v11,-53,42,-79,93,-79v50,0,87,31,87,76","k":{"7":8,"4":3,"1":3}},"3":{"d":"137,-72v2,-32,-29,-33,-67,-31r0,-42v31,1,63,1,62,-28v-2,-38,-63,-40,-69,1r-50,-8v9,-39,45,-64,89,-64v84,0,118,93,44,118v30,7,45,27,48,57v7,71,-117,96,-162,48v-14,-15,-21,-25,-26,-48r51,-8v2,48,78,49,80,5","k":{"7":10,"1":6}},"4":{"d":"169,-244r0,146r34,0r0,43r-34,0r0,55r-56,0r0,-55r-105,0r0,-43r97,-146r64,0xm50,-98r66,0r0,-102","k":{"7":17,"4":-4,"1":4}},"5":{"d":"181,-191r-105,0r-4,53v45,-46,129,-8,129,57v0,81,-108,109,-161,62v-14,-12,-21,-23,-27,-45r53,-8v6,45,79,38,79,-5v0,-39,-56,-51,-73,-19r-46,-8r10,-136r151,0","k":{"7":12,"4":-3,"1":4}},"6":{"d":"14,-118v1,-69,32,-126,99,-126v44,0,75,26,83,64r-48,13v-10,-55,-71,-44,-76,9v-2,12,-2,15,-2,35v33,-55,133,-21,129,46v-3,45,-37,81,-87,81v-61,0,-98,-46,-98,-122xm109,-112v-21,0,-36,16,-36,38v0,22,15,38,36,38v21,0,35,-17,35,-39v0,-22,-14,-37,-35,-37","k":{"7":6,"4":-2,"1":4}},"7":{"d":"193,-197v-36,40,-72,114,-68,197r-64,0v-2,-61,33,-145,81,-190r-121,0r4,-50r168,0r0,43","k":{":":4,"7":7,"6":12,"4":24,"1":9,".":26}},"8":{"d":"156,-130v83,36,43,134,-54,134v-89,0,-129,-94,-49,-122v-66,-38,-29,-126,54,-126v81,0,120,83,49,114xm120,-145v14,-4,23,-16,24,-31v0,-19,-15,-31,-39,-31v-20,0,-33,10,-33,25v0,17,9,24,48,37xm91,-100v-18,4,-30,17,-30,33v0,21,16,32,44,32v46,0,55,-39,20,-53v-9,-4,-12,-5,-34,-12","k":{"7":7,"4":-3,"1":3}},"9":{"d":"196,-123v1,69,-31,128,-99,127v-43,-1,-70,-21,-79,-59r50,-9v10,36,59,31,68,-4v3,-9,4,-18,5,-47v-40,51,-128,18,-128,-49v0,-48,35,-80,88,-80v67,0,94,53,95,121xm102,-204v-20,0,-36,17,-36,37v0,21,15,36,35,36v21,0,37,-16,37,-37v0,-20,-16,-36,-36,-36","k":{"7":11,"1":5}},":":{"d":"73,0r-54,0r0,-54r54,0r0,54xm73,-124r-54,0r0,-53r54,0r0,53","w":92},";":{"d":"73,-54r0,49r-34,62r-20,0r27,-56r-27,0r0,-55r54,0xm73,-177r0,52r-54,0r0,-52r54,0","w":92},"<":{"d":"180,-222r0,50r-103,52r103,52r0,49r-156,-81r0,-41"},"=":{"d":"194,-106r0,39r-177,0r0,-39r177,0xm194,-172r0,39r-177,0r0,-39r177,0"},">":{"d":"31,-19r0,-49r104,-53r-104,-52r0,-49r156,81r0,41"},"?":{"d":"118,0r-55,0r0,-53r55,0r0,53xm5,-164v5,-51,37,-78,86,-80v84,-4,111,95,43,134v-24,14,-24,19,-24,41r-45,0v-3,-39,-2,-51,31,-71v28,-17,26,-61,-8,-61v-23,0,-34,17,-35,44","w":183},"@":{"d":"235,-13v-95,57,-221,-2,-221,-106v0,-72,57,-128,131,-128v68,0,121,48,121,110v0,60,-60,114,-102,72v-33,38,-84,2,-84,-50v0,-50,47,-89,86,-58r2,-8r33,0r-10,94v0,5,2,7,7,7v18,0,36,-27,36,-56v0,-47,-39,-82,-89,-82v-54,0,-96,43,-96,98v0,85,98,126,175,78xm140,-149v-14,0,-24,15,-24,36v0,18,7,30,18,30v15,0,29,-18,29,-39v0,-16,-10,-27,-23,-27","w":279},"A":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84","w":218,"k":{"\u0162":13,"\u0164":13,"\u00fd":7,"\u00dd":15,"\u00ab":2,"y":7,"w":5,"v":5,"u":1,"t":2,"q":2,"o":3,"g":-5,"e":3,"d":1,"c":3,"Y":15,"W":10,"V":10,"U":6,"T":17,"Q":6,"O":6,"J":-10,"G":6,"C":6,".":-9,"-":-8,",":-9}},"B":{"d":"222,-66v0,43,-34,66,-86,66r-112,0r0,-240r112,0v82,-13,112,96,36,115v30,6,50,29,50,59xm158,-172v0,-34,-43,-25,-78,-26r0,53v35,-1,78,8,78,-27xm80,-44v0,0,84,7,84,-30v0,-34,-49,-28,-84,-28r0,58","w":234,"k":{"Y":3,"W":2,"V":2,"J":-4}},"C":{"d":"13,-120v-1,-69,39,-125,108,-124v60,1,91,34,96,93r-58,4v0,-31,-13,-51,-40,-51v-30,0,-44,27,-44,81v0,88,77,101,88,30r54,3v-6,56,-43,88,-97,88v-65,0,-107,-49,-107,-124","w":226,"k":{"\u00d3":-1,"\u00c4":3,"y":-5,"O":-1,"J":-2,"A":3,";":-20,":":-21,".":-4,",":-4}},"D":{"d":"221,-121v0,68,-44,121,-114,121r-83,0r0,-240r73,0v83,-4,124,48,124,119xm163,-121v0,-48,-26,-84,-84,-75r0,151v58,8,84,-27,84,-76","w":233,"k":{"\u00c4":8,"Y":10,"W":5,"V":5,"T":3,"J":5,"A":8}},"E":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46","w":205,"k":{"v":2}},"F":{"d":"195,-193r-113,0r0,54r89,0r0,45r-89,0r0,94r-58,0r0,-240r171,0r0,47","w":199,"k":{"\u016f":9,"\u0151":8,"\u0104":11,"\u0102":13,"\u00fa":9,"\u00f3":8,"\u00e9":8,"\u00e1":10,"\u00d6":4,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":11,"r":9,"o":8,"e":8,"a":10,"O":4,"J":14,"A":13,".":21,"-":-5,",":21}},"G":{"d":"158,-154v-4,-26,-17,-43,-42,-44v-30,0,-46,29,-46,80v0,66,44,97,80,61v7,-7,8,-14,8,-27r-46,0r0,-45r99,0r0,129r-26,0v-3,-13,-3,-15,-8,-28v-62,72,-164,16,-164,-89v0,-77,40,-127,104,-127v51,0,85,30,94,83","w":231,"k":{"\u00c4":-2,"Y":8,"W":4,"V":4,"T":2,"A":-2,";":-21,":":-21,".":-5,",":-5}},"H":{"d":"210,-240r0,240r-56,0r0,-99r-75,0r0,99r-55,0r0,-240r55,0r0,93r75,0r0,-93r56,0","w":233},"I":{"d":"80,-240r0,240r-56,0r0,-240r56,0","w":104},"J":{"d":"3,-46v34,4,56,6,56,-30r0,-164r57,0r0,171v4,64,-50,82,-113,69r0,-46","w":137,"k":{"\u00c4":3,"A":3}},"K":{"d":"79,-240r0,113r75,-113r54,0r-58,86r72,154r-61,0r-48,-104r-34,49r0,55r-55,0r0,-240r55,0","w":226,"k":{"\u0105":3,"\u00f3":10,"\u00d6":9,"\u00d3":9,"y":13,"u":8,"o":9,"e":9,"a":3,"T":-3,"O":9,"G":9,"C":10}},"L":{"d":"81,-48r95,0r0,48r-152,0r0,-240r57,0r0,192","w":181,"k":{"\u0162":20,"\u0164":20,"\u010c":4,"\u00fd":14,"\u00fc":1,"\u00dd":23,"\u00dc":3,"\u00d6":5,"\u00d3":5,"y":14,"u":1,"j":1,"Y":23,"W":16,"V":17,"U":3,"T":20,"O":5,"G":3,"C":4,"-":-1}},"M":{"d":"130,0r-59,-196r0,196r-47,0r0,-240r88,0r42,144r44,-144r88,0r0,240r-57,0r0,-196r-60,196r-39,0","w":309,"k":{"j":-1}},"N":{"d":"209,-240r0,240r-48,0r-94,-162r1,162r-44,0r0,-240r61,0r81,141r-1,-141r44,0","w":232,"k":{"j":-1,".":-4,",":-4}},"O":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78","w":230,"k":{"\u00c4":6,"Z":4,"Y":9,"X":8,"W":4,"V":4,"T":2,"J":3,"A":6,";":-20,":":-20,".":1,",":1}},"P":{"d":"210,-166v2,64,-52,85,-129,77r0,89r-57,0r0,-240r95,0v59,-3,89,27,91,74xm154,-165v0,-35,-38,-33,-75,-32r0,64v37,1,75,3,75,-32","w":217,"k":{"\u0104":14,"\u0102":14,"\u00c4":14,"\u00c2":14,"\u00c1":14,"o":4,"e":5,"a":3,"J":17,"A":14,".":28,"-":-1,",":28}},"Q":{"d":"13,-120v-1,-67,37,-124,103,-124v63,0,103,49,103,126v0,48,-19,86,-51,106v1,21,19,19,43,17r0,42v-42,9,-75,-2,-76,-46v-76,13,-120,-41,-122,-121xm116,-198v-30,0,-45,27,-45,77v0,53,15,79,45,79v30,0,45,-26,45,-77v0,-53,-15,-79,-45,-79","w":231},"R":{"d":"130,-240v92,-15,115,106,46,134r44,106r-62,0r-37,-95r-40,0r0,95r-57,0r0,-240r106,0xm159,-167v0,-35,-39,-31,-78,-30r0,61v39,1,78,3,78,-31","w":236,"k":{"\u0164":-1,"\u00fd":-2,"\u00dd":5,"\u00dc":2,"\u00d6":4,"\u00d3":4,"y":-2,"u":3,"o":5,"e":5,"Y":5,"W":6,"V":4,"U":2,"T":-1,"O":4,"J":-3,"G":4,"C":4,"-":-1}},"S":{"d":"42,-113v-60,-37,-19,-139,58,-131v47,5,76,19,90,57r-48,16v-9,-21,-19,-29,-42,-29v-21,0,-32,8,-32,21v0,32,91,31,97,46v65,45,18,144,-67,137v-52,-4,-87,-22,-98,-67r52,-12v1,41,82,45,87,8v4,-29,-85,-29,-97,-46","w":209,"k":{"\u00c4":4,"v":4,"t":1,"Y":5,"W":5,"V":3,"T":-2,"J":-2,"A":4}},"T":{"d":"176,-240r0,47r-59,0r0,193r-57,0r0,-193r-60,0r0,-47r176,0","w":176,"k":{"\u015f":12,"\u0171":7,"\u016f":7,"\u015b":13,"\u0155":7,"\u0151":13,"\u0119":18,"\u0107":18,"\u0105":14,"\u0150":2,"\u0104":15,"\u0102":15,"\u00fd":-5,"\u00fa":7,"\u00f4":6,"\u00f3":18,"\u00ed":-2,"\u00e9":18,"\u00e7":18,"\u00e1":18,"\u00d6":2,"\u00d3":2,"\u00c4":15,"\u00c2":15,"\u00c1":15,"\u00ab":17,"y":18,"w":18,"v":18,"u":17,"s":13,"r":16,"o":18,"j":-1,"i":-1,"g":16,"e":18,"c":18,"a":18,"Y":-17,"W":-11,"V":-13,"S":-4,"O":2,"J":17,"G":2,"C":3,"A":15,";":-2,":":-2,".":14,"-":6,",":14}},"U":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48","w":233,"k":{"\u00c4":4,"r":-1,"p":-1,"n":-1,"m":-1,"A":4,".":-1,",":-1}},"V":{"d":"202,-240r-72,240r-61,0r-72,-240r60,0r48,172r50,-172r47,0","w":199,"k":{"\u0159":1,"\u0171":7,"\u016f":7,"\u015b":5,"\u0155":7,"\u0151":10,"\u0119":10,"\u011b":10,"\u010f":7,"\u0105":6,"\u0150":4,"\u0104":9,"\u0102":9,"\u00fd":-4,"\u00fc":7,"\u00fa":7,"\u00f6":10,"\u00f4":9,"\u00f3":10,"\u00ed":-1,"\u00e9":10,"\u00e4":9,"\u00e1":9,"\u00d6":4,"\u00d4":4,"\u00d3":4,"\u00c4":9,"\u00c2":9,"\u00c1":9,"\u00ab":8,"y":-4,"u":8,"r":7,"o":10,"i":-2,"g":7,"e":10,"c":10,"a":9,"T":-13,"O":4,"J":11,"G":4,"C":4,"A":9,";":-10,":":-10,".":13,"-":-3,",":13}},"W":{"d":"312,-240r-60,240r-55,0r-40,-159r-38,159r-55,0r-61,-240r57,0r37,162r39,-162r52,0r40,162r38,-162r46,0","w":314,"k":{"\u0159":3,"\u0171":6,"\u016f":6,"\u015b":4,"\u0155":5,"\u0151":8,"\u0119":8,"\u011b":8,"\u010f":7,"\u0105":5,"\u0150":4,"\u0104":9,"\u0102":9,"\u00fd":-3,"\u00fc":6,"\u00fa":6,"\u00f6":8,"\u00f4":8,"\u00f3":8,"\u00e9":8,"\u00e4":9,"\u00e1":9,"\u00d6":4,"\u00d4":4,"\u00d3":4,"\u00c4":9,"\u00c2":9,"\u00c1":9,"\u00ab":6,"y":-3,"u":6,"r":5,"o":8,"g":6,"e":8,"c":8,"a":9,"Y":-15,"T":-11,"O":4,"G":4,"C":4,"A":9,";":-12,".":10,"-":-4,",":10}},"X":{"d":"207,-240r-66,111r74,129r-65,0r-48,-87r-48,87r-53,0r74,-127r-66,-113r66,0r38,73r41,-73r53,0","w":216,"k":{"y":11,"o":10,"e":10,"Q":9,"O":9,"C":9,"-":3}},"Y":{"d":"197,-240r-75,139r0,101r-56,0r0,-101r-76,-139r65,0r47,91r45,-91r50,0","w":187,"k":{"\u0171":11,"\u0155":10,"\u0151":13,"\u0119":17,"\u0105":13,"\u0104":15,"\u0102":15,"\u00fa":11,"\u00f3":17,"\u00ed":-3,"\u00e9":17,"\u00e1":17,"\u00d6":9,"\u00c4":15,"\u00c2":15,"\u00c1":15,"\u00ab":17,"v":1,"u":12,"q":16,"p":10,"o":17,"i":-5,"g":15,"e":17,"a":17,"W":-15,"T":-17,"S":2,"O":9,"J":13,"G":9,"C":9,"A":15,";":-4,":":-4,".":15,"-":8,",":15}},"Z":{"d":"197,-199r-121,153r125,0r0,46r-194,0r0,-41r121,-154r-113,0r0,-45r182,0r0,41","w":208,"k":{"\u00d3":3,"O":3,";":-17,":":-18,".":-10,",":-10}},"[":{"d":"95,38r0,22r-76,0r0,-300r76,0r0,23r-35,0r0,255r35,0","w":105},"\\":{"d":"181,60r-171,-300r35,0r171,300r-35,0","w":192},"]":{"d":"11,-218r0,-22r75,0r0,300r-75,0r0,-23r35,0r0,-255r-35,0","w":105},"^":{"d":"52,-121r-51,0r57,-121r64,0r56,121r-50,0r-38,-82","w":180},"_":{"d":"0,17r180,0r0,42r-180,0r0,-42","w":180},"a":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56","w":194,"k":{"y":5,"w":4,"v":4}},"b":{"d":"61,-27v-5,4,-9,19,-12,27r-27,0r0,-240r52,0r0,85v39,-58,110,-14,110,65v0,85,-83,129,-123,63xm130,-89v0,-32,-3,-55,-28,-57v-28,-2,-28,42,-28,76v0,23,10,37,27,37v24,0,29,-25,29,-56","w":196,"k":{"y":5,"w":3,"v":3}},"c":{"d":"178,-67v-5,45,-37,70,-82,71v-51,0,-84,-36,-84,-91v0,-106,154,-130,166,-26r-49,3v-3,-23,-11,-32,-28,-32v-21,0,-31,17,-31,53v0,60,52,67,59,20","w":184,"k":{"\u00f3":-1,"J":-6}},"d":{"d":"172,-240r0,240r-48,0r0,-28v-36,64,-112,27,-112,-59v0,-83,65,-123,110,-72r0,-81r50,0xm94,-33v28,1,28,-38,28,-70v0,-27,-9,-42,-26,-42v-20,0,-30,20,-30,59v0,34,10,53,28,53","w":194},"e":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36","w":192,"k":{"\u017e":1,"y":5,"x":6,"w":4,"v":4,"j":1}},"f":{"d":"25,-177v-5,-69,31,-74,88,-70r0,40v-27,-4,-39,0,-37,30r32,0r0,40r-32,0r0,137r-51,0r0,-137r-20,0r0,-40r20,0","w":115,"k":{"\u016f":3,"\u0155":3,"\u00fd":-8,"\u00f3":3,"\u00e9":3,"\u00e1":2,"t":-8,"s":-3,"o":3,"l":1,"j":1,"i":1,"f":-5,"e":3,"a":2}},"g":{"d":"34,-11v-38,-18,-21,-62,13,-71v-61,-32,-26,-99,51,-99v18,0,27,1,46,7v3,-31,23,-37,55,-33r0,33v-18,-3,-31,-1,-34,14v45,53,-20,102,-95,87v-7,4,-9,7,-9,13v0,12,7,14,44,16v44,2,48,3,62,7v19,6,31,21,31,41v0,46,-44,60,-102,59v-50,-1,-92,-4,-92,-42v0,-16,9,-26,30,-32xm97,-153v-18,0,-29,11,-29,27v0,17,11,27,29,27v18,0,30,-11,30,-27v0,-16,-12,-27,-30,-27xm80,0v-16,0,-30,0,-31,14v0,12,14,17,51,17v34,0,49,-5,49,-17v0,-11,-14,-14,-69,-14","w":199},"h":{"d":"102,-140v-49,3,-24,90,-30,140r-50,0r0,-240r50,0r0,87v24,-46,102,-36,102,36r0,117r-52,0r0,-100v0,-31,-1,-36,-20,-40","w":195,"k":{"\u00fd":5,"y":5,"v":4}},"i":{"d":"74,-177r0,177r-52,0r0,-177r52,0xm74,-245r0,52r-52,0r0,-52r52,0","w":95},"j":{"d":"75,-9v7,69,-28,77,-86,70r0,-41v22,3,34,0,33,-29r0,-168r53,0r0,168xm75,-245r0,53r-53,0r0,-53r53,0","w":96},"k":{"d":"139,-117r58,117r-58,0r-37,-81r-31,36r0,45r-49,0r0,-240r49,0r0,144r68,-81r51,0","w":195,"k":{"\u0119":6,"\u0105":1,"\u00fc":2,"\u00f6":4,"\u00f3":4,"\u00e4":1,"u":2,"o":4,"g":-6,"e":4,"c":4,"a":1,".":-6,"-":1,",":-6}},"l":{"d":"22,0r0,-240r52,0r0,240r-52,0","w":95},"m":{"d":"170,-150v24,-49,105,-43,105,35r0,115r-52,0r0,-98v-1,-35,0,-36,-22,-42v-47,4,-20,92,-27,140r-52,0r0,-98v0,-33,-1,-37,-23,-42v-48,4,-20,92,-27,140r-50,0r0,-177r49,0r0,27v14,-40,82,-43,99,0","w":296,"k":{"y":5,"w":3,"v":4,"j":1}},"n":{"d":"70,-148v26,-57,106,-41,106,34r0,114r-52,0r0,-100v1,-31,-2,-36,-22,-40v-46,3,-23,93,-28,140r-52,0r0,-177r48,0r0,29","w":197,"k":{"y":5,"w":4,"v":4,"j":1}},"o":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60","w":192,"k":{"\u017e":1,"y":5,"x":6,"w":4,"v":4}},"p":{"d":"22,60r0,-237r48,0r0,25v34,-60,122,-21,112,62v7,80,-68,124,-110,71r0,79r-50,0xm100,-33v23,-2,28,-23,28,-57v0,-68,-55,-73,-56,-14v-1,36,-1,73,28,71","w":194,"k":{"\u00fd":4,"y":4,"t":-2}},"q":{"d":"148,-177r29,0v-8,74,-1,158,-3,237r-51,0r0,-78v-45,53,-111,7,-111,-71v0,-84,82,-123,123,-64v8,-11,8,-12,13,-24xm67,-88v-7,61,55,74,56,15v1,-32,1,-75,-27,-72v-26,2,-25,23,-29,57","w":195},"r":{"d":"72,0r-50,0r0,-177r47,0r0,33v10,-28,20,-39,48,-37r0,52v-57,-8,-44,74,-45,129","w":124,"k":{"\u0159":3,"\u0163":-7,"\u017c":-1,"\u017a":-1,"\u0171":3,"\u016f":3,"\u0165":-8,"\u0155":3,"\u0151":2,"\u0148":3,"\u0144":3,"\u0119":1,"\u010f":1,"\u010d":2,"\u017e":-1,"\u00fd":-7,"\u00fa":3,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e9":2,"\u00e4":1,"\u00e1":1,"y":-7,"x":-3,"w":-6,"v":-7,"u":3,"t":-7,"s":-3,"r":3,"q":1,"p":3,"o":2,"n":3,"m":3,"l":3,"k":3,"h":3,"f":-5,"e":2,"d":1,"c":2,"b":3,"a":1,";":-13,":":-13,".":13,"-":3,",":13}},"s":{"d":"154,-135r-38,11v-1,-29,-59,-32,-61,-8v-2,22,79,18,84,30v48,34,16,111,-57,106v-43,-3,-71,-17,-80,-53r44,-6v-1,29,68,32,70,6v-4,-22,-73,-18,-80,-28v-51,-30,-25,-104,48,-104v37,0,57,13,70,46","w":170,"k":{"t":-3}},"t":{"d":"80,-137r0,75v-3,27,17,25,41,23r0,39v-57,12,-93,1,-93,-54r0,-83r-28,0r0,-40r31,0r4,-53r45,-4r0,57r38,0r0,40r-38,0","w":126,"k":{"\u0119":3,"\u0105":-3,"\u00f6":3,"\u00f3":3,"\u00e4":-3,"y":-6,"o":3,"e":2,"c":2,"a":-3,";":-18,":":-19}},"u":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24","w":194},"v":{"d":"161,-177r-61,177r-40,0r-61,-177r54,0r34,112r35,-112r39,0","w":162,"k":{"\u00f6":5,"\u00f3":5,"\u00e9":5,"\u00e4":5,"\u00e1":5,"s":1,"o":5,"g":3,"e":5,"c":5,"a":5,";":-14,":":-14,".":11,"-":-5,",":11}},"w":{"d":"256,-177r-53,177r-46,0r-28,-114r-28,114r-44,0r-55,-177r55,0r28,108r27,-108r48,0r26,109r30,-109r40,0","w":259,"k":{"\u00f6":4,"\u00f3":4,"\u00e4":5,"o":4,"g":3,"e":4,"c":4,"a":5,";":-15,":":-15,".":10,"-":-6,",":10}},"x":{"d":"169,-177r-51,82r60,95r-60,0r-37,-61r-36,61r-45,0r59,-95r-51,-82r60,0r28,47r28,-47r45,0","w":177,"k":{"q":6,"o":6,"e":6,"c":6,"a":3}},"y":{"d":"159,-177v-24,67,-44,162,-76,218v-12,21,-41,24,-74,19r0,-40v29,4,49,6,55,-20r-65,-177r56,0r34,105r32,-105r38,0","w":160,"k":{"\u010d":4,"o":4,"g":3,"e":5,"c":4,"a":5,";":-14,":":-14,".":11,"-":-5,",":11}},"z":{"d":"144,-177r0,32r-80,107r83,0r0,38r-140,0r0,-38r78,-104r-71,0r0,-35r130,0","w":154,"k":{"o":3,"e":3,";":-19,":":-19,",":-5}},"{":{"d":"78,-195v0,42,11,90,-22,105v33,14,22,63,22,105v0,24,3,24,21,24r0,20v-40,4,-65,-2,-65,-47v0,-34,12,-89,-20,-94r0,-19v55,-14,-28,-164,85,-138r0,20v-17,0,-21,0,-21,24","w":105},"|":{"d":"65,-240r50,0r0,300r-50,0r0,-300","w":180},"}":{"d":"36,15v0,-42,-12,-90,21,-105v-33,-14,-21,-63,-21,-105v0,-25,-4,-24,-22,-24r0,-20v40,-4,65,1,65,47v0,34,-13,89,20,94r0,19v-56,13,30,163,-85,138r0,-20v18,0,22,0,22,-24","w":105},"~":{"d":"136,-87v-6,4,-60,-21,-66,-18v-11,0,-16,4,-25,21r-27,-18v20,-75,76,-45,123,-32v11,0,17,-5,25,-19r27,17v-15,33,-24,44,-57,49"},"\u00a1":{"d":"81,-180r0,55r-56,0r0,-55r56,0xm69,-108r18,168r-68,0r18,-168r32,0","w":105},"\u00a2":{"d":"98,-36v-43,-6,-68,-41,-68,-86v0,-49,25,-83,68,-87r0,-37r29,0r0,37v35,4,56,27,62,64r-46,3v-4,-22,-12,-32,-29,-32v-22,0,-32,17,-32,53v0,54,55,67,61,18r46,3v-4,36,-26,58,-62,64r0,46r-29,0r0,-46"},"\u00a3":{"d":"3,-45v44,5,59,-22,50,-64r-34,0r0,-38r28,0v-11,-59,18,-96,74,-97v35,0,58,16,69,46r-45,18v-4,-16,-9,-21,-23,-23v-24,3,-27,23,-20,56r39,0r0,38r-35,0v1,30,-6,46,-27,64v39,1,69,2,77,-33r48,14v-11,80,-113,63,-201,64r0,-45"},"\u00a5":{"d":"157,-154r40,0r0,32r-57,0r-11,23r68,0r0,32r-68,0r0,67r-47,0r0,-67r-68,0r0,-32r68,0r-11,-23r-57,0r0,-32r40,0r-47,-86r60,0r46,91r46,-91r45,0"},"\u0192":{"d":"67,-188r21,0v9,-64,41,-79,99,-69r-7,40v-25,-4,-38,-5,-41,29r32,0r-7,41r-32,0v-23,82,1,220,-121,197r7,-40v27,2,36,3,41,-25r22,-132r-22,0"},"\u00a7":{"d":"21,10r44,-8v14,20,25,27,46,27v34,2,46,-28,19,-42v-10,-6,-14,-9,-50,-21v-59,-20,-68,-71,-29,-111v-41,-40,-4,-99,59,-99v38,0,60,14,76,45r-37,10v-5,-27,-69,-31,-69,-3v0,31,106,30,106,91v0,19,-5,32,-22,49v55,37,17,121,-56,116v-43,-3,-75,-17,-87,-54xm130,-69v25,-20,14,-37,-23,-50v-8,-3,-11,-3,-22,-8v-23,16,-19,32,12,45v12,5,22,9,33,13"},"\u00a4":{"d":"11,-48r36,-36v-21,-31,-22,-68,0,-100r-37,-36r23,-23r36,37v33,-22,68,-24,101,-1r36,-36r23,23r-36,36v23,33,23,67,0,100r36,36r-22,22r-36,-36v-32,23,-69,23,-102,0r-36,36xm121,-184v-28,0,-51,22,-51,50v0,27,23,50,50,50v28,0,50,-22,50,-50v0,-27,-22,-50,-49,-50","w":240},"'":{"d":"50,-140r-30,0r-6,-100r42,0","w":69},"\u201c":{"d":"21,-142r0,-49r29,-49r19,0r-24,49r24,0r0,49r-48,0xm90,-142r0,-49r29,-49r19,0r-25,49r25,0r0,49r-48,0","w":157,"k":{"Y":-6,"W":-7,"V":-8,"T":-2,"A":13}},"\u00ab":{"d":"90,-42r-31,-51r31,-51r18,0r-18,51r18,51r-18,0xm42,-42r-30,-51r30,-51r17,0r-17,51r17,51r-17,0","w":122},"\u00b7":{"d":"54,-64r-54,0r0,-54r54,0r0,54","w":54},"\u2219":{"d":"54,-64r-54,0r0,-54r54,0r0,54","w":54},"\u00b6":{"d":"206,-240r0,22r-29,0r0,278r-21,0r0,-278r-22,0r0,278r-22,0r0,-177v-78,4,-112,-2,-112,-62v0,-29,14,-52,37,-58v26,-7,126,-2,169,-3xm49,-178v0,37,20,41,63,39r0,-79v-45,-1,-63,2,-63,40"},"\u201e":{"d":"138,-49r0,49r-30,49r-19,0r24,-49r-24,0r0,-49r49,0xm68,-49r0,49r-29,49r-18,0r24,-49r-24,0r0,-49r47,0","w":157,"k":{"\u0164":17,"\u00dd":17,"Y":17,"W":12,"V":13,"T":14,"A":-9}},"\u00bb":{"d":"33,-42r-19,0r19,-51r-19,-51r19,0r30,51xm81,-42r-18,0r18,-51r-18,-51r18,0r30,51","w":122,"k":{"Y":17,"W":6,"V":8,"T":17,"A":1}},"\u00bf":{"d":"68,-180r55,0r0,53r-55,0r0,-53xm179,-19v-6,51,-38,78,-87,80v-83,3,-111,-97,-43,-135v23,-13,27,-19,24,-37r45,0v3,36,0,48,-31,67v-28,17,-27,62,8,62v23,0,34,-17,35,-44","w":183},"`":{"d":"54,-266r73,42r-9,20r-77,-33","w":180},"\u00b4":{"d":"126,-266r13,29r-77,33r-9,-20","w":180},"\u00af":{"d":"144,-241r0,25r-108,0r0,-25r108,0","w":180},"\u02c9":{"d":"144,-241r0,25r-108,0r0,-25r108,0","w":180},"\u00a8":{"d":"60,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21xm119,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21","w":180},"\u00b8":{"d":"97,0r-6,18v19,-4,36,10,36,26v0,33,-48,36,-73,18r6,-15v16,9,33,14,37,-3v0,-11,-15,-15,-29,-12r12,-32r17,0","w":180},"\u00c6":{"d":"294,-195r-110,0r0,50r87,0r0,45r-87,0r0,52r110,0r0,48r-167,0r0,-55r-55,0r-26,55r-49,0r111,-240r186,0r0,45xm88,-95r39,0r0,-87","w":303},"\u00aa":{"d":"65,-245v31,0,48,6,48,41v0,22,-3,53,2,69r-35,0v-1,-7,-2,-9,-2,-13v-17,25,-73,17,-70,-16v3,-30,26,-37,68,-39v1,-12,-2,-20,-14,-19v-10,0,-17,5,-17,15r-34,-3v4,-27,24,-35,54,-35xm58,-155v12,0,20,-13,18,-30v-22,3,-30,8,-30,18v0,8,5,12,12,12","w":128},"\u0141":{"d":"3,-99r21,-22r0,-119r57,0r0,82r48,-45r0,43r-48,45r0,67r95,0r0,48r-152,0r0,-77r-21,21r0,-43","w":181,"k":{"\u0162":14,"\u0164":14,"\u00fd":10,"\u00dd":17,"w":8,"v":8,"Y":17,"W":13,"V":12,"T":14,"O":5,";":-18,":":-18,".":-12,",":-12}},"\u00d8":{"d":"46,-25v-62,-67,-37,-219,71,-219v18,0,27,2,44,10r15,-26r32,0r-23,44v61,72,35,224,-73,220v-18,0,-27,-2,-44,-10r-14,25r-32,0xm154,-162r-63,112v41,23,70,-5,68,-71v0,-16,-1,-24,-5,-41xm139,-191v-58,-32,-80,51,-63,111","w":230},"\u0152":{"d":"13,-118v0,-79,54,-144,141,-122r171,0r0,45r-113,0r0,50r90,0r0,45r-90,0r0,52r113,0r0,48r-171,0v-86,22,-141,-41,-141,-118xm154,-60r0,-120v-34,-41,-79,-12,-79,62v0,71,44,97,79,58","w":334},"\u00ba":{"d":"63,-245v33,0,55,22,55,56v0,33,-23,55,-55,55v-33,0,-54,-22,-54,-56v0,-33,22,-55,54,-55xm63,-222v-12,0,-16,9,-16,30v0,25,5,36,16,36v12,0,17,-11,17,-33v0,-24,-5,-33,-17,-33","w":126},"\u00e6":{"d":"17,-125v7,-56,88,-72,132,-40v61,-42,138,3,128,85r-110,0v-9,51,55,63,64,19r46,4v-9,67,-108,81,-146,29v-29,46,-120,44,-120,-18v0,-52,43,-61,109,-65v2,-22,-3,-36,-26,-36v-17,0,-28,10,-30,27xm167,-111r62,0v-3,-27,-11,-36,-30,-36v-19,0,-29,12,-32,36xm87,-29v24,0,37,-25,33,-56v-38,3,-56,13,-56,33v0,13,10,23,23,23","w":288},"\u0131":{"d":"74,-177r0,177r-52,0r0,-177r52,0","w":95},"\u0142":{"d":"98,-145r-22,20r0,125r-52,0r0,-91r-21,20r0,-34r21,-20r0,-115r52,0r0,82r22,-21r0,34","w":100},"\u00f8":{"d":"40,-16v-64,-60,-13,-202,91,-159r12,-21r28,0r-19,35v65,56,12,202,-89,159r-14,20r-28,0xm68,-65r43,-77v-25,-15,-47,3,-44,45v0,9,0,18,1,32xm124,-114r-43,78v28,15,46,-5,45,-49v0,-11,-1,-17,-2,-29","w":192},"\u0153":{"d":"291,-58v-8,59,-87,81,-137,44v-59,44,-142,4,-142,-75v0,-78,83,-118,142,-74v65,-43,146,-5,137,83r-113,0v-7,55,59,61,65,18xm241,-111v-1,-24,-9,-37,-30,-37v-19,0,-31,13,-33,37r63,0xm99,-147v-22,0,-31,18,-31,59v0,39,9,57,31,57v21,0,31,-17,31,-57v0,-41,-9,-59,-31,-59","w":302},"\u00df":{"d":"112,-221v-27,0,-34,16,-34,54r0,188r-55,0r0,-146r-18,0r0,-39r18,0v0,-59,36,-96,96,-96v42,0,74,24,74,56v0,36,-25,45,-66,57v0,2,0,3,33,13v84,25,70,142,-26,138v-14,0,-23,-2,-41,-8r14,-35v26,11,60,9,60,-16v0,-35,-83,-31,-80,-78v0,-14,6,-25,20,-39v24,-6,33,-14,33,-27v0,-13,-12,-22,-28,-22","w":225},"\u00b9":{"d":"6,-181r0,-32v26,-6,46,-17,53,-29r28,0r0,118r38,0r0,28r-117,0r0,-28r41,0r0,-78v-20,11,-31,16,-43,21","w":139},"\u00ac":{"d":"134,0r0,-53r-106,0r0,-44r156,0r0,97r-50,0"},"\u00b5":{"d":"143,-27v-4,35,-58,43,-66,6r0,81r-52,0r0,-237r52,0v6,51,-18,140,28,146v48,-5,23,-95,29,-146r52,0r0,177r-42,0"},"\u03bc":{"d":"143,-27v-4,35,-58,43,-66,6r0,81r-52,0r0,-237r52,0v6,51,-18,140,28,146v48,-5,23,-95,29,-146r52,0r0,177r-42,0"},"\u00d0":{"d":"221,-121v0,68,-44,121,-114,121r-83,0r0,-105r-21,0r0,-36r21,0r0,-99r73,0v83,-4,124,48,124,119xm163,-121v0,-49,-25,-84,-84,-75r0,55r42,0r0,36r-42,0r0,60v58,8,84,-27,84,-76","w":233},"\u00bd":{"d":"5,-181r0,-32v26,-7,45,-17,52,-29r28,0r0,118r33,0r0,28r-110,0r0,-28r40,0r0,-78v-19,10,-30,16,-43,21xm75,0r133,-240r34,0r-133,240r-34,0xm192,-29v28,-22,68,-35,79,-71v-7,-28,-43,-22,-45,10r-34,-7v3,-65,118,-63,118,-3v0,25,-15,39,-68,69r70,0r-2,31r-118,0r0,-29","w":316},"\u00b1":{"d":"194,-140r0,38r-69,0r0,65r-39,0r0,-65r-69,0r0,-38r69,0r0,-73r39,0r0,73r69,0xm194,-21r0,39r-177,0r0,-39r177,0"},"\u00de":{"d":"210,-134v-1,48,-27,82,-89,77r-40,0r0,57r-57,0r0,-240r57,0r0,32v74,-6,131,11,129,74xm154,-132v0,-35,-38,-33,-75,-32r0,64v37,1,75,2,75,-32","w":219},"\u00bc":{"d":"5,-181r0,-32v26,-7,45,-17,52,-29r28,0r0,118r33,0r0,28r-110,0r0,-28r40,0r0,-78v-19,10,-30,16,-43,21xm75,0r133,-240r34,0r-133,240r-34,0xm296,-146r0,86r22,0r0,27r-22,0r0,33r-36,0r0,-33r-70,0r0,-26r63,-87r43,0xm219,-58r42,0r0,-59","w":316},"\u00f7":{"d":"106,-82v13,0,23,10,23,23v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,25,-23xm106,-207v13,0,23,11,23,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,25,-24xm194,-140r0,38r-177,0r0,-38r177,0"},"\u00a6":{"d":"65,-240r50,0r0,126r-50,0r0,-126xm65,-55r50,0r0,115r-50,0r0,-115","w":180},"\u00b0":{"d":"105,-245v28,0,51,23,51,52v0,27,-23,49,-50,49v-28,0,-51,-22,-51,-50v0,-28,23,-51,50,-51xm105,-219v-13,0,-24,11,-24,25v0,13,12,24,25,24v13,0,24,-11,24,-24v0,-14,-12,-25,-25,-25"},"\u00fe":{"d":"22,60r0,-300r50,0r0,85v39,-57,110,-16,110,65v0,81,-68,124,-110,71r0,79r-50,0xm100,-33v23,-2,28,-23,28,-57v0,-68,-55,-73,-56,-14v-1,36,-1,73,28,71","w":194},"\u00be":{"d":"87,-140v1,-19,-21,-17,-43,-17r0,-27v18,1,41,1,40,-15v0,-9,-9,-17,-20,-17v-12,0,-18,5,-22,19r-34,-5v4,-53,114,-52,113,-1v0,14,-8,26,-23,31v18,5,28,17,28,34v0,27,-24,44,-61,44v-35,0,-56,-15,-62,-45r35,-5v1,27,47,30,49,4xm82,0r133,-240r34,0r-133,240r-34,0xm289,-146r0,86r21,0r0,27r-21,0r0,33r-37,0r0,-33r-69,0r0,-26r63,-87r43,0xm212,-58r41,0r0,-59","w":316},"\u00b2":{"d":"8,-125v28,-22,68,-35,79,-71v-7,-28,-43,-22,-45,10r-34,-7v8,-33,27,-49,61,-49v34,0,57,18,57,45v0,25,-15,40,-68,70r71,0r-3,31r-118,0r0,-29","w":139},"\u00ae":{"d":"80,-192v54,0,122,-9,121,44v0,17,-8,29,-25,37r27,63r-41,0r-23,-57r-21,0r0,57r-38,0r0,-144xm163,-149v0,-20,-23,-17,-45,-17r0,35v23,0,45,3,45,-18xm139,-244v69,0,124,56,124,126v0,67,-56,122,-123,122v-69,0,-125,-56,-125,-124v0,-68,56,-124,124,-124xm141,-222v-58,0,-102,45,-102,102v0,57,45,103,101,103v55,0,100,-46,100,-103v0,-56,-45,-102,-99,-102","w":278},"\u00f0":{"d":"97,4v-51,1,-85,-40,-85,-91v0,-62,68,-122,111,-71v-4,-21,-12,-38,-22,-48r-32,16r-11,-16r28,-15v-9,-5,-13,-7,-31,-13r8,-19v22,5,32,9,50,19r33,-16r13,15r-28,15v66,54,77,223,-34,224xm97,-143v-21,0,-30,18,-30,58v0,37,9,54,30,54v20,0,29,-16,29,-56v0,-39,-9,-56,-29,-56","w":192},"\u00d7":{"d":"155,-198r27,27r-49,50r51,51r-27,27r-51,-51r-49,49r-28,-27r49,-49r-51,-51r27,-27r51,51"},"\u00b3":{"d":"89,-140v0,-18,-21,-18,-43,-17r0,-27v18,1,40,1,39,-15v0,-9,-8,-17,-19,-17v-12,0,-18,5,-22,19r-35,-5v5,-53,114,-52,114,-1v0,14,-8,26,-23,31v18,5,28,17,28,34v0,27,-24,44,-61,44v-35,0,-56,-15,-62,-45r35,-5v1,27,47,30,49,4","w":139},"\u00a9":{"d":"205,-138r-38,2v-1,-21,-9,-31,-25,-31v-19,0,-28,16,-28,49v0,53,49,60,56,18r35,1v-5,34,-27,53,-62,53v-42,0,-69,-29,-69,-74v0,-45,27,-74,69,-74v37,0,57,18,62,56xm139,-244v69,0,124,56,124,126v0,67,-56,122,-123,122v-69,0,-125,-56,-125,-124v0,-68,56,-124,124,-124xm141,-222v-58,0,-102,45,-102,102v0,57,45,103,101,103v55,0,100,-46,100,-103v0,-56,-45,-102,-99,-102","w":278},"\u00c1":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm157,-318r11,31r-78,27r-9,-21","w":218,"k":{"\u0164":13,"T":17}},"\u00c2":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm174,-265r-37,3r-29,-19r-28,19r-37,-3r65,-51","w":218,"k":{"\u0162":13,"\u0164":13,"\u00fd":7,"\u00dd":15,"w":5,"v":5,"Y":15,"W":10,"V":10,"T":17}},"\u00c4":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm75,-309v13,0,22,10,22,23v0,13,-9,22,-22,22v-13,0,-23,-9,-23,-22v0,-13,10,-23,23,-23xm142,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":218},"\u00c0":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm62,-318r76,37r-9,21r-78,-27","w":218},"\u00c5":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm108,-321v20,0,36,15,36,34v0,18,-17,32,-36,32v-19,0,-35,-15,-35,-33v0,-18,16,-33,35,-33xm108,-301v-8,0,-14,5,-14,13v0,8,6,14,14,14v8,0,15,-6,15,-14v0,-8,-7,-13,-15,-13","w":218},"\u00c3":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm46,-288v31,-45,81,14,111,-22r16,20v-24,34,-52,22,-87,11v-8,0,-15,3,-24,11","w":218},"\u00c7":{"d":"159,-147v0,-31,-13,-51,-40,-51v-30,0,-44,27,-44,81v0,88,77,101,88,30r54,3v-6,55,-44,88,-99,88r-4,14v24,-5,42,9,43,29v0,35,-57,38,-84,20r7,-16v21,11,38,15,44,-5v0,-14,-18,-16,-34,-12r9,-32v-55,-11,-86,-55,-86,-122v-1,-69,39,-125,108,-124v59,1,91,34,96,93","w":226},"\u00c9":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm157,-318r11,31r-78,27r-9,-21","w":205},"\u00ca":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm175,-265r-36,3r-29,-19r-29,19r-37,-3r66,-51","w":205},"\u00cb":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm76,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23xm143,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":205},"\u00c8":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm63,-318r76,37r-9,21r-79,-27","w":205},"\u00cd":{"d":"80,-240r0,240r-56,0r0,-240r56,0xm95,-318r12,31r-75,27r-9,-21","w":104},"\u00ce":{"d":"80,-240r0,240r-56,0r0,-240r56,0xm113,-265r-36,3r-25,-19r-25,19r-36,-3r61,-51","w":104},"\u00cf":{"d":"80,-240r0,240r-56,0r0,-240r56,0xm24,-308v13,0,22,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-10,-21,-22v0,-12,9,-21,21,-21xm79,-308v13,0,22,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-10,-21,-22v0,-12,9,-21,21,-21","w":104},"\u00cc":{"d":"80,-240r0,240r-56,0r0,-240r56,0xm9,-318r72,37r-9,21r-75,-27","w":104},"\u00d1":{"d":"209,-240r0,240r-48,0r-94,-162r1,162r-44,0r0,-240r61,0r81,141r-1,-141r44,0xm57,-288v31,-45,81,14,110,-22r16,20v-24,33,-52,22,-86,11v-8,0,-15,3,-24,11","w":232},"\u00d3":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm162,-318r12,31r-79,27r-9,-21","w":230,"k":{"Z":4,"W":4,"T":2,";":-20,":":-20,".":1,",":1}},"\u00d4":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm183,-265r-37,3r-29,-19r-28,19r-37,-3r65,-51","w":230},"\u00d6":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm84,-309v13,0,22,10,22,23v0,13,-9,22,-22,22v-13,0,-23,-9,-23,-22v0,-13,10,-23,23,-23xm151,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":230,"k":{"Y":9,"X":8,"W":4,"V":4,"T":2,"A":6,";":-20,":":-20,".":1,",":1}},"\u00d2":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm74,-318r76,37r-9,21r-78,-27","w":230},"\u00d5":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm57,-288v31,-45,81,14,110,-22r16,20v-24,33,-52,22,-86,11v-8,0,-15,3,-24,11","w":230},"\u0160":{"d":"42,-113v-60,-37,-19,-139,58,-131v47,5,76,19,90,57r-48,16v-9,-21,-19,-29,-42,-29v-21,0,-32,8,-32,21v0,32,91,31,97,46v65,45,18,144,-67,137v-52,-4,-87,-22,-98,-67r52,-12v1,41,82,45,87,8v4,-29,-85,-29,-97,-46xm168,-310r-65,51r-66,-51r37,-3r29,19r29,-19","w":209},"\u00da":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm167,-318r12,31r-78,27r-9,-21","w":233},"\u00db":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm185,-265r-37,3r-28,-19r-29,19r-37,-3r66,-51","w":233},"\u00dc":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm86,-309v13,0,22,10,22,23v0,13,-9,22,-22,22v-13,0,-23,-9,-23,-22v0,-13,10,-23,23,-23xm153,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":233,"k":{"r":-1,"p":-1,"n":-1,"b":-1,"A":4,".":-1,",":-1}},"\u00d9":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm73,-318r76,37r-9,21r-78,-27","w":233},"\u00dd":{"d":"197,-240r-75,139r0,101r-56,0r0,-101r-76,-139r65,0r47,91r45,-91r50,0xm143,-318r12,31r-78,27r-9,-21","w":187,"k":{"\u015f":10,"\u0151":13,"\u0119":17,"\u0104":13,"\u0102":15,"\u00fa":11,"\u00f3":17,"\u00e9":17,"\u00e1":17,"\u00c4":15,"\u00c2":15,"\u00c1":15,"J":13,";":-4,":":-4,".":15,"-":8,",":15}},"\u0178":{"d":"197,-240r-75,139r0,101r-56,0r0,-101r-76,-139r65,0r47,91r45,-91r50,0xm62,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23xm129,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":187},"\u017d":{"d":"197,-199r-121,153r125,0r0,46r-194,0r0,-41r121,-154r-113,0r0,-45r182,0r0,41xm172,-310r-66,51r-65,-51r36,-3r29,19r29,-19","w":208},"\u00e1":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm144,-266r13,29r-77,33r-9,-20","w":194},"\u00e2":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm163,-209r-36,4r-28,-24r-29,24r-36,-4r65,-55","w":194},"\u00e4":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm69,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21xm127,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21","w":194,"k":{"y":5,"w":4,"v":4}},"\u00e0":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm55,-266r73,42r-8,20r-78,-33","w":194},"\u00e5":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm98,-266v19,0,34,14,34,33v0,18,-15,33,-34,33v-18,0,-33,-15,-33,-33v0,-18,15,-33,33,-33xm99,-246v-8,0,-14,6,-14,13v0,7,6,13,14,13v8,0,14,-6,14,-13v0,-8,-6,-13,-14,-13","w":194},"\u00e3":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm40,-230v30,-46,75,15,104,-21r15,19v-23,33,-49,22,-81,11v-7,0,-15,3,-23,11","w":194},"\u00e7":{"d":"100,4r-5,14v19,-4,36,10,36,26v0,32,-48,36,-72,18r5,-15v15,9,33,14,37,-3v0,-11,-15,-15,-28,-12r10,-29v-45,-7,-71,-40,-71,-90v0,-106,154,-130,166,-26r-49,3v-3,-22,-11,-32,-28,-32v-21,0,-31,17,-31,53v0,60,52,67,59,20r49,2v-4,41,-35,70,-78,71","w":184},"\u00e9":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm144,-266r13,29r-77,33r-9,-20","w":192},"\u00ea":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm166,-209r-36,4r-29,-24r-29,24r-35,-4r64,-55","w":192},"\u00eb":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm71,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21xm130,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21","w":192},"\u00e8":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm59,-266r73,42r-9,20r-77,-33","w":192},"\u00ed":{"d":"74,-177r0,177r-52,0r0,-177r52,0xm85,-266r13,29r-71,33r-9,-20","w":95},"\u00ee":{"d":"74,-177r0,177r-52,0r0,-177r52,0xm105,-209r-34,4r-23,-24r-23,24r-34,-4r57,-55","w":95},"\u00ef":{"d":"74,-177r0,177r-52,0r0,-177r52,0xm21,-250v12,0,20,8,20,20v0,12,-8,20,-20,20v-11,0,-20,-9,-20,-20v0,-12,8,-20,20,-20xm74,-250v12,0,20,8,20,20v0,12,-8,20,-20,20v-11,0,-20,-9,-20,-20v0,-12,8,-20,20,-20","w":95},"\u00ec":{"d":"74,-177r0,177r-52,0r0,-177r52,0xm10,-266r67,42r-9,20r-71,-33","w":95},"\u00f1":{"d":"70,-148v26,-57,106,-41,106,34r0,114r-52,0r0,-100v1,-31,-2,-36,-22,-40v-46,3,-23,93,-28,140r-52,0r0,-177r48,0r0,29xm37,-230v30,-46,75,15,104,-21r15,19v-23,33,-49,22,-81,11v-7,0,-15,3,-23,11","w":197},"\u00f3":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm140,-266r14,29r-78,33r-8,-20","w":192,"k":{"w":4}},"\u00f4":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm162,-209r-36,4r-28,-24r-29,24r-36,-4r65,-55","w":192},"\u00f6":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm68,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21xm126,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21","w":192,"k":{"y":5,"x":6,"w":4,"v":4}},"\u00f2":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm57,-266r73,42r-9,20r-77,-33","w":192},"\u00f5":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm40,-230v30,-46,75,16,104,-21r14,19v-23,33,-49,22,-81,11v-7,0,-15,3,-23,11","w":192},"\u0161":{"d":"154,-135r-38,11v-1,-29,-59,-32,-61,-8v-2,22,79,18,84,30v48,34,16,111,-57,106v-43,-3,-71,-17,-80,-53r44,-6v-1,29,68,32,70,6v-4,-22,-73,-18,-80,-28v-51,-30,-25,-104,48,-104v37,0,57,13,70,46xm20,-258r35,-4r29,24r29,-24r36,4r-65,55","w":170,"k":{"t":-3}},"\u00fa":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm143,-266r13,29r-78,33r-8,-20","w":194},"\u00fb":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm161,-209r-35,4r-29,-24r-29,24r-36,-4r65,-55","w":194},"\u00fc":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm67,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21xm126,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21","w":194},"\u00f9":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm52,-266r73,42r-9,20r-77,-33","w":194},"\u00fd":{"d":"159,-177v-24,67,-44,162,-76,218v-12,21,-41,24,-74,19r0,-40v29,4,49,6,55,-20r-65,-177r56,0r34,105r32,-105r38,0xm128,-266r13,29r-77,33r-9,-20","w":160,"k":{"\u010d":4,".":11,",":11}},"\u00ff":{"d":"159,-177v-24,67,-44,162,-76,218v-12,21,-41,24,-74,19r0,-40v29,4,49,6,55,-20r-65,-177r56,0r34,105r32,-105r38,0xm51,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21xm110,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21","w":160},"\u017e":{"d":"144,-177r0,32r-80,107r83,0r0,38r-140,0r0,-38r78,-104r-71,0r0,-35r130,0xm15,-258r36,-4r29,24r28,-24r36,4r-64,55","w":154,"k":{"e":2,";":-20,":":-20,",":-6}},"\u0102":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm80,-311v2,27,54,28,57,0r30,0v-2,66,-118,64,-117,0r30,0","w":218,"k":{"\u0162":13,"\u0164":13,"\u00fd":7,"\u00dd":15,"y":7,"Y":15,"T":17}},"\u0104":{"d":"142,-240r75,240v-17,9,-25,18,-25,30v0,15,21,20,37,13r4,16v-27,15,-76,6,-74,-24v0,-15,11,-27,33,-35r-35,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84","w":218,"k":{"\u0162":13,"\u0164":13,"\u00fd":-14,"\u00dd":15,"y":-14,"Y":15,"T":16,"C":7,";":-19,":":-19,".":-10,",":-10}},"\u0106":{"d":"13,-120v-1,-69,39,-125,108,-124v60,1,91,34,96,93r-58,4v0,-31,-13,-51,-40,-51v-30,0,-44,27,-44,81v0,88,77,101,88,30r54,3v-6,56,-43,88,-97,88v-65,0,-107,-49,-107,-124xm168,-318r12,31r-78,27r-9,-21","w":226},"\u010c":{"d":"13,-120v-1,-69,39,-125,108,-124v60,1,91,34,96,93r-58,4v0,-31,-13,-51,-40,-51v-30,0,-44,27,-44,81v0,88,77,101,88,30r54,3v-6,56,-43,88,-97,88v-65,0,-107,-49,-107,-124xm188,-310r-66,51r-65,-51r36,-3r29,19r29,-19","w":226,"k":{"O":-1}},"\u010e":{"d":"221,-121v0,68,-44,121,-114,121r-83,0r0,-240r73,0v83,-4,124,48,124,119xm163,-121v0,-48,-26,-84,-84,-75r0,151v58,8,84,-27,84,-76xm172,-310r-65,51r-66,-51r37,-3r29,19r29,-19","w":233},"\u011a":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm175,-310r-65,51r-66,-51r37,-3r29,19r29,-19","w":205},"\u0116":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm109,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":205},"\u0118":{"d":"196,-48r0,48v-17,9,-25,18,-25,30v0,15,21,20,37,13r3,16v-27,15,-73,6,-73,-24v0,-15,11,-27,33,-35r-147,0r0,-240r172,0r0,46r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0","w":205},"\u011e":{"d":"158,-154v-4,-26,-17,-43,-42,-44v-30,0,-46,29,-46,80v0,66,44,97,80,61v7,-7,8,-14,8,-27r-46,0r0,-45r99,0r0,129r-26,0v-3,-13,-3,-15,-8,-28v-62,72,-164,16,-164,-89v0,-77,40,-127,104,-127v51,0,85,30,94,83xm92,-311v2,27,54,28,57,0r30,0v-2,66,-118,64,-117,0r30,0","w":231},"\u0130":{"d":"80,-240r0,240r-56,0r0,-240r56,0xm52,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":104},"\u0139":{"d":"81,-48r95,0r0,48r-152,0r0,-240r57,0r0,192xm99,-318r12,31r-78,27r-9,-21","w":181},"\u013d":{"d":"81,-48r95,0r0,48r-152,0r0,-240r57,0r0,192xm162,-240r-33,71r-19,0r10,-71r42,0","w":181,"k":{"\u0162":-2,"\u0164":-2,"\u00fd":11,"\u00dd":-6,"v":10,"Y":-6,"V":-3,"T":-2,"O":5}},"\u0143":{"d":"209,-240r0,240r-48,0r-94,-162r1,162r-44,0r0,-240r61,0r81,141r-1,-141r44,0xm165,-318r11,31r-78,27r-9,-21","w":232},"\u0147":{"d":"209,-240r0,240r-48,0r-94,-162r1,162r-44,0r0,-240r61,0r81,141r-1,-141r44,0xm183,-310r-65,51r-66,-51r37,-3r29,19r29,-19","w":232},"\u0150":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm123,-318r16,25r-62,33r-11,-18xm189,-318r17,25r-62,33r-11,-18","w":230},"\u0154":{"d":"130,-240v92,-15,115,106,46,134r44,106r-62,0r-37,-95r-40,0r0,95r-57,0r0,-240r106,0xm159,-167v0,-35,-39,-31,-78,-30r0,61v39,1,78,3,78,-31xm159,-318r12,31r-78,27r-9,-21","w":236},"\u0158":{"d":"130,-240v92,-15,115,106,46,134r44,106r-62,0r-37,-95r-40,0r0,95r-57,0r0,-240r106,0xm159,-167v0,-35,-39,-31,-78,-30r0,61v39,1,78,3,78,-31xm178,-310r-66,51r-65,-51r37,-3r28,19r29,-19","w":236},"\u015a":{"d":"42,-113v-60,-37,-19,-139,58,-131v47,5,76,19,90,57r-48,16v-9,-21,-19,-29,-42,-29v-21,0,-32,8,-32,21v0,32,91,31,97,46v65,45,18,144,-67,137v-52,-4,-87,-22,-98,-67r52,-12v1,41,82,45,87,8v4,-29,-85,-29,-97,-46xm149,-318r12,31r-79,27r-9,-21","w":209},"\u015e":{"d":"42,-112v-60,-38,-19,-140,58,-132v47,5,76,19,90,57r-48,16v-9,-21,-19,-29,-42,-29v-21,0,-32,8,-32,21v0,32,91,31,97,46v64,45,21,144,-66,137r-4,14v23,-5,43,9,43,29v0,35,-57,38,-84,20r6,-16v21,11,39,15,45,-5v-1,-14,-18,-16,-34,-12r9,-31v-41,-4,-72,-29,-80,-66r52,-12v1,41,82,45,87,9v4,-30,-84,-30,-97,-46","w":209},"\uf6c1":{"d":"42,-112v-60,-38,-19,-140,58,-132v47,5,76,19,90,57r-48,16v-9,-21,-19,-29,-42,-29v-21,0,-32,8,-32,21v0,32,91,31,97,46v64,45,21,144,-66,137r-4,14v23,-5,43,9,43,29v0,35,-57,38,-84,20r6,-16v21,11,39,15,45,-5v-1,-14,-18,-16,-34,-12r9,-31v-41,-4,-72,-29,-80,-66r52,-12v1,41,82,45,87,9v4,-30,-84,-30,-97,-46","w":209},"\u0164":{"d":"176,-240r0,47r-59,0r0,193r-57,0r0,-193r-60,0r0,-47r176,0xm153,-310r-65,51r-66,-51r37,-3r29,19r29,-19","w":176,"k":{"\u0159":-1,"\u0163":-5,"\u017c":3,"\u017a":3,"\u0171":7,"\u0165":-4,"\u015b":12,"\u0155":7,"\u0151":13,"\u0148":7,"\u0144":7,"\u0119":17,"\u0105":14,"\u0104":12,"\u0102":12,"\u017e":2,"\u00fd":-5,"\u00fa":7,"\u00f3":17,"\u00e9":17,"\u00e1":16,"\u00d6":2,"\u00c4":12,"\u00c2":12,"\u00c1":12,"J":13,"A":12,";":-1,":":-3,".":15,"-":9,",":15}},"\u016e":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm120,-321v20,0,36,15,36,34v0,18,-17,32,-36,32v-19,0,-36,-15,-36,-33v0,-18,17,-33,36,-33xm120,-301v-8,0,-15,5,-15,13v0,8,7,14,15,14v8,0,14,-6,14,-14v0,-8,-6,-13,-14,-13","w":233},"\u0170":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm127,-318r16,25r-62,33r-10,-18xm194,-318r16,25r-62,33r-11,-18","w":233},"\u0179":{"d":"197,-199r-121,153r125,0r0,46r-194,0r0,-41r121,-154r-113,0r0,-45r182,0r0,41xm152,-318r12,31r-78,27r-9,-21","w":208},"\u017b":{"d":"197,-199r-121,153r125,0r0,46r-194,0r0,-41r121,-154r-113,0r0,-45r182,0r0,41xm106,-309v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23","w":208},"\u0100":{"d":"142,-240r75,240r-60,0r-15,-49r-78,0r-15,49r-49,0r77,-240r65,0xm78,-94r51,0r-26,-84xm166,-299r0,26r-115,0r0,-26r115,0","w":218},"\u0162":{"d":"176,-240r0,47r-59,0r0,193r-57,0r0,-193r-60,0r0,-47r176,0xm112,19r-33,68r-19,0r9,-68r43,0","w":176,"k":{"\u0163":-4,"\u017c":4,"\u017a":4,"\u0171":9,"\u016f":9,"\u0165":-3,"\u015b":10,"\u0155":9,"\u0151":13,"\u0148":9,"\u0144":9,"\u0119":15,"\u0105":13,"\u0104":12,"\u0102":12,"\u017e":4,"\u00fd":-4,"\u00fa":9,"\u00f3":15,"\u00e9":15,"\u00e1":15,"\u00c4":12,"\u00c2":12,"\u00c1":12}},"\u021a":{"d":"176,-240r0,47r-59,0r0,193r-57,0r0,-193r-60,0r0,-47r176,0xm112,19r-33,68r-19,0r9,-68r43,0","w":176},"\u0112":{"d":"196,-194r-115,0r0,49r90,0r0,45r-90,0r0,52r115,0r0,48r-172,0r0,-240r172,0r0,46xm168,-299r0,26r-116,0r0,-26r116,0","w":205},"\u012a":{"d":"80,-240r0,240r-56,0r0,-240r56,0xm99,-299r0,26r-94,0r0,-26r94,0","w":104},"\u012e":{"d":"80,-240r0,240v-18,13,-22,19,-22,30v1,14,17,20,32,13r3,16v-28,14,-68,3,-68,-24v0,-14,8,-24,31,-35r-32,0r0,-240r56,0","w":104},"\u0136":{"d":"79,-240r0,113r75,-113r54,0r-58,86r72,154r-61,0r-48,-104r-34,49r0,55r-55,0r0,-240r55,0xm142,19r-32,68r-20,0r10,-68r42,0","w":226},"\u013b":{"d":"81,-48r95,0r0,48r-152,0r0,-240r57,0r0,192xm123,19r-33,68r-19,0r10,-68r42,0","w":181},"\u0145":{"d":"209,-240r0,240r-48,0r-94,-162r1,162r-44,0r0,-240r61,0r81,141r-1,-141r44,0xm140,19r-32,68r-20,0r10,-68r42,0","w":232},"\u014c":{"d":"13,-121v0,-67,37,-123,103,-123v67,0,101,60,101,126v0,65,-36,122,-103,122v-66,0,-101,-59,-101,-125xm116,-198v-37,0,-45,39,-45,78v0,52,15,78,45,78v29,0,43,-26,43,-78v0,-52,-14,-78,-43,-78xm175,-299r0,26r-115,0r0,-26r115,0","w":230},"\u0156":{"d":"130,-240v92,-15,115,106,46,134r44,106r-62,0r-37,-95r-40,0r0,95r-57,0r0,-240r106,0xm159,-167v0,-35,-39,-31,-78,-30r0,61v39,1,78,3,78,-31xm142,19r-33,68r-19,0r10,-68r42,0","w":236},"\u0122":{"d":"158,-154v-4,-26,-17,-43,-42,-44v-30,0,-46,29,-46,80v0,66,44,97,80,61v7,-7,8,-14,8,-27r-46,0r0,-45r99,0r0,129r-26,0v-3,-13,-3,-15,-8,-28v-62,72,-164,16,-164,-89v0,-77,40,-127,104,-127v51,0,85,30,94,83xm139,19r-32,68r-20,0r10,-68r42,0","w":231},"\u016a":{"d":"123,-42v31,0,42,-9,42,-48r0,-150r48,0r0,150v3,73,-32,94,-95,94v-64,0,-96,-25,-96,-94r0,-150r60,0r0,150v-1,37,10,48,41,48xm175,-299r0,26r-116,0r0,-26r116,0","w":233},"\u0172":{"d":"213,-90v10,73,-46,71,-60,117v-1,16,22,23,37,14r4,16v-27,14,-76,7,-74,-23v0,-14,6,-20,28,-33v-75,10,-126,-11,-126,-91r0,-150r60,0r0,150v-1,37,10,48,41,48v31,0,42,-9,42,-48r0,-150r48,0r0,150","w":233},"\u0103":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm71,-258v1,31,55,31,57,0r28,0v-2,51,-70,65,-101,32v-8,-9,-9,-14,-11,-32r27,0","w":194},"\u0105":{"d":"11,-46v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55v49,0,73,11,73,68v0,35,-3,85,3,113v-15,9,-23,19,-23,28v1,14,16,21,33,13r4,14v-22,13,-68,8,-68,-21v0,-14,9,-25,30,-34r-26,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56","w":194},"\u0107":{"d":"178,-67v-5,45,-37,70,-82,71v-51,0,-84,-36,-84,-91v0,-106,154,-130,166,-26r-49,3v-3,-23,-11,-32,-28,-32v-21,0,-31,17,-31,53v0,60,52,67,59,20xm144,-266r13,29r-77,33r-9,-20","w":184},"\u010d":{"d":"178,-67v-5,45,-37,70,-82,71v-51,0,-84,-36,-84,-91v0,-106,154,-130,166,-26r-49,3v-3,-23,-11,-32,-28,-32v-21,0,-31,17,-31,53v0,60,52,67,59,20xm35,-258r36,-4r28,24r29,-24r36,4r-65,55","w":184,"k":{"o":-1,"e":-1}},"\u010f":{"d":"172,-240r0,240r-48,0r0,-28v-36,64,-112,27,-112,-59v0,-83,65,-123,110,-72r0,-81r50,0xm94,-33v28,1,28,-38,28,-70v0,-27,-9,-42,-26,-42v-20,0,-30,20,-30,59v0,34,10,53,28,53xm237,-240r-32,71r-18,0r10,-71r40,0","w":235,"k":{"\u016f":12,"\u00fc":12,"\u00fa":12,"\u00f3":19,"\u00e9":21,"\u00e1":21,"z":9,"y":1,"u":13,"s":16,"r":12,"o":21,"n":12,"m":12,"e":21,"a":21,";":1,":":1,".":18,",":18}},"\u011b":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm37,-258r35,-4r29,24r29,-24r36,4r-65,55","w":192},"\u0117":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm99,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21","w":192},"\u0119":{"d":"180,-58v-3,32,-53,57,-53,85v0,14,17,20,33,13r4,14v-22,13,-68,7,-68,-21v0,-13,4,-20,25,-32v-63,15,-109,-29,-109,-88v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36","w":192},"\u011f":{"d":"72,-258v1,31,55,31,57,0r27,0v-2,51,-70,65,-100,32v-8,-9,-10,-14,-12,-32r28,0xm34,-11v-39,-18,-20,-63,13,-71v-22,-10,-32,-23,-32,-43v0,-52,90,-70,135,-45v10,-24,34,-23,58,-14r-7,33v-15,-5,-19,-8,-31,-2v34,53,-29,94,-100,80v-6,4,-9,7,-9,13v0,12,7,14,44,16v44,2,47,3,61,7v19,6,32,21,32,41v0,45,-43,60,-102,59v-50,-1,-92,-4,-92,-42v0,-16,9,-26,30,-32xm97,-153v-18,0,-29,11,-29,27v0,17,11,27,29,27v18,0,30,-11,30,-27v0,-16,-12,-27,-30,-27xm80,0v-16,0,-30,0,-31,14v0,12,15,17,51,17v35,0,49,-5,49,-17v0,-11,-14,-14,-69,-14","w":199},"\u013a":{"d":"22,0r0,-240r52,0r0,240r-52,0xm91,-318r11,29r-74,29r-9,-20","w":95},"\u013e":{"d":"22,0r0,-240r52,0r0,240r-52,0xm139,-240r-32,71r-19,0r10,-71r41,0","w":136,"k":{"\u016f":12,"\u010f":14,"\u010d":15,"\u017e":5,"\u00fa":12,"\u0161":8,"\u00f4":11,"\u00f3":17,"\u00e9":17,"\u00e1":17,"z":8,"v":1,"u":12,"t":1,"s":13,"p":11,"o":17,"g":15,"f":3,"e":17,"d":14,"a":17,";":-3,":":-3,".":14,",":14}},"\u0144":{"d":"70,-148v26,-57,106,-41,106,34r0,114r-52,0r0,-100v1,-31,-2,-36,-22,-40v-46,3,-23,93,-28,140r-52,0r0,-177r48,0r0,29xm141,-266r14,29r-78,33r-8,-20","w":197},"\u0148":{"d":"70,-148v26,-57,106,-41,106,34r0,114r-52,0r0,-100v1,-31,-2,-36,-22,-40v-46,3,-23,93,-28,140r-52,0r0,-177r48,0r0,29xm32,-258r36,-4r28,24r29,-24r36,4r-65,55","w":197},"\u0151":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm106,-266r16,24r-61,38r-11,-17xm168,-266r17,24r-62,38r-11,-17","w":192},"\u0155":{"d":"72,0r-50,0r0,-177r47,0r0,33v10,-28,20,-39,48,-37r0,52v-57,-8,-44,74,-45,129xm117,-266r14,29r-78,33r-8,-20","w":124,"k":{"v":-7,"t":-7,"s":-3,"p":3,"n":3,"m":3,"d":1,"a":1,".":13,",":13}},"\u015b":{"d":"154,-135r-38,11v-1,-29,-59,-32,-61,-8v-2,22,79,18,84,30v48,34,16,111,-57,106v-43,-3,-71,-17,-80,-53r44,-6v-1,29,68,32,70,6v-4,-22,-73,-18,-80,-28v-51,-30,-25,-104,48,-104v37,0,57,13,70,46xm128,-266r13,29r-77,33r-9,-20","w":170,"k":{"w":4}},"\u0219":{"d":"154,-135r-38,11v-1,-29,-59,-32,-61,-8v-2,22,79,18,84,30v48,34,16,111,-57,106v-43,-3,-71,-17,-80,-53r44,-6v-1,29,68,32,70,6v-4,-22,-73,-18,-80,-28v-51,-30,-25,-104,48,-104v37,0,57,13,70,46xm101,19r-32,68r-19,0r10,-68r41,0","w":170},"\u0165":{"d":"80,-137r0,75v-3,27,17,25,41,23r0,39v-57,12,-93,1,-93,-54r0,-83r-28,0r0,-40r31,0r4,-53r45,-4r0,57r38,0r0,40r-38,0xm150,-268r-32,71r-18,0r9,-71r41,0","w":147,"k":{"\u0159":-7,"\u016f":9,"\u017e":-3,"\u00fd":3,"\u00fa":9,"\u00f3":11,"\u00e9":12,"\u00e1":7,"z":5,"y":3,"u":9,"t":3,"s":3,"r":9,"o":11,"n":9,"m":9,"e":11,"a":7,".":5,",":5}},"\u016f":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm96,-266v19,0,35,14,35,33v0,18,-16,33,-35,33v-18,0,-33,-15,-33,-33v0,-18,15,-33,33,-33xm97,-246v-8,0,-14,6,-14,13v0,7,6,13,14,13v8,0,14,-6,14,-13v0,-8,-6,-13,-14,-13","w":194},"\u0171":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm107,-266r16,24r-61,38r-12,-17xm169,-266r17,24r-62,38r-11,-17","w":194},"\u017a":{"d":"144,-177r0,32r-80,107r83,0r0,38r-140,0r0,-38r78,-104r-71,0r0,-35r130,0xm125,-266r13,29r-78,33r-8,-20","w":154,"k":{";":-22,":":-22,",":-6}},"\u017c":{"d":"144,-177r0,32r-80,107r83,0r0,38r-140,0r0,-38r78,-104r-71,0r0,-35r130,0xm79,-251v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21","w":154,"k":{"\u00f3":2,"e":1,"c":1,";":-22,":":-22,",":-6}},"\u0163":{"d":"80,-137r0,75v-3,27,17,25,41,23r0,39v-57,12,-93,1,-93,-54r0,-83r-28,0r0,-40r31,0r4,-53r45,-4r0,57r38,0r0,40r-38,0xm94,19r-32,68r-18,0r9,-68r41,0","w":126},"\u021b":{"d":"80,-137r0,75v-3,27,17,25,41,23r0,39v-57,12,-93,1,-93,-54r0,-83r-28,0r0,-40r31,0r4,-53r45,-4r0,57r38,0r0,40r-38,0xm94,19r-32,68r-18,0r9,-68r41,0","w":126},"\u0101":{"d":"100,-181v49,0,73,11,73,68v0,35,-3,85,3,113r-50,0v-2,-14,-3,-16,-3,-28v-25,50,-116,39,-112,-18v3,-52,39,-62,110,-65v1,-22,-4,-36,-26,-36v-17,0,-29,9,-31,26r-48,-5v7,-42,39,-55,84,-55xm121,-85v-30,3,-53,9,-55,33v0,13,9,23,22,23v24,0,36,-26,33,-56xm153,-241r0,25r-108,0r0,-25r108,0","w":194},"\u0113":{"d":"180,-58v-12,39,-37,62,-81,62v-52,0,-87,-37,-87,-91v0,-92,114,-126,155,-57v10,18,14,33,14,64r-114,0v-10,49,57,66,65,19xm67,-111r63,0v-2,-26,-11,-36,-30,-36v-20,0,-30,11,-33,36xm155,-241r0,25r-108,0r0,-25r108,0","w":192},"\u012b":{"d":"74,-177r0,177r-52,0r0,-177r52,0xm92,-241r0,25r-89,0r0,-25r89,0","w":95},"\u0137":{"d":"139,-117r58,117r-58,0r-37,-81r-31,36r0,45r-49,0r0,-240r49,0r0,144r68,-81r51,0xm126,19r-32,68r-18,0r9,-68r41,0","w":195},"\u013c":{"d":"22,0r0,-240r52,0r0,240r-52,0xm68,19r-32,68r-18,0r9,-68r41,0","w":95},"\u0146":{"d":"70,-148v26,-57,106,-41,106,34r0,114r-52,0r0,-100v1,-31,-2,-36,-22,-40v-46,3,-23,93,-28,140r-52,0r0,-177r48,0r0,29xm121,19r-32,68r-18,0r10,-68r40,0","w":197},"\u014d":{"d":"95,4v-52,1,-83,-40,-83,-94v0,-54,33,-91,83,-91v52,0,86,37,86,93v0,54,-35,92,-86,92xm97,-147v-21,0,-30,16,-30,54v0,44,8,62,29,62v21,0,30,-17,30,-56v0,-43,-8,-60,-29,-60xm152,-241r0,25r-108,0r0,-25r108,0","w":192},"\u0157":{"d":"72,0r-50,0r0,-177r47,0r0,33v10,-28,20,-39,48,-37r0,52v-57,-8,-44,74,-45,129xm68,19r-32,68r-18,0r9,-68r41,0","w":124},"\u016b":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177r-48,0r0,-30v-9,23,-26,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24xm151,-241r0,25r-108,0r0,-25r108,0","w":194},"\u0173":{"d":"92,-38v19,0,29,-10,29,-40r0,-99r52,0r0,177v-15,9,-24,19,-24,28v1,14,18,21,34,13r3,14v-22,13,-68,7,-68,-21v0,-14,9,-25,31,-34r-24,0r0,-30v-11,23,-27,34,-53,34v-77,0,-43,-111,-50,-181r50,0r0,115v0,16,6,24,20,24","w":194},"\u0159":{"d":"72,0r-50,0r0,-177r47,0r0,33v10,-28,20,-39,48,-37r0,52v-57,-8,-44,74,-45,129xm6,-258r36,-4r29,24r29,-24r35,4r-64,55","w":124,"k":{"\u016f":3,"\u010f":1,"\u00fa":3,"\u00f3":2,"\u00ed":3,"\u00e9":2,"\u00e1":1,"v":-7,"u":3,"o":2,"i":1,"e":2,"d":1,"a":1,";":-10,":":-10,".":14,",":14}},"\u015f":{"d":"139,-102v48,33,14,115,-55,106r-6,14v19,-4,36,9,36,26v0,32,-46,37,-72,18r6,-15v16,9,33,14,37,-3v0,-11,-15,-15,-29,-12r11,-29v-33,-3,-59,-24,-65,-52r44,-6v-1,29,68,32,70,6v-4,-22,-73,-18,-80,-28v-51,-30,-25,-104,48,-104v37,0,57,13,70,46r-38,11v-1,-28,-58,-33,-61,-8v-2,22,81,18,84,30","w":170},"\uf6c2":{"d":"139,-102v48,33,14,115,-55,106r-6,14v19,-4,36,9,36,26v0,32,-46,37,-72,18r6,-15v16,9,33,14,37,-3v0,-11,-15,-15,-29,-12r11,-29v-33,-3,-59,-24,-65,-52r44,-6v-1,29,68,32,70,6v-4,-22,-73,-18,-80,-28v-51,-30,-25,-104,48,-104v37,0,57,13,70,46r-38,11v-1,-28,-58,-33,-61,-8v-2,22,81,18,84,30","w":170},"\u0123":{"d":"77,-205r32,-68r19,0r-10,68r-41,0xm34,-11v-39,-18,-20,-63,13,-71v-22,-10,-32,-23,-32,-43v0,-52,90,-70,135,-45v10,-24,34,-23,58,-14r-7,33v-15,-5,-19,-8,-31,-2v34,53,-29,94,-100,80v-6,4,-9,7,-9,13v0,12,7,14,44,16v44,2,47,3,61,7v19,6,32,21,32,41v0,45,-43,60,-102,59v-50,-1,-92,-4,-92,-42v0,-16,9,-26,30,-32xm97,-153v-18,0,-29,11,-29,27v0,17,11,27,29,27v18,0,30,-11,30,-27v0,-16,-12,-27,-30,-27xm80,0v-16,0,-30,0,-31,14v0,12,15,17,51,17v35,0,49,-5,49,-17v0,-11,-14,-14,-69,-14","w":199},"\u012f":{"d":"21,34v2,-18,14,-26,30,-34r-29,0r0,-177r52,0r0,177v-22,11,-33,39,-5,44v2,0,5,0,13,-3r4,14v-23,14,-67,6,-65,-21xm74,-245r0,52r-52,0r0,-52r52,0","w":95},"\u0218":{"d":"42,-113v-60,-37,-19,-139,58,-131v47,5,76,19,90,57r-48,16v-9,-21,-19,-29,-42,-29v-21,0,-32,8,-32,21v0,32,91,31,97,46v65,45,18,144,-67,137v-52,-4,-87,-22,-98,-67r52,-12v1,41,82,45,87,8v4,-29,-85,-29,-97,-46xm119,19r-32,68r-20,0r10,-68r42,0","w":209},"\u0110":{"d":"221,-121v0,68,-44,121,-114,121r-83,0r0,-105r-21,0r0,-36r21,0r0,-99r73,0v83,-4,124,48,124,119xm163,-121v0,-49,-25,-84,-84,-75r0,55r42,0r0,36r-42,0r0,60v58,8,84,-27,84,-76","w":233},"\u0111":{"d":"172,0r-48,0r0,-28v-37,64,-112,27,-112,-59v0,-60,24,-93,66,-93v21,0,33,6,44,23r0,-38r-45,0r0,-24r45,0r0,-21r50,0r0,21r21,0r0,24r-21,0r0,195xm94,-33v28,1,28,-38,28,-70v0,-28,-9,-42,-26,-42v-20,0,-30,20,-30,59v0,34,10,53,28,53","w":194}}});

/* JS: cookie*/
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        var path = options.path ? '; path=' + options.path : '';
        var domain = options.domain ? '; domain=' + options.domain : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};
/* JS: treeview*/
/*
 * Treeview 1.4 - jQuery plugin to hide and show branches of a tree
 * 
 * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
 * http://docs.jquery.com/Plugins/Treeview
 *
 * Copyright (c) 2007 Jörn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $
 *
 */;(function($){$.extend($.fn,{swapClass:function(c1,c2){var c1Elements=this.filter('.'+c1);this.filter('.'+c2).removeClass(c2).addClass(c1);c1Elements.removeClass(c1).addClass(c2);return this;},replaceClass:function(c1,c2){return this.filter('.'+c1).removeClass(c1).addClass(c2).end();},hoverClass:function(className){className=className||"hover";return this.hover(function(){$(this).addClass(className);},function(){$(this).removeClass(className);});},heightToggle:function(animated,callback){animated?this.animate({height:"toggle"},animated,callback):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();if(callback)callback.apply(this,arguments);});},heightHide:function(animated,callback){if(animated){this.animate({height:"hide"},animated,callback);}else{this.hide();if(callback)this.each(callback);}},prepareBranches:function(settings){if(!settings.prerendered){this.filter(":last-child:not(ul)").addClass(CLASSES.last);this.filter((settings.collapsed?"":"."+CLASSES.closed)+":not(."+CLASSES.open+")").find(">ul").hide();}return this.filter(":has(>ul)");},applyClasses:function(settings,toggler){this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event){toggler.apply($(this).next());}).add($("a",this)).hoverClass();if(!settings.prerendered){this.filter(":has(>ul:hidden)").addClass(CLASSES.expandable).replaceClass(CLASSES.last,CLASSES.lastExpandable);this.not(":has(>ul:hidden)").addClass(CLASSES.collapsable).replaceClass(CLASSES.last,CLASSES.lastCollapsable);this.prepend("<div class=\""+CLASSES.hitarea+"\"/>").find("div."+CLASSES.hitarea).each(function(){var classes="";$.each($(this).parent().attr("class").split(" "),function(){classes+=this+"-hitarea ";});$(this).addClass(classes);});}this.find("div."+CLASSES.hitarea).click(toggler);},treeview:function(settings){settings=$.extend({cookieId:"treeview"},settings);if(settings.add){return this.trigger("add",[settings.add]);}if(settings.toggle){var callback=settings.toggle;settings.toggle=function(){return callback.apply($(this).parent()[0],arguments);};}function treeController(tree,control){function handler(filter){return function(){toggler.apply($("div."+CLASSES.hitarea,tree).filter(function(){return filter?$(this).parent("."+filter).length:true;}));return false;};}$("a:eq(0)",control).click(handler(CLASSES.collapsable));$("a:eq(1)",control).click(handler(CLASSES.expandable));$("a:eq(2)",control).click(handler());}function toggler(){$(this).parent().find(">.hitarea").swapClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).swapClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().swapClass(CLASSES.collapsable,CLASSES.expandable).swapClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightToggle(settings.animated,settings.toggle);if(settings.unique){$(this).parent().siblings().find(">.hitarea").replaceClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).replaceClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().replaceClass(CLASSES.collapsable,CLASSES.expandable).replaceClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightHide(settings.animated,settings.toggle);}}function serialize(){function binary(arg){return arg?1:0;}var data=[];branches.each(function(i,e){data[i]=$(e).is(":has(>ul:visible)")?1:0;});$.cookie(settings.cookieId,data.join(""));}function deserialize(){var stored=$.cookie(settings.cookieId);if(stored){var data=stored.split("");branches.each(function(i,e){$(e).find(">ul")[parseInt(data[i])?"show":"hide"]();});}}this.addClass("treeview");var branches=this.find("li").prepareBranches(settings);switch(settings.persist){case"cookie":var toggleCallback=settings.toggle;settings.toggle=function(){serialize();if(toggleCallback){toggleCallback.apply(this,arguments);}};deserialize();break;case"location":var current=this.find("a").filter(function(){return this.href.toLowerCase()==location.href.toLowerCase();});if(current.length){current.addClass("selected").parents("ul, li").add(current.next()).show();}break;}branches.applyClasses(settings,toggler);if(settings.control){treeController(this,settings.control);$(settings.control).show();}return this.bind("add",function(event,branches){$(branches).prev().removeClass(CLASSES.last).removeClass(CLASSES.lastCollapsable).removeClass(CLASSES.lastExpandable).find(">.hitarea").removeClass(CLASSES.lastCollapsableHitarea).removeClass(CLASSES.lastExpandableHitarea);$(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings,toggler);});}});var CLASSES=$.fn.treeview.classes={open:"open",closed:"closed",expandable:"expandable",expandableHitarea:"expandable-hitarea",lastExpandableHitarea:"lastExpandable-hitarea",collapsable:"collapsable",collapsableHitarea:"collapsable-hitarea",lastCollapsableHitarea:"lastCollapsable-hitarea",lastCollapsable:"lastCollapsable",lastExpandable:"lastExpandable",last:"last",hitarea:"hitarea"};$.fn.Treeview=$.fn.treeview;})(jQuery);
/* JS: init*/
Cufon.replace('h1'); 
//Cufon.replace('#content_inner h2'); 
Cufon.replace('.s3sliderImage p'); 
Cufon.replace('table.content_class20 td p'); 
Cufon.replace('#fast_nav a'); 
Cufon.replace('#footer_banners #footer_banners_01 h2'); 
Cufon.replace('#footer_banners #footer_banners_01 p'); 


//Cufon.replace('#nav a', {hover: true});
//Cufon.replace('#nav span.anchor', { forceHitArea:true,hover: true, hoverables: { span: true }});     

    
$(document).ready(function() {

$("#treemenu").treeview({
	 unique: true,
	 collapsed: true
		});


if($("table.content_class20 td p").length > 0){
   $('table.content_class20 td p:nth-child(2)').addClass('desc');
}


/* slider titulka */
if($("#s3slider").length > 0){
   $('#s3slider').s3Slider({timeOut: 10000});
}

/* PRIDANI TRIDY K SUBMIT TLACITKUM */
// try je zde jen kvuli IE7 a I8
try {
  $(":submit:not(:image), :reset").addClass("form_submit");
} catch(e) {}

/* prepinani formularu v sekci Pozice */
$("select#filterjob").change(function(){
   $("div.filtered-document").hide();
   $("div[id=" + $("select#filterjob").val() + "]").show();
})

/* prepinani formularu v sekci Video */
$("select#filter").change(function(){
   $("#iframe").attr("src",$(this).attr('value'));
   $("#iframe").load();
})
   
    
});
/* JS: s3SliderPacked*/
/* ------------------------------------------------------------------------
	s3Slider
	
	Developped By: Boban Karišik -> http://www.serie3.info/
        CSS Help: Mészáros Róbert -> http://www.perspectived.com/
	Version: 1.0
	
	Copyright: Feel free to redistribute the script/modify it, as
			   long as you leave my infos at the top.
------------------------------------------------------------------------- */


(function($){  

    $.fn.s3Slider = function(vars) {       
        
        var element     = this;
        var timeOut     = (vars.timeOut != undefined) ? vars.timeOut : 4000;
        var current     = null;
        var timeOutFn   = null;
        var faderStat   = true;
        var mOver       = false;
        var items       = $("#" + element[0].id + "Content ." + element[0].id + "Image");
        var itemsSpan   = $("#" + element[0].id + "Content ." + element[0].id + "Image p");
            
        items.each(function(i) {
    
            $(items[i]).mouseover(function() {
               mOver = true;
            });
            
            $(items[i]).mouseout(function() {
                mOver   = false;
                fadeElement(true);
            });
            
        });
        
        var fadeElement = function(isMouseOut) {
            var thisTimeOut = (isMouseOut) ? (timeOut/2) : timeOut;
            thisTimeOut = (faderStat) ? 10 : thisTimeOut;
            if(items.length > 0) {
                timeOutFn = setTimeout(makeSlider, thisTimeOut);
            } else {
                console.log("Poof..");
            }
        }
        
        var makeSlider = function() {
            current = (current != null) ? current : items[(items.length-1)];
            var currNo      = jQuery.inArray(current, items) + 1
            currNo = (currNo == items.length) ? 0 : (currNo - 1);
            var newMargin   = $(element).width() * currNo;
            if(faderStat == true) {
                if(!mOver) {
                    $(items[currNo]).fadeIn((timeOut/6), function() {
                        if($(itemsSpan[currNo]).css('bottom') == 0) {
                            $(itemsSpan[currNo]).slideUp((timeOut/6), function() {
                                faderStat = false;
                                current = items[currNo];
                                if(!mOver) {
                                    fadeElement(false);
                                }
                            });
                        } else {
                            $(itemsSpan[currNo]).slideDown((timeOut/6), function() {
                                faderStat = false;
                                current = items[currNo];
                                if(!mOver) {
                                    fadeElement(false);
                                }
                            });
                        }
                    });
                }
            } else {
                if(!mOver) {
                    if($(itemsSpan[currNo]).css('bottom') == 0) {
                        $(itemsSpan[currNo]).slideDown((timeOut/6), function() {
                            $(items[currNo]).fadeOut((timeOut/6), function() {
                                faderStat = true;
                                current = items[(currNo+1)];
                                if(!mOver) {
                                    fadeElement(false);
                                }
                            });
                        });
                    } else {
                        $(itemsSpan[currNo]).slideUp((timeOut/6), function() {
                        $(items[currNo]).fadeOut((timeOut/6), function() {
                                faderStat = true;
                                current = items[(currNo+1)];
                                if(!mOver) {
                                    fadeElement(false);
                                }
                            });
                        });
                    }
                }
            }
        }
        
        makeSlider();

    };  

})(jQuery);  
