
var Fat={make_hex:function(r,g,b)
{r=r.toString(16);if(r.length==1)r='0'+r;g=g.toString(16);if(g.length==1)g='0'+g;b=b.toString(16);if(b.length==1)b='0'+b;return"#"+r+g+b;},fade_all:function()
{var a=document.getElementsByTagName("*");for(var i=0;i<a.length;i++)
{var o=a[i];var r=/fade-?(\w{3,6})?/.exec(o.className);if(r)
{if(!r[1])r[1]="";if(o.id)Fat.fade_element(o.id,null,null,"#"+r[1]);}}},fade_element:function(id,fps,duration,from,to)
{if(!fps)fps=30;if(!duration)duration=3000;if(!from||from=="#")from="#FFFF33";if(!to)to=this.get_bgcolor(id);var frames=Math.round(fps*(duration/1000));var interval=duration/frames;var delay=interval;var frame=0;if(from.length<7)from+=from.substr(1,3);if(to.length<7)to+=to.substr(1,3);var rf=parseInt(from.substr(1,2),16);var gf=parseInt(from.substr(3,2),16);var bf=parseInt(from.substr(5,2),16);var rt=parseInt(to.substr(1,2),16);var gt=parseInt(to.substr(3,2),16);var bt=parseInt(to.substr(5,2),16);var r,g,b,h;while(frame<frames)
{r=Math.floor(rf*((frames-frame)/frames)+rt*(frame/frames));g=Math.floor(gf*((frames-frame)/frames)+gt*(frame/frames));b=Math.floor(bf*((frames-frame)/frames)+bt*(frame/frames));h=this.make_hex(r,g,b);setTimeout("Fat.set_bgcolor('"+id+"','"+h+"')",delay);frame++;delay=interval*frame;}
setTimeout("Fat.set_bgcolor('"+id+"','"+to+"')",delay);},set_bgcolor:function(id,c)
{var o=document.getElementById(id);if(o)o.style.backgroundColor=c;},get_bgcolor:function(id)
{var o=document.getElementById(id);while(o)
{var c;if(window.getComputedStyle)c=window.getComputedStyle(o,null).getPropertyValue("background-color");if(o.currentStyle)c=o.currentStyle.backgroundColor;if((c!=""&&c!="transparent")||o.tagName=="BODY"){break;}
o=o.parentNode;}
if(c==undefined||c==""||c=="transparent")c="#FFFFFF";var rgb=c.match(/rgb\s*\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/);if(rgb)c=this.make_hex(parseInt(rgb[1]),parseInt(rgb[2]),parseInt(rgb[3]));return c;}}
function ChangeURL(id,href,param){cat=document.getElementById('shout_cat').value;if(cat!='')href+=param
document.getElementById(id).href=href+encodeURIComponent(cat);}
function getHTTPObject(){var xmlhttp;if(!xmlhttp&&typeof XMLHttpRequest!='undefined'){try{xmlhttp=new XMLHttpRequest();}catch(e){xmlhttp=false;}}
return xmlhttp;}
function replaceUserOnline(chrono,useronlinetext){if(useronlinetext!=""){document.getElementById("usersOnline").innerHTML=useronlinetext;}
document.getElementById("responseTime").innerHTML=chrono;}
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return!!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return!!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return+new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return!o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return-1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return!!T.firstChild},empty:function(T){return!T.firstChild},has:function(V,U,T){return!!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex"in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return!F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<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>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},gradient:I(function(d){var e={id:d,type:d.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},a=d.substr(d.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,Z=a.length,b;c<Z;++c){b=a[c].split("=",2).reverse();e.stops.push([b[1]||c/(Z-1),b[0]])}return e}),quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()}};M.ready=(function(){var a=!M.recognizesMedia("all");var Z=[],c=function(){a=true;for(var f;f=Z.shift();f()){}};var d=F("link"),e={stylesheet:1};function b(){var g,f,h;for(f=0;h=d[f];++f){if(h.disabled||!e[h.rel.toLowerCase()]||!M.recognizesMedia(h.media||"screen")){continue}g=h.sheet||h.styleSheet;if(!g||g.disabled){return false}}return true}V.ready(function(){if(a||b()){c()}else{setTimeout(arguments.callee,10)}});return function(f){if(a){f()}else{Z.push(f)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=c.data;if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=M.gradient(a.color)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(t,W,o,R,a,u){var I=(W===null);var Y=t.viewBox;var J=o.getSize("fontSize",t.baseSize);var m=o.get("letterSpacing");m=(m=="normal")?0:J.convertFrom(parseInt(m,10));var Z=0,n=0,k=0,T=0;var X=R.textShadow,h=[];if(X){for(var s=X.length;s--;){var c=X[s];var f=J.convertFrom(parseFloat(c.offX));var e=J.convertFrom(parseFloat(c.offY));h[s]=[f,e];if(e<Z){Z=e}if(f>n){n=f}if(e>k){k=e}if(f<T){T=f}}}var z=Cufon.CSS.textTransform(I?a.alt:W,o).split("");var G=0,U=null;for(var s=0,p=z.length;s<p;++s){var S=t.glyphs[z[s]]||t.missingGlyph;if(!S){continue}G+=U=Number(S.w||t.w)+m}if(U===null){return null}n+=(Y.width-U);T+=Y.minX;var Q,K;if(I){Q=a;K=a.firstChild}else{Q=document.createElement("span");Q.className="cufon cufon-canvas";Q.alt=W;K=document.createElement("canvas");Q.appendChild(K);if(R.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(W));Q.appendChild(q)}}var AA=Q.style;var d=K.style;var H=J.convert(Y.height);var w=Math.ceil(H);var j=w/H;K.width=Math.ceil(J.convert(G*j+n-T));K.height=Math.ceil(J.convert(Y.height-Z+k));Z+=Y.minY;d.top=Math.round(J.convert(Z-t.ascent))+"px";d.left=Math.round(J.convert(T))+"px";var P=Math.ceil(J.convert(G*j))+"px";if(A){AA.width=P;AA.height=J.convert(t.height)+"px"}else{AA.paddingLeft=P;AA.paddingBottom=(J.convert(t.height)-1)+"px"}var v=K.getContext("2d"),b=H/Y.height;v.scale(b,b*j);v.translate(-T,-Z);v.lineWidth=t.face["underline-thickness"];v.save();function L(i,g){v.strokeStyle=g;v.beginPath();v.moveTo(0,i);v.lineTo(G,i);v.stroke()}var M=R.enableTextDecoration?Cufon.CSS.textDecoration(u,o):{};if(M.underline){L(-t.face["underline-position"],M.underline)}if(M.overline){L(t.ascent,M.overline)}v.fillStyle=o.get("color");function r(){v.scale(j,1);for(var x=0,g=z.length;x<g;++x){var y=t.glyphs[z[x]]||t.missingGlyph;if(!y){continue}if(y.d){v.beginPath();if(y.code){C(y.code,v)}else{y.code=D("m"+y.d,v)}v.fill()}v.translate(Number(y.w||t.w)+m,0)}v.restore()}if(X){for(var s=X.length;s--;){var c=X[s];v.save();v.fillStyle=c.color;v.translate.apply(v,h[s]);r()}}var O=R.textGradient;if(O){var V=O.stops,N=v.createLinearGradient(0,Y.minY,0,Y.maxY);for(var s=0,p=V.length;s<p;++s){N.addColorStop.apply(N,V[s])}v.fillStyle=N}r();if(M["line-through"]){L(-t.descent,M["line-through"])}return Q}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(v,Y,q,V,c,w,o){var I=(Y===null);if(I){Y=c.alt}var a=v.viewBox;var J=q.computedFontSize||(q.computedFontSize=new Cufon.CSS.Size(C(w,q.get("fontSize"))+"px",v.baseSize));var n=q.computedLSpacing;if(n==undefined){n=q.get("letterSpacing");q.computedLSpacing=n=(n=="normal")?0:~~J.convertFrom(A(w,n))}var S,K;if(I){S=c;K=c.firstChild}else{S=document.createElement("span");S.className="cufon cufon-vml";S.alt=Y;K=document.createElement("span");K.className="cufon-vml-canvas";S.appendChild(K);if(V.printable){var t=document.createElement("span");t.className="cufon-alt";t.appendChild(document.createTextNode(Y));S.appendChild(t)}if(!o){S.appendChild(document.createElement("cvml:shape"))}}var AB=S.style;var f=K.style;var G=J.convert(a.height),y=Math.ceil(G);var m=y/G;var j=a.minX,h=a.minY;f.height=y;f.top=Math.round(J.convert(h-v.ascent));f.left=Math.round(J.convert(j));AB.height=J.convert(v.height)+"px";var N=V.enableTextDecoration?Cufon.CSS.textDecoration(w,q):{};var X=q.get("color");var z=Cufon.CSS.textTransform(Y,q).split("");var F=0,g=0,O=null;var W,Q,Z=V.textShadow;for(var u=0,s=0,r=z.length;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(W){F+=O=~~(W.w||v.w)+n}}if(O===null){return null}var R=-j+F+(a.width-O);var AA=J.convert(R*m),p=Math.round(AA);var e=R+","+a.height,H;var b="r"+e+"ns";var P=V.textGradient&&D(V.textGradient);for(u=0;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(!W){continue}if(I){Q=K.childNodes[s];if(Q.firstChild){Q.removeChild(Q.firstChild)}}else{Q=document.createElement("cvml:shape");K.appendChild(Q)}Q.stroked="f";Q.coordsize=e;Q.coordorigin=H=(j-g)+","+h;Q.path=(W.d?"m"+W.d+"xe":"")+"m"+H+b;Q.fillcolor=X;if(P){Q.appendChild(P.cloneNode(false))}var x=Q.style;x.width=p;x.height=y;if(Z){var M=Z[0],L=Z[1];var U=Cufon.CSS.color(M.color),T;var d=document.createElement("cvml:shadow");d.on="t";d.color=U.color;d.offset=M.offX+","+M.offY;if(L){T=Cufon.CSS.color(L.color);d.type="double";d.color2=T.color;d.offset2=L.offX+","+L.offY}d.opacity=U.opacity||(T&&T.opacity)||1;Q.appendChild(d)}g+=~~(W.w||v.w)+n;++s}AB.width=Math.max(Math.ceil(J.convert(F*m)),0);return S}})());
Cufon.registerFont({"w":630,"face":{"font-family":"Cooper","font-weight":900,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 8 9 3 4 3 11 2 4 4","ascent":"701","descent":"-299","x-height":"14","cap-height":"11","bbox":"-21.8843 -904 1099 250","underline-thickness":"50","underline-position":"-50","stemh":"109","stemv":"225","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":315},"!":{"d":"273,-97v0,61,-50,111,-111,111v-61,0,-111,-50,-111,-111v0,-61,50,-111,111,-111v61,0,111,50,111,111xm282,-562v0,62,-23,137,-51,192v-9,19,-44,84,-69,84v-25,0,-60,-65,-69,-84v-28,-55,-51,-130,-51,-192v0,-74,35,-153,120,-153v85,0,120,79,120,153","w":324},"\"":{"d":"157,-715v148,0,118,214,63,312v-9,15,-41,74,-63,74v-22,0,-54,-59,-62,-74v-27,-49,-46,-118,-46,-174v0,-67,32,-138,108,-138xm430,-715v148,0,118,214,63,312v-9,15,-41,74,-63,74v-22,0,-54,-59,-62,-74v-27,-49,-46,-118,-46,-174v0,-67,32,-138,108,-138","w":587},"#":{"d":"406,-164r-19,145v-2,25,-34,18,-60,19v-10,0,-18,-9,-16,-19r20,-145v2,-26,-28,-18,-51,-19v-10,0,-19,9,-20,19r-20,145v-2,25,-34,18,-60,19v-10,0,-18,-9,-16,-19r21,-145v4,-42,-79,4,-79,-38v0,-24,-6,-57,19,-57v30,0,73,10,77,-19v3,-20,14,-54,-10,-56v-26,-2,-64,8,-64,-19v1,-24,-6,-57,19,-57v30,0,72,10,77,-19r18,-134v2,-25,34,-18,60,-19v10,0,18,9,16,19r-20,135v-4,24,28,17,50,18v10,0,19,-9,21,-19r19,-134v2,-25,34,-18,60,-19v10,0,18,9,16,19r-19,135v-6,40,79,-5,79,37v0,24,6,57,-19,57v-30,0,-74,-10,-76,19v-2,20,-16,54,10,56v26,2,64,-8,64,19v-1,24,6,57,-19,57v-30,0,-74,-10,-78,19xm278,-277v-4,23,27,18,49,18v24,0,23,-33,26,-56v3,-25,-27,-19,-50,-19v-25,0,-21,35,-25,57"},"$":{"d":"486,-594v37,0,96,77,96,139v0,33,-19,60,-53,60v-54,0,-93,-101,-185,-101v-29,0,-54,14,-54,46v0,96,305,39,305,269v0,131,-142,201,-215,207v-24,2,-21,10,-21,34v0,49,-3,48,-52,48v-46,0,-58,7,-58,-44v0,-16,5,-35,-15,-37v-38,-5,-116,-22,-145,-43v-35,-26,-55,-115,-55,-155v0,-23,10,-47,36,-47v69,0,55,140,210,140v22,0,73,-10,73,-43v0,-30,-9,-36,-117,-75v-91,-32,-186,-95,-186,-203v0,-100,81,-180,176,-199v26,-5,23,-8,23,-35v0,-50,3,-48,52,-48v47,0,58,-7,58,44v0,14,-5,34,13,38v13,2,63,15,69,15v12,0,27,-10,45,-10"},"%":{"d":"838,-183v0,114,-111,187,-217,187v-99,0,-188,-58,-188,-165v0,-125,108,-191,223,-191v89,0,182,77,182,169xm679,-125v0,-35,-15,-147,-63,-147v-20,0,-30,21,-30,38v0,16,14,149,64,149v23,0,29,-22,29,-40xm419,-542v0,114,-111,187,-217,187v-98,0,-188,-59,-188,-165v0,-126,108,-191,223,-191v89,0,182,76,182,169xm260,-484v0,-35,-15,-147,-63,-147v-20,0,-30,21,-30,38v0,16,14,149,64,149v23,0,29,-22,29,-40xm541,-469r-190,324v-71,121,-63,150,-108,150v-15,0,-59,-5,-59,-26v0,-31,22,-29,146,-245r233,-405v15,-31,26,-44,61,-44v15,0,47,2,47,23v0,30,-30,52,-130,223","w":852},"&":{"d":"471,-215v-31,0,-45,-46,-45,-71v0,-202,274,-184,274,-267v-1,-28,-27,-30,-50,-20v-11,0,-21,-10,-21,-22v0,-55,90,-81,133,-81v76,0,151,46,151,129v0,127,-149,161,-149,191v0,29,75,33,75,120v0,107,-144,250,-416,250v-263,0,-409,-140,-409,-282v0,-126,110,-146,110,-166v0,-12,-36,-60,-36,-106v0,-110,124,-188,249,-188v56,0,176,23,176,97v0,28,-28,58,-57,58v-30,0,-53,-42,-101,-42v-38,0,-61,33,-61,69v0,98,109,32,109,101v0,119,-116,39,-116,130v0,101,94,207,198,207v67,0,152,-44,152,-121v0,-36,-31,-61,-67,-61v-63,0,-67,75,-99,75","w":913},"\u2019":{"d":"45,-344v0,-21,69,-57,69,-120v0,-37,-77,-43,-77,-134v0,-67,48,-117,115,-117v72,0,119,64,119,132v0,117,-110,272,-178,272v-17,0,-48,-12,-48,-33","w":315,"k":{"s":40}},"(":{"d":"70,-350v0,-206,99,-454,332,-454v100,0,112,27,112,52v0,25,-11,50,-38,50v-36,0,-46,-5,-56,-5v-119,0,-133,272,-133,357v0,85,14,357,133,357v10,0,20,-5,56,-5v27,0,38,25,38,50v0,25,-12,52,-112,52v-233,0,-332,-248,-332,-454","w":524},")":{"d":"454,-350v0,206,-99,454,-332,454v-100,0,-112,-27,-112,-52v0,-25,11,-50,38,-50v36,0,46,5,56,5v119,0,133,-272,133,-357v0,-85,-14,-357,-133,-357v-10,0,-20,5,-56,5v-27,0,-38,-25,-38,-50v0,-25,12,-52,112,-52v233,0,332,248,332,454","w":524},"*":{"d":"432,-587v35,-7,65,-30,102,-30v35,0,41,78,41,80v0,47,-111,29,-111,56v0,8,62,73,62,99v0,18,-60,59,-76,59v-26,0,-59,-101,-78,-101v-14,0,-68,91,-94,91v-16,0,-67,-41,-67,-62v0,-37,73,-81,73,-98v0,-23,-101,-17,-101,-62v0,-15,17,-76,40,-76v31,0,82,36,96,36v14,0,10,-33,9,-44v-3,-41,0,-76,42,-76v26,0,60,-1,60,33v0,22,-7,57,-7,85v0,5,4,10,9,10","w":758},"+":{"d":"373,-365v5,55,-4,47,51,51v67,5,133,-32,133,58v0,91,-65,58,-133,58v-57,0,-47,-4,-51,51v-5,67,32,133,-58,133v-91,0,-58,-65,-58,-133v0,-57,6,-47,-51,-51v-67,-5,-133,32,-133,-58v0,-91,66,-52,133,-58v55,-5,51,6,51,-51v0,-67,-32,-133,58,-133v91,0,52,66,58,133"},",":{"d":"142,185v-21,0,-50,-16,-50,-39v0,-17,50,-77,50,-117v0,-43,-110,-22,-110,-143v0,-64,52,-121,117,-121v91,0,133,88,133,168v0,89,-61,252,-140,252","w":315},"-":{"d":"259,-204v-16,52,-75,28,-127,28v-87,0,-93,4,-102,4v-69,0,1,-123,10,-154v16,-52,75,-28,127,-28v87,0,93,-4,102,-4v69,0,-1,123,-10,154","w":299},".":{"d":"278,-107v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121","w":315},"\/":{"d":"390,-455r-249,511v-35,71,-31,92,-76,92v-25,0,-86,-4,-86,-37v0,-23,51,-97,106,-209r249,-511v35,-71,31,-92,76,-92v25,0,86,4,86,37v0,23,-51,97,-106,209","w":496},"0":{"d":"26,-293v0,-169,103,-296,279,-296v169,0,299,142,299,308v0,197,-160,295,-291,295v-173,0,-287,-141,-287,-307xm380,-217v0,-48,-16,-223,-82,-223v-42,0,-48,48,-48,80v0,45,18,225,83,225v40,0,47,-52,47,-82"},"1":{"d":"193,-235r0,-136v0,-45,-4,-63,-53,-63v-36,0,-77,6,-77,-31v0,-69,225,-124,373,-124v31,0,83,2,83,45v0,50,-73,14,-75,108v-2,112,-9,193,7,291v15,90,131,19,131,90v0,35,-31,44,-60,51v-52,11,-148,18,-202,18v-35,0,-279,-5,-279,-74v0,-46,56,-34,97,-34v38,0,55,-26,55,-141"},"2":{"d":"562,-206v37,0,45,46,45,75v0,112,-72,179,-112,179v-55,0,-7,-48,-98,-48r-330,0v-18,0,-58,2,-58,-26v0,-16,-2,-16,73,-87v51,-48,172,-173,172,-244v0,-35,-21,-57,-56,-57v-61,0,-73,58,-119,58v-29,0,-65,-28,-65,-58v0,-88,188,-175,311,-175v169,0,239,78,239,157v0,128,-168,210,-168,251v0,23,24,35,44,35v71,0,89,-60,122,-60"},"3":{"d":"206,-192v-37,0,-64,10,-72,10v-24,0,-42,-60,-42,-79v0,-41,134,-36,134,-130v0,-36,-39,-67,-78,-67v-49,0,-83,35,-101,35v-21,0,-36,-37,-36,-56v0,-53,139,-110,257,-110v80,0,244,25,244,131v0,86,-75,104,-75,127v0,36,168,3,168,177v0,127,-117,260,-381,260v-50,0,-226,-10,-226,-82v0,-32,25,-54,56,-54v28,0,61,18,124,18v63,0,134,-34,134,-96v0,-58,-54,-84,-106,-84"},"4":{"d":"219,-176r31,0v69,0,70,2,70,-63v0,-43,15,-142,-24,-139v-20,2,-34,15,-45,31v-18,25,-106,117,-105,149v1,25,58,22,73,22xm537,-561r0,331v0,29,-3,40,29,40v65,0,38,74,38,121v0,23,1,40,-27,43v-31,3,-28,6,-28,59v0,45,9,64,-42,64r-151,0v-48,0,-42,-8,-42,-60v0,-51,5,-65,-49,-65r-175,0v-53,0,-78,-8,-78,-66v0,-74,10,-98,102,-204r231,-266v41,-39,87,-64,145,-64v46,0,47,31,47,67"},"5":{"d":"496,-402r-210,0v-23,0,-51,-1,-51,31v0,25,30,24,51,26v259,29,311,143,311,212v0,129,-149,242,-364,242v-160,0,-192,-45,-192,-81v0,-14,7,-57,28,-57v6,0,63,20,113,20v42,0,97,-17,97,-68v0,-65,-94,-90,-145,-99v-27,-4,-101,-6,-101,-49v0,-50,48,-188,67,-239v46,-125,54,-118,104,-118r341,0v37,0,47,2,47,44v0,46,-22,136,-96,136"},"6":{"d":"620,-261v0,138,-112,275,-294,275v-184,0,-308,-129,-308,-299v0,-163,169,-383,231,-383v21,0,142,29,142,59v0,13,-18,31,-26,40v-37,41,-70,88,-70,120v0,9,6,19,16,19v17,0,63,-27,118,-27v107,0,191,91,191,196xm400,-171v0,-46,-31,-141,-90,-141v-35,0,-48,31,-48,62v0,43,43,125,91,125v28,0,47,-18,47,-46"},"7":{"d":"238,-582r306,0v26,0,61,1,61,38v0,12,-4,23,-8,35r-201,608v-8,26,-9,34,-58,34v-109,0,-156,-40,-156,-56v0,-7,7,-19,10,-24r180,-344v8,-16,27,-50,27,-68v0,-39,-88,-33,-118,-33v-199,0,-105,62,-187,62v-60,0,-75,-63,-75,-111v0,-95,43,-169,90,-169v41,0,31,28,129,28"},"8":{"d":"609,-487v0,107,-138,100,-63,148v45,29,73,83,73,137v0,81,-72,216,-285,216v-122,0,-323,-47,-323,-202v0,-93,84,-113,84,-134v0,-17,-68,-50,-68,-136v0,-124,135,-192,276,-192v100,0,306,29,306,163xm330,-555v-24,0,-53,13,-53,39v0,37,72,85,105,85v24,0,35,-39,35,-58v0,-47,-47,-66,-87,-66xm307,-90v33,0,70,-12,70,-51v0,-42,-38,-56,-69,-72v-23,-12,-75,-37,-100,-37v-20,0,-26,23,-26,40v0,65,61,120,125,120"},"9":{"d":"494,-38v-30,41,-138,170,-191,170v-34,0,-183,-56,-108,-95v47,-25,99,-97,99,-137v0,-31,-44,-16,-69,-16v-145,0,-212,-126,-212,-240v0,-160,155,-233,296,-233v150,0,302,74,302,243v0,115,-50,217,-117,308xm387,-304v0,-42,-25,-138,-83,-138v-33,0,-51,35,-51,65v0,50,28,129,87,129v31,0,47,-28,47,-56"},":":{"d":"278,-404v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121xm278,-107v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121","w":315},";":{"d":"282,-67v0,89,-61,252,-140,252v-21,0,-50,-16,-50,-39v0,-17,50,-77,50,-117v0,-43,-110,-22,-110,-143v0,-64,52,-121,117,-121v91,0,133,88,133,168xm274,-404v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121","w":315},"<":{"d":"257,-256r262,114v44,17,38,34,38,79v0,16,-5,49,-20,49v-14,0,-25,-6,-38,-11r-409,-178v-17,-7,-17,-35,-17,-53v0,-18,0,-46,17,-53r409,-178v13,-5,24,-11,38,-11v23,6,20,51,20,80v0,24,-6,35,-38,48"},"=":{"d":"492,-296r-354,0v-45,0,-65,5,-65,-58v0,-63,20,-58,65,-58r354,0v45,0,65,-5,65,58v0,63,-20,58,-65,58xm492,-100r-354,0v-45,0,-65,5,-65,-58v0,-63,20,-58,65,-58r354,0v45,0,65,-5,65,58v0,63,-20,58,-65,58"},">":{"d":"111,-142r262,-114r-262,-114v-44,-17,-38,-34,-38,-79v0,-16,5,-49,20,-49v14,0,25,6,38,11r409,178v17,7,17,35,17,53v0,18,0,46,-17,53r-409,178v-13,5,-24,11,-38,11v-23,-6,-20,-51,-20,-80v0,-24,6,-35,38,-48"},"?":{"d":"195,-559v-7,65,-46,107,-113,107v-42,0,-75,-30,-75,-73v0,-86,86,-190,242,-190v104,0,247,69,247,188v0,61,-38,109,-112,137v-103,39,-44,116,-141,116v-41,0,-67,-25,-67,-66v0,-85,86,-130,86,-216v0,-21,-9,-51,-35,-51v-28,0,-30,27,-32,48xm346,-97v0,61,-50,111,-111,111v-61,0,-111,-50,-111,-111v0,-61,50,-111,111,-111v61,0,111,50,111,111","w":506},"@":{"d":"475,-496v14,0,49,-30,91,-30v21,0,27,7,27,27v0,11,-9,55,-19,94v-5,20,-40,147,-10,147v11,0,76,-33,91,-154v11,-88,-48,-232,-246,-232v-155,0,-298,120,-310,294v-13,183,120,293,290,293v132,0,213,-106,229,-106v16,0,39,28,38,41v-1,10,-130,136,-292,136v-205,0,-362,-146,-338,-357v24,-207,189,-372,399,-372v153,0,325,104,309,291v-15,174,-150,271,-303,271v-64,0,-27,-61,-50,-61v-18,0,-59,65,-133,65v-58,0,-90,-46,-84,-117v13,-142,139,-260,228,-260v46,0,62,30,83,30xm345,-263v26,0,92,-103,97,-161v1,-10,-1,-24,-12,-24v-24,0,-93,80,-100,157v-1,10,0,28,15,28","w":758},"A":{"d":"339,-289r75,0v10,0,40,2,40,-13v0,-15,-29,-67,-37,-81v-9,-16,-26,-53,-48,-53v-24,0,-41,60,-45,71v-4,11,-21,50,-21,62v0,17,25,14,36,14xm83,-117v52,-71,82,-163,121,-244v33,-68,72,-157,72,-236v0,-69,32,-121,121,-121v87,0,142,89,181,155v17,29,168,335,204,417v33,76,87,30,87,87v0,73,-142,70,-192,70v-143,0,-229,-1,-229,-63v0,-48,61,-30,61,-65v0,-45,-25,-49,-186,-49v-52,0,-83,2,-83,51v0,39,64,13,64,65v0,60,-108,61,-148,61v-143,0,-156,-27,-156,-59v0,-47,56,-32,83,-69","w":869},"B":{"d":"310,-701r140,-7v183,0,230,87,230,164v0,46,-19,95,-55,124v-9,8,-18,14,-18,27v0,13,11,18,21,22v41,17,112,69,112,153v0,100,-67,223,-268,223r-186,-5r-206,5v-31,0,-66,-18,-66,-53v0,-62,65,1,71,-165r11,-288v6,-151,-80,-82,-80,-151v0,-38,41,-56,72,-56xm334,-545v0,49,-22,139,29,139v60,0,74,-42,74,-97v0,-45,-15,-101,-70,-101v-37,0,-33,30,-33,59xm373,-307v-51,-1,-39,44,-39,87v0,116,19,119,50,119v57,0,77,-39,77,-91v0,-61,-18,-115,-88,-115","w":754},"C":{"d":"24,-353v0,-205,193,-362,390,-362v98,0,161,49,187,49v22,0,28,-7,45,-7v42,0,96,63,96,174v0,57,-34,105,-93,105v-103,0,-77,-177,-255,-177v-77,0,-109,72,-109,127v0,148,79,274,219,274v127,0,146,-69,177,-69v29,0,43,34,43,59v0,44,-46,136,-96,136v-34,0,-104,58,-222,58v-210,0,-382,-166,-382,-367","w":756},"D":{"d":"261,0r-170,5v-34,0,-77,-17,-77,-57v0,-72,79,8,82,-138r8,-347v2,-103,-73,-53,-73,-118v0,-46,58,-53,93,-53r326,0v278,0,369,172,369,352v0,186,-109,361,-362,361xm344,-544r0,373v0,51,8,72,62,72v126,0,148,-129,148,-229v0,-234,-88,-271,-165,-271v-42,0,-45,17,-45,55","w":843},"E":{"d":"625,11v-155,0,-364,-11,-539,-11v-66,0,-67,-30,-67,-43v0,-55,68,-11,75,-117v12,-182,12,-164,3,-345v-8,-153,-83,-74,-83,-145v0,-61,84,-51,125,-51r288,0v134,0,153,-20,169,-20v57,0,81,98,81,142v0,33,-13,72,-52,72v-79,0,-15,-96,-205,-96v-111,0,-100,20,-100,135v0,58,3,60,64,60v76,0,19,-111,90,-111v58,0,62,113,62,152v0,41,-7,161,-67,161v-62,0,0,-105,-101,-105v-42,0,-41,38,-41,70v0,146,10,139,115,139v205,0,147,-141,229,-141v32,0,48,36,48,64v0,68,-54,190,-94,190","w":726},"F":{"d":"89,-138v30,-117,20,-279,10,-415v-6,-86,-77,-46,-77,-101v0,-38,44,-54,76,-54v26,0,206,10,289,10v20,0,221,-10,235,-10v39,0,80,79,80,147v0,34,-16,69,-54,69v-69,0,-33,-103,-225,-103v-61,0,-87,-5,-87,140v0,18,1,35,59,35v77,0,28,-92,98,-92v57,0,61,109,61,148v0,47,-5,168,-73,168v-64,0,2,-113,-105,-113v-44,0,-37,8,-39,111v-3,148,97,66,97,142v0,23,9,67,-234,67v-160,0,-186,-23,-186,-66v0,-56,61,-28,75,-83","w":695,"k":{"A":90,"\u00c4":90,",":82,".":85}},"G":{"d":"283,-412v0,206,120,280,184,280v35,0,61,-26,61,-62v0,-83,-105,-2,-105,-94v0,-73,151,-78,202,-78v188,0,199,53,199,82v0,26,-22,45,-46,48v-26,4,-28,8,-35,34v-39,146,-180,216,-322,216v-212,0,-397,-147,-397,-368v0,-211,179,-361,393,-361v88,0,136,27,162,27v18,0,44,-15,62,-15v62,0,99,102,99,153v0,49,-25,99,-79,99v-99,0,-99,-139,-235,-139v-87,0,-143,72,-143,178","w":834},"H":{"d":"756,-425r0,260v0,30,4,45,31,60v20,11,34,17,34,42v0,24,-2,74,-199,74v-44,0,-172,-1,-172,-68v0,-77,70,8,70,-195v0,-54,-12,-52,-62,-52v-140,0,-127,4,-127,94v0,137,62,82,62,147v0,70,-146,74,-194,74v-46,0,-185,-4,-185,-72v0,-21,15,-34,32,-42v36,-17,49,-14,49,-223v0,-266,-4,-244,-41,-264v-15,-8,-33,-17,-33,-37v0,-77,167,-85,223,-85v42,0,158,5,158,65v0,31,-17,42,-40,56v-25,14,-31,26,-31,115v0,75,63,49,125,49v66,0,64,-10,64,-41v0,-109,-17,-116,-30,-123v-19,-11,-37,-20,-37,-46v0,-19,-4,-75,195,-75v47,0,180,1,180,71v0,22,-11,38,-31,47v-30,14,-41,10,-41,169","w":842},"I":{"d":"97,-301r0,-99v0,-127,-10,-156,-21,-170v-23,-29,-62,-32,-62,-70v0,-72,204,-72,224,-72v60,0,183,2,183,70v0,36,-40,32,-61,60v-30,40,-20,195,-20,281v0,178,12,174,32,186v25,15,49,20,49,51v0,30,-9,75,-228,75v-42,0,-168,-1,-168,-65v0,-32,34,-37,50,-56v12,-14,22,-51,22,-191","w":435},"J":{"d":"572,-526r-8,308v-6,212,-226,232,-282,232v-116,0,-289,-48,-289,-191v0,-65,45,-120,112,-120v58,0,116,36,116,99v0,17,-7,34,-7,47v0,25,20,39,44,37v118,-12,62,-216,70,-396v5,-111,-90,-52,-90,-119v0,-19,8,-83,203,-83v189,0,211,46,211,74v0,52,-78,28,-80,112","w":659},"K":{"d":"529,-52r-68,-83v-17,-20,-76,-93,-99,-93v-33,0,-30,41,-30,76v0,48,63,52,63,101v0,32,-23,62,-199,62v-158,0,-178,-27,-178,-61v0,-52,51,-25,62,-108v16,-121,17,-251,0,-372v-12,-86,-66,-49,-66,-110v0,-16,-9,-72,210,-72v47,0,151,-1,151,68v0,53,-55,21,-55,139v0,13,1,42,19,42v27,0,106,-103,106,-126v0,-21,-16,-31,-16,-53v0,-74,132,-70,180,-70v48,0,164,-5,164,66v0,82,-104,33,-139,68v-20,20,-105,81,-105,123v0,27,24,51,40,70r209,239v30,34,91,30,91,91v0,50,-51,55,-90,55r-170,0v-39,0,-40,-3,-80,-52","w":869},"L":{"d":"570,14v-46,0,-68,-14,-125,-14r-334,0v-32,0,-83,2,-83,-44v0,-62,78,-10,81,-126v2,-73,2,-137,2,-196v0,-60,-5,-116,-7,-172v-2,-84,-90,-40,-90,-97v0,-73,157,-77,206,-77v200,0,210,34,210,68v0,58,-79,14,-79,108r0,318v0,72,12,107,83,107v170,0,112,-139,176,-139v45,0,62,48,62,86v0,78,-56,178,-102,178","w":665,"k":{"T":73,"V":89,"W":87,"y":29,"Y":77,"\u2019":20}},"M":{"d":"336,-151r-58,-130v-6,-13,-17,-43,-35,-43v-31,0,-21,132,-21,165v0,107,64,57,64,111v0,57,-107,59,-146,59v-35,0,-126,-3,-126,-55v0,-57,60,-10,68,-92v8,-84,17,-177,17,-322v0,-60,-4,-91,-15,-114v-10,-21,-67,-28,-67,-69v0,-57,93,-71,173,-71v117,0,115,20,145,71v35,59,97,223,141,233v31,7,72,-114,108,-180v51,-94,52,-124,184,-124v44,0,144,3,144,66v0,40,-49,47,-55,82v-25,136,-15,217,-5,409v3,73,63,57,63,102v0,67,-137,64,-181,64v-41,0,-178,4,-178,-60v0,-35,45,-41,52,-73v4,-17,24,-189,-11,-189v-31,0,-63,88,-87,139v-22,46,-58,160,-90,156v-16,-2,-24,0,-84,-135","w":929},"N":{"d":"312,-668r237,208v12,10,44,39,62,39v25,0,26,-41,26,-58v0,-25,-1,-68,-9,-91v-14,-42,-67,-27,-67,-81v0,-64,102,-61,144,-61v44,0,153,-5,153,64v0,57,-57,35,-70,82v-31,116,-13,261,-13,395v0,45,6,182,-61,182v-20,0,-37,-12,-52,-25r-309,-277v-14,-13,-40,-37,-61,-37v-31,0,-32,65,-32,86v0,28,1,65,7,91v15,64,68,40,68,89v0,67,-103,73,-150,73v-46,0,-149,-6,-149,-71v0,-53,60,-32,68,-96v15,-119,15,-247,-2,-368v-14,-100,-88,-61,-88,-121v0,-71,135,-67,180,-67v62,0,73,4,118,44","w":873},"O":{"d":"399,14v-211,0,-375,-154,-375,-367v0,-212,169,-362,387,-362v276,0,382,243,382,372v0,215,-190,357,-394,357xm536,-242v0,-91,-54,-324,-171,-324v-56,0,-84,58,-84,107v0,85,60,324,168,324v61,0,87,-53,87,-107","w":818},"P":{"d":"474,-482v0,-63,-32,-115,-99,-115v-39,0,-38,12,-38,32r0,150v0,21,-9,44,45,44v66,0,92,-50,92,-111xm107,-158r0,-391v0,-75,-93,-35,-93,-98v0,-65,88,-45,149,-46v145,0,253,-15,275,-15v136,0,267,72,267,222v0,149,-126,229,-265,229v-30,0,-60,-5,-87,-5v-30,1,-11,49,-16,74v3,125,76,73,76,131v0,65,-144,68,-189,68v-42,0,-190,-1,-190,-66v0,-55,73,-21,73,-103","w":719,"k":{"A":93,"\u00c4":93,",":80,".":90}},"Q":{"d":"536,-242v0,-91,-54,-324,-171,-324v-56,0,-84,58,-84,107v0,85,60,324,168,324v61,0,87,-53,87,-107xm568,187v-174,0,-345,-137,-484,-150v-25,6,-50,-1,-48,-27v3,-49,49,-71,100,-64v6,0,15,-2,15,-10v0,-22,-127,-88,-127,-289v0,-212,169,-362,387,-362v276,0,382,243,382,372v0,157,-92,270,-238,329v-5,2,-13,8,-13,14v0,16,34,46,150,46v40,0,71,-18,79,-18v15,0,26,26,26,39v0,31,-65,120,-229,120","w":821},"R":{"d":"326,-544r-4,95v-2,26,-7,48,26,48v65,0,86,-36,86,-98v0,-49,-12,-99,-70,-99v-37,0,-36,23,-38,54xm132,-708r317,0v113,0,244,50,244,183v0,60,-28,121,-85,145v-25,11,-15,42,9,44v70,26,101,72,115,180v12,93,77,37,77,98v0,38,-46,78,-159,78v-160,0,-180,-92,-211,-224v-11,-46,-28,-91,-83,-91v-22,0,-30,3,-30,66v0,29,2,69,7,97v8,46,59,32,59,80v0,36,-25,63,-187,63v-48,0,-190,0,-190,-73v0,-52,75,-16,75,-146r0,-285v0,-155,-76,-91,-76,-153v0,-55,78,-62,118,-62","w":816,"k":{"T":48,"V":71,"W":75,"y":71,"Y":72}},"S":{"d":"135,-305v-55,-44,-95,-105,-95,-177v0,-104,100,-233,294,-233v64,0,136,29,151,29v14,0,28,-12,49,-12v34,0,110,74,110,158v0,34,-22,68,-59,68v-67,0,-106,-114,-210,-114v-31,0,-64,14,-64,50v0,79,137,58,253,135v62,41,93,91,93,166v0,117,-96,249,-329,249v-66,0,-179,-17,-236,-48v-48,-27,-71,-133,-71,-184v0,-27,12,-54,42,-54v71,0,59,159,243,159v22,0,77,-11,77,-49v0,-72,-137,-54,-248,-143","w":678},"T":{"d":"129,-715v92,22,250,12,369,14v69,1,70,-14,119,-14v39,0,120,77,120,185v0,50,-26,83,-77,83v-87,0,-86,-118,-137,-118v-39,0,-35,54,-35,62r0,307v0,119,92,62,92,132v0,31,-19,75,-206,75v-51,0,-238,2,-238,-75v0,-53,62,-32,82,-70v25,-94,17,-218,23,-327v6,-105,-17,-104,-31,-104v-45,0,-67,118,-148,118v-39,0,-62,-36,-62,-72v0,-85,72,-196,129,-196","w":737,"k":{"\u00f6":41,"\u00e4":34,"w":-33,"y":-30,"A":79,"\u00c4":79,",":75,".":84,"u":-16,"\u00fc":-16,"a":34,"c":41,"e":41,"i":-44,"o":41,"s":31,":":-49,";":-56}},"U":{"d":"629,-279r0,-249v0,-107,-86,-66,-86,-124v0,-62,116,-60,157,-60v38,0,148,0,148,58v0,56,-75,22,-75,113r0,270v0,45,1,285,-345,285v-394,0,-350,-304,-350,-316r0,-231v4,-63,-64,-63,-64,-109v0,-14,-11,-70,195,-70v163,0,196,30,196,69v0,72,-78,5,-78,127r0,184v0,119,45,195,151,195v158,0,151,-131,151,-142","w":862},"V":{"d":"722,-532r-225,456v-21,41,-41,87,-95,87v-58,0,-73,-33,-95,-80r-199,-440v-30,-65,-39,-77,-78,-83v-20,-3,-30,-18,-30,-39v0,-77,159,-81,210,-81v210,0,202,50,202,65v0,38,-48,40,-48,67v0,21,38,99,63,151v8,17,20,56,42,57v33,2,51,-54,62,-75v13,-24,58,-114,58,-138v0,-36,-51,-26,-51,-66v0,-62,126,-61,166,-61v126,0,147,23,147,58v0,27,-20,40,-44,43v-43,5,-47,2,-85,79","w":844,"k":{"\u00f6":132,"\u00e4":97,"y":82,"A":148,"\u00c4":148,",":122,".":125,"r":88,"u":61,"\u00fc":61,"-":64,"a":97,"e":132,"i":-19,"o":132,":":35,";":34}},"W":{"d":"673,-58r-92,-219v-5,-11,-13,-42,-29,-42v-19,0,-26,26,-52,90r-61,151v-21,52,-31,89,-96,89v-56,0,-71,-35,-89,-81r-186,-475v-28,-72,-68,-35,-68,-96v0,-69,135,-71,181,-71v146,0,171,23,171,64v0,30,-23,34,-23,65v0,29,31,102,35,114v5,16,27,86,50,86v26,0,47,-72,52,-87v3,-6,13,-32,13,-39v0,-9,-21,-72,-51,-88v-20,-11,-37,-24,-37,-49v0,-6,-14,-66,195,-66v194,0,190,45,190,62v0,33,-45,42,-45,67v0,27,34,89,44,111v7,16,29,78,53,78v34,0,77,-170,77,-184v0,-43,-65,-21,-65,-76v0,-61,102,-58,143,-58v41,0,116,5,116,61v0,49,-42,36,-69,106r-172,450v-21,54,-44,106,-101,106v-50,0,-66,-27,-84,-69","w":1093,"k":{"\u00fc":31,"\u00f6":84,"\u00e4":83,"y":38,"A":131,"\u00c4":131,",":82,".":86,"r":58,"u":31,"-":52,"a":83,"e":83,"i":-21,"o":84,":":16,";":10}},"X":{"d":"709,-599v-82,13,-120,102,-168,155v-3,3,-14,16,-14,21v0,7,10,17,14,22r187,235v51,64,107,37,107,96v0,30,-3,81,-248,81v-42,0,-189,5,-189,-61v0,-38,41,-38,41,-59v0,-26,-40,-81,-56,-100v-4,-6,-9,-14,-17,-14v-13,0,-74,91,-74,105v0,23,42,21,42,66v0,28,-25,63,-167,63v-143,0,-167,-34,-167,-68v0,-26,17,-49,58,-49v72,0,160,-148,212,-203v3,-4,14,-16,14,-21v0,-7,-10,-18,-14,-22r-142,-184v-51,-66,-111,-35,-111,-93v0,-23,2,-83,247,-83v142,0,174,20,174,63v0,44,-36,40,-36,59v0,15,35,61,47,61v13,0,52,-51,52,-61v0,-23,-38,-20,-38,-61v0,-34,25,-61,172,-61v42,0,146,0,146,63v0,46,-37,45,-72,50","w":835},"Y":{"d":"697,-572r-123,135v-44,55,-47,85,-47,155v0,92,5,132,14,151v14,29,67,23,67,70v0,72,-158,72,-207,72v-196,0,-222,-45,-222,-72v0,-54,57,-34,75,-75v10,-23,16,-69,16,-166v0,-57,-7,-78,-44,-121r-113,-131v-49,-57,-114,-41,-114,-90v0,-23,-7,-68,226,-68v208,0,206,39,206,61v0,26,-28,36,-28,57v0,22,40,85,65,85v26,0,68,-53,68,-76v0,-28,-29,-30,-29,-68v0,-59,116,-59,154,-59v125,0,158,15,158,59v0,64,-72,27,-122,81","w":819,"k":{"\u00fc":60,"\u00f6":129,"v":86,"A":125,"\u00c4":125,",":109,".":112,"u":60,"-":71,"a":124,"\u00e4":124,"e":129,"i":-13,"o":129,":":40,";":33,"p":83,"q":129}},"Z":{"d":"100,-708v111,32,383,-2,511,-4v29,0,51,15,51,46v0,18,-16,42,-24,57r-215,370v-9,15,-44,74,-44,91v0,24,54,23,69,23v175,0,118,-132,194,-132v50,0,72,30,72,77v0,108,-66,189,-101,189v-162,0,-350,-6,-525,-9v-34,0,-71,9,-71,-38v0,-19,12,-35,21,-50r252,-428v5,-8,18,-27,18,-38v0,-26,-41,-29,-66,-29v-126,0,-95,135,-166,135v-41,0,-69,-45,-69,-83v0,-76,69,-177,93,-177","w":721},"[":{"d":"321,-628r0,555v0,65,-4,85,66,85v45,0,110,-18,110,31v0,61,-77,58,-193,58v-142,0,-175,13,-175,-174r0,-555v0,-187,33,-174,175,-174v116,0,193,-3,193,58v0,48,-66,31,-110,31v-70,0,-66,20,-66,85","w":524},"\\":{"d":"393,56r-276,-511v-60,-112,-116,-186,-117,-209v-2,-33,60,-37,85,-37v53,0,50,21,88,92r276,511v61,112,119,186,119,209v0,33,-69,37,-94,37v-45,0,-42,-21,-81,-92","w":496},"]":{"d":"203,-73r0,-555v0,-65,4,-85,-66,-85v-45,0,-110,18,-110,-31v0,-61,77,-58,193,-58v142,0,175,-13,175,174r0,555v0,187,-33,174,-175,174v-116,0,-193,3,-193,-58v0,-48,66,-31,110,-31v70,0,66,-20,66,-85","w":524},"^":{"d":"429,-204r-114,-262r-114,262v-17,44,-34,38,-79,38v-16,0,-49,-5,-49,-20v0,-14,6,-25,11,-38r178,-409v7,-17,35,-17,53,-17v18,0,46,0,53,17r178,409v5,13,11,24,11,38v-6,23,-51,20,-80,20v-24,0,-35,-6,-48,-38"},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"\u2018":{"d":"270,-682v0,21,-69,57,-69,120v0,37,77,43,77,134v0,67,-48,117,-115,117v-72,0,-119,-64,-119,-132v0,-117,110,-272,178,-272v17,0,48,12,48,33","w":315},"a":{"d":"279,-215v-34,0,-57,32,-57,64v0,26,14,54,43,54v38,0,41,-41,41,-71v0,-22,1,-47,-27,-47xm325,-37v-39,12,-75,51,-145,51v-83,0,-166,-44,-166,-143v0,-71,68,-159,244,-159v31,0,45,2,45,-34v0,-33,-1,-102,-47,-102v-60,0,-66,108,-155,108v-32,0,-56,-23,-56,-55v0,-85,169,-140,264,-140v57,0,213,22,213,172r0,100v0,176,60,80,60,134v0,57,-78,119,-151,119v-79,0,-81,-51,-106,-51","w":596},"b":{"d":"299,-449v27,-16,89,-62,152,-62v106,0,196,89,196,221v0,171,-128,304,-300,304v-126,0,-185,-65,-201,-65v-16,0,-32,15,-65,15v-14,0,-30,-4,-30,-20v0,-16,20,-48,20,-178r0,-266v0,-58,-75,-32,-75,-89v0,-67,194,-112,277,-112v27,0,26,21,25,43r-6,193v0,5,-1,16,7,16xm422,-203v0,-47,-13,-154,-79,-154v-44,0,-49,36,-49,70v0,194,11,210,51,210v66,0,77,-75,77,-126","w":665},"c":{"d":"17,-250v0,-144,125,-261,293,-261v150,0,229,83,229,153v0,56,-42,99,-98,99v-108,0,-58,-124,-137,-124v-44,0,-68,45,-68,85v0,74,55,149,134,149v63,0,84,-26,105,-26v27,0,45,30,45,54v0,59,-90,135,-230,135v-151,0,-273,-111,-273,-264","w":553},"d":{"d":"399,-278v0,-39,0,-124,-58,-124v-67,0,-79,115,-79,162v0,47,12,129,74,129v67,0,63,-123,63,-167xm395,-44v-33,13,-79,58,-145,58v-131,0,-233,-139,-233,-262v0,-133,108,-263,246,-263v69,0,108,30,119,30v15,0,16,-33,16,-44v0,-62,-73,-29,-73,-83v0,-74,255,-93,258,-93v30,0,37,21,37,54r0,478v0,70,53,47,53,99v0,76,-219,81,-230,81v-51,0,-15,-55,-48,-55","w":683},"e":{"d":"481,-230r-217,0v-11,0,-27,-3,-27,14v0,50,65,92,112,92v75,0,112,-45,133,-45v21,0,39,31,39,50v0,77,-141,133,-231,133v-180,0,-273,-130,-273,-259v0,-154,131,-266,281,-266v170,0,245,131,245,206v0,66,-30,75,-62,75xm292,-326v27,0,59,6,59,-30v0,-36,-22,-64,-59,-64v-33,0,-60,34,-60,66v0,36,34,28,60,28","w":557},"f":{"d":"83,-151r8,-108v2,-31,-8,-47,-40,-47v-12,0,-43,5,-43,-13v0,-79,-6,-88,24,-90v12,-1,28,-2,28,-19v0,-19,-38,-56,-38,-119v0,-119,123,-159,223,-159v163,0,201,86,201,129v0,42,-34,77,-76,77v-87,0,-98,-90,-155,-90v-20,0,-34,16,-34,36v0,63,104,84,122,128v3,8,4,11,14,11v42,0,99,-11,97,19r-5,73v-1,15,-12,17,-26,17v-59,0,-69,-1,-69,65v0,28,3,63,10,89v18,60,89,28,89,90v0,24,-2,73,-227,73v-48,0,-177,-1,-177,-71v0,-56,70,-30,74,-91","w":446,"k":{"f":-39,"\u00df":-39}},"g":{"d":"350,-317v0,-41,-9,-115,-65,-115v-39,0,-56,37,-56,72v0,38,10,121,61,121v45,0,60,-39,60,-78xm162,50v0,53,78,67,117,67v33,0,108,-5,108,-51v-11,-51,-67,-24,-125,-24v-34,0,-100,-28,-100,8xm600,-8v0,90,-86,211,-331,211v-185,0,-255,-70,-255,-134v0,-58,55,-59,55,-74v0,-13,-54,-41,-54,-85v0,-71,81,-92,81,-106v0,-12,-68,-58,-68,-132v0,-121,151,-177,252,-177v51,0,120,19,155,19v76,0,114,-53,129,-53v23,0,33,30,33,49v0,56,-56,96,-56,107v0,174,-164,209,-316,209v-17,0,-27,11,-27,27v0,31,44,37,67,37v31,0,147,-17,187,-17v104,0,148,59,148,119","w":607},"h":{"d":"650,-310r4,161v0,85,49,64,49,103v0,58,-128,57,-165,57v-31,0,-152,0,-152,-51v0,-29,28,-28,36,-79v6,-32,7,-67,7,-100v0,-50,-1,-144,-72,-144v-61,0,-59,52,-59,97r0,116v0,83,40,66,40,102v0,58,-114,59,-152,59v-143,0,-176,-30,-176,-61v0,-40,42,-21,56,-87v21,-103,12,-258,8,-370v-2,-71,-62,-46,-62,-93v0,-80,260,-101,261,-101v30,0,32,9,32,38r-6,190v-1,19,-2,51,24,51v30,0,43,-89,155,-89v184,0,171,173,172,201","w":713},"i":{"d":"305,-464r0,279v0,118,59,75,59,128v0,68,-127,68,-172,68v-172,0,-179,-39,-179,-63v0,-36,41,-38,53,-69v13,-35,14,-180,4,-217v-10,-35,-60,-24,-60,-69v0,-71,254,-101,264,-101v30,0,31,23,31,44xm300,-638v0,78,-136,98,-193,98v-42,0,-87,-19,-87,-68v0,-66,132,-93,183,-93v40,0,97,13,97,63","w":375},"j":{"d":"318,-455r0,430v0,50,1,124,-32,164v-36,45,-117,64,-172,64v-42,0,-118,-17,-118,-70v0,-29,33,-36,61,-29v38,-11,21,-41,20,-81r0,-313v0,-96,-65,-49,-65,-103v0,-95,271,-115,272,-115v36,0,34,24,34,53xm306,-638v0,78,-136,98,-193,98v-42,0,-87,-19,-87,-68v0,-66,132,-93,183,-93v40,0,97,13,97,63","w":388},"k":{"d":"461,-33r-93,-119v-4,-6,-28,-40,-38,-40v-11,0,-10,22,-10,28v-3,89,41,59,41,106v0,28,-7,69,-163,69v-82,0,-175,3,-175,-63v0,-48,53,-13,56,-97v3,-70,8,-165,8,-209r0,-143v0,-81,-77,-27,-77,-84v0,-67,226,-116,279,-116v27,0,29,16,28,38r-5,212v-2,64,-2,89,22,89v16,0,80,-34,80,-49v0,-14,-20,-22,-20,-42v0,-52,102,-55,137,-55v41,0,150,1,150,63v0,45,-37,24,-97,61v-10,5,-49,25,-49,37v0,25,117,169,136,192v45,56,100,55,100,97v0,31,-23,58,-100,58r-141,0v-40,0,-45,-2,-69,-33","w":771},"l":{"d":"326,-649v0,62,-28,410,-9,537v6,37,56,19,56,61v0,67,-122,62,-165,62v-45,0,-185,5,-185,-66v0,-35,47,-21,55,-59v22,-108,22,-258,6,-374v-11,-75,-74,-48,-74,-105v0,-87,260,-108,274,-108v34,0,42,22,42,52","w":384},"m":{"d":"636,-419v32,-19,100,-89,176,-89v95,0,154,52,154,150r0,211v0,58,37,63,37,92v0,63,-114,66,-153,66v-33,0,-149,-7,-149,-59v0,-37,35,-36,35,-94r0,-90v0,-42,5,-126,-52,-126v-56,0,-51,68,-51,105r0,62v0,123,36,102,36,139v0,62,-120,63,-156,63v-151,0,-159,-28,-158,-56v1,-53,51,-11,48,-130r0,-57v0,-36,5,-126,-52,-126v-56,0,-51,68,-51,105r0,81v0,92,27,86,27,122v0,26,-23,61,-160,61v-39,0,-157,1,-157,-52v0,-45,60,-21,60,-146v0,-56,2,-178,-23,-183v-13,-11,-27,-10,-27,-36v0,-74,248,-102,250,-102v25,0,27,22,27,43v0,12,-4,46,17,46v10,0,26,-22,54,-45v28,-22,68,-44,127,-44v119,0,120,89,141,89","w":1014},"n":{"d":"298,-244r0,77v0,97,34,80,34,118v0,62,-133,60,-174,60v-40,0,-142,0,-142,-60v0,-48,46,-5,49,-103r4,-150v2,-74,-59,-50,-59,-103v0,-53,230,-103,250,-103v29,1,35,27,35,57v0,12,5,26,20,26v16,0,25,-21,45,-42v20,-20,50,-41,107,-41v207,0,172,203,182,355v5,79,46,61,46,104v0,18,4,60,-184,60v-36,0,-132,2,-132,-54v0,-36,33,-19,38,-84v5,-71,33,-231,-61,-231v-64,0,-58,69,-58,114","w":705},"o":{"d":"292,14v-148,0,-274,-87,-274,-245v0,-179,157,-280,322,-280v175,0,275,137,275,261v0,164,-176,264,-323,264xm385,-174v0,-45,-20,-219,-88,-219v-33,0,-51,31,-49,60v4,63,22,217,91,221v38,2,46,-30,46,-62","w":633},"p":{"d":"435,-236v0,-48,-10,-127,-73,-127v-36,0,-48,15,-48,197v0,33,16,45,51,45v62,0,70,-67,70,-115xm74,18v14,-3,15,-138,14,-216v0,-105,-6,-128,-11,-133v-13,-13,-67,0,-67,-57v0,-68,206,-120,280,-120v24,0,28,8,28,30v0,7,1,21,11,21v14,0,70,-54,152,-54v131,0,201,131,201,248v0,134,-95,277,-241,277v-47,0,-94,-25,-103,-25v-14,0,-16,21,-16,32v0,76,62,52,62,101v0,56,-91,63,-130,63v-134,0,-239,-49,-239,-100v0,-45,41,-28,59,-67","w":699},"q":{"d":"391,-241v0,-43,10,-158,-58,-158v-18,0,-65,18,-65,123v0,106,40,161,80,161v51,0,43,-94,43,-126xm17,-250v0,-173,139,-261,300,-261v72,0,140,24,166,24v41,0,69,-24,108,-24v25,0,45,8,45,36v0,12,-26,310,-17,483v6,114,52,66,52,122v0,63,-92,67,-137,67v-52,0,-222,-12,-222,-89v0,-50,70,-20,70,-101v0,-10,0,-27,-14,-27v-20,0,-54,34,-123,34v-148,0,-228,-128,-228,-264","w":681},"r":{"d":"67,-133v14,-48,11,-113,11,-170v0,-98,-62,-43,-62,-104v0,-79,234,-101,243,-101v38,0,39,10,43,44v1,12,0,35,17,35v24,0,39,-79,125,-79v67,0,111,50,111,116v0,67,-57,120,-123,120v-65,0,-83,-57,-109,-57v-28,0,-23,67,-23,85v0,30,3,72,8,110v6,44,82,17,82,77v0,63,-88,68,-198,68v-46,0,-182,2,-182,-67v0,-42,47,-42,57,-77","w":562,"k":{"v":-15,"w":-15,"y":-12,"f":-35,"\u00df":-35,",":74,".":78,"g":-8,"h":20,"m":-11,"n":-14,"r":-5,"t":-21,"u":-21,"\u00fc":-21,"z":-27,"-":-26}},"s":{"d":"117,5v-64,-1,-94,-91,-94,-142v0,-26,9,-47,38,-47v44,0,84,99,140,99v20,0,39,-10,39,-32v0,-59,-196,-66,-196,-231v0,-100,82,-163,185,-163v31,0,78,12,101,13v19,1,35,-13,54,-13v46,0,92,92,92,133v0,27,-23,47,-49,47v-57,0,-89,-79,-133,-79v-18,0,-36,15,-36,34v0,64,220,76,220,231v0,94,-91,159,-195,159v-51,1,-119,-20,-166,-9","w":501},"t":{"d":"324,-593v0,51,-23,82,39,82r70,0v43,0,43,3,43,48v0,91,-53,61,-115,61v-35,0,-37,1,-37,37r0,149v0,67,28,83,55,83v31,0,49,-23,67,-23v20,0,34,28,34,46v0,66,-114,124,-215,124v-51,0,-179,-22,-179,-181r0,-206v0,-40,-3,-29,-44,-29v-51,0,-50,3,-49,-44v0,-14,-3,-25,9,-33r228,-145v23,-14,22,-11,52,-11v40,0,42,-4,42,42","w":487},"u":{"d":"404,-49v-36,12,-83,60,-151,60v-190,0,-174,-150,-174,-300v0,-153,-69,-86,-69,-152v0,-64,252,-67,260,-67v28,0,31,13,31,38r0,254v0,40,3,102,57,102v72,0,62,-94,62,-142v0,-33,1,-76,-4,-108v-8,-50,-57,-33,-57,-75v0,-59,201,-69,239,-69v72,0,49,89,49,151r0,201v0,60,55,32,55,80v0,68,-177,87,-232,87v-77,0,-26,-60,-66,-60","w":712},"v":{"d":"245,-59r-167,-311v-29,-55,-85,-24,-85,-78v0,-25,13,-60,201,-60v35,0,169,-2,169,51v0,33,-38,40,-38,66v0,23,37,98,62,98v34,0,69,-85,69,-105v0,-25,-34,-35,-34,-64v0,-50,110,-46,140,-46v29,0,104,0,104,44v0,48,-65,26,-94,82r-164,319v-33,63,-60,77,-83,77v-39,0,-64,-43,-80,-73","w":659,"k":{",":91,".":95}},"w":{"d":"603,-99r-51,-82v-7,-11,-18,-33,-33,-33v-21,0,-35,29,-44,45r-73,127v-14,23,-31,53,-62,53v-37,0,-59,-40,-76,-68r-190,-309v-32,-53,-81,-22,-81,-73v0,-64,153,-69,199,-69v39,0,160,1,160,60v0,23,-19,32,-19,45v0,17,46,106,71,106v18,0,46,-52,46,-66v0,-48,-62,-48,-62,-85v0,-20,5,-60,201,-60v38,0,145,-2,145,53v0,36,-32,39,-32,62v0,20,38,98,60,98v30,0,68,-91,68,-98v0,-25,-28,-31,-28,-64v0,-50,89,-51,122,-51v34,0,122,0,122,50v0,56,-63,15,-106,100r-128,251v-17,32,-61,118,-105,118v-39,0,-86,-81,-104,-110","w":1039,"k":{",":91,".":95}},"x":{"d":"463,-263v25,47,57,88,87,130v46,64,82,41,82,82v0,26,-1,62,-201,62v-43,0,-168,9,-168,-57v0,-36,41,-25,41,-56v0,-19,-35,-76,-54,-76v-18,0,-60,72,-60,92v0,21,23,22,23,53v0,43,-77,44,-107,44v-35,0,-106,0,-106,-49v0,-52,49,-8,94,-83r93,-154v-22,-38,-53,-67,-79,-101v-35,-46,-96,-22,-96,-71v0,-64,172,-61,215,-61v34,0,158,-5,158,50v0,21,-20,34,-20,49v0,12,28,53,40,53v14,0,45,-45,45,-58v0,-15,-21,-30,-21,-47v0,-47,75,-47,106,-47v78,0,94,22,94,48v0,36,-57,35,-85,76r-57,83v-4,5,-24,31,-24,38","w":632},"y":{"d":"556,-365v-49,85,-75,186,-111,281v-50,132,-113,263,-276,263v-72,0,-157,-37,-157,-120v0,-50,38,-92,89,-92v93,0,67,106,108,106v69,0,26,-99,7,-140r-140,-293v-19,-40,-76,-28,-76,-74v0,-30,18,-74,229,-74v38,0,128,4,128,61v0,27,-23,35,-23,59v0,38,44,108,61,108v30,0,51,-69,51,-93v0,-45,-32,-42,-32,-76v0,-53,94,-59,130,-59v33,0,107,5,107,51v0,59,-61,33,-95,92","w":651,"k":{",":98,".":102}},"z":{"d":"405,-497v34,-1,102,-11,102,32v0,19,-15,44,-24,60r-124,220v-6,12,-22,39,-22,52v0,21,19,25,36,25v82,0,66,-86,110,-86v36,0,50,34,50,66v0,78,-68,144,-100,144v-20,0,-20,-16,-91,-16r-244,0v-25,0,-81,0,-81,-38v0,-22,21,-47,32,-65r121,-195v8,-13,39,-60,39,-76v0,-21,-29,-21,-44,-21v-72,0,-60,84,-113,84v-31,0,-45,-30,-45,-57v0,-69,57,-148,88,-148v27,0,33,19,199,19r111,0","w":540},"{":{"d":"341,-222r0,201v0,31,8,48,43,48v35,0,41,27,41,37v0,11,-6,37,-41,37r-93,0v-90,0,-142,-40,-142,-141r0,-229v0,-31,-8,-48,-43,-48v-35,0,-41,-27,-41,-39v0,-12,6,-38,41,-38v35,0,43,-17,43,-49r0,-218v0,-101,52,-141,142,-141r93,0v35,0,41,26,41,37v0,10,-6,37,-41,37v-35,0,-43,17,-43,48r0,191v0,74,-15,121,-95,132r0,3v80,10,95,58,95,132","w":524},"|":{"d":"190,250r0,-1000r116,0r0,1000r-116,0","w":496},"}":{"d":"183,-21r0,-201v0,-74,15,-122,95,-132r0,-3v-80,-11,-95,-58,-95,-132r0,-191v0,-31,-8,-48,-43,-48v-35,0,-41,-27,-41,-37v0,-11,6,-37,41,-37r93,0v90,0,142,40,142,141r0,218v0,32,8,49,43,49v35,0,41,26,41,38v0,12,-6,39,-41,39v-35,0,-43,17,-43,48r0,229v0,101,-52,141,-142,141r-93,0v-35,0,-41,-26,-41,-37v0,-10,6,-37,41,-37v35,0,43,-17,43,-48","w":524},"~":{"d":"469,-349v47,0,88,7,88,65v0,64,-52,119,-113,119v-79,0,-182,-67,-221,-67v-12,0,-12,6,-12,17v0,37,-25,50,-50,50v-47,0,-88,-7,-88,-65v0,-64,52,-119,113,-119v79,0,182,67,221,67v12,0,12,-6,12,-17v0,-37,25,-50,50,-50"},"'":{"d":"157,-715v148,0,118,214,63,312v-9,15,-41,74,-63,74v-22,0,-54,-59,-62,-74v-27,-49,-46,-118,-46,-174v0,-67,32,-138,108,-138","w":315},"\u201c":{"d":"270,-682v0,21,-69,57,-69,120v0,37,77,43,77,134v0,67,-48,117,-115,117v-72,0,-119,-64,-119,-132v0,-117,110,-272,178,-272v17,0,48,12,48,33xm542,-682v0,21,-69,57,-69,120v0,37,77,43,77,134v0,67,-48,117,-115,117v-72,0,-119,-64,-119,-132v0,-117,110,-272,178,-272v17,0,48,12,48,33","w":587},"\u2013":{"d":"72,-362v65,0,348,11,420,4v68,9,-2,123,-10,154v-13,25,-25,36,-54,36v-65,0,-348,-11,-420,-4v-68,-9,2,-123,10,-154v13,-25,25,-36,54,-36","w":500},"\u201d":{"d":"317,-344v0,-21,69,-57,69,-120v0,-37,-77,-43,-77,-134v0,-67,48,-117,115,-117v72,0,119,64,119,132v0,117,-110,272,-178,272v-17,0,-48,-12,-48,-33xm45,-344v0,-21,69,-57,69,-120v0,-37,-77,-43,-77,-134v0,-67,48,-117,115,-117v72,0,119,64,119,132v0,117,-110,272,-178,272v-17,0,-48,-12,-48,-33","w":587},"\u2026":{"d":"288,-107v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121xm621,-107v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121xm954,-107v0,67,-54,121,-121,121v-67,0,-121,-54,-121,-121v0,-67,54,-121,121,-121v67,0,121,54,121,121","w":1000},"`":{"d":"284,-561v-136,0,-214,-92,-214,-117v0,-46,91,-56,122,-56v16,0,84,5,84,30v0,11,-8,14,-8,23v0,27,70,41,70,83v0,32,-28,37,-54,37","w":408},"\u2014":{"d":"203,-354r687,0v87,0,93,-4,102,-4v69,0,-2,123,-10,154v-13,25,-25,36,-54,36v-16,0,-52,-8,-131,-8r-687,0v-87,0,-93,4,-102,4v-69,0,2,-123,10,-154v13,-25,25,-36,54,-36v16,0,52,8,131,8","w":1000},"\u00df":{"d":"73,-164r0,-227v0,-217,151,-297,309,-297v142,0,167,94,167,128v0,51,-31,65,-31,84v0,54,146,178,146,327v0,100,-73,160,-169,160v-74,0,-125,-54,-125,-89v0,-25,60,-15,60,-76v0,-77,-105,-167,-105,-240v0,-99,98,-113,98,-155v0,-26,-21,-36,-44,-36v-37,0,-102,35,-97,215v1,48,1,80,7,178v7,124,55,85,55,131v0,68,-142,72,-189,72v-42,0,-145,-3,-145,-63v0,-44,63,-36,63,-112","w":678},"\u2122":{"d":"96,-708v77,0,211,12,281,-2v36,0,70,67,70,108v0,28,-15,47,-45,47v-50,0,-49,-67,-79,-67v-22,0,-21,31,-21,47r0,151v0,94,54,46,54,91v0,41,-78,42,-119,42v-29,0,-137,1,-137,-44v0,-37,49,-11,52,-61r9,-167v3,-57,-9,-60,-18,-60v-26,0,-39,69,-86,69v-22,0,-35,-21,-35,-42v0,-46,39,-112,74,-112xm748,-560r35,-69v32,-61,33,-78,109,-78v25,0,83,1,83,37v0,36,-30,10,-36,69v-6,64,0,128,0,193v0,75,37,48,37,80v0,39,-79,37,-104,37v-24,0,-103,2,-103,-35v0,-22,26,-16,33,-51v2,-11,2,-42,2,-63v0,-8,3,-37,-11,-37v-18,0,-37,51,-42,64r-30,66v-5,10,-15,40,-30,40v-25,7,-61,-119,-82,-152v-3,-8,-10,-25,-20,-25v-15,0,-12,26,-12,83v0,86,37,41,37,76v0,33,-62,34,-84,34v-21,0,-73,-2,-73,-32v0,-28,31,-9,40,-50v3,-12,9,-107,9,-194v0,-111,-47,-56,-47,-100v0,-16,13,-40,99,-40v64,0,64,6,83,41r55,101v5,9,13,33,27,33v14,0,20,-18,25,-28","w":1000},"\u00d7":{"d":"351,-374r78,-78v18,-18,30,-32,42,-32v27,0,72,49,72,72v0,13,-14,24,-32,42r-78,78v-38,38,-39,34,0,72r78,78v18,18,32,29,32,42v0,23,-45,72,-72,72v-12,0,-24,-14,-42,-32r-78,-78v-38,-38,-33,-39,-72,0r-78,78v-18,18,-30,32,-42,32v-27,0,-72,-49,-72,-72v0,-13,14,-24,32,-42r78,-78v39,-40,39,-33,0,-72r-78,-78v-18,-18,-32,-29,-32,-42v0,-23,45,-72,72,-72v12,0,24,14,42,32r78,78v39,39,34,38,72,0"},"\u00c4":{"d":"339,-289r75,0v10,0,40,2,40,-13v0,-15,-29,-67,-37,-81v-9,-16,-26,-53,-48,-53v-24,0,-41,60,-45,71v-4,11,-21,50,-21,62v0,17,25,14,36,14xm83,-117v52,-71,82,-163,121,-244v33,-68,72,-157,72,-236v0,-69,32,-121,121,-121v87,0,142,89,181,155v17,29,168,335,204,417v33,76,87,30,87,87v0,73,-142,70,-192,70v-143,0,-229,-1,-229,-63v0,-48,61,-30,61,-65v0,-45,-25,-49,-186,-49v-52,0,-83,2,-83,51v0,39,64,13,64,65v0,60,-108,61,-148,61v-143,0,-156,-27,-156,-59v0,-47,56,-32,83,-69xm413,-840v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64xm718,-840v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64","w":869},"\u00d6":{"d":"399,14v-211,0,-375,-154,-375,-367v0,-212,169,-362,387,-362v276,0,382,243,382,372v0,215,-190,357,-394,357xm536,-242v0,-91,-54,-324,-171,-324v-56,0,-84,58,-84,107v0,85,60,324,168,324v61,0,87,-53,87,-107xm387,-840v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64xm692,-840v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64","w":818},"\u00dc":{"d":"629,-279r0,-249v0,-107,-86,-66,-86,-124v0,-62,116,-60,157,-60v38,0,148,0,148,58v0,56,-75,22,-75,113r0,270v0,45,1,285,-345,285v-394,0,-350,-304,-350,-316r0,-231v4,-63,-64,-63,-64,-109v0,-14,-11,-70,195,-70v163,0,196,30,196,69v0,72,-78,5,-78,127r0,184v0,119,45,195,151,195v158,0,151,-131,151,-142xm409,-840v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64xm714,-840v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64","w":862},"\u00e4":{"d":"279,-215v-34,0,-57,32,-57,64v0,26,14,54,43,54v38,0,41,-41,41,-71v0,-22,1,-47,-27,-47xm325,-37v-39,12,-75,51,-145,51v-83,0,-166,-44,-166,-143v0,-71,68,-159,244,-159v31,0,45,2,45,-34v0,-33,-1,-102,-47,-102v-60,0,-66,108,-155,108v-32,0,-56,-23,-56,-55v0,-85,169,-140,264,-140v57,0,213,22,213,172r0,100v0,176,60,80,60,134v0,57,-78,119,-151,119v-79,0,-81,-51,-106,-51xm276,-656v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64xm581,-656v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64","w":596},"\u00f6":{"d":"292,14v-148,0,-274,-87,-274,-245v0,-179,157,-280,322,-280v175,0,275,137,275,261v0,164,-176,264,-323,264xm385,-174v0,-45,-20,-219,-88,-219v-33,0,-51,31,-49,60v4,63,22,217,91,221v38,2,46,-30,46,-62xm295,-656v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64xm600,-656v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64","w":633},"\u00fc":{"d":"404,-49v-36,12,-83,60,-151,60v-190,0,-174,-150,-174,-300v0,-153,-69,-86,-69,-152v0,-64,252,-67,260,-67v28,0,31,13,31,38r0,254v0,40,3,102,57,102v72,0,62,-94,62,-142v0,-33,1,-76,-4,-108v-8,-50,-57,-33,-57,-75v0,-59,201,-69,239,-69v72,0,49,89,49,151r0,201v0,60,55,32,55,80v0,68,-177,87,-232,87v-77,0,-26,-60,-66,-60xm334,-656v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64xm639,-656v0,67,-116,85,-166,85v-40,0,-95,-17,-95,-66v0,-71,103,-83,154,-83v40,0,107,11,107,64","w":712},"\u00a0":{"w":315}}});Cufon.registerFont({"w":590,"face":{"font-family":"Cooper","font-weight":900,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 8 9 3 5 3 11 9 4 4","ascent":"701","descent":"-299","x-height":"13","cap-height":"8","bbox":"-41.2021 -910 1210 250","underline-thickness":"50","underline-position":"-50","slope":"-7","stemh":"121","stemv":"225","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":295},"!":{"d":"179,-207v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111xm239,-715v70,0,113,37,112,108v-2,103,-56,208,-103,295v-10,19,-29,44,-54,44v-27,0,-38,-25,-46,-47v-31,-80,-48,-184,-48,-270v0,-88,52,-130,139,-130","w":335},"\"":{"d":"219,-715v77,0,97,71,97,118v0,100,-89,268,-130,268v-39,0,-88,-145,-88,-223v0,-91,45,-163,121,-163xm492,-715v77,0,97,71,97,118v0,100,-89,268,-130,268v-39,0,-88,-145,-88,-223v0,-91,45,-163,121,-163","w":566},"#":{"d":"406,-164r-19,145v-2,25,-34,18,-60,19v-10,0,-18,-9,-16,-19r20,-145v2,-26,-28,-18,-51,-19v-10,0,-19,9,-20,19r-20,145v-2,25,-34,18,-60,19v-10,0,-18,-9,-16,-19r21,-145v4,-42,-79,4,-79,-38v0,-24,-6,-57,19,-57v30,0,73,10,77,-19v3,-20,14,-54,-10,-56v-26,-2,-64,8,-64,-19v1,-24,-6,-57,19,-57v30,0,72,10,77,-19r18,-134v2,-25,34,-18,60,-19v10,0,18,9,16,19r-20,135v-4,24,28,17,50,18v10,0,19,-9,21,-19r19,-134v2,-25,34,-18,60,-19v10,0,18,9,16,19r-19,135v-6,40,79,-5,79,37v0,24,6,57,-19,57v-30,0,-74,-10,-76,19v-2,20,-16,54,10,56v26,2,64,-8,64,19v-1,24,6,57,-19,57v-30,0,-74,-10,-78,19xm277,-277v-4,24,28,18,50,18v24,0,23,-33,26,-56v3,-26,-28,-19,-51,-19v-25,0,-21,35,-25,57"},"$":{"d":"424,-672v-1,22,-13,60,15,57v42,6,152,39,152,93v0,34,-31,95,-70,95v-46,0,-76,-86,-148,-86v-27,0,-51,14,-51,44v0,92,247,81,247,269v0,115,-98,199,-214,213v-5,2,-6,8,-8,23v6,56,-48,43,-95,43v-44,0,-36,-21,-32,-58v1,-11,-19,-11,-26,-12v-72,-11,-163,-46,-163,-131v0,-52,67,-123,106,-67v36,51,61,104,133,104v30,0,64,-21,64,-53v0,-32,-26,-46,-51,-58v-84,-42,-185,-111,-185,-216v0,-104,75,-167,167,-197v15,-5,28,-5,29,-30v3,-57,7,-59,71,-54v33,3,59,-5,59,21"},"%":{"d":"605,-615v-111,185,-239,383,-336,571v-13,25,-21,49,-53,49v-15,0,-59,-5,-59,-26v11,-40,37,-67,57,-99v116,-185,216,-366,322,-551v17,-30,26,-44,61,-44v90,0,25,72,8,100xm566,-67v26,0,32,-33,36,-53v7,-31,18,-93,18,-125v0,-16,-3,-37,-23,-37v-20,0,-28,22,-33,38v-11,38,-20,108,-20,146v0,15,4,31,22,31xm206,-428v26,0,32,-33,36,-53v7,-31,18,-93,18,-125v0,-16,-3,-37,-23,-37v-20,0,-28,22,-33,38v-11,38,-20,108,-20,146v0,15,4,31,22,31xm544,5v-83,0,-157,-42,-157,-134v0,-132,103,-225,232,-225v83,0,158,42,158,134v0,132,-104,225,-233,225xm184,-356v-83,0,-157,-42,-157,-134v0,-132,103,-225,232,-225v83,0,158,42,158,134v0,132,-104,225,-233,225","w":770},"&":{"d":"349,-421v-31,17,-45,73,-45,117v0,98,63,192,168,192v48,0,102,-31,102,-85v0,-24,-17,-46,-43,-46v-30,0,-42,26,-63,26v-28,0,-40,-30,-40,-54v0,-55,61,-87,105,-106r174,-74v37,-15,91,-41,91,-87v0,-15,-11,-37,-28,-37v-16,0,-28,15,-46,15v-16,0,-26,-17,-26,-31v0,-60,82,-95,132,-95v89,0,138,70,138,153v0,110,-84,191,-174,209v-12,2,-44,14,-44,30v0,14,34,40,34,81v0,156,-205,226,-369,227v-184,0,-367,-104,-365,-307v1,-123,61,-181,167,-217v19,-7,22,-10,22,-29v0,-113,107,-170,202,-170v93,0,176,46,176,96v0,26,-23,53,-50,53v-27,0,-48,-28,-85,-28v-31,0,-53,21,-53,52v0,52,56,46,56,75v0,27,-40,59,-76,59v-29,0,-49,-19,-60,-19","w":946},"\u2019":{"d":"121,-363v10,-40,60,-74,60,-117v0,-40,-76,-27,-76,-127v0,-67,40,-108,107,-108v81,0,118,60,119,135v2,109,-111,265,-159,265v-18,0,-51,-30,-51,-48","w":306},"(":{"d":"131,-290v0,-244,138,-507,367,-507v41,0,109,10,109,64v0,46,-48,26,-87,26v-83,0,-130,149,-144,213v-19,85,-40,211,-40,297v0,83,12,203,119,203v28,0,55,-8,83,-8v22,0,29,19,29,39v0,62,-80,59,-124,59v-236,0,-312,-178,-312,-386","w":566},")":{"d":"498,-411v0,244,-138,507,-367,507v-41,0,-109,-10,-109,-64v0,-46,48,-26,87,-26v83,0,130,-149,144,-213v19,-85,40,-211,40,-297v0,-83,-12,-203,-119,-203v-28,0,-55,8,-83,8v-22,0,-29,-19,-29,-39v0,-62,80,-59,124,-59v236,0,312,178,312,386","w":566},"*":{"d":"562,-605v36,0,34,41,34,72v0,50,-107,15,-107,43v0,12,43,67,43,93v0,21,-65,46,-73,46v-30,0,-41,-101,-62,-101v-13,0,-69,70,-93,70v-17,0,-55,-47,-55,-61v0,-35,78,-65,78,-84v0,-17,-83,-27,-83,-63v0,-13,24,-67,44,-67v26,0,72,44,84,44v14,0,14,-35,15,-42v3,-23,1,-60,33,-60v20,0,63,5,63,32v0,21,-17,66,-17,83v0,4,4,8,9,8v22,0,64,-13,87,-13","w":725},"+":{"d":"373,-365v5,55,-4,46,51,51v67,6,133,-32,133,58v0,91,-65,58,-133,58v-57,0,-47,-4,-51,51v-5,67,32,133,-58,133v-91,0,-58,-65,-58,-133v0,-57,6,-47,-51,-51v-67,-5,-133,32,-133,-58v0,-91,66,-52,133,-58v55,-5,51,6,51,-51v0,-67,-32,-133,58,-133v91,0,52,66,58,133"},",":{"d":"66,139v10,-40,60,-74,60,-117v0,-40,-76,-27,-76,-127v0,-67,40,-108,107,-108v81,0,118,60,119,135v2,109,-111,265,-159,265v-18,0,-51,-30,-51,-48","w":295},"-":{"d":"109,-369v57,6,145,13,193,3v14,0,17,13,17,24v0,41,-31,193,-101,161v-86,-6,-86,-8,-176,-4v-14,0,-22,-9,-21,-23v2,-43,38,-166,88,-161","w":295},".":{"d":"158,-211v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111","w":295},"\/":{"d":"33,21v109,-217,207,-446,300,-679v10,-26,16,-41,49,-43v27,-1,86,-2,88,30v0,12,-5,27,-10,37r-83,172r-202,463v-14,36,-22,93,-74,93v-25,0,-79,-5,-81,-33v-1,-15,7,-27,13,-40","w":418},"0":{"d":"282,7v-145,0,-230,-104,-230,-255v0,-181,118,-355,313,-355v145,0,230,104,230,255v0,181,-118,355,-313,355xm292,-95v17,0,37,-12,45,-44v24,-88,45,-261,40,-303v-3,-24,0,-59,-33,-59v-17,0,-37,12,-45,44v-24,88,-45,261,-40,303v3,24,0,59,33,59"},"1":{"d":"196,-139v26,-60,31,-142,31,-216v0,-25,-4,-57,-35,-57v-22,0,-45,22,-64,22v-21,0,-28,-25,-28,-42v0,-48,30,-64,69,-83v63,-31,233,-82,301,-82v35,0,58,8,58,47v0,51,-68,48,-64,101v-16,91,-24,181,-30,276v-3,53,9,58,59,60v32,2,56,3,56,41v0,82,-221,80,-275,80v-45,0,-190,7,-190,-66v0,-39,23,-42,55,-46v31,-3,44,-5,57,-35"},"2":{"d":"478,-193v16,-19,26,-45,54,-45v36,0,42,32,42,61v0,54,-31,220,-107,220v-27,0,-31,-25,-45,-39v-80,-10,-178,-4,-266,-4v-36,0,-117,9,-117,-47v0,-24,15,-42,32,-57v52,-49,252,-219,252,-304v0,-27,-18,-44,-44,-44v-63,0,-113,77,-155,77v-29,0,-54,-35,-52,-61v8,-88,213,-169,316,-167v78,2,178,32,178,126v0,122,-179,220,-196,280v-6,20,30,20,46,20v29,1,45,4,62,-16"},"3":{"d":"575,-200v0,186,-155,292,-329,292v-63,0,-199,-19,-199,-103v0,-19,15,-45,36,-45v25,0,61,33,122,33v72,0,132,-37,132,-117v0,-127,-137,-3,-137,-121v0,-25,0,-38,26,-46v44,-13,97,-46,97,-98v0,-30,-19,-47,-48,-47v-69,0,-101,70,-138,70v-28,0,-49,-32,-49,-58v0,-51,69,-91,109,-112v60,-31,119,-51,187,-51v81,0,170,36,170,130v0,77,-61,115,-61,133v0,28,82,41,82,140"},"4":{"d":"574,-177r-9,109v-3,30,0,40,-34,40v-52,-13,-24,65,-41,98v-5,9,-13,11,-42,11r-112,0v-31,0,-42,-3,-45,-17v-4,-18,6,-69,6,-82v0,-14,-22,-10,-29,-10r-189,0v-10,0,-65,7,-57,-78v8,-79,32,-121,85,-183r208,-245v51,-55,106,-113,187,-113v37,0,80,3,75,47r-47,375v-18,55,47,10,44,48xm328,-258r10,-118v1,-7,3,-27,-9,-27v-21,0,-145,160,-145,190v0,25,91,19,97,19v47,0,44,-27,47,-64"},"5":{"d":"101,-207v0,-78,43,-177,65,-249v13,-43,22,-120,85,-113v99,-10,227,-11,309,-34v11,0,13,14,13,23v0,34,-10,101,-32,126v-49,55,-165,34,-254,44v-30,3,-39,5,-43,43v-3,31,38,29,69,27v105,-8,223,48,229,178v7,142,-137,250,-279,250v-56,0,-187,-18,-187,-95v0,-17,6,-40,27,-40v21,0,58,29,108,29v48,0,95,-23,95,-78v0,-65,-55,-77,-110,-80v-49,-3,-95,13,-95,-31"},"6":{"d":"344,-676v22,0,122,30,76,63v-67,75,-97,128,-106,156v-9,27,1,33,4,29v11,0,42,-33,112,-33v101,0,154,83,154,177v0,160,-122,291,-284,291v-144,0,-226,-115,-226,-253v0,-90,34,-192,82,-268v30,-48,128,-162,188,-162xm349,-346v-51,0,-71,126,-71,163v0,26,1,91,39,91v51,0,71,-125,71,-162v0,-26,-1,-92,-39,-92"},"7":{"d":"605,-496r-267,586v-11,24,-16,37,-46,37v-47,0,-208,-54,-143,-124r191,-331v8,-15,28,-46,28,-64v0,-35,-84,-27,-105,-27v-50,0,-66,-3,-84,37v-12,27,-18,43,-52,43v-37,0,-51,-31,-54,-65v-4,-48,50,-209,112,-213v32,-2,19,21,89,21r225,0v50,-1,128,-22,128,36v0,18,-14,48,-22,64"},"8":{"d":"135,-363v-11,-31,-30,-57,-30,-93v0,-129,137,-201,252,-201v103,0,216,57,216,173v0,76,-58,110,-58,123v0,12,64,50,64,142v0,150,-142,230,-276,230v-124,0,-251,-77,-251,-213v0,-111,83,-144,83,-161xm276,-507v0,47,110,86,113,86v14,0,14,-32,14,-40v0,-43,-23,-94,-72,-94v-27,0,-55,19,-55,48xm393,-142v0,-36,-39,-53,-67,-66v-7,-4,-79,-43,-84,-43v-16,0,-20,42,-20,51v0,58,50,109,108,109v31,0,63,-17,63,-51"},"9":{"d":"387,-603v147,0,218,108,218,246v0,97,-33,199,-83,282v-9,14,-115,193,-180,193v-29,0,-122,-36,-78,-74v26,-22,86,-109,86,-144v0,-4,-1,-10,-7,-10v-15,0,-54,29,-118,29v-114,0,-173,-97,-173,-202v0,-185,154,-320,335,-320xm307,-207v65,0,81,-160,81,-204v0,-11,-2,-77,-36,-77v-65,0,-81,160,-81,204v0,11,2,77,36,77"},":":{"d":"210,-517v61,0,110,44,104,111v-6,70,-63,117,-124,117v-61,0,-110,-47,-104,-117v6,-67,63,-111,124,-111xm168,-207v61,0,110,44,104,111v-6,70,-63,117,-124,117v-61,0,-110,-47,-104,-117v6,-67,63,-111,124,-111","w":295},";":{"d":"66,139v10,-40,60,-74,60,-117v0,-40,-76,-27,-76,-127v0,-67,40,-108,107,-108v81,0,118,60,119,135v2,109,-111,265,-159,265v-18,0,-51,-30,-51,-48xm203,-517v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111","w":295},"<":{"d":"257,-256r262,114v44,17,38,34,38,79v0,16,-5,49,-20,49v-14,0,-25,-6,-38,-11r-409,-178v-17,-7,-17,-35,-17,-53v0,-18,0,-46,17,-53r409,-178v13,-5,24,-11,38,-11v23,6,20,51,20,80v0,24,-6,35,-38,48"},"=":{"d":"492,-296r-354,0v-45,0,-65,5,-65,-58v0,-63,20,-58,65,-58r354,0v45,0,65,-5,65,58v0,63,-20,58,-65,58xm492,-100r-354,0v-45,0,-65,5,-65,-58v0,-63,20,-58,65,-58r354,0v45,0,65,-5,65,58v0,63,-20,58,-65,58"},">":{"d":"111,-142r262,-114r-262,-114v-44,-17,-38,-34,-38,-79v0,-16,5,-49,20,-49v14,0,25,6,38,11r409,178v17,7,17,35,17,53v0,18,0,46,-17,53r-409,178v-13,5,-24,11,-38,11v-23,-6,-20,-51,-20,-80v0,-24,6,-35,38,-48"},"?":{"d":"268,-580v-78,0,-47,133,-138,133v-36,0,-59,-21,-59,-58v0,-134,185,-212,296,-210v84,2,170,43,170,138v0,91,-73,146,-151,179v-26,11,-68,24,-68,59v0,11,8,21,8,31v0,34,-62,45,-87,45v-33,0,-60,-18,-60,-54v0,-92,113,-156,113,-232v0,-15,-7,-31,-24,-31xm237,-207v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111","w":487},"@":{"d":"492,-496v14,0,49,-30,91,-30v21,0,28,7,28,19v0,32,-44,188,-44,227v0,13,4,22,14,22v11,0,90,-31,102,-164v7,-78,-59,-222,-241,-222v-171,0,-312,120,-327,294v-16,183,115,293,291,293v132,0,213,-106,229,-106v16,0,39,28,38,41v-1,10,-130,136,-286,136v-205,0,-362,-146,-344,-357v18,-208,189,-372,399,-372v153,0,321,104,305,291v-15,174,-146,271,-299,271v-64,0,-27,-61,-50,-61v-18,0,-59,65,-133,65v-58,0,-90,-46,-84,-117v13,-142,139,-260,228,-260v46,0,62,30,83,30xm362,-263v26,0,92,-103,97,-161v1,-10,-1,-24,-12,-24v-24,0,-93,80,-100,157v-1,10,0,28,15,28","w":725},"A":{"d":"425,-166r-134,0v-50,4,-58,18,-58,44v0,32,57,9,57,63v0,35,-15,67,-186,67v-49,0,-125,0,-125,-66v0,-64,48,-19,91,-90v90,-150,217,-328,252,-486v15,-69,54,-81,116,-81v92,0,130,50,159,131v30,84,88,350,105,424v18,80,73,30,73,97v0,78,-161,71,-211,71v-41,0,-156,7,-156,-58v0,-58,64,-33,64,-80v0,-31,-24,-29,-47,-36xm312,-298v6,26,63,17,95,17v29,0,33,-10,33,-26v0,-41,-32,-140,-49,-140v-25,0,-79,132,-79,149","w":775},"B":{"d":"367,-568r-11,112v-2,23,-7,41,21,41v64,0,73,-79,73,-127v0,-40,-11,-62,-53,-62v-31,0,-26,5,-30,36xm341,-272r-10,148v0,20,15,18,32,18v71,0,79,-75,79,-129v0,-53,-15,-77,-70,-77v-35,0,-28,4,-31,40xm448,0r-323,0v-91,0,-111,-27,-111,-62v0,-56,62,-37,72,-70v33,-113,59,-303,59,-422v0,-56,-67,-28,-67,-83v0,-55,58,-68,102,-66v101,4,203,2,304,0v122,-2,201,53,201,162v0,100,-97,144,-97,159v0,28,109,25,109,171v0,74,-47,211,-249,211","w":703},"C":{"d":"44,-258v0,-261,257,-534,540,-434v12,0,29,-10,43,-10v105,7,163,263,13,263v-93,0,-79,-131,-169,-131v-100,0,-144,193,-144,266v0,68,26,150,107,150v51,0,85,-28,119,-62v21,-21,55,-67,91,-67v41,0,59,29,59,67v0,53,-41,152,-103,156v-21,2,-21,2,-41,12v-78,41,-136,62,-226,62v-166,0,-289,-100,-289,-272","w":715},"D":{"d":"398,-498r-26,319v1,33,-1,58,35,58v122,0,146,-185,146,-306v0,-78,-12,-164,-98,-164v-61,0,-54,56,-57,93xm189,0v0,0,-164,26,-165,-55v0,-69,62,-30,80,-87v25,-80,57,-319,57,-396v0,-81,-67,-36,-67,-96v0,-65,61,-68,111,-67v92,2,197,-3,295,-5v110,-2,311,16,311,302v0,110,-39,404,-396,404r-226,0","w":797},"E":{"d":"585,7v-143,0,-336,2,-487,2v-64,0,-84,-26,-84,-59v0,-60,62,-32,84,-96v23,-70,58,-310,58,-385v0,-78,-62,-49,-62,-104v0,-109,148,-60,255,-66v87,-4,200,4,264,-12v34,0,84,55,84,149v0,37,-18,77,-60,77v-81,0,-35,-99,-154,-99v-101,0,-89,18,-99,124v-4,39,-11,47,22,47v59,0,25,-92,87,-92v61,0,67,80,67,125v0,53,-18,183,-88,183v-74,0,-16,-101,-78,-101v-42,0,-31,93,-31,124v0,63,1,61,67,61v156,0,120,-129,201,-129v48,0,60,39,60,80v0,93,-69,171,-106,171","w":697},"F":{"d":"191,-705v167,1,286,-8,416,-8v60,0,95,101,95,149v0,44,-19,83,-68,83v-76,0,-39,-105,-142,-105v-90,0,-92,12,-98,49v-4,26,-16,90,-16,115v0,13,10,12,21,12v67,0,25,-91,99,-91v51,0,62,68,62,107v0,56,-8,204,-89,204v-74,0,-18,-105,-74,-105v-19,0,-38,-3,-38,150v0,63,69,30,69,81v0,76,-150,72,-201,72v-155,0,-207,-14,-207,-71v0,-56,54,-28,73,-76v28,-70,62,-316,62,-394v0,-87,-67,-36,-67,-106v0,-55,59,-66,103,-66","w":654,"k":{"A":96,"\u00c4":96,",":125,".":129}},"G":{"d":"616,-698v68,0,108,92,108,158v0,58,-37,106,-97,106v-91,0,-70,-136,-160,-136v-116,0,-156,195,-156,283v0,61,22,151,99,151v39,0,64,-27,64,-66v0,-29,-4,-31,-31,-38v-23,-6,-39,-21,-39,-46v0,-75,145,-78,212,-78v62,0,172,6,172,79v0,32,-21,41,-47,47v-28,7,-28,21,-37,47v-53,146,-211,205,-356,205v-182,0,-316,-95,-316,-286v0,-229,186,-443,421,-443v59,0,99,26,118,26v13,0,29,-9,45,-9","w":770},"H":{"d":"345,-248r-10,121v0,41,44,22,44,67v0,36,-22,68,-171,68v-122,0,-188,-6,-188,-64v0,-44,55,-42,64,-72v45,-152,57,-321,57,-422v0,-58,-57,-28,-57,-83v0,-11,-15,-76,218,-76v121,0,146,23,146,59v0,58,-59,40,-68,98v-8,52,-13,87,-13,108v0,14,-8,29,85,29v18,0,61,-2,69,-24v7,-19,12,-97,12,-120v0,-55,-44,-33,-44,-82v0,-51,39,-68,204,-68v134,0,155,23,155,57v0,66,-64,23,-74,100v-17,124,-42,274,-46,403v-2,74,54,24,54,90v0,38,-33,67,-170,67v-144,0,-195,-6,-195,-64v0,-52,52,-27,61,-73v14,-71,22,-110,22,-139v0,-31,-43,-32,-65,-32v-85,0,-87,12,-90,52","w":799},"I":{"d":"114,-187r46,-380v0,-49,-70,-17,-70,-77v0,-13,-11,-65,195,-65v165,0,218,13,218,66v0,63,-75,21,-87,81v-21,106,-34,223,-51,334v-3,22,-7,43,-7,66v0,81,71,37,71,99v0,74,-136,71,-188,71v-167,0,-228,-14,-228,-74v0,-66,88,-13,101,-121","w":461},"J":{"d":"596,-545r-36,317v-21,187,-222,242,-339,242v-97,0,-223,-45,-223,-160v0,-75,59,-130,138,-130v50,0,97,36,97,89v0,31,-16,52,-16,63v0,15,14,23,28,23v95,4,101,-379,101,-450v0,-77,-81,5,-81,-75v0,-54,43,-83,238,-83v185,0,174,52,174,70v0,69,-71,7,-81,94","w":616},"K":{"d":"694,-573v-41,35,-139,104,-153,141v0,9,11,30,15,39r141,259v29,45,73,44,73,82v0,34,-8,60,-163,60v-104,0,-106,-20,-152,-109r-68,-131v-6,-11,-23,-48,-38,-48v-26,0,-23,54,-23,69v0,22,-2,52,1,73v7,40,49,35,49,71v0,77,-141,75,-195,75v-168,0,-167,-43,-167,-67v0,-51,49,-21,67,-86v28,-97,58,-303,58,-406v0,-51,-56,-29,-56,-83v0,-62,109,-75,180,-75v179,0,172,44,172,60v0,58,-51,30,-66,78v-7,22,-15,77,-15,99v0,8,-1,30,10,30v18,0,154,-125,154,-151v0,-12,-19,-26,-19,-52v0,-27,13,-64,173,-64v115,0,130,36,130,67v0,67,-58,27,-108,69","w":774},"L":{"d":"580,11v-37,-1,-37,-11,-77,-11r-418,3v-38,0,-71,-15,-71,-59v0,-60,57,-34,82,-95v23,-56,57,-331,57,-408v0,-43,-72,-24,-72,-81v0,-58,73,-69,263,-69v126,0,146,24,146,61v0,90,-91,-12,-105,153r-24,293v-2,18,-6,42,1,59v10,26,62,22,83,22v127,0,105,-122,178,-122v43,0,60,28,60,69v0,53,-35,185,-103,185","w":657,"k":{"T":50,"V":105,"W":105,"Y":61,"\u2019":30}},"M":{"d":"572,-278r-78,124v-15,24,-46,75,-78,75v-34,0,-42,-34,-51,-60r-40,-121v-2,-7,-21,-73,-33,-73v-13,0,-17,31,-19,38v-2,10,-29,133,-29,164v0,44,49,36,49,75v0,33,-13,64,-168,64v-42,0,-125,-1,-125,-60v0,-68,56,-28,78,-88v45,-120,95,-279,97,-391v1,-77,-83,-36,-83,-98v0,-20,11,-80,211,-80v81,0,96,17,126,88v27,63,54,199,81,199v32,0,121,-180,134,-203v42,-76,83,-84,165,-84v46,0,149,1,149,67v0,78,-78,10,-89,126v-12,117,-23,236,-23,354v0,66,56,56,56,95v0,57,-86,75,-221,75v-45,0,-150,-1,-150,-66v0,-49,55,-36,67,-65v16,-40,32,-150,32,-195v0,-7,1,-20,-10,-20v-13,0,-41,49,-48,60","w":922},"N":{"d":"555,-644v0,-22,-5,-65,171,-65v89,0,151,7,151,65v0,62,-83,22,-94,88v-19,107,-41,260,-59,378v-23,158,-59,186,-117,186v-63,0,-97,-60,-128,-106r-146,-220v-8,-12,-36,-57,-53,-57v-22,0,-25,60,-27,74v-5,31,-15,140,-15,154v0,67,70,49,70,96v0,57,-93,59,-133,59v-43,0,-175,-1,-175,-64v0,-50,60,-32,74,-70v60,-162,63,-309,75,-417v8,-76,-80,-22,-80,-92v0,-70,81,-74,196,-74v87,0,100,12,168,114r113,169v6,9,44,69,57,69v34,0,33,-165,33,-175v6,-120,-81,-29,-81,-112","w":813},"O":{"d":"779,-441v0,249,-195,455,-440,455v-170,0,-296,-97,-296,-274v0,-249,195,-455,440,-455v170,0,296,97,296,274xm376,-115v107,0,134,-267,134,-344v0,-39,-3,-127,-64,-127v-107,0,-134,267,-134,344v0,39,3,127,64,127","w":752},"P":{"d":"413,-607v-39,0,-36,124,-46,171v-3,15,-7,46,-7,59v0,16,4,17,19,17v78,0,92,-127,92,-184v0,-40,-18,-63,-58,-63xm339,-701v185,-10,377,-24,377,179v0,132,-89,268,-320,268v-16,0,-31,-1,-47,-1r-5,76v-16,114,65,49,65,118v0,51,-61,69,-218,69v-177,0,-177,-42,-177,-67v0,-61,53,-16,72,-81v26,-89,63,-338,63,-429v0,-49,-71,-11,-71,-72v0,-56,64,-66,107,-65","w":667,"k":{"A":60,"\u00c4":60,",":100,".":110}},"Q":{"d":"784,-441v0,190,-114,345,-238,403v15,33,89,43,102,43v43,0,59,-24,86,-24v24,0,41,31,41,52v0,102,-128,147,-212,147v-114,0,-181,-55,-270,-120v-27,-20,-71,-51,-105,-51v-36,0,-59,23,-89,23v-32,0,-47,-29,-47,-58v0,-33,21,-51,47,-66v-38,-50,-51,-115,-51,-168v0,-249,195,-455,440,-455v170,0,296,97,296,274xm381,-115v107,0,134,-267,134,-344v0,-39,-3,-127,-64,-127v-107,0,-134,267,-134,344v0,39,3,127,64,127","w":772},"R":{"d":"384,-552r-12,111v-2,22,-4,35,24,35v60,0,70,-85,70,-130v0,-38,-10,-66,-53,-66v-29,0,-26,27,-29,50xm354,-275r-9,125v0,27,-1,38,24,51v19,9,33,16,33,39v0,71,-152,68,-199,68v-45,0,-189,5,-189,-70v0,-21,10,-32,30,-38v32,-11,32,-15,47,-50v27,-64,66,-340,53,-421v-6,-38,-66,-11,-66,-63v0,-56,58,-68,102,-68r329,0v114,-3,207,36,216,154v9,129,-103,151,-103,176v9,36,54,37,64,75v15,56,12,125,24,172v9,35,65,22,65,60v0,58,-99,73,-142,73v-211,0,-158,-169,-194,-279v-8,-24,-30,-32,-54,-32v-25,0,-29,3,-31,28","w":775,"k":{"T":32,"V":63,"W":85,"y":30,"Y":65}},"S":{"d":"296,15v-132,0,-275,-62,-275,-213v0,-49,24,-93,78,-93v51,0,66,47,81,86v18,45,48,95,102,95v34,0,67,-19,67,-57v0,-88,-238,-125,-238,-316v0,-185,211,-268,373,-215v13,0,31,-17,59,-17v59,0,108,91,108,143v0,44,-32,85,-78,85v-73,0,-94,-104,-161,-104v-26,0,-47,14,-47,42v0,37,33,57,62,72v103,56,201,105,201,238v0,176,-180,254,-332,254","w":643},"T":{"d":"181,-713v22,1,40,13,65,12v125,-3,289,10,389,-12v61,0,97,109,97,157v0,53,-26,100,-83,100v-76,0,-63,-124,-107,-124v-32,0,-33,42,-41,114v-6,60,-27,215,-27,300v0,86,76,42,76,102v0,30,-36,72,-244,72v-180,0,-183,-47,-183,-68v0,-60,71,-30,89,-78v24,-64,59,-394,59,-409v0,-15,-6,-33,-24,-33v-50,0,-38,124,-127,124v-46,0,-71,-32,-71,-75v0,-63,58,-182,132,-182","w":676,"k":{"\u00f6":45,"\u00e4":46,"y":25,"A":55,"\u00c4":55,",":70,".":70,"c":60,"e":60,"o":45,"-":14,"a":46,"i":-24,"s":44,":":70,";":-42}},"U":{"d":"771,-544v-52,267,-2,558,-368,558v-161,0,-302,-52,-302,-212v0,-116,41,-244,40,-347v-1,-68,-66,-22,-66,-82v0,-8,-23,-82,232,-82v158,0,162,41,162,69v0,70,-75,15,-88,132v-26,232,-25,170,-33,266v-6,73,22,114,93,114v65,0,109,-30,131,-91v32,-86,46,-235,46,-327v0,-77,-79,-28,-79,-100v0,-38,27,-63,158,-63v168,0,161,46,161,61v0,73,-71,24,-87,104","w":795},"V":{"d":"728,-570r-214,436v-60,115,-87,142,-144,142v-80,0,-91,-61,-137,-229r-87,-317v-17,-61,-77,-30,-77,-87v0,-25,-9,-84,223,-84v146,0,156,32,156,70v0,53,-68,30,-60,78v14,85,50,253,71,253v25,0,113,-229,113,-264v0,-36,-45,-34,-45,-77v0,-59,111,-60,152,-60v111,0,133,29,133,56v0,69,-61,36,-84,83","w":743,"k":{"\u00f6":117,"\u00e4":117,"y":85,"A":130,"\u00c4":130,",":156,".":128,"e":117,"o":117,"r":36,"u":47,"\u00fc":47,"-":69,"a":117,"i":-17,":":42,";":36}},"W":{"d":"1114,-562r-238,465v-35,68,-74,105,-117,105v-59,0,-79,-71,-91,-117v-7,-26,-50,-200,-72,-200v-24,0,-118,189,-128,211v-17,39,-55,106,-113,106v-66,0,-78,-84,-90,-133r-111,-429v-11,-43,-73,-18,-73,-76v0,-66,101,-79,236,-79v47,0,123,2,123,65v0,50,-51,32,-51,92v0,31,37,221,60,221v29,0,101,-149,101,-193v0,-74,-67,-61,-67,-111v0,-39,33,-74,208,-74v103,0,149,21,149,59v0,66,-62,33,-62,91v0,59,46,236,73,236v17,0,40,-52,46,-65v17,-38,69,-144,69,-189v0,-36,-42,-26,-42,-72v0,-43,50,-60,160,-60v40,0,126,0,126,58v0,59,-68,35,-96,89","w":1129,"k":{"\u00fc":58,"\u00f6":125,"\u00e4":110,"y":87,"A":135,"\u00c4":135,",":156,".":128,"e":125,"o":125,"r":47,"u":58,"-":75,"a":110,"i":-5,":":50,";":44}},"X":{"d":"277,-340v-29,-75,-77,-146,-113,-216v-29,-56,-90,-28,-90,-80v0,-70,126,-73,251,-73v39,0,120,-2,120,54v0,45,-46,47,-46,68v0,12,24,73,38,73v16,0,61,-65,61,-87v0,-10,-10,-32,-10,-48v0,-31,11,-60,144,-60v38,0,120,1,120,56v0,75,-84,15,-152,109r-75,104v-6,7,-31,39,-31,50v32,83,92,168,134,244v30,56,82,39,82,83v0,19,8,71,-212,71v-130,0,-157,-21,-157,-63v0,-43,49,-31,49,-61v0,-16,-36,-105,-54,-105v-18,0,-79,93,-79,115v0,12,28,25,28,57v0,55,-103,57,-142,57v-39,0,-144,2,-144,-56v0,-60,58,-27,139,-120r110,-127v16,-18,29,-33,29,-45","w":716},"Y":{"d":"239,-403r-101,-164v-33,-43,-82,-25,-82,-70v0,-55,54,-72,245,-72v108,0,135,19,135,58v0,46,-45,42,-45,69v0,18,36,96,53,97v15,1,78,-91,78,-103v0,-20,-34,-27,-34,-63v0,-56,110,-58,147,-58v87,0,132,13,132,56v0,55,-70,36,-97,69r-117,144v-66,81,-67,89,-71,193r-4,117v-2,50,71,18,71,69v0,19,6,69,-196,69v-105,0,-201,-2,-201,-59v0,-63,79,-31,86,-81r28,-202v0,-25,-14,-48,-27,-69","w":704,"k":{"\u00fc":65,"\u00f6":125,"v":50,"A":63,"\u00c4":63,",":93,"e":125,"o":125,"q":95,"u":65,"-":75,"a":94,"\u00e4":94,"i":-24,":":30,";":30,"p":80}},"Z":{"d":"99,5v-32,0,-66,-6,-66,-46v0,-26,26,-65,39,-84r220,-335v20,-30,50,-76,50,-95v0,-19,-30,-25,-44,-25v-153,0,-77,120,-171,120v-43,0,-60,-30,-60,-70v0,-74,59,-179,115,-179v36,0,16,9,63,8r319,0v35,0,96,-4,96,46v0,43,-47,95,-113,207r-131,220v-10,17,-39,60,-39,79v0,19,42,24,55,24v134,0,78,-112,153,-112v43,0,60,35,60,73v0,47,-39,175,-98,175v-115,0,-313,-9,-448,-6","w":640},"[":{"d":"626,-746v0,76,-124,17,-171,51v-13,17,-18,62,-21,80r-90,579v-2,30,1,46,34,46v37,0,63,-4,85,-4v20,0,42,5,42,30v0,71,-163,60,-200,60v-30,0,-98,0,-125,-9v-30,-11,-29,-55,-25,-81r91,-627v6,-41,17,-122,50,-153v27,-26,112,-23,148,-23v48,0,182,-12,182,51","w":566},"\\":{"d":"224,-528r181,385r87,164v6,13,13,25,13,40v0,28,-54,33,-79,33v-53,0,-61,-57,-78,-93r-218,-463r-89,-172v-5,-10,-10,-25,-10,-37v0,-32,59,-31,86,-30v33,2,40,17,51,43","w":445},"]":{"d":"1,45v0,-76,124,-17,171,-51v13,-17,18,-62,21,-80r90,-579v2,-30,-1,-46,-34,-46v-37,0,-63,4,-85,4v-20,0,-42,-5,-42,-30v0,-71,163,-60,200,-60v30,0,98,0,125,9v30,11,29,55,25,81r-91,627v-6,41,-17,122,-50,153v-27,26,-112,23,-148,23v-48,0,-182,12,-182,-51","w":566},"^":{"d":"429,-204r-114,-262r-114,262v-17,44,-34,38,-79,38v-16,0,-49,-5,-49,-20v0,-14,6,-25,11,-38r178,-409v7,-17,35,-17,53,-17v18,0,46,0,53,17r178,409v5,13,11,24,11,38v-6,23,-51,20,-80,20v-24,0,-35,-6,-48,-38"},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"\u2018":{"d":"300,-667v-10,40,-60,74,-60,117v0,40,76,27,76,127v0,67,-40,108,-107,108v-81,0,-118,-60,-119,-135v-2,-109,111,-265,159,-265v18,0,51,30,51,48","w":306},"a":{"d":"289,-144v53,-4,118,-174,116,-224v0,-13,-4,-33,-20,-32v-53,4,-120,153,-119,217v0,15,3,41,23,39xm444,-470v40,-10,77,-42,123,-42v28,0,42,10,41,38v-3,68,-38,213,-29,322v8,22,47,4,47,37v0,65,-146,123,-201,123v-89,0,-46,-85,-78,-85v-26,0,-75,90,-178,90v-92,0,-130,-81,-126,-162v8,-180,120,-348,274,-362v70,-7,98,41,127,41","w":630},"b":{"d":"67,-116v0,-131,50,-276,48,-414v0,-28,0,-38,-30,-40v-30,-2,-42,-4,-42,-39v0,-43,39,-57,74,-69v41,-15,130,-37,173,-37v87,0,43,88,43,149v0,34,-10,70,-10,105v0,8,3,18,12,18v19,0,62,-75,143,-75v100,0,139,91,134,177v-12,198,-136,357,-361,354v-82,-1,-184,-30,-184,-129xm359,-361v-57,0,-79,217,-76,234v2,14,4,34,22,34v62,0,83,-195,82,-212v-1,-18,-2,-56,-28,-56","w":599},"c":{"d":"334,-117v58,0,98,-56,150,-56v26,0,39,33,39,55v0,36,-46,63,-73,79v-146,87,-411,78,-411,-137v0,-185,167,-341,349,-341v81,0,165,40,168,133v2,63,-54,123,-117,123v-33,0,-74,-22,-74,-60v0,-27,17,-50,17,-67v0,-10,-8,-18,-18,-18v-62,-1,-79,162,-79,207v0,32,6,82,49,82","w":550},"d":{"d":"286,-149v59,-1,110,-168,109,-221v0,-14,-3,-35,-26,-35v-59,0,-107,170,-106,225v1,17,5,32,23,31xm303,-517v51,-1,72,30,86,30v19,0,26,-62,26,-75v2,-23,-20,-24,-40,-20v-20,0,-30,-11,-30,-31v0,-44,45,-61,81,-73v39,-13,123,-30,163,-30v50,0,48,48,42,91r-43,309r-13,139v-12,53,58,20,58,64v0,63,-167,120,-210,121v-49,2,-52,-25,-58,-65v-1,-10,-6,-26,-19,-26v-20,0,-79,96,-182,96v-97,0,-123,-71,-125,-157v-2,-144,90,-368,264,-373","w":629},"e":{"d":"424,-517v79,0,146,31,146,119v0,121,-135,215,-248,215v-14,0,-39,0,-39,21v0,29,36,45,61,45v72,0,127,-57,159,-57v21,0,40,22,40,42v0,53,-67,85,-108,105v-151,74,-405,55,-396,-147v9,-208,203,-343,385,-343xm350,-418v-41,0,-69,93,-69,125v0,12,4,28,18,28v28,0,77,-74,74,-122v-1,-13,-7,-31,-23,-31","w":565},"f":{"d":"360,-524v-56,0,-80,-48,-124,-62v-50,13,-17,70,19,77v45,9,95,27,113,74v7,19,7,16,29,16v54,-13,29,44,29,79v0,28,1,33,-27,33v-30,1,-32,9,-36,38r-39,308v0,40,6,74,-31,99v-33,23,-112,41,-151,41v-38,0,-92,-14,-92,-60v0,-17,7,-27,18,-37v25,-23,21,-32,29,-67v18,-77,47,-221,47,-298v0,-51,-91,-3,-87,-44r5,-63v3,-18,0,-29,22,-29v24,0,51,5,51,-12v0,-22,-45,-39,-45,-118v0,-111,114,-168,212,-168v63,0,138,33,138,106v0,47,-31,87,-80,87","w":431,"k":{"f":13,"\u00df":13}},"g":{"d":"347,-515v34,0,68,8,102,8v54,0,55,-65,93,-65v31,0,67,41,67,71v0,30,-21,46,-21,56v0,8,32,33,27,86v-19,192,-209,196,-375,196v-13,0,-23,10,-23,23v0,36,65,32,87,32r141,-4v68,0,126,35,126,109v0,140,-181,182,-292,182v-71,0,-234,-15,-234,-113v0,-37,28,-43,28,-57v0,-13,-37,-29,-37,-79v0,-45,34,-76,73,-92v21,-2,31,-27,10,-37v-36,-31,-53,-59,-53,-108v0,-143,160,-208,281,-208xm325,-241v55,0,61,-111,66,-153v3,-22,-5,-39,-31,-39v-58,0,-64,114,-67,155v-2,23,6,37,32,37xm266,107v24,0,101,-6,101,-42v0,-13,-11,-18,-22,-16v-78,11,-158,-10,-178,-9v-8,1,-8,13,-8,18v0,43,77,49,107,49","w":608},"h":{"d":"130,-547v0,-58,-72,-10,-72,-65v0,-45,57,-65,92,-76v47,-15,99,-27,148,-27v38,0,67,6,67,48v0,60,-20,134,-28,193v-3,15,-11,46,3,46v18,0,98,-89,189,-89v68,0,114,34,114,105v0,75,-33,184,-34,241v-1,52,54,7,51,56v-5,71,-156,126,-214,122v-51,-3,-73,-25,-73,-76v0,-65,42,-192,42,-243v0,-20,-7,-42,-29,-42v-75,0,-94,201,-99,240v-3,24,-5,59,-23,77v-25,26,-89,46,-124,46v-41,0,-87,-11,-87,-60v0,-26,14,-78,18,-106v11,-77,59,-295,59,-390","w":658},"i":{"d":"74,-58v0,-96,41,-191,41,-281v0,-40,-61,3,-61,-55v0,-43,46,-62,79,-76v47,-20,123,-42,174,-42v85,0,25,158,28,188v-2,11,-21,126,-25,165v-4,40,60,-3,60,44v0,76,-158,122,-215,122v-38,0,-81,-23,-81,-65xm189,-553v-34,-2,-89,-11,-89,-55v0,-80,143,-121,207,-121v36,0,84,14,83,57v-1,73,-141,123,-201,119","w":370},"j":{"d":"356,-465r-56,416v-19,127,-14,221,-185,235v-27,2,-83,-5,-83,-43v0,-15,4,-17,13,-27v18,-20,15,-24,19,-52r55,-393v6,-47,-60,-3,-60,-53v0,-44,40,-66,75,-83v47,-22,121,-46,173,-46v33,0,54,9,49,46xm186,-548v-34,-2,-89,-11,-89,-55v0,-80,143,-121,207,-121v36,0,84,14,83,57v-1,73,-141,123,-201,119","w":361},"k":{"d":"58,-44v0,-145,69,-337,68,-492v0,-33,-3,-45,-37,-42v-24,2,-32,1,-33,-25v-4,-88,195,-112,250,-112v59,0,47,55,41,100r-18,133v-1,6,-8,40,9,40v57,-27,106,-76,178,-76v80,0,127,42,127,124v0,66,-46,107,-100,135v-5,3,-25,9,-25,17v14,33,40,61,55,92v13,27,52,17,52,54v0,63,-138,105,-188,105v-63,0,-73,-55,-92,-105v-5,-13,-22,-64,-36,-64v-16,0,-22,28,-23,40v-8,88,-19,117,-158,128v-44,4,-70,-10,-70,-52xm304,-230v36,0,110,-61,110,-113v0,-15,-7,-28,-23,-28v-47,0,-93,89,-93,130v0,4,0,11,6,11","w":650},"l":{"d":"359,-667r-53,484v0,12,1,35,17,35v10,0,20,-3,30,-3v17,0,22,17,22,31v0,83,-163,127,-228,127v-54,0,-87,-25,-81,-97v14,-162,42,-347,58,-463v7,-49,-74,3,-74,-51v0,-50,46,-66,86,-79v49,-16,115,-32,166,-32v35,0,61,9,57,48","w":376},"m":{"d":"537,-512v47,0,91,24,105,71v2,7,2,19,11,19v16,0,86,-90,193,-90v61,0,100,40,100,100v0,57,-33,199,-33,244v0,51,53,9,53,53v0,74,-150,119,-204,122v-46,2,-74,-28,-74,-71v0,-87,33,-172,33,-252v0,-18,-5,-32,-25,-32v-77,0,-78,142,-83,189v-6,54,-13,104,-29,122v-31,35,-105,44,-149,44v-42,0,-60,-13,-60,-57v0,-79,38,-175,38,-261v0,-21,-2,-37,-27,-37v-70,0,-78,170,-82,215v-8,98,-2,129,-170,141v-39,3,-66,-10,-66,-54v0,-37,40,-198,40,-282v0,-19,-3,-33,-24,-33v-22,0,-48,0,-48,-31v0,-37,50,-59,78,-73v47,-23,101,-47,155,-47v36,0,51,24,54,57v0,9,2,33,15,33v24,0,105,-90,199,-90","w":978},"n":{"d":"386,-60v0,-82,38,-172,38,-257v0,-18,-9,-32,-28,-32v-73,0,-86,152,-92,213v-10,110,-32,136,-161,143v-36,2,-73,-8,-73,-52v0,-50,43,-200,43,-287v0,-24,-12,-32,-38,-32v-20,0,-28,-12,-28,-32v0,-28,29,-48,51,-60v42,-25,134,-55,182,-55v61,0,34,88,65,88v25,0,107,-89,194,-89v58,0,114,34,114,97v0,71,-35,191,-35,252v0,40,48,15,48,54v0,73,-151,116,-208,116v-44,0,-72,-22,-72,-67","w":668},"o":{"d":"271,13v-125,0,-228,-67,-228,-198v0,-191,150,-332,340,-332v125,0,228,67,228,198v0,191,-150,332,-340,332xm350,-411v-42,0,-52,64,-59,95v-11,54,-20,122,-20,177v0,23,6,46,32,46v42,0,50,-60,56,-90v10,-51,24,-128,24,-179v0,-23,-5,-49,-33,-49","w":611},"p":{"d":"391,-361v-59,0,-80,194,-80,237v0,18,3,31,24,31v59,0,88,-173,88,-217v0,-21,-4,-51,-32,-51xm644,-324v0,160,-126,391,-322,324v-28,0,-15,70,-9,83v10,22,52,19,52,50v0,51,-73,56,-109,56v-54,0,-216,-8,-216,-85v0,-22,10,-30,26,-43v22,-18,24,-30,27,-58r26,-282v1,-30,0,-71,-36,-71v-24,0,-41,-4,-41,-36v0,-43,55,-60,87,-74v34,-15,110,-52,144,-52v32,0,42,24,43,43v0,12,3,26,19,26v25,0,71,-70,174,-70v100,0,135,105,135,189","w":644},"q":{"d":"623,-479r-51,515v0,28,2,43,27,58v15,9,38,18,38,39v0,53,-99,56,-135,56v-7,0,-225,7,-225,-69v0,-25,17,-33,39,-38v25,-6,28,-14,36,-40v3,-9,36,-123,7,-123v-25,0,-70,95,-182,95v-93,0,-138,-72,-138,-159v0,-164,119,-365,308,-372v60,-2,84,37,108,37v30,0,82,-47,127,-47v34,0,44,16,41,48xm293,-135v53,0,121,-167,121,-240v0,-18,-8,-36,-28,-36v-56,0,-118,157,-119,235v0,17,4,41,26,41","w":630},"r":{"d":"345,-295r-15,162v6,97,-36,135,-173,141v-37,2,-77,-8,-77,-53v0,-60,40,-185,42,-278v1,-27,-2,-35,-29,-35v-31,0,-47,-8,-47,-44v0,-54,81,-70,119,-89v27,-14,60,-26,92,-26v61,0,34,95,66,95v29,0,26,-96,119,-96v65,0,109,56,109,119v0,61,-30,120,-98,120v-36,0,-50,-14,-67,-43v-3,-6,-12,-24,-20,-24v-14,0,-20,42,-21,51","w":529,"k":{"v":-21,"w":-21,"y":-14,",":90,".":95,"c":5,"e":13,"g":-8,"h":15,"m":-18,"n":-18,"o":6,"\u00f6":6,"q":10,"r":-18,"t":-18,"u":-18,"\u00fc":-18,"x":-25,"z":-20,"-":-26}},"s":{"d":"477,-433v0,30,-18,73,-53,73v-40,0,-40,-58,-78,-58v-17,0,-31,12,-31,29v0,65,143,113,143,233v0,124,-146,169,-247,169v-64,0,-182,-18,-182,-102v0,-30,19,-71,53,-71v42,0,35,67,85,67v20,0,43,-11,43,-33v0,-53,-125,-105,-125,-217v0,-120,137,-174,240,-174v52,0,152,17,152,84","w":472},"t":{"d":"439,-491v-7,34,5,86,-35,86v-69,0,-73,-3,-84,84v-6,52,-42,170,15,170v24,0,42,-19,57,-19v21,0,27,19,27,36v0,78,-190,142,-248,142v-60,0,-100,-29,-100,-93v0,-97,26,-182,40,-271v6,-39,4,-44,-36,-44v-24,0,-37,-7,-37,-34v0,-43,21,-67,63,-71v32,-4,35,-14,49,-60v9,-30,20,-59,47,-72v35,-17,86,-22,125,-22v64,0,29,91,29,130v0,46,81,-4,88,38","w":423},"u":{"d":"662,-469v0,103,-35,189,-45,289v-6,51,66,7,66,57v0,77,-167,130,-228,130v-64,0,-34,-89,-69,-89v-22,0,-107,95,-211,89v-137,-8,-77,-194,-60,-310v3,-26,10,-49,-23,-53v-20,-2,-42,-5,-42,-31v0,-40,56,-69,86,-83v49,-23,107,-41,161,-41v38,0,51,20,51,57v0,39,-20,134,-29,186v-2,13,-27,112,16,112v32,0,55,-40,66,-64v41,-94,23,-219,67,-257v29,-24,99,-35,136,-35v31,0,58,9,58,43","w":681},"v":{"d":"109,-348v0,-46,-62,-7,-62,-55v0,-79,165,-109,224,-109v41,0,68,14,68,59v0,60,-18,134,-27,196v-6,43,-30,144,42,144v84,0,121,-121,121,-189v0,-67,-54,-111,-54,-152v0,-45,50,-57,87,-57v68,0,87,50,87,111v0,199,-104,413,-329,413v-91,0,-187,-47,-187,-150v0,-66,30,-181,30,-211","k":{",":22,".":46}},"w":{"d":"614,13v-121,2,-161,-85,-173,-85v-15,0,-92,85,-212,85v-91,0,-145,-60,-145,-149v0,-64,29,-174,29,-207v0,-25,-8,-25,-30,-27v-21,-2,-28,-17,-28,-37v0,-40,34,-54,67,-66v43,-17,127,-39,172,-39v43,0,53,27,53,66v0,63,-30,160,-37,229v-5,45,-1,89,28,89v90,0,109,-203,110,-261v2,-107,78,-117,182,-122v37,-2,55,9,55,49v0,87,-43,190,-45,262v-1,52,8,87,46,87v82,0,121,-114,121,-182v0,-84,-48,-118,-48,-165v0,-38,41,-52,73,-52v76,0,93,55,95,122v7,206,-103,400,-313,403","w":910,"k":{",":22,".":36}},"x":{"d":"265,-512v42,-13,71,95,93,113v13,0,83,-112,127,-112v49,0,80,77,80,118v0,24,-19,56,-46,56v-22,0,-32,-24,-49,-24v-15,0,-61,48,-61,63v0,13,45,103,62,103v10,0,25,-16,44,-16v22,0,41,21,41,43v0,67,-131,175,-196,175v-59,0,-84,-124,-106,-133v-11,-4,-99,133,-151,133v-48,0,-60,-83,-60,-117v0,-25,11,-71,44,-71v25,0,32,26,46,26v12,0,68,-56,68,-69v0,-14,-41,-97,-60,-97v-12,0,-24,20,-44,20v-26,0,-40,-26,-40,-49v0,-78,146,-162,208,-162","w":564},"y":{"d":"630,-373v0,216,-165,567,-423,567v-89,0,-179,-49,-179,-147v0,-61,43,-100,102,-100v48,0,85,27,85,77v0,25,-18,71,12,71v32,0,48,-48,47,-73v-2,-74,-96,-335,-134,-335v-15,0,-36,34,-58,34v-26,0,-48,-33,-46,-57v6,-64,174,-176,232,-176v56,0,75,48,94,92v27,64,74,240,99,246v27,6,39,-97,39,-117v0,-70,-46,-88,-46,-139v0,-47,42,-76,86,-76v79,0,90,70,90,133","w":623,"k":{",":13,".":17}},"z":{"d":"147,-517v83,21,198,11,301,11v25,0,66,-1,66,33v0,35,-30,62,-47,89v-7,12,-164,170,-164,201v0,26,39,14,55,14v71,0,41,-60,95,-60v37,0,46,27,46,60v0,52,-44,175,-98,175v-85,0,-202,-2,-298,-4v-26,0,-57,-8,-57,-39v0,-26,17,-36,28,-49v51,-59,178,-195,194,-235v5,-12,-22,-17,-32,-17v-64,0,-74,6,-95,37v-7,11,-17,19,-31,19v-38,0,-47,-40,-47,-71v0,-38,35,-164,84,-164","w":506},"{":{"d":"472,-682r-32,201v-11,74,-34,122,-116,132r0,3v80,10,85,60,74,132r-32,211v0,19,15,28,38,28v35,0,35,27,35,37v0,11,-12,37,-47,37v-113,2,-235,8,-216,-112r38,-247v7,-31,-9,-49,-36,-49v-35,0,-35,-26,-35,-38v0,-12,12,-39,47,-39v35,0,46,-17,51,-48r36,-229v19,-136,115,-141,257,-141v35,0,35,26,35,37v0,10,-12,37,-47,37v-35,0,-45,17,-50,48","w":566},"|":{"d":"190,250r0,-1000r116,0r0,1000r-116,0","w":418},"}":{"d":"162,-21r32,-201v11,-74,34,-122,116,-132r0,-3v-80,-10,-85,-60,-74,-132r32,-211v0,-19,-15,-28,-38,-28v-35,0,-35,-27,-35,-37v0,-11,12,-37,47,-37v113,-2,235,-8,216,112r-38,247v-7,31,9,49,36,49v35,0,35,26,35,38v0,12,-12,39,-47,39v-35,0,-46,17,-51,48r-36,229v-19,136,-115,141,-257,141v-35,0,-35,-26,-35,-37v0,-10,12,-37,47,-37v35,0,45,-17,50,-48","w":566},"~":{"d":"469,-348v47,0,88,7,88,65v0,64,-52,119,-113,119v-79,0,-182,-67,-221,-67v-12,0,-12,6,-12,17v0,37,-25,50,-50,50v-47,0,-88,-7,-88,-65v0,-64,52,-119,113,-119v79,0,182,67,221,67v12,0,12,-6,12,-17v0,-37,25,-50,50,-50"},"'":{"d":"219,-715v77,0,97,71,97,118v0,100,-89,268,-130,268v-39,0,-88,-145,-88,-223v0,-91,45,-163,121,-163","w":306},"\u201c":{"d":"300,-667v-10,40,-60,74,-60,117v0,40,76,27,76,127v0,67,-40,108,-107,108v-81,0,-118,-60,-119,-135v-2,-109,111,-265,159,-265v18,0,51,30,51,48xm561,-667v-10,40,-60,74,-60,117v0,40,76,27,76,127v0,67,-40,108,-107,108v-81,0,-118,-60,-119,-135v-2,-109,111,-265,159,-265v18,0,51,30,51,48","w":566},"\u2013":{"d":"541,-338v0,51,-25,154,-82,161v-40,5,-62,-6,-136,-9v-145,-6,-282,5,-328,5v-76,0,-9,-113,4,-148v10,-26,25,-42,54,-42v80,0,335,5,459,5v16,0,29,12,29,28","w":500},"\u201d":{"d":"382,-363v10,-40,60,-74,60,-117v0,-40,-76,-27,-76,-127v0,-67,40,-108,107,-108v81,0,118,60,119,135v2,109,-111,265,-159,265v-18,0,-51,-30,-51,-48xm121,-363v10,-40,60,-74,60,-117v0,-40,-76,-27,-76,-127v0,-67,40,-108,107,-108v81,0,118,60,119,135v2,109,-111,265,-159,265v-18,0,-51,-30,-51,-48","w":566},"\u2026":{"d":"176,-207v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111xm509,-207v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111xm842,-207v61,0,112,44,109,111v-3,70,-58,117,-119,117v-61,0,-112,-47,-109,-117v3,-67,58,-111,119,-111","w":1000},"`":{"d":"290,-683v7,34,58,47,58,84v0,23,-19,35,-40,35v-65,0,-217,-69,-217,-145v0,-38,65,-45,93,-45v24,0,116,11,116,44v0,10,-9,17,-10,27","w":397},"\u2014":{"d":"53,-371v208,20,608,6,856,9v51,0,81,-4,102,-4v16,0,30,12,30,28v0,28,-31,162,-82,162v-30,0,-92,-8,-136,-8r-813,0v-15,2,-59,2,-50,-27v11,-33,33,-166,93,-160","w":1000},"\u00df":{"d":"387,-103v87,26,72,-77,45,-132v-23,-48,-57,-103,-57,-166v0,-98,110,-99,110,-158v0,-19,-14,-37,-33,-37v-132,29,-127,216,-150,352r-11,113v0,49,37,40,37,75v0,65,-111,64,-155,64v-46,0,-158,4,-158,-65v0,-38,41,-38,49,-66v47,-171,29,-362,138,-483v61,-68,136,-101,227,-101v86,0,185,44,184,129v0,53,-33,80,-33,116v0,56,113,169,113,287v0,48,-13,93,-48,128v-78,77,-244,74,-274,-36v0,-10,6,-20,16,-20","w":690},"\u2122":{"d":"104,-708v77,0,211,12,281,-2v36,0,70,67,70,108v0,28,-15,47,-45,47v-50,0,-49,-67,-79,-67v-22,0,-21,31,-21,47r0,151v0,94,54,46,54,91v0,41,-78,42,-119,42v-29,0,-137,1,-137,-44v0,-37,49,-11,52,-61r9,-167v3,-57,-9,-60,-18,-60v-26,0,-39,69,-86,69v-22,0,-35,-21,-35,-42v0,-46,39,-112,74,-112xm756,-560r35,-69v32,-61,33,-78,109,-78v25,0,83,1,83,37v0,36,-30,10,-36,69v-6,64,0,128,0,193v0,75,37,48,37,80v0,39,-79,37,-104,37v-24,0,-103,2,-103,-35v0,-22,26,-16,33,-51v2,-9,11,-100,-9,-100v-18,0,-37,51,-42,64r-30,66v-5,10,-15,40,-30,40v-25,7,-61,-119,-82,-152v-3,-8,-10,-25,-20,-25v-15,0,-12,26,-12,83v0,86,37,41,37,76v0,33,-62,34,-84,34v-21,0,-73,-2,-73,-32v0,-28,31,-9,40,-50v3,-12,9,-107,9,-194v0,-111,-47,-56,-47,-100v0,-16,13,-40,99,-40v64,0,64,6,83,41r55,101v5,9,13,33,27,33v14,0,20,-18,25,-28","w":1000},"\u00d7":{"d":"511,-370r-78,78v-38,38,-39,33,0,72r78,78v18,18,32,29,32,42v0,23,-45,72,-72,72v-12,0,-24,-14,-42,-32r-78,-78v-38,-39,-33,-39,-72,0r-78,78v-18,18,-30,32,-42,32v-27,0,-72,-49,-72,-72v0,-13,14,-24,32,-42r78,-78v39,-39,39,-34,0,-72r-78,-78v-18,-18,-32,-29,-32,-42v0,-23,45,-72,72,-72v12,0,24,14,42,32r78,78v39,38,34,39,72,0r78,-78v18,-18,30,-32,42,-32v27,0,72,49,72,72v0,13,-14,24,-32,42"},"\u00c4":{"d":"425,-166r-134,0v-50,4,-58,18,-58,44v0,32,57,9,57,63v0,35,-15,67,-186,67v-49,0,-125,0,-125,-66v0,-64,48,-19,91,-90v90,-150,217,-328,252,-486v15,-69,54,-81,116,-81v92,0,130,50,159,131v30,84,88,350,105,424v18,80,73,30,73,97v0,78,-161,71,-211,71v-41,0,-156,7,-156,-58v0,-58,64,-33,64,-80v0,-31,-24,-29,-47,-36xm312,-298v6,26,63,17,95,17v29,0,33,-10,33,-26v0,-41,-32,-140,-49,-140v-25,0,-79,132,-79,149xm754,-861v0,69,-103,102,-173,102v-30,0,-77,-9,-77,-47v0,-71,127,-104,183,-104v29,0,67,15,67,49xm454,-861v0,69,-103,102,-174,102v-29,0,-76,-9,-76,-47v0,-71,127,-104,182,-104v30,0,68,15,68,49","w":775},"\u00d6":{"d":"779,-441v0,249,-195,455,-440,455v-170,0,-296,-97,-296,-274v0,-249,195,-455,440,-455v170,0,296,97,296,274xm376,-115v107,0,134,-267,134,-344v0,-39,-3,-127,-64,-127v-107,0,-134,267,-134,344v0,39,3,127,64,127xm822,-861v0,69,-103,102,-173,102v-30,0,-77,-9,-77,-47v0,-71,127,-104,183,-104v29,0,67,15,67,49xm522,-861v0,69,-103,102,-174,102v-29,0,-76,-9,-76,-47v0,-71,127,-104,182,-104v30,0,68,15,68,49","w":752},"\u00dc":{"d":"771,-544v-52,267,-2,558,-368,558v-161,0,-302,-52,-302,-212v0,-116,41,-244,40,-347v-1,-68,-66,-22,-66,-82v0,-8,-23,-82,232,-82v158,0,162,41,162,69v0,70,-75,15,-88,132v-26,232,-25,170,-33,266v-6,73,22,114,93,114v65,0,109,-30,131,-91v32,-86,46,-235,46,-327v0,-77,-79,-28,-79,-100v0,-38,27,-63,158,-63v168,0,161,46,161,61v0,73,-71,24,-87,104xm844,-861v0,69,-103,102,-173,102v-30,0,-77,-9,-77,-47v0,-71,127,-104,183,-104v29,0,67,15,67,49xm544,-861v0,69,-103,102,-174,102v-29,0,-76,-9,-76,-47v0,-71,127,-104,182,-104v30,0,68,15,68,49","w":795},"\u00e4":{"d":"289,-144v53,-4,118,-174,116,-224v0,-13,-4,-33,-20,-32v-53,4,-120,153,-119,217v0,15,3,41,23,39xm444,-470v40,-10,77,-42,123,-42v28,0,42,10,41,38v-3,68,-38,213,-29,322v8,22,47,4,47,37v0,65,-146,123,-201,123v-89,0,-46,-85,-78,-85v-26,0,-75,90,-178,90v-92,0,-130,-81,-126,-162v8,-180,120,-348,274,-362v70,-7,98,41,127,41xm681,-684v0,69,-103,102,-173,102v-30,0,-77,-9,-77,-47v0,-71,127,-104,183,-104v29,0,67,15,67,49xm381,-684v0,69,-103,102,-174,102v-29,0,-76,-9,-76,-47v0,-71,127,-104,182,-104v30,0,68,15,68,49","w":630},"\u00f6":{"d":"271,13v-125,0,-228,-67,-228,-198v0,-191,150,-332,340,-332v125,0,228,67,228,198v0,191,-150,332,-340,332xm350,-411v-42,0,-52,64,-59,95v-11,54,-20,122,-20,177v0,23,6,46,32,46v42,0,50,-60,56,-90v10,-51,24,-128,24,-179v0,-23,-5,-49,-33,-49xm672,-684v0,69,-103,102,-173,102v-30,0,-77,-9,-77,-47v0,-71,127,-104,183,-104v29,0,67,15,67,49xm372,-684v0,69,-103,102,-174,102v-29,0,-76,-9,-76,-47v0,-71,127,-104,182,-104v30,0,68,15,68,49","w":611},"\u00fc":{"d":"662,-469v0,103,-35,189,-45,289v-6,51,66,7,66,57v0,77,-167,130,-228,130v-64,0,-34,-89,-69,-89v-22,0,-107,95,-211,89v-137,-8,-77,-194,-60,-310v3,-26,10,-49,-23,-53v-20,-2,-42,-5,-42,-31v0,-40,56,-69,86,-83v49,-23,107,-41,161,-41v38,0,51,20,51,57v0,39,-20,134,-29,186v-2,13,-27,112,16,112v32,0,55,-40,66,-64v41,-94,23,-219,67,-257v29,-24,99,-35,136,-35v31,0,58,9,58,43xm707,-684v0,69,-103,102,-173,102v-30,0,-77,-9,-77,-47v0,-71,127,-104,183,-104v29,0,67,15,67,49xm407,-684v0,69,-103,102,-174,102v-29,0,-76,-9,-76,-47v0,-71,127,-104,182,-104v30,0,68,15,68,49","w":681},"\u00a0":{"w":295}}});
(function($){$.fn.lazyload=function(options){var settings={threshold:0,failurelimit:0,event:"scroll",effect:"show",container:window};if(options){$.extend(settings,options);}
var elements=this;if("scroll"==settings.event){$(settings.container).bind("scroll",function(event){var counter=0;elements.each(function(){if($.abovethetop(this,settings)||$.leftofbegin(this,settings)){}else if(!$.belowthefold(this,settings)&&!$.rightoffold(this,settings)){$(this).trigger("appear");}else{if(counter++>settings.failurelimit){return false;}}});var temp=$.grep(elements,function(element){return!element.loaded;});elements=$(temp);});}
return this.each(function(){var self=this;$(self).data("original",$(self).attr("src"));if("scroll"!=settings.event||($.abovethetop(self,settings)||$.leftofbegin(self,settings)||$.belowthefold(self,settings)||$.rightoffold(self,settings))){if(settings.placeholder){$(self).attr("src",settings.placeholder);}else{$(self).removeAttr("src");}
self.loaded=false;}else{self.loaded=true;}
$(self).one("appear",function(){if(!this.loaded){$("<img />").bind("load",function(){$(self).hide().attr("src",$(self).data("original"))
[settings.effect](settings.effectspeed);self.loaded=true;}).attr("src",$(self).data("original"));};});if("scroll"!=settings.event){$(self).bind(settings.event,function(event){if(!self.loaded){$(self).trigger("appear");}});}});};$.belowthefold=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).height()+$(window).scrollTop();}else{var fold=$(settings.container).offset().top+$(settings.container).height();}
return fold<=$(element).offset().top-settings.threshold;};$.rightoffold=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).width()+$(window).scrollLeft();}else{var fold=$(settings.container).offset().left+$(settings.container).width();}
return fold<=$(element).offset().left-settings.threshold;};$.abovethetop=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).scrollTop();}else{var fold=$(settings.container).offset().top;}
return fold>=$(element).offset().top+settings.threshold+$(element).height();};$.leftofbegin=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).scrollLeft();}else{var fold=$(settings.container).offset().left;}
return fold>=$(element).offset().left+settings.threshold+$(element).width();};$.extend($.expr[':'],{"below-the-fold":"$.belowthefold(a, {threshold : 0, container: window})","above-the-fold":"!$.belowthefold(a, {threshold : 0, container: window})","right-of-fold":"$.rightoffold(a, {threshold : 0, container: window})","left-of-fold":"!$.rightoffold(a, {threshold : 0, container: window})"});})(jQuery);
﻿
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);
(function($){$.prettyPhoto={version:'2.5.6'};$.fn.prettyPhoto=function(settings){settings=jQuery.extend({animationSpeed:'normal',opacity:0.80,showTitle:true,allowresize:true,default_width:500,default_height:344,counter_separator_label:'/',theme:'light_rounded',hideflash:false,wmode:'opaque',autoplay:true,modal:false,changepicturecallback:function(){},callback:function(){},markup:'<div class="pp_pic_holder"> \
      <div class="pp_top"> \
       <div class="pp_left"></div> \
       <div class="pp_middle"></div> \
       <div class="pp_right"></div> \
      </div> \
      <div class="pp_content_container"> \
       <div class="pp_left"> \
       <div class="pp_right"> \
        <div class="pp_content"> \
         <div class="pp_loaderIcon"></div> \
         <div class="pp_fade"> \
          <a href="#" class="pp_expand" title="Expand the image">Expand</a> \
          <div class="pp_hoverContainer"> \
           <a class="pp_next" href="#"><img src="http://www.bennorz.de/uiui/wp-content/themes/urbanerinstinkt/images/prettyPhoto/light_rounded/btnNext.png"/></a> \
           <a class="pp_previous" href="#"><img src="http://www.bennorz.de/uiui/wp-content/themes/urbanerinstinkt/images/prettyPhoto/light_rounded/btnPrevious.png"/></a> \
          </div> \
          <div id="pp_full_res"></div> \
          <div class="pp_details clearfix"> \
           <a class="pp_close" href="#">Close</a> \
           <p class="pp_description"></p> \
           <div class="pp_nav"> \
            <a href="#" class="pp_arrow_previous">Previous</a> \
            <p class="currentTextHolder">0/0</p> \
            <a href="#" class="pp_arrow_next">Next</a> \
           </div> \
           <div class="pp_kom"> \
           </div> \
          </div> \
         </div> \
        </div> \
       </div> \
       </div> \
      </div> \
      <div class="pp_bottom"> \
       <div class="pp_left"></div> \
       <div class="pp_middle"></div> \
       <div class="pp_right"></div> \
      </div> \
     </div> \
     <div class="pp_overlay"></div> \
     <div class="ppt"></div>',image_markup:'<img id="fullResImage" src="" />',flash_markup:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',quicktime_markup:'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',iframe_markup:'<iframe src ="{path}" width="{width}" height="{height}" frameborder="no"></iframe>',inline_markup:'<div class="pp_inline clearfix">{content}</div>'},settings);if($.browser.msie&&parseInt($.browser.version)==6){settings.theme="light_square";}
if($('.pp_overlay').size()==0)_buildOverlay();var doresize=true,percentBased=false,correctSizes,$pp_pic_holder,$ppt,$pp_overlay,pp_contentHeight,pp_contentWidth,pp_containerHeight,pp_containerWidth,windowHeight=$(window).height(),windowWidth=$(window).width(),setPosition=0,scrollPos=_getScroll();$(window).scroll(function(){scrollPos=_getScroll();_centerOverlay();_resizeOverlay();});$(window).resize(function(){_centerOverlay();_resizeOverlay();});$(document).keydown(function(e){if($pp_pic_holder.is(':visible'))
switch(e.keyCode){case 37:$.prettyPhoto.changePage('previous');break;case 39:$.prettyPhoto.changePage('next');break;case 27:if(!settings.modal)
$.prettyPhoto.close();break;};});$(this).each(function(){$(this).bind('click',function(){_self=this;theRel=$(this).attr('rel');galleryRegExp=/\[(?:.*)\]/;theGallery=galleryRegExp.exec(theRel);var images=new Array(),titles=new Array(),descriptions=new Array(),pages=new Array();if(theGallery){$('a[rel*='+theGallery+']').each(function(i){if($(this)[0]===$(_self)[0])setPosition=i;images.push($(this).attr('href'));titles.push($(this).find('img').attr('alt'));descriptions.push($(this).attr('title'));pages.push($(this).attr("rel"));});}else{images=$(this).attr('href');titles=($(this).find('img').attr('alt'))?$(this).find('img').attr('alt'):'';descriptions=($(this).attr('title'))?$(this).attr('title'):'';pages=($(this).attr("rel"))?$(this).attr("rel"):'';}
$.prettyPhoto.open(images,titles,descriptions,pages);return false;});});$.prettyPhoto.open=function(gallery_images,gallery_titles,gallery_descriptions,gallery_pages){if($.browser.msie&&$.browser.version==6){$('select').css('visibility','hidden');};if(settings.hideflash)$('object,embed').css('visibility','hidden');images=$.makeArray(gallery_images);titles=$.makeArray(gallery_titles);descriptions=$.makeArray(gallery_descriptions);pages=$.makeArray(gallery_pages);image_set=($(images).size()>0)?true:false;_checkPosition($(images).size());$('.pp_loaderIcon').show();$pp_overlay.show().fadeTo(settings.animationSpeed,settings.opacity);$pp_pic_holder.find('.currentTextHolder').text((setPosition+1)+settings.counter_separator_label+$(images).size());if(descriptions[setPosition]){$pp_pic_holder.find('.pp_description').show().html(unescape(descriptions[setPosition]));}else{$pp_pic_holder.find('.pp_description').hide().text('');};if(titles[setPosition]&&settings.showTitle){hasTitle=true;$ppt.html(unescape(titles[setPosition]));}else{hasTitle=false;};pgid=pages[setPosition].substring(pages[setPosition].lastIndexOf("[post-")+6,pages[setPosition].length-1);$.ajax({url:location.href.substring(0,location.href.lastIndexOf(".de/uiui/")+9)+"wp-content/themes/urbanerinstinkt/php/getKom.php",type:"POST",data:({page:pgid}),dataType:"html",success:function(msg){$('.pp_kom').html(msg);}});movie_width=(parseFloat(grab_param('width',images[setPosition])))?grab_param('width',images[setPosition]):settings.default_width.toString();movie_height=(parseFloat(grab_param('height',images[setPosition])))?grab_param('height',images[setPosition]):settings.default_height.toString();if(movie_width.indexOf('%')!=-1||movie_height.indexOf('%')!=-1){movie_height=parseFloat(($(window).height()*parseFloat(movie_height)/100)-100);movie_width=parseFloat(($(window).width()*parseFloat(movie_width)/100)-100);percentBased=true;}
$pp_pic_holder.fadeIn(function(){imgPreloader="";switch(_getFileType(images[setPosition])){case'image':imgPreloader=new Image();nextImage=new Image();if(image_set&&setPosition>$(images).size())nextImage.src=images[setPosition+1];prevImage=new Image();if(image_set&&images[setPosition-1])prevImage.src=images[setPosition-1];$pp_pic_holder.find('#pp_full_res')[0].innerHTML=settings.image_markup;$pp_pic_holder.find('#fullResImage').attr('src',images[setPosition]);imgPreloader.onload=function(){correctSizes=_fitToViewport(imgPreloader.width,imgPreloader.height);_showContent();};imgPreloader.onerror=function(){alert('Image cannot be loaded. Make sure the path is correct and image exist.');$.prettyPhoto.close();};imgPreloader.src=images[setPosition];break;case'youtube':correctSizes=_fitToViewport(movie_width,movie_height);movie='http://www.youtube.com/v/'+grab_param('v',images[setPosition]);if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'vimeo':correctSizes=_fitToViewport(movie_width,movie_height);movie_id=images[setPosition];movie='http://vimeo.com/moogaloop.swf?clip_id='+movie_id.replace('http://vimeo.com/','');if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'quicktime':correctSizes=_fitToViewport(movie_width,movie_height);correctSizes['height']+=15;correctSizes['contentHeight']+=15;correctSizes['containerHeight']+=15;toInject=settings.quicktime_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,images[setPosition]).replace(/{autoplay}/g,settings.autoplay);break;case'flash':correctSizes=_fitToViewport(movie_width,movie_height);flash_vars=images[setPosition];flash_vars=flash_vars.substring(images[setPosition].indexOf('flashvars')+10,images[setPosition].length);filename=images[setPosition];filename=filename.substring(0,filename.indexOf('?'));toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+'?'+flash_vars);break;case'iframe':correctSizes=_fitToViewport(movie_width,movie_height);frame_url=images[setPosition];frame_url=frame_url.substr(0,frame_url.indexOf('iframe')-1);toInject=settings.iframe_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{path}/g,frame_url);break;case'inline':myClone=$(images[setPosition]).clone().css({'width':settings.default_width}).wrapInner('<div id="pp_full_res"><div class="pp_inline clearfix"></div></div>').appendTo($('body'));correctSizes=_fitToViewport($(myClone).width(),$(myClone).height());$(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,$(images[setPosition]).html());break;};if(!imgPreloader){$pp_pic_holder.find('#pp_full_res')[0].innerHTML=toInject;_showContent();};});};$.prettyPhoto.changePage=function(direction){if(direction=='previous'){setPosition--;if(setPosition<0){setPosition=0;return;};}else{if($('.pp_arrow_next').is('.disabled'))return;setPosition++;};if(!doresize)doresize=true;_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions,pages)});$('a.pp_expand,a.pp_contract').fadeOut(settings.animationSpeed);};$.prettyPhoto.close=function(){$pp_pic_holder.find('object,embed').css('visibility','hidden');$('div.pp_pic_holder,div.ppt,.pp_fade').fadeOut(settings.animationSpeed);$pp_overlay.fadeOut(settings.animationSpeed,function(){$('#pp_full_res').html('');$pp_pic_holder.attr('style','').find('div:not(.pp_hoverContainer)').attr('style','');_centerOverlay();if($.browser.msie&&$.browser.version==6){$('select').css('visibility','visible');};if(settings.hideflash)$('object,embed').css('visibility','visible');setPosition=0;settings.callback();});doresize=true;};_showContent=function(){$('.pp_loaderIcon').hide();projectedTop=scrollPos['scrollTop']+((windowHeight/2)-(correctSizes['containerHeight']/2));if(projectedTop<0)projectedTop=0+$ppt.height();$pp_pic_holder.find('.pp_content').animate({'height':correctSizes['contentHeight']},settings.animationSpeed);$pp_pic_holder.animate({'top':projectedTop,'left':(windowWidth/2)-(correctSizes['containerWidth']/2),'width':correctSizes['containerWidth']},settings.animationSpeed,function(){$pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(correctSizes['height']).width(correctSizes['width']);$pp_pic_holder.find('.pp_fade').fadeIn(settings.animationSpeed);if(image_set&&_getFileType(images[setPosition])=="image"){$pp_pic_holder.find('.pp_hoverContainer').show();}else{$pp_pic_holder.find('.pp_hoverContainer').hide();}
if(settings.showTitle&&hasTitle){$ppt.css({'top':$pp_pic_holder.offset().top-25,'left':$pp_pic_holder.offset().left+20,'display':'none'});$ppt.fadeIn(settings.animationSpeed);};if(correctSizes['resized'])$('a.pp_expand,a.pp_contract').fadeIn(settings.animationSpeed);settings.changepicturecallback();});};function _hideContent(callback){$pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden');$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed,function(){$('.pp_loaderIcon').show();if(callback)callback();});$ppt.fadeOut(settings.animationSpeed);}
function _checkPosition(setCount){if(setPosition==setCount-1){$pp_pic_holder.find('a.pp_next').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_next').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_next').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_next.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};if(setPosition==0){$pp_pic_holder.find('a.pp_previous').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_previous').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_previous').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_previous.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});};if(setCount>1){$('.pp_nav').show();}else{$('.pp_nav').hide();}};function _fitToViewport(width,height){hasBeenResized=false;_getDimensions(width,height);imageWidth=width;imageHeight=height;if(((pp_containerWidth>windowWidth)||(pp_containerHeight>windowHeight))&&doresize&&settings.allowresize&&!percentBased){hasBeenResized=true;notFitting=true;while(notFitting){if((pp_containerWidth>windowWidth)){imageWidth=(windowWidth-200);imageHeight=(height/width)*imageWidth;}else if((pp_containerHeight>windowHeight)){imageHeight=(windowHeight-200);imageWidth=(width/height)*imageHeight;}else{notFitting=false;};pp_containerHeight=imageHeight;pp_containerWidth=imageWidth;};_getDimensions(imageWidth,imageHeight);};return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(pp_containerHeight),containerWidth:Math.floor(pp_containerWidth)+40,contentHeight:Math.floor(pp_contentHeight),contentWidth:Math.floor(pp_contentWidth),resized:hasBeenResized};};function _getDimensions(width,height){width=parseFloat(width);height=parseFloat(height);$pp_details=$pp_pic_holder.find('.pp_details');$pp_details.width(width);detailsHeight=parseFloat($pp_details.css('marginTop'))+parseFloat($pp_details.css('marginBottom'));$pp_details=$pp_details.clone().appendTo($('body')).css({'position':'absolute','top':-10000});detailsHeight+=$pp_details.height();detailsHeight=(detailsHeight<=34)?36:detailsHeight;if($.browser.msie&&$.browser.version==7)detailsHeight+=8;$pp_details.remove();pp_contentHeight=height+detailsHeight;pp_contentWidth=width;pp_containerHeight=pp_contentHeight+$ppt.height()+$pp_pic_holder.find('.pp_top').height()+$pp_pic_holder.find('.pp_bottom').height();pp_containerWidth=width;}
function _getFileType(itemSrc){if(itemSrc.match(/youtube\.com\/watch/i)){return'youtube';}else if(itemSrc.match(/vimeo\.com/i)){return'vimeo';}else if(itemSrc.indexOf('.mov')!=-1){return'quicktime';}else if(itemSrc.indexOf('.swf')!=-1){return'flash';}else if(itemSrc.indexOf('iframe')!=-1){return'iframe'}else if(itemSrc.substr(0,1)=='#'){return'inline';}else{return'image';};};function _centerOverlay(){if(doresize){titleHeight=$ppt.height();contentHeight=$pp_pic_holder.height();contentwidth=$pp_pic_holder.width();projectedTop=(windowHeight/2)+scrollPos['scrollTop']-((contentHeight+titleHeight)/2);$pp_pic_holder.css({'top':projectedTop,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)});$ppt.css({'top':projectedTop-titleHeight,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)+20});};};function _getScroll(){if(self.pageYOffset){return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset};}else if(document.documentElement&&document.documentElement.scrollTop){return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft};}else if(document.body){return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft};};};function _resizeOverlay(){windowHeight=$(window).height();windowWidth=$(window).width();$pp_overlay.css({'height':$(document).height()});};function _buildOverlay(){$('body').append(settings.markup);$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');$pp_overlay=$('div.pp_overlay');$pp_pic_holder.attr('class','pp_pic_holder '+settings.theme);$pp_overlay.css({'opacity':0,'height':$(document).height()}).bind('click',function(){if(!settings.modal)
$.prettyPhoto.close();});$('a.pp_close').bind('click',function(){$.prettyPhoto.close();return false;});$('a.pp_expand').bind('click',function(){$this=$(this);if($this.hasClass('pp_expand')){$this.removeClass('pp_expand').addClass('pp_contract');doresize=false;}else{$this.removeClass('pp_contract').addClass('pp_expand');doresize=true;};_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions,pages)});$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed);return false;});$pp_pic_holder.find('.pp_previous, .pp_arrow_previous').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});$pp_pic_holder.find('.pp_next, .pp_arrow_next').bind('click',function(){$.prettyPhoto.changePage('next');return false;});$pp_pic_holder.find('.pp_next, .pp_previous').hover(function(){$(this).children('img').css('visibility','visible');},function(){$(this).children('img').css('visibility','hidden');});};_centerOverlay();};function grab_param(name,url){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new RegExp(regexS);var results=regex.exec(url);if(results==null)
return"";else
return results[1];}})(jQuery);
Cufon.replace('.PostHead h2',{fontFamily:'Cooper',fontSize:'30px'});Cufon.replace('.credits h3',{fontFamily:'Cooper',fontSize:'18px'});$(document).ready(function(){var el=$('#white_russian');$(window).scroll(function(){if(el.parent().height()>1370){if(($(window).scrollTop()+$(window).height())>=1545){el.removeClass('wait').addClass('fixed');}
else{el.removeClass('fixed').addClass('wait');}}});$('.PostContent img, .PostContent pre, .PostContent object').each(function(){$(this).css('display','block');if($(this).is('img'))
{$(this).load(function(){balanceHeight(this);});}
else
{balanceHeight(this);}});$('input[title], textarea[title]').each(function(){if($(this).val()===''){$(this).val($(this).attr('title'));}
$(this).focus(function(){if($(this).val()===$(this).attr('title')){$(this).val('').addClass('focused');}else{if($(this).val()!==''){$(this).addClass('focused');}}});$(this).blur(function(){if($(this).val()===''){$(this).val($(this).attr('title')).removeClass('focused');}});});$('#commentform').submit(function(){$tmp=$('#url');if($tmp.val()=='URL'||$tmp.val()=='http://URL/'||$tmp.val()=='http://URL'){$tmp.val('');}});var config={sensitivity:2,interval:30,over:caption_over,timeout:600,out:caption_out};$(".gal_elem").hoverIntent(config)
$(".PostContent img").lazyload({placeholder:location.href.substring(0,location.href.lastIndexOf(".de/uiui/")+9)+"wp-content/themes/urbanerinstinkt/images/pink.gif",effect:"fadeIn",threshold:300});});var hb_height="650px";function resizeFrame()
{var h=$(window).height();var w=$(window).width();$("#hatebook").css('marginLeft',(w<1116)?"-48%":-560);$('#chatoutput').css('height',(h<650)?h-200:450);hb_height=(h<650)?h:"650px";var $hbc=$('#book_content');if($hbc.height()!=0){$hbc.css('height',(h<650)?"100%":"650px");}}
$(window).bind("resize",function(){resizeFrame()});$(window).bind("load",function(){resizeFrame()
$('#cover').hide().remove();$hb=$('#hatebook');$hbc=$('#book_content');nohate($hb,$hbc);setupImages();$('.zum_hauptgang').toggle(function(){$(this).prev().slideDown("normal",function(){$(this).next().addClass("less");});$(this).prevAll('.vorspiel').animate({opacity:0.2},"normal");},function(){$(this).prev().slideUp("fast");var targetOffset=$(this).parent().parent().offset().top-200;$('html,body').animate({scrollTop:targetOffset},100);$(this).removeClass("less");$(this).prevAll('.vorspiel').animate({opacity:1},"fast");});$('.pp_next').hover(function(){$(this).fadeTo(100,1);},function(){$(this).fadeTo(1,0.001);}).fadeTo(1,0.001);$('.pp_previous').hover(function(){$(this).fadeTo(100,1);},function(){$(this).fadeTo(1,0.001);}).fadeTo(1,0.001);});function caption_over(){$(this).children('.caption').stop().show();}
function caption_out(){$(this).children('.caption').stop().fadeOut(400);}
var MAX_DUMP_DEPTH=10;function dumpObj(obj,name,indent,depth){if(depth>MAX_DUMP_DEPTH){return indent+name+": <Maximum Depth Reached>\n";}
if(typeof obj=="object"){var child=null;var output=indent+name+"\n";indent+="\t";for(var item in obj)
{try{child=obj[item];}catch(e){child="<Unable to Evaluate>";}
if(typeof child=="object"){output+=dumpObj(child,item,indent,depth+1);}else{output+=indent+item+": "+child+"\n";}}
return output;}else{return obj;}}
function setupImages(){$("a[href$='jpg']:not([rel^='prettyPhoto']):not([rel^='keine_box'])").attr('rel',function(){return"prettyPhoto["+$(this).parents('div.Post').attr('id')+"]";});$("a[href$='jpeg']:not([rel^='prettyPhoto']):not([rel^='keine_box'])").attr('rel',function(){return"prettyPhoto["+$(this).parents('div.Post').attr('id')+"]";});$("a[href$='gif']:not([rel^='prettyPhoto']):not([rel^='keine_box'])").attr('rel',function(){return"prettyPhoto["+$(this).parents('div.Post').attr('id')+"]";});$("a[href$='png']:not([rel^='prettyPhoto']):not([rel^='keine_box'])").attr('rel',function(){return"prettyPhoto["+$(this).parents('div.Post').attr('id')+"]";});$tmp=$("a[rel^='prettyPhoto']");$tmp.prettyPhoto({theme:'light_square',showTitle:true,});}
function nohate($hb,$hbc){$hb.unbind();$hbc.unbind();$hb.hover(function(){$(this).stop().animate({paddingTop:"60px"},200);},function(){$(this).stop().animate({paddingTop:"0px"},100);});$hb.click(function(){$hb.unbind();$hbc.stop().animate({height:hb_height},{duration:300,step:function(now,fx){now=now+"px";$hb.css("bottom",now);$hb.css("margin-top","0px");$hb.css("margin-bottom","-80px");}});$hb.stop().css({backgroundPosition:"0px -250px"});$hb.stop().css("paddingTop","0px");$('embed,object').hide();dohate($hb,$hbc);});}
function dohate($hb,$hbc){$hbc.unbind();$hb.click(function(){$('embed,object').show();$hb.unbind();$hbc.stop().animate({height:"0"},{duration:200,queue:false});$hb.animate({bottom:"-87px"},{duration:200,complete:function(){nohate($hb,$hbc);}});$hb.css("margin-top","60px");$hb.css("margin-bottom","0px");$hb.css("background-position","0px -250px");});}
function balanceHeight(el){var lineHeight=parseInt($('body').css('line-height'));$el=$(el);var h=$el.outerHeight();var delta=h%lineHeight;if(delta!=0)
{if($el.is('img')||$el.is('object')){var fehler=false;var wBot=Math.floor(delta/2)+(delta%2);var wTop=Math.floor(delta/2);$par=$el.parents('div.wp-caption');if(delta<12||($par.length>0&&delta<16)){if($par.length>0){$el=$par;}
if($el.hasClass("vert_r")){fehler=true;}else{$el.addClass("vert_r");}
if(!fehler){var currentBorderBot=parseInt($el.css('border-bottom-width'));var currentBorderTop=parseInt($el.css('border-top-width'));$el.css('border-top-width',currentBorderTop-wTop+"px");$el.css('border-bottom-width',currentBorderBot-wBot+"px");}}else{var currentPaddingBot=parseInt($el.css('padding-bottom'));var currentPaddingTop=parseInt($el.css('padding-top'));$el.css('padding-top',currentPaddingTop+lineHeight-wTop+"px");$el.css('padding-bottom',currentPaddingBot+lineHeight-wBot+"px");}}else{var paddingDirection='padding-bottom';var currentPadding=parseInt($el.css(paddingDirection));$el.css(paddingDirection,currentPadding+lineHeight-delta);}}}
