/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(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)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(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 Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/**
 * Copyright (c) 2010 Anders Ekdahl (http://coffeescripter.com/)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Version: 1.2.4
 *
 * Demo and documentation: http://coffeescripter.com/code/ad-gallery/
 */
(function($) {
  $.fn.adGallery = function(options) {
    var defaults = { loader_image: 'loader.gif',
                     start_at_index: 0,
                     description_wrapper: false,
                     thumb_opacity: 0.7,
                     animate_first_image: false,
                     animation_speed: 400,
                     width: false,
                     height: false,
                     display_next_and_prev: true,
                     display_back_and_forward: true,
                     scroll_jump: 0, // If 0, it jumps the width of the container
                     slideshow: {
                       enable: true,
                       autostart: false,
                       speed: 5000,
                       start_label: 'Start',
                       stop_label: 'Stop',
                       stop_on_scroll: true,
                       countdown_prefix: '(',
                       countdown_sufix: ')',
                       onStart: false,
                       onStop: false
                     },
                     effect: 'slide-hori', // or 'slide-vert', 'fade', or 'resize', 'none'
                     enable_keyboard_move: true,
                     cycle: true,
                     callbacks: {
                       init: false,
                       afterImageVisible: false,
                       beforeImageVisible: false
                     }
    };
    var settings = $.extend(false, defaults, options);
    if(options && options.slideshow) {
      settings.slideshow = $.extend(false, defaults.slideshow, options.slideshow);
    };
    if(!settings.slideshow.enable) {
      settings.slideshow.autostart = false;
    };
    var galleries = [];
    $(this).each(function() {
      var gallery = new AdGallery(this, settings);
      galleries[galleries.length] = gallery;
    });
    // Sorry, breaking the jQuery chain because the gallery instances
    // are returned so you can fiddle with them
    return galleries;
  };

  function VerticalSlideAnimation(img_container, direction, desc) {
    var current_top = parseInt(img_container.css('top'), 10);
    if(direction == 'left') {
      var old_image_top = '-'+ this.image_wrapper_height +'px';
      img_container.css('top', this.image_wrapper_height +'px');
    } else {
      var old_image_top = this.image_wrapper_height +'px';
      img_container.css('top', '-'+ this.image_wrapper_height +'px');
    };
    if(desc) {
      desc.css('bottom', '-'+ desc[0].offsetHeight +'px');
      desc.animate({bottom: 0}, this.settings.animation_speed * 2);
    };
    if(this.current_description) {
      this.current_description.animate({bottom: '-'+ this.current_description[0].offsetHeight +'px'}, this.settings.animation_speed * 2);
    };
    return {old_image: {top: old_image_top},
            new_image: {top: current_top}};
  };

  function HorizontalSlideAnimation(img_container, direction, desc) {
    var current_left = parseInt(img_container.css('left'), 10);
    if(direction == 'left') {
      var old_image_left = '-'+ this.image_wrapper_width +'px';
      img_container.css('left',this.image_wrapper_width +'px');
    } else {
      var old_image_left = this.image_wrapper_width +'px';
      img_container.css('left','-'+ this.image_wrapper_width +'px');
    };
    if(desc) {
      desc.css('bottom', '-'+ desc[0].offsetHeight +'px');
      desc.animate({bottom: 0}, this.settings.animation_speed * 2);
    };
    if(this.current_description) {
      this.current_description.animate({bottom: '-'+ this.current_description[0].offsetHeight +'px'}, this.settings.animation_speed * 2);
    };
    return {old_image: {left: old_image_left},
            new_image: {left: current_left}};
  };

  function ResizeAnimation(img_container, direction, desc) {
    var image_width = img_container.width();
    var image_height = img_container.height();
    var current_left = parseInt(img_container.css('left'), 10);
    var current_top = parseInt(img_container.css('top'), 10);
    img_container.css({width: 0, height: 0, top: this.image_wrapper_height / 2, left: this.image_wrapper_width / 2});
    return {old_image: {width: 0,
                        height: 0,
                        top: this.image_wrapper_height / 2,
                        left: this.image_wrapper_width / 2},
            new_image: {width: image_width,
                        height: image_height,
                        top: current_top,
                        left: current_left}};
  };

  function FadeAnimation(img_container, direction, desc) {
    img_container.css('opacity', 0);
    return {old_image: {opacity: 0},
            new_image: {opacity: 1}};
  };

  // Sort of a hack, will clean this up... eventually
  function NoneAnimation(img_container, direction, desc) {
    img_container.css('opacity', 0);
    return {old_image: {opacity: 0},
            new_image: {opacity: 1},
            speed: 0};
  };

  function AdGallery(wrapper, settings) {
    this.init(wrapper, settings);
  };
  AdGallery.prototype = {
    // Elements
    wrapper: false,
    image_wrapper: false,
    gallery_info: false,
    nav: false,
    loader: false,
    preloads: false,
    thumbs_wrapper: false,
    scroll_back: false,
    scroll_forward: false,
    next_link: false,
    prev_link: false,

    slideshow: false,
    image_wrapper_width: 0,
    image_wrapper_height: 0,
    current_index: 0,
    current_image: false,
    current_description: false,
    nav_display_width: 0,
    settings: false,
    images: false,
    in_transition: false,
    animations: false,
    init: function(wrapper, settings) {
      var context = this;
      this.wrapper = $(wrapper);
      this.settings = settings;
      this.setupElements();
      this.setupAnimations();
      if(this.settings.width) {
        this.image_wrapper_width = this.settings.width;
        this.image_wrapper.width(this.settings.width);
        this.wrapper.width(this.settings.width);
      } else {
        this.image_wrapper_width = this.image_wrapper.width();
      };
      if(this.settings.height) {
        this.image_wrapper_height = this.settings.height;
        this.image_wrapper.height(this.settings.height);
      } else {
        this.image_wrapper_height = this.image_wrapper.height();
      };
      this.nav_display_width = this.nav.width();
      this.current_index = 0;
      this.current_image = false;
      this.current_description = false;
      this.in_transition = false;
      this.findImages();
      if(this.settings.display_next_and_prev) {
        this.initNextAndPrev();
      };
      // The slideshow needs a callback to trigger the next image to be shown
      // but we don't want to give it access to the whole gallery instance
      var nextimage_callback = function(callback) {
        return context.nextImage(callback);
      };
      this.slideshow = new AdGallerySlideshow(nextimage_callback, this.settings.slideshow);
      this.controls.append(this.slideshow.create());
      if(this.settings.slideshow.enable) {
        this.slideshow.enable();
      } else {
        this.slideshow.disable();
      };
      if(this.settings.display_back_and_forward) {
        this.initBackAndForward();
      };
      if(this.settings.enable_keyboard_move) {
        this.initKeyEvents();
      };
      var start_at = parseInt(this.settings.start_at_index, 10);
      if(window.location.hash && window.location.hash.indexOf('#ad-image') === 0) {
        start_at = window.location.hash.replace(/[^0-9]+/g, '');
        // Check if it's a number
        if((start_at * 1) != start_at) {
          start_at = this.settings.start_at_index;
        };
      };

      this.loading(true);
      this.showImage(start_at,
        function() {
          // We don't want to start the slideshow before the image has been
          // displayed
          if(context.settings.slideshow.autostart) {
            context.preloadImage(start_at + 1);
            context.slideshow.start();
          };
        }
      );
      this.fireCallback(this.settings.callbacks.init);
    },
    setupAnimations: function() {
      this.animations = {
        'slide-vert': VerticalSlideAnimation,
        'slide-hori': HorizontalSlideAnimation,
        'resize': ResizeAnimation,
        'fade': FadeAnimation,
        'none': NoneAnimation
      };
    },
    setupElements: function() {
      this.controls = this.wrapper.find('.ad-controls');
      this.gallery_info = $('<p class="ad-info"></p>');
      this.controls.append(this.gallery_info);
      this.image_wrapper = this.wrapper.find('.ad-image-wrapper');
      this.image_wrapper.empty();
      this.nav = this.wrapper.find('.ad-nav');
      this.thumbs_wrapper = this.nav.find('.ad-thumbs');
      this.preloads = $('<div class="ad-preloads"></div>');
      this.loader = $('<img class="ad-loader" src="'+ this.settings.loader_image +'">');
      this.image_wrapper.append(this.loader);
      this.loader.hide();
      $(document.body).append(this.preloads);
    },
    loading: function(bool) {
      if(bool) {
        this.loader.show();
      } else {
        this.loader.hide();
      };
    },
    addAnimation: function(name, fn) {
      if($.isFunction(fn)) {
        this.animations[name] = fn;
      };
    },
    findImages: function() {
      var context = this;
      this.images = [];
      var thumb_wrapper_width = 0;
      var thumbs_loaded = 0;
      var thumbs = this.thumbs_wrapper.find('a');
      var thumb_count = thumbs.length;
      if(this.settings.thumb_opacity < 1) {
        thumbs.find('img').css('opacity', this.settings.thumb_opacity);
      };
      thumbs.each(
        function(i) {
          var link = $(this);
          var image_src = link.attr('href');
          var thumb = link.find('img');
          // Check if the thumb has already loaded
          if(!context.isImageLoaded(thumb[0])) {
            thumb.load(
              function() {
                thumb_wrapper_width += this.parentNode.parentNode.offsetWidth;
                thumbs_loaded++;
              }
            );
          } else{
            thumb_wrapper_width += thumb[0].parentNode.parentNode.offsetWidth;
            thumbs_loaded++;
          };
          link.addClass('ad-thumb'+ i);
          link.click(
            function() {
              context.showImage(i);
              context.slideshow.stop();
              return false;
            }
          ).hover(
            function() {
              if(!$(this).is('.ad-active') && context.settings.thumb_opacity < 1) {
                $(this).find('img').fadeTo(300, 1);
              };
              context.preloadImage(i);
            },
            function() {
              if(!$(this).is('.ad-active') && context.settings.thumb_opacity < 1) {
                $(this).find('img').fadeTo(300, context.settings.thumb_opacity);
              };
            }
          );
          var link = false;
          if(thumb.data('ad-link')) {
            link = thumb.data('ad-link');
          } else if(thumb.attr('longdesc') && thumb.attr('longdesc').length) {
            link = thumb.attr('longdesc');
          };
          var desc = false;
          if(thumb.data('ad-desc')) {
            desc = thumb.data('ad-desc');
          } else if(thumb.attr('alt') && thumb.attr('alt').length) {
            desc = thumb.attr('alt');
          };
          var title = false;
          if(thumb.data('ad-title')) {
            title = thumb.data('ad-title');
          } else if(thumb.attr('title') && thumb.attr('title').length) {
            title = thumb.attr('title');
          };
          context.images[i] = { thumb: thumb.attr('src'), image: image_src, error: false,
                                preloaded: false, desc: desc, title: title, size: false,
                                link: link };
        }
      );
      // Wait until all thumbs are loaded, and then set the width of the ul
      var inter = setInterval(
        function() {
          if(thumb_count == thumbs_loaded) {
            thumb_wrapper_width -= 100;
            var list = context.nav.find('.ad-thumb-list');
            list.css('width', thumb_wrapper_width +'px');
            var i = 1;
            var last_height = list.height();
            while(i < 201) {
              list.css('width', (thumb_wrapper_width + i) +'px');
              if(last_height != list.height()) {
                break;
              }
              last_height = list.height();
              i++;
            }
            clearInterval(inter);
          };
        },
        100
      );
    },
    initKeyEvents: function() {
      var context = this;
      $(document).keydown(
        function(e) {
          if(e.keyCode == 39) {
            // right arrow
            context.nextImage();
            context.slideshow.stop();
          } else if(e.keyCode == 37) {
            // left arrow
            context.prevImage();
            context.slideshow.stop();
          };
        }
      );
    },
    initNextAndPrev: function() {
      this.next_link = $('<div class="ad-next"><div class="ad-next-image"></div></div>');
      this.prev_link = $('<div class="ad-prev"><div class="ad-prev-image"></div></div>');
      this.image_wrapper.append(this.next_link);
      this.image_wrapper.append(this.prev_link);
      var context = this;
      this.prev_link.add(this.next_link).mouseover(
        function(e) {
          // IE 6 hides the wrapper div, so we have to set it's width
          $(this).css('height', context.image_wrapper_height);
          $(this).find('div').show();
        }
      ).mouseout(
        function(e) {
          $(this).find('div').hide();
        }
      ).click(
        function() {
          if($(this).is('.ad-next')) {
            context.nextImage();
            context.slideshow.stop();
          } else {
            context.prevImage();
            context.slideshow.stop();
          };
        }
      ).find('div').css('opacity', 0.7);
    },
    initBackAndForward: function() {
      var context = this;
      this.scroll_forward = $('<div class="ad-forward"></div>');
      this.scroll_back = $('<div class="ad-back"></div>');
      this.nav.append(this.scroll_forward);
      this.nav.prepend(this.scroll_back);
      var has_scrolled = 0;
      var thumbs_scroll_interval = false;
      $(this.scroll_back).add(this.scroll_forward).click(
        function() {
          // We don't want to jump the whole width, since an image
          // might be cut at the edge
          var width = context.nav_display_width - 50;
          if(context.settings.scroll_jump > 0) {
            var width = context.settings.scroll_jump;
          };
          if($(this).is('.ad-forward')) {
            var left = context.thumbs_wrapper.scrollLeft() + width;
          } else {
            var left = context.thumbs_wrapper.scrollLeft() - width;
          };
          if(context.settings.slideshow.stop_on_scroll) {
            context.slideshow.stop();
          };
          context.thumbs_wrapper.animate({scrollLeft: left +'px'});
          return false;
        }
      ).css('opacity', 0.6).hover(
        function() {
          var direction = 'left';
          if($(this).is('.ad-forward')) {
            direction = 'right';
          };
          thumbs_scroll_interval = setInterval(
            function() {
              has_scrolled++;
              // Don't want to stop the slideshow just because we scrolled a pixel or two
              if(has_scrolled > 30 && context.settings.slideshow.stop_on_scroll) {
                context.slideshow.stop();
              };
              var left = context.thumbs_wrapper.scrollLeft() + 1;
              if(direction == 'left') {
                left = context.thumbs_wrapper.scrollLeft() - 1;
              };
              context.thumbs_wrapper.scrollLeft(left);
            },
            10
          );
          $(this).css('opacity', 1);
        },
        function() {
          has_scrolled = 0;
          clearInterval(thumbs_scroll_interval);
          $(this).css('opacity', 0.6);
        }
      );
    },
    _afterShow: function() {
      this.gallery_info.html((this.current_index + 1) +' / '+ this.images.length);
      if(!this.settings.cycle) {
        // Needed for IE
        this.prev_link.show().css('height', this.image_wrapper_height);
        this.next_link.show().css('height', this.image_wrapper_height);
        if(this.current_index == (this.images.length - 1)) {
          this.next_link.hide();
        };
        if(this.current_index == 0) {
          this.prev_link.hide();
        };
      };
      this.fireCallback(this.settings.callbacks.afterImageVisible);
    },
    /**
     * Checks if the image is small enough to fit inside the container
     * If it's not, shrink it proportionally
     */
    _getContainedImageSize: function(image_width, image_height) {
      if(image_height > this.image_wrapper_height) {
        var ratio = image_width / image_height;
        image_height = this.image_wrapper_height;
        image_width = this.image_wrapper_height * ratio;
      };
      if(image_width > this.image_wrapper_width) {
  	    var ratio = image_height / image_width;
  	    image_width = this.image_wrapper_width;
  	    image_height = this.image_wrapper_width * ratio;
  	  };
      return {width: image_width, height: image_height};
    },
    /**
     * If the image dimensions are smaller than the wrapper, we position
     * it in the middle anyway
     */
    _centerImage: function(img_container, image_width, image_height) {
      img_container.css('top', '0px');
      if(image_height < this.image_wrapper_height) {
        var dif = this.image_wrapper_height - image_height;
        img_container.css('top', (dif / 2) +'px');
      };
      img_container.css('left', '0px');
      if(image_width < this.image_wrapper_width) {
        var dif = this.image_wrapper_width - image_width;
        img_container.css('left', (dif / 2) +'px');
      };
    },
    _getDescription: function(image) {
      var desc = false;
      if(image.desc.length || image.title.length) {
        var title = '';
        if(image.title.length) {
          title = '<strong class="ad-description-title">'+ image.title +'</strong>';
        };
        var desc = '';
        if(image.desc.length) {
          desc = '<span>'+ image.desc +'</span>';
        };
        desc = $('<p class="ad-image-description">'+ title + desc +'</p>');
      };
      return desc;
    },
    /**
     * @param function callback Gets fired when the image has loaded, is displaying
     *                          and it's animation has finished
     */
    showImage: function(index, callback) {
      if(this.images[index] && !this.in_transition) {
        var context = this;
        var image = this.images[index];
        this.in_transition = true;
        if(!image.preloaded) {
          this.loading(true);
          this.preloadImage(index, function() {
            context.loading(false);
            context._showWhenLoaded(index, callback);
          });
        } else {
          this._showWhenLoaded(index, callback);
        };
      };
    },
    /**
     * @param function callback Gets fired when the image has loaded, is displaying
     *                          and it's animation has finished
     */
    _showWhenLoaded: function(index, callback) {
      if(this.images[index]) {
        var context = this;
        var image = this.images[index];
        var img_container = $(document.createElement('div')).addClass('ad-image');
        var img = $(new Image()).attr('src', image.image);
        if(image.link) {
          var link = $('<a href="'+ image.link +'" target="_blank"></a>');
          link.append(img);
          img_container.append(link);
        } else {
          img_container.append(img);
        }
        this.image_wrapper.prepend(img_container);
        var size = this._getContainedImageSize(image.size.width, image.size.height);
        img.attr('width', size.width);
        img.attr('height', size.height);
        img_container.css({width: size.width +'px', height: size.height +'px'});
        this._centerImage(img_container, size.width, size.height);
        var desc = this._getDescription(image, img_container);
        if(desc) {
          if(!this.settings.description_wrapper) {
            img_container.append(desc);
            var width = size.width - parseInt(desc.css('padding-left'), 10) - parseInt(desc.css('padding-right'), 10);
            desc.css('width', width +'px');
          } else {
            this.settings.description_wrapper.append(desc);
          }
        };
        this.highLightThumb(this.nav.find('.ad-thumb'+ index));

        var direction = 'right';
        if(this.current_index < index) {
          direction = 'left';
        };
        this.fireCallback(this.settings.callbacks.beforeImageVisible);
        if(this.current_image || this.settings.animate_first_image) {
          var animation_speed = this.settings.animation_speed;
          var easing = 'swing';
          var animation = this.animations[this.settings.effect].call(this, img_container, direction, desc);
          if(typeof animation.speed != 'undefined') {
            animation_speed = animation.speed;
          };
          if(typeof animation.easing != 'undefined') {
            easing = animation.easing;
          };
          if(this.current_image) {
            var old_image = this.current_image;
            var old_description = this.current_description;
            old_image.animate(animation.old_image, animation_speed, easing,
              function() {
                old_image.remove();
                if(old_description) old_description.remove();
              }
            );
          };
          img_container.animate(animation.new_image, animation_speed, easing,
            function() {
              context.current_index = index;
              context.current_image = img_container;
              context.current_description = desc;
              context.in_transition = false;
              context._afterShow();
              context.fireCallback(callback);
            }
          );
        } else {
          this.current_index = index;
          this.current_image = img_container;
          context.current_description = desc;
          this.in_transition = false;
          context._afterShow();
          this.fireCallback(callback);
        };
      };
    },
    nextIndex: function() {
      if(this.current_index == (this.images.length - 1)) {
        if(!this.settings.cycle) {
          return false;
        };
        var next = 0;
      } else {
        var next = this.current_index + 1;
      };
      return next;
    },
    nextImage: function(callback) {
      var next = this.nextIndex();
      if(next === false) return false;
      this.preloadImage(next + 1);
      this.showImage(next, callback);
      return true;
    },
    prevIndex: function() {
      if(this.current_index == 0) {
        if(!this.settings.cycle) {
          return false;
        };
        var prev = this.images.length - 1;
      } else {
        var prev = this.current_index - 1;
      };
      return prev;
    },
    prevImage: function(callback) {
      var prev = this.prevIndex();
      if(prev === false) return false;
      this.preloadImage(prev - 1);
      this.showImage(prev, callback);
      return true;
    },
    preloadAll: function() {
      var context = this;
      var i = 0;
      function preloadNext() {
        if(i < context.images.length) {
          i++;
          context.preloadImage(i, preloadNext);
        };
      };
      context.preloadImage(i, preloadNext);
    },
    preloadImage: function(index, callback) {
      if(this.images[index]) {
        var image = this.images[index];
        if(!this.images[index].preloaded) {
          var img = $(new Image());
          img.attr('src', image.image);
          if(!this.isImageLoaded(img[0])) {
            this.preloads.append(img);
            var context = this;
            img.load(
              function() {
                image.preloaded = true;
                image.size = { width: this.width, height: this.height };
                context.fireCallback(callback);
              }
            ).error(
              function() {
                image.error = true;
                image.preloaded = false;
                image.size = false;
              }
            );
          } else {
            image.preloaded = true;
            image.size = { width: img[0].width, height: img[0].height };
            this.fireCallback(callback);
          };
        } else {
          this.fireCallback(callback);
        };
      };
    },
    isImageLoaded: function(img) {
      if(typeof img.complete != 'undefined' && !img.complete) {
        return false;
      };
      if(typeof img.naturalWidth != 'undefined' && img.naturalWidth == 0) {
        return false;
      };
      return true;
    },
    highLightThumb: function(thumb) {
      this.thumbs_wrapper.find('.ad-active').removeClass('ad-active');
      thumb.addClass('ad-active');
      if(this.settings.thumb_opacity < 1) {
        this.thumbs_wrapper.find('a:not(.ad-active) img').fadeTo(300, this.settings.thumb_opacity);
        thumb.find('img').fadeTo(300, 1);
      };
      var left = thumb[0].parentNode.offsetLeft;
      left -= (this.nav_display_width / 2) - (thumb[0].offsetWidth / 2);
      this.thumbs_wrapper.animate({scrollLeft: left +'px'});
    },
    fireCallback: function(fn) {
      if($.isFunction(fn)) {
        fn.call(this);
      };
    }
  };

  function AdGallerySlideshow(nextimage_callback, settings) {
    this.init(nextimage_callback, settings);
  };
  AdGallerySlideshow.prototype = {
    start_link: false,
    stop_link: false,
    countdown: false,
    controls: false,

    settings: false,
    nextimage_callback: false,
    enabled: false,
    running: false,
    countdown_interval: false,
    init: function(nextimage_callback, settings) {
      var context = this;
      this.nextimage_callback = nextimage_callback;
      this.settings = settings;
    },
    create: function() {
      this.start_link = $('<span class="ad-slideshow-start">'+ this.settings.start_label +'</span>');
      this.stop_link = $('<span class="ad-slideshow-stop">'+ this.settings.stop_label +'</span>');
      this.countdown = $('<span class="ad-slideshow-countdown"></span>');
      this.controls = $('<div class="ad-slideshow-controls"></div>');
      this.controls.append(this.start_link).append(this.stop_link).append(this.countdown);
      this.countdown.hide();

      var context = this;
      this.start_link.click(
        function() {
          context.start();
        }
      );
      this.stop_link.click(
        function() {
          context.stop();
        }
      );
      $(document).keydown(
        function(e) {
          if(e.keyCode == 83) {
            // 's'
            if(context.running) {
              context.stop();
            } else {
              context.start();
            };
          };
        }
      );
      return this.controls;
    },
    disable: function() {
      this.enabled = false;
      this.stop();
      this.controls.hide();
    },
    enable: function() {
      this.enabled = true;
      this.controls.show();
    },
    toggle: function() {
      if(this.enabled) {
        this.disable();
      } else {
        this.enable();
      };
    },
    start: function() {
      if(this.running || !this.enabled) return false;
      var context = this;
      this.running = true;
      this.controls.addClass('ad-slideshow-running');
      this._next();
      this.fireCallback(this.settings.onStart);
      return true;
    },
    stop: function() {
      if(!this.running) return false;
      this.running = false;
      this.countdown.hide();
      this.controls.removeClass('ad-slideshow-running');
      clearInterval(this.countdown_interval);
      this.fireCallback(this.settings.onStop);
      return true;
    },
    _next: function() {
      var context = this;
      var pre = this.settings.countdown_prefix;
      var su = this.settings.countdown_sufix;
      clearInterval(context.countdown_interval);
      this.countdown.show().html(pre + (this.settings.speed / 1000) + su);
      var slide_timer = 0;
      this.countdown_interval = setInterval(
        function() {
          slide_timer += 1000;
          if(slide_timer >= context.settings.speed) {
            var whenNextIsShown = function() {
              // A check so the user hasn't stoped the slideshow during the
              // animation
              if(context.running) {
                context._next();
              };
              slide_timer = 0;
            };
            if(!context.nextimage_callback(whenNextIsShown)) {
              context.stop();
            };
            slide_timer = 0;
          };
          var sec = parseInt(context.countdown.text().replace(/[^0-9]/g, ''), 10);
          sec--;
          if(sec > 0) {
            context.countdown.html(pre + sec + su);
          };
        },
        1000
      );
    },
    fireCallback: function(fn) {
      if($.isFunction(fn)) {
        fn.call(this);
      };
    }
  };
})(jQuery);;
Drupal.behaviors.ad_gallery = function() {
var galleries = $('.ad-gallery').adGallery();
    $('#switch-effect').change(
      function() {
        galleries[0].settings.effect = $(this).val();
        return false;
      }
    );
    $('#toggle-slideshow').click(
      function() {
        galleries[0].slideshow.toggle();
        return false;
      }
    );
    $('#toggle-description').click(
      function() {
        if(!galleries[0].settings.description_wrapper) {
          galleries[0].settings.description_wrapper = $('#descriptions');
        } else {
          galleries[0].settings.description_wrapper = false;
        }
        return false;
      }
    );
  };
 
  ;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

;(function(b){var m,t,u,f,D,j,E,n,z,A,q=0,e={},o=[],p=0,d={},l=[],G=null,v=new Image,J=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,W=/[^\.]\.(swf)\s*$/i,K,L=1,y=0,s="",r,i,h=false,B=b.extend(b("<div/>")[0],{prop:0}),M=b.browser.msie&&b.browser.version<7&&!window.XMLHttpRequest,N=function(){t.hide();v.onerror=v.onload=null;G&&G.abort();m.empty()},O=function(){if(false===e.onError(o,q,e)){t.hide();h=false}else{e.titleShow=false;e.width="auto";e.height="auto";m.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>');
F()}},I=function(){var a=o[q],c,g,k,C,P,w;N();e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));w=e.onStart(o,q,e);if(w===false)h=false;else{if(typeof w=="object")e=b.extend(e,w);k=e.title||(a.nodeName?b(a).attr("title"):a.title)||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(k===""&&e.orig&&e.titleFromAlt)k=e.orig.attr("alt");c=e.href||(a.nodeName?b(a).attr("href"):a.href)||null;if(/^(?:javascript)/i.test(c)||
c=="#")c=null;if(e.type){g=e.type;if(!c)c=e.content}else if(e.content)g="html";else if(c)g=c.match(J)?"image":c.match(W)?"swf":b(a).hasClass("iframe")?"iframe":c.indexOf("#")===0?"inline":"ajax";if(g){if(g=="inline"){a=c.substr(c.indexOf("#"));g=b(a).length>0?"inline":"ajax"}e.type=g;e.href=c;e.title=k;if(e.autoDimensions)if(e.type=="html"||e.type=="inline"||e.type=="ajax"){e.width="auto";e.height="auto"}else e.autoDimensions=false;if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=
false;e.enableEscapeButton=false;e.showCloseButton=false}e.padding=parseInt(e.padding,10);e.margin=parseInt(e.margin,10);m.css("padding",e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(j.children())});switch(g){case "html":m.html(e.content);F();break;case "inline":if(b(a).parent().is("#fancybox-content")===true){h=false;break}b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(j.children())}).bind("fancybox-cancel",
function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();v=new Image;v.onerror=function(){O()};v.onload=function(){h=true;v.onerror=v.onload=null;e.width=v.width;e.height=v.height;b("<img />").attr({id:"fancybox-img",src:v.src,alt:e.title}).appendTo(m);Q()};v.src=c;break;case "swf":e.scrolling="no";C='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+c+
'"></param>';P="";b.each(e.swf,function(x,H){C+='<param name="'+x+'" value="'+H+'"></param>';P+=" "+x+'="'+H+'"'});C+='<embed src="'+c+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+P+"></embed></object>";m.html(C);F();break;case "ajax":h=false;b.fancybox.showActivity();e.ajax.win=e.ajax.success;G=b.ajax(b.extend({},e.ajax,{url:c,data:e.ajax.data||{},error:function(x){x.status>0&&O()},success:function(x,H,R){if((typeof R=="object"?R:G).status==200){if(typeof e.ajax.win==
"function"){w=e.ajax.win(c,x,H,R);if(w===false){t.hide();return}else if(typeof w=="string"||typeof w=="object")x=w}m.html(x);F()}}}));break;case "iframe":Q()}}else O()}},F=function(){var a=e.width,c=e.height;a=a.toString().indexOf("%")>-1?parseInt((b(window).width()-e.margin*2)*parseFloat(a)/100,10)+"px":a=="auto"?"auto":a+"px";c=c.toString().indexOf("%")>-1?parseInt((b(window).height()-e.margin*2)*parseFloat(c)/100,10)+"px":c=="auto"?"auto":c+"px";m.wrapInner('<div style="width:'+a+";height:"+c+
";overflow: "+(e.scrolling=="auto"?"auto":e.scrolling=="yes"?"scroll":"hidden")+';position:relative;"></div>');e.width=m.width();e.height=m.height();Q()},Q=function(){var a,c;t.hide();if(f.is(":visible")&&false===d.onCleanup(l,p,d)){b.event.trigger("fancybox-cancel");h=false}else{h=true;b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");f.is(":visible")&&d.titlePosition!=="outside"&&f.css("height",f.height());l=o;p=q;d=e;if(d.overlayShow){u.css({"background-color":d.overlayColor,
opacity:d.overlayOpacity,cursor:d.hideOnOverlayClick?"pointer":"auto",height:b(document).height()});if(!u.is(":visible")){M&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});u.show()}}else u.hide();i=X();s=d.title||"";y=0;n.empty().removeAttr("style").removeClass();if(d.titleShow!==false){if(b.isFunction(d.titleFormat))a=d.titleFormat(s,l,p,d);else a=s&&s.length?
d.titlePosition=="float"?'<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">'+s+'</td><td id="fancybox-title-float-right"></td></tr></table>':'<div id="fancybox-title-'+d.titlePosition+'">'+s+"</div>":false;s=a;if(!(!s||s==="")){n.addClass("fancybox-title-"+d.titlePosition).html(s).appendTo("body").show();switch(d.titlePosition){case "inside":n.css({width:i.width-d.padding*2,marginLeft:d.padding,marginRight:d.padding});
y=n.outerHeight(true);n.appendTo(D);i.height+=y;break;case "over":n.css({marginLeft:d.padding,width:i.width-d.padding*2,bottom:d.padding}).appendTo(D);break;case "float":n.css("left",parseInt((n.width()-i.width-40)/2,10)*-1).appendTo(f);break;default:n.css({width:i.width-d.padding*2,paddingLeft:d.padding,paddingRight:d.padding}).appendTo(f)}}}n.hide();if(f.is(":visible")){b(E.add(z).add(A)).hide();a=f.position();r={top:a.top,left:a.left,width:f.width(),height:f.height()};c=r.width==i.width&&r.height==
i.height;j.fadeTo(d.changeFade,0.3,function(){var g=function(){j.html(m.contents()).fadeTo(d.changeFade,1,S)};b.event.trigger("fancybox-change");j.empty().removeAttr("filter").css({"border-width":d.padding,width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2});if(c)g();else{B.prop=0;b(B).animate({prop:1},{duration:d.changeSpeed,easing:d.easingChange,step:T,complete:g})}})}else{f.removeAttr("style");j.css("border-width",d.padding);if(d.transitionIn=="elastic"){r=V();j.html(m.contents());
f.show();if(d.opacity)i.opacity=0;B.prop=0;b(B).animate({prop:1},{duration:d.speedIn,easing:d.easingIn,step:T,complete:S})}else{d.titlePosition=="inside"&&y>0&&n.show();j.css({width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2}).html(m.contents());f.css(i).fadeIn(d.transitionIn=="none"?0:d.speedIn,S)}}}},Y=function(){if(d.enableEscapeButton||d.enableKeyboardNav)b(document).bind("keydown.fb",function(a){if(a.keyCode==27&&d.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if((a.keyCode==
37||a.keyCode==39)&&d.enableKeyboardNav&&a.target.tagName!=="INPUT"&&a.target.tagName!=="TEXTAREA"&&a.target.tagName!=="SELECT"){a.preventDefault();b.fancybox[a.keyCode==37?"prev":"next"]()}});if(d.showNavArrows){if(d.cyclic&&l.length>1||p!==0)z.show();if(d.cyclic&&l.length>1||p!=l.length-1)A.show()}else{z.hide();A.hide()}},S=function(){if(!b.support.opacity){j.get(0).style.removeAttribute("filter");f.get(0).style.removeAttribute("filter")}e.autoDimensions&&j.css("height","auto");f.css("height","auto");
s&&s.length&&n.show();d.showCloseButton&&E.show();Y();d.hideOnContentClick&&j.bind("click",b.fancybox.close);d.hideOnOverlayClick&&u.bind("click",b.fancybox.close);b(window).bind("resize.fb",b.fancybox.resize);d.centerOnScroll&&b(window).bind("scroll.fb",b.fancybox.center);if(d.type=="iframe")b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(b.browser.msie?'allowtransparency="true""':"")+' scrolling="'+e.scrolling+'" src="'+d.href+'"></iframe>').appendTo(j);
f.show();h=false;b.fancybox.center();d.onComplete(l,p,d);var a,c;if(l.length-1>p){a=l[p+1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}if(p>0){a=l[p-1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}},T=function(a){var c={width:parseInt(r.width+(i.width-r.width)*a,10),height:parseInt(r.height+(i.height-r.height)*a,10),top:parseInt(r.top+(i.top-r.top)*a,10),left:parseInt(r.left+(i.left-r.left)*a,10)};if(typeof i.opacity!=="undefined")c.opacity=a<0.5?0.5:a;f.css(c);
j.css({width:c.width-d.padding*2,height:c.height-y*a-d.padding*2})},U=function(){return[b(window).width()-d.margin*2,b(window).height()-d.margin*2,b(document).scrollLeft()+d.margin,b(document).scrollTop()+d.margin]},X=function(){var a=U(),c={},g=d.autoScale,k=d.padding*2;c.width=d.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(d.width)/100,10):d.width+k;c.height=d.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(d.height)/100,10):d.height+k;if(g&&(c.width>a[0]||c.height>a[1]))if(e.type==
"image"||e.type=="swf"){g=d.width/d.height;if(c.width>a[0]){c.width=a[0];c.height=parseInt((c.width-k)/g+k,10)}if(c.height>a[1]){c.height=a[1];c.width=parseInt((c.height-k)*g+k,10)}}else{c.width=Math.min(c.width,a[0]);c.height=Math.min(c.height,a[1])}c.top=parseInt(Math.max(a[3]-20,a[3]+(a[1]-c.height-40)*0.5),10);c.left=parseInt(Math.max(a[2]-20,a[2]+(a[0]-c.width-40)*0.5),10);return c},V=function(){var a=e.orig?b(e.orig):false,c={};if(a&&a.length){c=a.offset();c.top+=parseInt(a.css("paddingTop"),
10)||0;c.left+=parseInt(a.css("paddingLeft"),10)||0;c.top+=parseInt(a.css("border-top-width"),10)||0;c.left+=parseInt(a.css("border-left-width"),10)||0;c.width=a.width();c.height=a.height();c={width:c.width+d.padding*2,height:c.height+d.padding*2,top:c.top-d.padding-20,left:c.left-d.padding-20}}else{a=U();c={width:d.padding*2,height:d.padding*2,top:parseInt(a[3]+a[1]*0.5,10),left:parseInt(a[2]+a[0]*0.5,10)}}return c},Z=function(){if(t.is(":visible")){b("div",t).css("top",L*-40+"px");L=(L+1)%12}else clearInterval(K)};
b.fn.fancybox=function(a){if(!b(this).length)return this;b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(c){c.preventDefault();if(!h){h=true;b(this).blur();o=[];q=0;c=b(this).attr("rel")||"";if(!c||c==""||c==="nofollow")o.push(this);else{o=b("a[rel="+c+"], area[rel="+c+"]");q=o.index(this)}I()}});return this};b.fancybox=function(a,c){var g;if(!h){h=true;g=typeof c!=="undefined"?c:{};o=[];q=parseInt(g.index,10)||0;if(b.isArray(a)){for(var k=
0,C=a.length;k<C;k++)if(typeof a[k]=="object")b(a[k]).data("fancybox",b.extend({},g,a[k]));else a[k]=b({}).data("fancybox",b.extend({content:a[k]},g));o=jQuery.merge(o,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},g,a));else a=b({}).data("fancybox",b.extend({content:a},g));o.push(a)}if(q>o.length||q<0)q=0;I()}};b.fancybox.showActivity=function(){clearInterval(K);t.show();K=setInterval(Z,66)};b.fancybox.hideActivity=function(){t.hide()};b.fancybox.next=function(){return b.fancybox.pos(p+
1)};b.fancybox.prev=function(){return b.fancybox.pos(p-1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a);o=l;if(a>-1&&a<l.length){q=a;I()}else if(d.cyclic&&l.length>1){q=a>=l.length?0:l.length-1;I()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");N();e.onCancel(o,q,e);h=false}};b.fancybox.close=function(){function a(){u.fadeOut("fast");n.empty().hide();f.hide();b.event.trigger("fancybox-cleanup");j.empty();d.onClosed(l,p,d);l=e=[];p=q=0;d=e={};h=false}if(!(h||f.is(":hidden"))){h=
true;if(d&&false===d.onCleanup(l,p,d))h=false;else{N();b(E.add(z).add(A)).hide();b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");j.find("iframe").attr("src",M&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank");d.titlePosition!=="inside"&&n.empty();f.stop();if(d.transitionOut=="elastic"){r=V();var c=f.position();i={top:c.top,left:c.left,width:f.width(),height:f.height()};if(d.opacity)i.opacity=1;n.empty().hide();B.prop=1;
b(B).animate({prop:0},{duration:d.speedOut,easing:d.easingOut,step:T,complete:a})}else f.fadeOut(d.transitionOut=="none"?0:d.speedOut,a)}}};b.fancybox.resize=function(){u.is(":visible")&&u.css("height",b(document).height());b.fancybox.center(true)};b.fancybox.center=function(a){var c,g;if(!h){g=a===true?1:0;c=U();!g&&(f.width()>c[0]||f.height()>c[1])||f.stop().animate({top:parseInt(Math.max(c[3]-20,c[3]+(c[1]-j.height()-40)*0.5-d.padding)),left:parseInt(Math.max(c[2]-20,c[2]+(c[0]-j.width()-40)*0.5-
d.padding))},typeof a=="number"?a:200)}};b.fancybox.init=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),t=b('<div id="fancybox-loading"><div></div></div>'),u=b('<div id="fancybox-overlay"></div>'),f=b('<div id="fancybox-wrap"></div>'));D=b('<div id="fancybox-outer"></div>').append('<div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div>').appendTo(f);
D.append(j=b('<div id="fancybox-content"></div>'),E=b('<a id="fancybox-close"></a>'),n=b('<div id="fancybox-title"></div>'),z=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),A=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));E.click(b.fancybox.close);t.click(b.fancybox.cancel);z.click(function(a){a.preventDefault();b.fancybox.prev()});A.click(function(a){a.preventDefault();b.fancybox.next()});
b.fn.mousewheel&&f.bind("mousewheel.fb",function(a,c){if(h)a.preventDefault();else if(b(a.target).get(0).clientHeight==0||b(a.target).get(0).scrollHeight===b(a.target).get(0).clientHeight){a.preventDefault();b.fancybox[c>0?"prev":"next"]()}});b.support.opacity||f.addClass("fancybox-ie");if(M){t.addClass("fancybox-ie6");f.addClass("fancybox-ie6");b('<iframe id="fancybox-hide-sel-frame" src="'+(/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank")+'" scrolling="no" border="0" frameborder="0" tabindex="-1"></iframe>').prependTo(D)}}};
b.fn.fancybox.defaults={padding:10,margin:40,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.7,overlayColor:"#777",titleShow:true,titlePosition:"float",titleFormat:null,titleFromAlt:false,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",
easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,enableKeyboardNav:true,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}};b(document).ready(function(){b.fancybox.init()})})(jQuery);;
;(function($){
	$(function() {
		if(Drupal.settings.fancyboxFilter) {
			if(Drupal.settings.fancyboxFilter.settings && Drupal.settings.fancyboxFilter.selectors) {
				var settings = Drupal.settings.fancyboxFilter.settings;
				// Convert to proper var types
				for(var namespace in settings) {
					if(namespace == 'margin' || namespace == 'padding') settings[namespace] = parseInt(settings[namespace]);
					if(namespace == 'overlay_opacity') settings[namespace] = parseFloat(settings[namespace]);
					if(settings[namespace] == 0 || settings[namespace] == 1) settings[namespace] = settings[namespace]?true:false;
				}
				// Begin all methods with a filter trigger
				$(Drupal.settings.fancyboxFilter.selectors.join(', ')).fancybox(settings);
			}
			// Create any fancybox full sizers
			var $fancyFulls = $('.fancybox-full');
			if($fancyFulls.length) {
				var settings = Drupal.settings.fancyboxFilter.settings;
				$.extend(settings, {autoScale:false,centerOnScroll:true, onComplete:function(){
					// Just in case the window is larger than the browser window
					$.fancybox.resize();
				}});
				$fancyFulls.fancybox(settings);
			}
			// Create fancybox for a video
			var $fancyboxVideos = $('.fancybox-video');
			if($fancyboxVideos.length) {
				$fancyboxVideos.each(function() {
					var objURL = new Object();
					$(this).attr('href').replace(new RegExp("([^?=&]+)(=([^&]*))?", "g"), function($0,$1,$2,$3){
						if($3) objURL[ $1 ] = $3;
					});
					var settings = Drupal.settings.fancyboxFilter.settings;
					$.extend(settings, {
						padding : 0,
						autoScale	: false,
						transitionIn : 'none',
						transitionOut : 'none',
						title : this.title,
						width : objURL.width,
						height : objURL.height,
						href : $(this).attr('href')+'&autostart=true&screencolor=000000&controlbar=over',
						type : 'swf',
						swf : { wmode : 'transparent', allowfullscreen : 'true'}
					});
					$(this).fancybox(settings);
				});
			}
		}
	});
}(jQuery));;
if(typeof jwplayer=="undefined"){var jwplayer=function(a){if(jwplayer.api){return jwplayer.api.selectPlayer(a)}};var $jw=jwplayer;jwplayer.version="5.6.1768";(function(b){b.utils=function(){};b.utils.typeOf=function(d){var c=typeof d;if(c==="object"){if(d){if(d instanceof Array){c="array"}}else{c="null"}}return c};b.utils.extend=function(){var c=b.utils.extend["arguments"];if(c.length>1){for(var e=1;e<c.length;e++){for(var d in c[e]){c[0][d]=c[e][d]}}return c[0]}return null};b.utils.clone=function(f){var c;var d=b.utils.clone["arguments"];if(d.length==1){switch(b.utils.typeOf(d[0])){case"object":c={};for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;case"array":c=[];for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;default:return d[0];break}}return c};b.utils.extension=function(c){c=c.substring(c.lastIndexOf("/")+1,c.length);c=c.split("?")[0];if(c.lastIndexOf(".")>-1){return c.substr(c.lastIndexOf(".")+1,c.length).toLowerCase()}return};b.utils.html=function(c,d){c.innerHTML=d};b.utils.wrap=function(c,d){c.parentNode.replaceChild(d,c);d.appendChild(c)};b.utils.ajax=function(g,f,c){var e;if(window.XMLHttpRequest){e=new XMLHttpRequest()}else{e=new ActiveXObject("Microsoft.XMLHTTP")}e.onreadystatechange=function(){if(e.readyState===4){if(e.status===200){if(f){f(e)}}else{if(c){c(g)}}}};try{e.open("GET",g,true);e.send(null)}catch(d){if(c){c(g)}}return e};b.utils.load=function(d,e,c){d.onreadystatechange=function(){if(d.readyState===4){if(d.status===200){if(e){e()}}else{if(c){c()}}}}};b.utils.find=function(d,c){return d.getElementsByTagName(c)};b.utils.append=function(c,d){c.appendChild(d)};b.utils.isIE=function(){return((!+"\v1")||(typeof window.ActiveXObject!="undefined"))};b.utils.isLegacyAndroid=function(){var c=navigator.userAgent.toLowerCase();return(c.match(/android 2.[012]/i)!==null)};b.utils.isIOS=function(){var c=navigator.userAgent.toLowerCase();return(c.match(/iP(hone|ad)/i)!==null)};b.utils.getFirstPlaylistItemFromConfig=function(c){var d={};var e;if(c.playlist&&c.playlist.length){e=c.playlist[0]}else{e=c}d.file=e.file;d.levels=e.levels;d.streamer=e.streamer;d.playlistfile=e.playlistfile;d.provider=e.provider;if(!d.provider){if(d.file&&(d.file.toLowerCase().indexOf("youtube.com")>-1||d.file.toLowerCase().indexOf("youtu.be")>-1)){d.provider="youtube"}if(d.streamer&&d.streamer.toLowerCase().indexOf("rtmp://")==0){d.provider="rtmp"}if(e.type){d.provider=e.type.toLowerCase()}}return d};b.utils.getOuterHTML=function(d){if(d.outerHTML){return d.outerHTML}else{var e=d.parentNode;var c=document.createElement(e.tagName);var g=document.createElement(d.tagName);e.replaceChild(g,d);c.appendChild(d);var f=c.innerHTML;e.replaceChild(d,g);return f}};b.utils.setOuterHTML=function(f,e){if(f.outerHTML){f.outerHTML=e}else{var g=document.createElement("div");g.innerHTML=e;var c=document.createRange();c.selectNodeContents(g);var d=c.extractContents();f.parentNode.insertBefore(d,f);f.parentNode.removeChild(f)}};b.utils.hasFlash=function(){if(typeof navigator.plugins!="undefined"&&typeof navigator.plugins["Shockwave Flash"]!="undefined"){return true}if(typeof window.ActiveXObject!="undefined"){try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash");return true}catch(c){}}return false};b.utils.getPluginName=function(c){if(c.lastIndexOf("/")>=0){c=c.substring(c.lastIndexOf("/")+1,c.length)}if(c.lastIndexOf("-")>=0){c=c.substring(0,c.lastIndexOf("-"))}if(c.lastIndexOf(".swf")>=0){c=c.substring(0,c.lastIndexOf(".swf"))}if(c.lastIndexOf(".js")>=0){c=c.substring(0,c.lastIndexOf(".js"))}return c};b.utils.getPluginVersion=function(c){if(c.lastIndexOf("-")>=0){if(c.lastIndexOf(".js")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".js"))}else{if(c.lastIndexOf(".swf")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".swf"))}else{return c.substring(c.lastIndexOf("-")+1)}}}return""};b.utils.getAbsolutePath=function(j,h){if(h===undefined){h=document.location.href}if(j===undefined){return undefined}if(a(j)){return j}var k=h.substring(0,h.indexOf("://")+3);var g=h.substring(k.length,h.indexOf("/",k.length+1));var d;if(j.indexOf("/")===0){d=j.split("/")}else{var e=h.split("?")[0];e=e.substring(k.length+g.length+1,e.lastIndexOf("/"));d=e.split("/").concat(j.split("/"))}var c=[];for(var f=0;f<d.length;f++){if(!d[f]||d[f]===undefined||d[f]=="."){continue}else{if(d[f]==".."){c.pop()}else{c.push(d[f])}}}return k+g+"/"+c.join("/")};function a(d){if(d===null){return}var e=d.indexOf("://");var c=d.indexOf("?");return(e>0&&(c<0||(c>e)))}b.utils.pluginPathType={ABSOLUTE:"ABSOLUTE",RELATIVE:"RELATIVE",CDN:"CDN"};b.utils.getPluginPathType=function(d){if(typeof d!="string"){return}d=d.split("?")[0];var e=d.indexOf("://");if(e>0){return b.utils.pluginPathType.ABSOLUTE}var c=d.indexOf("/");var f=b.utils.extension(d);if(e<0&&c<0&&(!f||!isNaN(f))){return b.utils.pluginPathType.CDN}return b.utils.pluginPathType.RELATIVE};b.utils.mapEmpty=function(c){for(var d in c){return false}return true};b.utils.mapLength=function(d){var c=0;for(var e in d){c++}return c};b.utils.log=function(d,c){if(typeof console!="undefined"&&typeof console.log!="undefined"){if(c){console.log(d,c)}else{console.log(d)}}};b.utils.css=function(d,g,c){if(d!==undefined){for(var e in g){try{if(typeof g[e]==="undefined"){continue}else{if(typeof g[e]=="number"&&!(e=="zIndex"||e=="opacity")){if(isNaN(g[e])){continue}if(e.match(/color/i)){g[e]="#"+b.utils.strings.pad(g[e].toString(16),6)}else{g[e]=Math.ceil(g[e])+"px"}}}d.style[e]=g[e]}catch(f){}}}};b.utils.isYouTube=function(c){return(c.indexOf("youtube.com")>-1||c.indexOf("youtu.be")>-1)};b.utils.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d};b.utils.stretch=function(h,m,l,f,k,g){if(typeof l=="undefined"||typeof f=="undefined"||typeof k=="undefined"||typeof g=="undefined"){return}var d=l/k;var e=f/g;var j=0;var i=0;m.style.overflow="hidden";b.utils.transform(m,"");var c={};switch(h.toUpperCase()){case b.utils.stretching.NONE:c.width=k;c.height=g;break;case b.utils.stretching.UNIFORM:if(d>e){c.width=k*e;c.height=g*e}else{c.width=k*d;c.height=g*d}break;case b.utils.stretching.FILL:if(d>e){c.width=k*d;c.height=g*d}else{c.width=k*e;c.height=g*e}break;case b.utils.stretching.EXACTFIT:b.utils.transform(m,["scale(",d,",",e,")"," translate(0px,0px)"].join(""));c.width=k;c.height=g;break;default:break}c.top=(f-c.height)/2;c.left=(l-c.width)/2;b.utils.css(m,c)};b.utils.stretching={NONE:"NONE",FILL:"FILL",UNIFORM:"UNIFORM",EXACTFIT:"EXACTFIT"};b.utils.deepReplaceKeyName=function(h,e,c){switch(b.utils.typeOf(h)){case"array":for(var g=0;g<h.length;g++){h[g]=b.utils.deepReplaceKeyName(h[g],e,c)}break;case"object":for(var f in h){var d=f.replace(new RegExp(e,"g"),c);h[d]=b.utils.deepReplaceKeyName(h[f],e,c);if(f!=d){delete h[f]}}break}return h};b.utils.isInArray=function(e,d){if(!(e)||!(e instanceof Array)){return false}for(var c=0;c<e.length;c++){if(d===e[c]){return true}}return false}})(jwplayer);(function(a){a.events=function(){};a.events.COMPLETE="COMPLETE";a.events.ERROR="ERROR"})(jwplayer);(function(jwplayer){jwplayer.events.eventdispatcher=function(debug){var _debug=debug;var _listeners;var _globallisteners;this.resetEventListeners=function(){_listeners={};_globallisteners=[]};this.resetEventListeners();this.addEventListener=function(type,listener,count){try{if(_listeners[type]===undefined){_listeners[type]=[]}if(typeof(listener)=="string"){eval("listener = "+listener)}_listeners[type].push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeEventListener=function(type,listener){try{for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){if(_listeners[type][lisenterIndex].toString()==listener.toString()){_listeners[type].slice(lisenterIndex,lisenterIndex+1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.addGlobalListener=function(listener,count){try{if(typeof(listener)=="string"){eval("listener = "+listener)}_globallisteners.push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeGlobalListener=function(listener){try{for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){if(_globallisteners[globalListenerIndex].toString()==listener.toString()){_globallisteners.slice(globalListenerIndex,globalListenerIndex+1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.sendEvent=function(type,data){if(data===undefined){data={}}if(_debug){jwplayer.utils.log(type,data)}if(typeof _listeners[type]!="undefined"){for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){try{_listeners[type][listenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_listeners[type][listenerIndex].listener)}if(_listeners[type][listenerIndex]){if(_listeners[type][listenerIndex].count===1){delete _listeners[type][listenerIndex]}else{if(_listeners[type][listenerIndex].count>0){_listeners[type][listenerIndex].count=_listeners[type][listenerIndex].count-1}}}}}for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){try{_globallisteners[globalListenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_globallisteners[globalListenerIndex].listener)}if(_globallisteners[globalListenerIndex]){if(_globallisteners[globalListenerIndex].count===1){delete _globallisteners[globalListenerIndex]}else{if(_globallisteners[globalListenerIndex].count>0){_globallisteners[globalListenerIndex].count=_globallisteners[globalListenerIndex].count-1}}}}}}})(jwplayer);(function(a){var b={};a.utils.animations=function(){};a.utils.animations.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d;c.style.msTransform=d};a.utils.animations.transformOrigin=function(c,d){c.style.webkitTransformOrigin=d;c.style.MozTransformOrigin=d;c.style.OTransformOrigin=d;c.style.msTransformOrigin=d};a.utils.animations.rotate=function(c,d){a.utils.animations.transform(c,["rotate(",d,"deg)"].join(""))};a.utils.cancelAnimation=function(c){delete b[c.id]};a.utils.fadeTo=function(l,f,e,i,h,d){if(b[l.id]!=d&&d!==undefined){return}var c=new Date().getTime();if(d>c){setTimeout(function(){a.utils.fadeTo(l,f,e,i,0,d)},d-c)}l.style.display="block";if(i===undefined){i=l.style.opacity===""?1:l.style.opacity}if(l.style.opacity==f&&l.style.opacity!==""&&d!==undefined){if(f===0){l.style.display="none"}return}if(d===undefined){d=c;b[l.id]=d}if(h===undefined){h=0}var j=(c-d)/(e*1000);j=j>1?1:j;var k=f-i;var g=i+(j*k);if(g>1){g=1}else{if(g<0){g=0}}l.style.opacity=g;if(h>0){b[l.id]=d+h*1000;a.utils.fadeTo(l,f,e,i,0,b[l.id]);return}setTimeout(function(){a.utils.fadeTo(l,f,e,i,0,d)},10)}})(jwplayer);(function(a){a.utils.arrays=function(){};a.utils.arrays.indexOf=function(c,d){for(var b=0;b<c.length;b++){if(c[b]==d){return b}}return -1};a.utils.arrays.remove=function(c,d){var b=a.utils.arrays.indexOf(c,d);if(b>-1){c.splice(b,1)}}})(jwplayer);(function(a){a.utils.extensionmap={"3gp":{html5:"video/3gpp",flash:"video"},"3gpp":{html5:"video/3gpp"},"3g2":{html5:"video/3gpp2",flash:"video"},"3gpp2":{html5:"video/3gpp2"},flv:{flash:"video"},f4a:{html5:"audio/mp4"},f4b:{html5:"audio/mp4",flash:"video"},f4v:{html5:"video/mp4",flash:"video"},mov:{html5:"video/quicktime",flash:"video"},m4a:{html5:"audio/mp4",flash:"video"},m4b:{html5:"audio/mp4"},m4p:{html5:"audio/mp4"},m4v:{html5:"video/mp4",flash:"video"},mp4:{html5:"video/mp4",flash:"video"},rbs:{flash:"sound"},aac:{html5:"audio/aac",flash:"video"},mp3:{html5:"audio/mp3",flash:"sound"},ogg:{html5:"audio/ogg"},ogv:{html5:"video/ogg"},webm:{html5:"video/webm"},m3u8:{html5:"audio/x-mpegurl"},gif:{flash:"image"},jpeg:{flash:"image"},jpg:{flash:"image"},swf:{flash:"image"},png:{flash:"image"},wav:{html5:"audio/x-wav"}}})(jwplayer);(function(e){e.utils.mediaparser=function(){};var g={element:{width:"width",height:"height",id:"id","class":"className",name:"name"},media:{src:"file",preload:"preload",autoplay:"autostart",loop:"repeat",controls:"controls"},source:{src:"file",type:"type",media:"media","data-jw-width":"width","data-jw-bitrate":"bitrate"},video:{poster:"image"}};var f={};e.utils.mediaparser.parseMedia=function(i){return d(i)};function c(j,i){if(i===undefined){i=g[j]}else{e.utils.extend(i,g[j])}return i}function d(m,i){if(f[m.tagName.toLowerCase()]&&(i===undefined)){return f[m.tagName.toLowerCase()](m)}else{i=c("element",i);var n={};for(var j in i){if(j!="length"){var l=m.getAttribute(j);if(!(l===""||l===undefined||l===null)){n[i[j]]=m.getAttribute(j)}}}var k=m.style["#background-color"];if(k&&!(k=="transparent"||k=="rgba(0, 0, 0, 0)")){n.screencolor=k}return n}}function h(n,k){k=c("media",k);var l=[];var j=e.utils.selectors("source",n);for(var m in j){if(!isNaN(m)){l.push(a(j[m]))}}var o=d(n,k);if(o.file!==undefined){l[0]={file:o.file}}o.levels=l;return o}function a(k,j){j=c("source",j);var i=d(k,j);i.width=i.width?i.width:0;i.bitrate=i.bitrate?i.bitrate:0;return i}function b(k,j){j=c("video",j);var i=h(k,j);return i}f.media=h;f.audio=h;f.source=a;f.video=b})(jwplayer);(function(a){a.utils.loaderstatus={NEW:"NEW",LOADING:"LOADING",ERROR:"ERROR",COMPLETE:"COMPLETE"};a.utils.scriptloader=function(c){var d=a.utils.loaderstatus.NEW;var b=new a.events.eventdispatcher();a.utils.extend(this,b);this.load=function(){if(d==a.utils.loaderstatus.NEW){d=a.utils.loaderstatus.LOADING;var e=document.createElement("script");e.onload=function(f){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)};e.onerror=function(f){d=a.utils.loaderstatus.ERROR;b.sendEvent(a.events.ERROR)};e.onreadystatechange=function(){if(e.readyState=="loaded"||e.readyState=="complete"){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)}};document.getElementsByTagName("head")[0].appendChild(e);e.src=c}};this.getStatus=function(){return d}}})(jwplayer);(function(a){a.utils.selectors=function(b,d){if(d===undefined){d=document}b=a.utils.strings.trim(b);var c=b.charAt(0);if(c=="#"){return d.getElementById(b.substr(1))}else{if(c=="."){if(d.getElementsByClassName){return d.getElementsByClassName(b.substr(1))}else{return a.utils.selectors.getElementsByTagAndClass("*",b.substr(1))}}else{if(b.indexOf(".")>0){selectors=b.split(".");return a.utils.selectors.getElementsByTagAndClass(selectors[0],selectors[1])}else{return d.getElementsByTagName(b)}}}return null};a.utils.selectors.getElementsByTagAndClass=function(e,h,g){elements=[];if(g===undefined){g=document}var f=g.getElementsByTagName(e);for(var d=0;d<f.length;d++){if(f[d].className!==undefined){var c=f[d].className.split(" ");for(var b=0;b<c.length;b++){if(c[b]==h){elements.push(f[d])}}}}return elements}})(jwplayer);(function(a){a.utils.strings=function(){};a.utils.strings.trim=function(b){return b.replace(/^\s*/,"").replace(/\s*$/,"")};a.utils.strings.pad=function(c,d,b){if(!b){b="0"}while(c.length<d){c=b+c}return c};a.utils.strings.serialize=function(b){if(b==null){return null}else{if(b=="true"){return true}else{if(b=="false"){return false}else{if(isNaN(Number(b))||b.length>5||b.length==0){return b}else{return Number(b)}}}}};a.utils.strings.seconds=function(d){d=d.replace(",",".");var b=d.split(":");var c=0;if(d.substr(-1)=="s"){c=Number(d.substr(0,d.length-1))}else{if(d.substr(-1)=="m"){c=Number(d.substr(0,d.length-1))*60}else{if(d.substr(-1)=="h"){c=Number(d.substr(0,d.length-1))*3600}else{if(b.length>1){c=Number(b[b.length-1]);c+=Number(b[b.length-2])*60;if(b.length==3){c+=Number(b[b.length-3])*3600}}else{c=Number(d)}}}}return c};a.utils.strings.xmlAttribute=function(b,c){for(var d in b.attributes){if(b.attributes[d].name&&b.attributes[d].name.toLowerCase()==c.toLowerCase()){return b.attributes[d].value.toString()}}return""};a.utils.strings.jsonToString=function(f){var h=h||{};if(h&&h.stringify){return h.stringify(f)}var c=typeof(f);if(c!="object"||f===null){if(c=="string"){f='"'+f+'"'}else{return String(f)}}else{var g=[],b=(f&&f.constructor==Array);for(var d in f){var e=f[d];switch(typeof(e)){case"string":e='"'+e+'"';break;case"object":if(e!==null){e=a.utils.strings.jsonToString(e)}break}if(b){if(typeof(e)!="function"){g.push(String(e))}}else{if(typeof(e)!="function"){g.push('"'+d+'":'+String(e))}}}if(b){return"["+String(g)+"]"}else{return"{"+String(g)+"}"}}}})(jwplayer);(function(c){var d=new RegExp(/^(#|0x)[0-9a-fA-F]{3,6}/);c.utils.typechecker=function(g,f){f=f===null?b(g):f;return e(g,f)};function b(f){var g=["true","false","t","f"];if(g.toString().indexOf(f.toLowerCase().replace(" ",""))>=0){return"boolean"}else{if(d.test(f)){return"color"}else{if(!isNaN(parseInt(f,10))&&parseInt(f,10).toString().length==f.length){return"integer"}else{if(!isNaN(parseFloat(f))&&parseFloat(f).toString().length==f.length){return"float"}}}}return"string"}function e(g,f){if(f===null){return g}switch(f){case"color":if(g.length>0){return a(g)}return null;case"integer":return parseInt(g,10);case"float":return parseFloat(g);case"boolean":if(g.toLowerCase()=="true"){return true}else{if(g=="1"){return true}}return false}return g}function a(f){switch(f.toLowerCase()){case"blue":return parseInt("0000FF",16);case"green":return parseInt("00FF00",16);case"red":return parseInt("FF0000",16);case"cyan":return parseInt("00FFFF",16);case"magenta":return parseInt("FF00FF",16);case"yellow":return parseInt("FFFF00",16);case"black":return parseInt("000000",16);case"white":return parseInt("FFFFFF",16);default:f=f.replace(/(#|0x)?([0-9A-F]{3,6})$/gi,"$2");if(f.length==3){f=f.charAt(0)+f.charAt(0)+f.charAt(1)+f.charAt(1)+f.charAt(2)+f.charAt(2)}return parseInt(f,16)}return parseInt("000000",16)}})(jwplayer);(function(a){var c={};var b={};a.plugins=function(){};a.plugins.loadPlugins=function(e,d){b[e]=new a.plugins.pluginloader(new a.plugins.model(c),d);return b[e]};a.plugins.registerPlugin=function(h,f,e){var d=a.utils.getPluginName(h);if(c[d]){c[d].registerPlugin(h,f,e)}else{a.utils.log("A plugin ("+h+") was registered with the player that was not loaded. Please check your configuration.");for(var g in b){b[g].pluginFailed()}}}})(jwplayer);(function(a){a.plugins.model=function(b){this.addPlugin=function(c){var d=a.utils.getPluginName(c);if(!b[d]){b[d]=new a.plugins.plugin(c)}return b[d]}}})(jwplayer);(function(a){a.plugins.pluginmodes={FLASH:"FLASH",JAVASCRIPT:"JAVASCRIPT",HYBRID:"HYBRID"};a.plugins.plugin=function(b){var d="http://plugins.longtailvideo.com";var i=a.utils.loaderstatus.NEW;var j;var h;var k;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function e(){switch(a.utils.getPluginPathType(b)){case a.utils.pluginPathType.ABSOLUTE:return b;case a.utils.pluginPathType.RELATIVE:return a.utils.getAbsolutePath(b,window.location.href);case a.utils.pluginPathType.CDN:var m=a.utils.getPluginName(b);var l=a.utils.getPluginVersion(b);return d+"/"+a.version.split(".")[0]+"/"+m+"/"+m+(l!==""?("-"+l):"")+".js"}}function g(l){k=setTimeout(function(){i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)},1000)}function f(l){i=a.utils.loaderstatus.ERROR;c.sendEvent(a.events.ERROR)}this.load=function(){if(i==a.utils.loaderstatus.NEW){if(b.lastIndexOf(".swf")>0){j=b;i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE);return}i=a.utils.loaderstatus.LOADING;var l=new a.utils.scriptloader(e());l.addEventListener(a.events.COMPLETE,g);l.addEventListener(a.events.ERROR,f);l.load()}};this.registerPlugin=function(n,m,l){if(k){clearTimeout(k);k=undefined}if(m&&l){j=l;h=m}else{if(typeof m=="string"){j=m}else{if(typeof m=="function"){h=m}else{if(!m&&!l){j=n}}}}i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)};this.getStatus=function(){return i};this.getPluginName=function(){return a.utils.getPluginName(b)};this.getFlashPath=function(){if(j){switch(a.utils.getPluginPathType(j)){case a.utils.pluginPathType.ABSOLUTE:return j;case a.utils.pluginPathType.RELATIVE:if(b.lastIndexOf(".swf")>0){return a.utils.getAbsolutePath(j,window.location.href)}return a.utils.getAbsolutePath(j,e());case a.utils.pluginPathType.CDN:if(j.indexOf("-")>-1){return j+"h"}return j+"-h"}}return null};this.getJS=function(){return h};this.getPluginmode=function(){if(typeof j!="undefined"&&typeof h!="undefined"){return a.plugins.pluginmodes.HYBRID}else{if(typeof j!="undefined"){return a.plugins.pluginmodes.FLASH}else{if(typeof h!="undefined"){return a.plugins.pluginmodes.JAVASCRIPT}}}};this.getNewInstance=function(m,l,n){return new h(m,l,n)};this.getURL=function(){return b}}})(jwplayer);(function(a){a.plugins.pluginloader=function(h,e){var g={};var j=a.utils.loaderstatus.NEW;var d=false;var b=false;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function f(){if(!b){b=true;j=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)}}function i(){if(!b){var l=0;for(plugin in g){var k=g[plugin].getStatus();if(k==a.utils.loaderstatus.LOADING||k==a.utils.loaderstatus.NEW){l++}}if(l==0){f()}}}this.setupPlugins=function(m,k,r){var l={length:0,plugins:{}};var o={length:0,plugins:{}};for(var n in g){var p=g[n].getPluginName();if(g[n].getFlashPath()){l.plugins[g[n].getFlashPath()]=k.plugins[n];l.plugins[g[n].getFlashPath()].pluginmode=g[n].getPluginmode();l.length++}if(g[n].getJS()){var q=document.createElement("div");q.id=m.id+"_"+p;q.style.position="absolute";q.style.zIndex=o.length+10;o.plugins[p]=g[n].getNewInstance(m,k.plugins[n],q);o.length++;if(typeof o.plugins[p].resize!="undefined"){m.onReady(r(o.plugins[p],q,true));m.onResize(r(o.plugins[p],q))}}}m.plugins=o.plugins;return l};this.load=function(){j=a.utils.loaderstatus.LOADING;d=true;for(var k in e){g[k]=h.addPlugin(k);g[k].addEventListener(a.events.COMPLETE,i);g[k].addEventListener(a.events.ERROR,i)}for(k in e){g[k].load()}d=false;i()};this.pluginFailed=function(){f()};this.getStatus=function(){return j}}})(jwplayer);(function(b){var a=[];b.api=function(d){this.container=d;this.id=d.id;var l={};var p={};var c=[];var h=undefined;var k=false;var i=[];var n=b.utils.getOuterHTML(d);var o={};var j={};this.getBuffer=function(){return this.callInternal("jwGetBuffer")};this.getContainer=function(){return this.container};function e(q){return function(v,r,s,t){var u;if(r){j[v]=r;u="jwplayer('"+q+"').callback('"+v+"')"}else{if(!r&&j[v]){delete j[v]}}h.jwDockSetButton(v,u,s,t)}}this.getPlugin=function(r){var q=this.callInternal;if(r=="dock"){return{setButton:e(this.id),show:function(){return q("jwShowDock")},hide:function(){return q("jwHideDock")}}}else{if(r=="controlbar"){return{show:function(){return q("jwShowControlbar")},hide:function(){return q("jwHideControlbar")}}}else{if(r=="display"){return{show:function(){return q("jwShowDisplay")},hide:function(){return q("jwHideDisplay")}}}}}return this.plugins[r]};this.callback=function(q){if(j[q]){return j[q]()}};this.getDuration=function(){return this.callInternal("jwGetDuration")};this.getFullscreen=function(){return this.callInternal("jwGetFullscreen")};this.getHeight=function(){return this.callInternal("jwGetHeight")};this.getLockState=function(){return this.callInternal("jwGetLockState")};this.getMeta=function(){return this.getItemMeta()};this.getMute=function(){return this.callInternal("jwGetMute")};this.getPlaylist=function(){var r=this.callInternal("jwGetPlaylist");if(this.renderingMode=="flash"){b.utils.deepReplaceKeyName(r,"__dot__",".")}for(var q=0;q<r.length;q++){if(r[q].index===undefined){r[q].index=q}}return r};this.getPlaylistItem=function(q){if(q===undefined){q=this.getCurrentItem()}return this.getPlaylist()[q]};this.getPosition=function(){return this.callInternal("jwGetPosition")};this.getRenderingMode=function(){return this.renderingMode};this.getState=function(){return this.callInternal("jwGetState")};this.getVolume=function(){return this.callInternal("jwGetVolume")};this.getWidth=function(){return this.callInternal("jwGetWidth")};this.setFullscreen=function(q){if(q===undefined){this.callInternal("jwSetFullscreen",!this.callInternal("jwGetFullscreen"))}else{this.callInternal("jwSetFullscreen",q)}return this};this.setMute=function(q){if(q===undefined){this.callInternal("jwSetMute",!this.callInternal("jwGetMute"))}else{this.callInternal("jwSetMute",q)}return this};this.lock=function(){return this};this.unlock=function(){return this};this.load=function(q){this.callInternal("jwLoad",q);return this};this.playlistItem=function(q){this.callInternal("jwPlaylistItem",q);return this};this.playlistPrev=function(){this.callInternal("jwPlaylistPrev");return this};this.playlistNext=function(){this.callInternal("jwPlaylistNext");return this};this.resize=function(r,q){if(this.renderingMode=="html5"){h.jwResize(r,q)}else{this.container.width=r;this.container.height=q}return this};this.play=function(q){if(typeof q=="undefined"){q=this.getState();if(q==b.api.events.state.PLAYING||q==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPlay",q)}return this};this.pause=function(q){if(typeof q=="undefined"){q=this.getState();if(q==b.api.events.state.PLAYING||q==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPause",q)}return this};this.stop=function(){this.callInternal("jwStop");return this};this.seek=function(q){this.callInternal("jwSeek",q);return this};this.setVolume=function(q){this.callInternal("jwSetVolume",q);return this};this.onBufferChange=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER,q)};this.onBufferFull=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,q)};this.onError=function(q){return this.eventListener(b.api.events.JWPLAYER_ERROR,q)};this.onFullscreen=function(q){return this.eventListener(b.api.events.JWPLAYER_FULLSCREEN,q)};this.onMeta=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_META,q)};this.onMute=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_MUTE,q)};this.onPlaylist=function(q){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_LOADED,q)};this.onPlaylistItem=function(q){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,q)};this.onReady=function(q){return this.eventListener(b.api.events.API_READY,q)};this.onResize=function(q){return this.eventListener(b.api.events.JWPLAYER_RESIZE,q)};this.onComplete=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,q)};this.onSeek=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_SEEK,q)};this.onTime=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_TIME,q)};this.onVolume=function(q){return this.eventListener(b.api.events.JWPLAYER_MEDIA_VOLUME,q)};this.onBuffer=function(q){return this.stateListener(b.api.events.state.BUFFERING,q)};this.onPause=function(q){return this.stateListener(b.api.events.state.PAUSED,q)};this.onPlay=function(q){return this.stateListener(b.api.events.state.PLAYING,q)};this.onIdle=function(q){return this.stateListener(b.api.events.state.IDLE,q)};this.remove=function(){l={};i=[];if(b.utils.getOuterHTML(this.container)!=n){b.api.destroyPlayer(this.id,n)}};this.setup=function(r){if(b.embed){var q=this.id;this.remove();var s=b(q);s.config=r;return new b.embed(s)}return this};this.registerPlugin=function(s,r,q){b.plugins.registerPlugin(s,r,q)};this.setPlayer=function(q,r){h=q;this.renderingMode=r};this.stateListener=function(q,r){if(!p[q]){p[q]=[];this.eventListener(b.api.events.JWPLAYER_PLAYER_STATE,g(q))}p[q].push(r);return this};function g(q){return function(s){var r=s.newstate,u=s.oldstate;if(r==q){var t=p[r];if(t){for(var v=0;v<t.length;v++){if(typeof t[v]=="function"){t[v].call(this,{oldstate:u,newstate:r})}}}}}}this.addInternalListener=function(q,r){q.jwAddEventListener(r,'function(dat) { jwplayer("'+this.id+'").dispatchEvent("'+r+'", dat); }')};this.eventListener=function(q,r){if(!l[q]){l[q]=[];if(h&&k){this.addInternalListener(h,q)}}l[q].push(r);return this};this.dispatchEvent=function(s){if(l[s]){var r=f(s,arguments[1]);for(var q=0;q<l[s].length;q++){if(typeof l[s][q]=="function"){l[s][q].call(this,r)}}}};function f(s,q){var u=b.utils.extend({},q);if(s==b.api.events.JWPLAYER_FULLSCREEN&&!u.fullscreen){u.fullscreen=u.message=="true"?true:false;delete u.message}else{if(typeof u.data=="object"){u=b.utils.extend(u,u.data);delete u.data}}var r=["position","duration","offset"];for(var t in r){if(u[r[t]]){u[r[t]]=Math.round(u[r[t]]*1000)/1000}}return u}this.callInternal=function(r,q){if(k){if(typeof h!="undefined"&&typeof h[r]=="function"){if(q!==undefined){return(h[r])(q)}else{return(h[r])()}}return null}else{i.push({method:r,parameters:q})}};this.playerReady=function(s){k=true;if(!h){this.setPlayer(document.getElementById(s.id))}this.container=document.getElementById(this.id);for(var q in l){this.addInternalListener(h,q)}this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,function(t){o={}});this.eventListener(b.api.events.JWPLAYER_MEDIA_META,function(t){b.utils.extend(o,t.metadata)});this.dispatchEvent(b.api.events.API_READY);while(i.length>0){var r=i.shift();this.callInternal(r.method,r.parameters)}};this.getItemMeta=function(){return o};this.getCurrentItem=function(){return this.callInternal("jwGetPlaylistIndex")};function m(s,u,t){var q=[];if(!u){u=0}if(!t){t=s.length-1}for(var r=u;r<=t;r++){q.push(s[r])}return q}return this};b.api.selectPlayer=function(d){var c;if(d===undefined){d=0}if(d.nodeType){c=d}else{if(typeof d=="string"){c=document.getElementById(d)}}if(c){var e=b.api.playerById(c.id);if(e){return e}else{return b.api.addPlayer(new b.api(c))}}else{if(typeof d=="number"){return b.getPlayers()[d]}}return null};b.api.events={API_READY:"jwplayerAPIReady",JWPLAYER_READY:"jwplayerReady",JWPLAYER_FULLSCREEN:"jwplayerFullscreen",JWPLAYER_RESIZE:"jwplayerResize",JWPLAYER_ERROR:"jwplayerError",JWPLAYER_MEDIA_BUFFER:"jwplayerMediaBuffer",JWPLAYER_MEDIA_BUFFER_FULL:"jwplayerMediaBufferFull",JWPLAYER_MEDIA_ERROR:"jwplayerMediaError",JWPLAYER_MEDIA_LOADED:"jwplayerMediaLoaded",JWPLAYER_MEDIA_COMPLETE:"jwplayerMediaComplete",JWPLAYER_MEDIA_SEEK:"jwplayerMediaSeek",JWPLAYER_MEDIA_TIME:"jwplayerMediaTime",JWPLAYER_MEDIA_VOLUME:"jwplayerMediaVolume",JWPLAYER_MEDIA_META:"jwplayerMediaMeta",JWPLAYER_MEDIA_MUTE:"jwplayerMediaMute",JWPLAYER_PLAYER_STATE:"jwplayerPlayerState",JWPLAYER_PLAYLIST_LOADED:"jwplayerPlaylistLoaded",JWPLAYER_PLAYLIST_ITEM:"jwplayerPlaylistItem"};b.api.events.state={BUFFERING:"BUFFERING",IDLE:"IDLE",PAUSED:"PAUSED",PLAYING:"PLAYING"};b.api.playerById=function(d){for(var c=0;c<a.length;c++){if(a[c].id==d){return a[c]}}return null};b.api.addPlayer=function(c){for(var d=0;d<a.length;d++){if(a[d]==c){return c}}a.push(c);return c};b.api.destroyPlayer=function(g,d){var f=-1;for(var i=0;i<a.length;i++){if(a[i].id==g){f=i;continue}}if(f>=0){var c=document.getElementById(a[f].id);if(document.getElementById(a[f].id+"_wrapper")){c=document.getElementById(a[f].id+"_wrapper")}if(c){if(d){b.utils.setOuterHTML(c,d)}else{var h=document.createElement("div");var e=c.id;if(c.id.indexOf("_wrapper")==c.id.length-8){newID=c.id.substring(0,c.id.length-8)}h.setAttribute("id",e);c.parentNode.replaceChild(h,c)}}a.splice(f,1)}return null};b.getPlayers=function(){return a.slice(0)}})(jwplayer);var _userPlayerReady=(typeof playerReady=="function")?playerReady:undefined;playerReady=function(b){var a=jwplayer.api.playerById(b.id);if(a){a.playerReady(b)}if(_userPlayerReady){_userPlayerReady.call(this,b)}};(function(a){a.embed=function(g){var i={width:400,height:300,components:{controlbar:{position:"over"}}};var f=a.utils.mediaparser.parseMedia(g.container);var e=new a.embed.config(a.utils.extend(i,f,g.config),this);var h=a.plugins.loadPlugins(g.id,e.plugins);function c(l,k){for(var j in k){if(typeof l[j]=="function"){(l[j]).call(l,k[j])}}}function d(){if(h.getStatus()==a.utils.loaderstatus.COMPLETE){for(var l=0;l<e.modes.length;l++){if(e.modes[l].type&&a.embed[e.modes[l].type]){var j=e;if(e.modes[l].config){j=a.utils.extend(a.utils.clone(e),e.modes[l].config)}var k=new a.embed[e.modes[l].type](document.getElementById(g.id),e.modes[l],j,h,g);if(k.supportsConfig()){k.embed();c(g,e.events);return g}}}a.utils.log("No suitable players found");new a.embed.logo(a.utils.extend({hide:true},e.components.logo),"none",g.id)}}h.addEventListener(a.events.COMPLETE,d);h.addEventListener(a.events.ERROR,d);h.load();return g};function b(){if(!document.body){return setTimeout(b,15)}var c=a.utils.selectors.getElementsByTagAndClass("video","jwplayer");for(var d=0;d<c.length;d++){var e=c[d];a(e.id).setup({})}}b()})(jwplayer);(function(a){function c(){return[{type:"flash",src:"/jwplayer/player.swf"},{type:"html5"},{type:"download"}]}function e(l){var k=l.toLowerCase();var j=["left","right","top","bottom"];for(var i=0;i<j.length;i++){if(k==j[i]){return true}}return false}function d(j){var i=false;i=(j instanceof Array)||(typeof j=="object"&&!j.position&&!j.size);return i}function h(i){if(typeof i=="string"){if(parseInt(i).toString()==i||i.toLowerCase().indexOf("px")>-1){return parseInt(i)}}return i}var f=["playlist","dock","controlbar","logo"];function g(j){var m={};switch(a.utils.typeOf(j.plugins)){case"object":for(var l in j.plugins){m[a.utils.getPluginName(l)]=l}break;case"string":var n=j.plugins.split(",");for(var k=0;k<n.length;k++){m[a.utils.getPluginName(n[k])]=n[k]}break}return m}function b(m,l,k,i){if(a.utils.typeOf(m[l])!="object"){m[l]={}}var j=m[l][k];if(a.utils.typeOf(j)!="object"){m[l][k]=j={}}if(l=="plugins"){var n=a.utils.getPluginName(k);j[i]=m[n+"."+i];delete m[n+"."+i]}else{j[i]=m[k+"."+i];delete m[k+"."+i]}}a.embed.deserialize=function(i){var j=g(i);for(var m in i){if(m.indexOf(".")>-1){var l=m.split(".");var k=l[0];var m=l[1];if(a.utils.isInArray(f,k)){b(i,"components",k,m)}else{if(j[k]){b(i,"plugins",j[k],m)}}}}return i};a.embed.config=function(i,q){var p=a.utils.extend({},i);var n;if(d(p.playlist)){n=p.playlist;delete p.playlist}p=a.embed.deserialize(p);p.height=h(p.height);p.width=h(p.width);if(typeof p.plugins=="string"){var j=p.plugins.split(",");if(typeof p.plugins!="object"){p.plugins={}}for(var l=0;l<j.length;l++){var m=a.utils.getPluginName(j[l]);if(typeof p[m]=="object"){p.plugins[j[l]]=p[m];delete p[m]}else{p.plugins[j[l]]={}}}}for(var o=0;o<f.length;o++){if(typeof p[f[o]]=="string"){if(!p.components[f[o]]){p.components[f[o]]={}}if(f[o]=="logo"){p.components[f[o]].file=p[f[o]]}else{p.components[f[o]].position=p[f[o]]}delete p[f[o]]}else{if(typeof p[f[o]]!="undefined"){if(!p.components[f[o]]){p.components[f[o]]={}}a.utils.extend(p.components[f[o]],p[f[o]]);delete p[f[o]]}}if(typeof p[f[o]+"size"]!="undefined"){if(!p.components[f[o]]){p.components[f[o]]={}}p.components[f[o]].size=p[f[o]+"size"];delete p[f[o]+"size"]}}if(typeof p.icons!="undefined"){if(!p.components.display){p.components.display={}}p.components.display.icons=p.icons;delete p.icons}if(p.players){p.modes=p.players;delete p.players}var k;if(p.flashplayer&&!p.modes){k=c();k[0].src=p.flashplayer;delete p.flashplayer}else{if(p.modes){if(typeof p.modes=="string"){k=c();k[0].src=p.modes}else{if(p.modes instanceof Array){k=p.modes}else{if(typeof p.modes=="object"&&p.modes.type){k=[p.modes]}}}delete p.modes}else{k=c()}}p.modes=k;if(n){p.playlist=n}return p}})(jwplayer);(function(a){a.embed.download=function(c,g,b,d,f){this.embed=function(){var j=a.utils.extend({},b);var p={};var i=b.width?b.width:480;if(typeof i!="number"){i=parseInt(i,10)}var l=b.height?b.height:320;if(typeof l!="number"){l=parseInt(l,10)}var t,n,m;var r={};if(b.playlist&&b.playlist.length){r.file=b.playlist[0].file;n=b.playlist[0].image;r.levels=b.playlist[0].levels}else{r.file=b.file;n=b.image;r.levels=b.levels}if(r.file){t=r.file}else{if(r.levels&&r.levels.length){t=r.levels[0].file}}m=t?"pointer":"auto";var k={display:{style:{cursor:m,width:i,height:l,backgroundColor:"#000",position:"relative",textDecoration:"none",border:"none",display:"block"}},display_icon:{style:{cursor:m,position:"absolute",display:t?"block":"none",top:0,left:0,border:0,margin:0,padding:0,zIndex:3,width:50,height:50,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg==)"}},display_iconBackground:{style:{cursor:m,position:"absolute",display:t?"block":"none",top:((l-50)/2),left:((i-50)/2),border:0,width:50,height:50,margin:0,padding:0,zIndex:2,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC)"}},display_image:{style:{width:i,height:l,display:n?"block":"none",position:"absolute",cursor:m,left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1,border:"none"}}};var h=function(u,w,x){var v=document.createElement(u);if(x){v.id=x}else{v.id=c.id+"_jwplayer_"+w}a.utils.css(v,k[w].style);return v};p.display=h("a","display",c.id);if(t){p.display.setAttribute("href",a.utils.getAbsolutePath(t))}p.display_image=h("img","display_image");p.display_image.setAttribute("alt","Click to download...");if(n){p.display_image.setAttribute("src",a.utils.getAbsolutePath(n))}if(true){p.display_icon=h("div","display_icon");p.display_iconBackground=h("div","display_iconBackground");p.display.appendChild(p.display_image);p.display_iconBackground.appendChild(p.display_icon);p.display.appendChild(p.display_iconBackground)}_css=a.utils.css;_hide=function(u){_css(u,{display:"none"})};function q(u){_imageWidth=p.display_image.naturalWidth;_imageHeight=p.display_image.naturalHeight;s()}function s(){a.utils.stretch(a.utils.stretching.UNIFORM,p.display_image,i,l,_imageWidth,_imageHeight)}p.display_image.onerror=function(u){_hide(p.display_image)};p.display_image.onload=q;c.parentNode.replaceChild(p.display,c);var o=(b.plugins&&b.plugins.logo)?b.plugins.logo:{};p.display.appendChild(new a.embed.logo(b.components.logo,"download",c.id));f.container=document.getElementById(f.id);f.setPlayer(p.display,"download")};this.supportsConfig=function(){if(b){var j=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof j.file=="undefined"&&typeof j.levels=="undefined"){return true}else{if(j.file){return e(j.file,j.provider,j.playlistfile)}else{if(j.levels&&j.levels.length){for(var h=0;h<j.levels.length;h++){if(j.levels[h].file&&e(j.levels[h].file,j.provider,j.playlistfile)){return true}}}}}}else{return true}};function e(i,k,h){if(h){return false}var j=["image","sound","youtube","http"];if(k&&(j.toString().indexOf(k)>-1)){return true}if(!k||(k&&k=="video")){var l=a.utils.extension(i);if(l&&a.utils.extensionmap[l]){return true}}return false}}})(jwplayer);(function(a){a.embed.flash=function(f,g,k,e,i){function l(n,m,o){var p=document.createElement("param");p.setAttribute("name",m);p.setAttribute("value",o);n.appendChild(p)}function j(n,o,m){return function(p){if(m){document.getElementById(i.id+"_wrapper").appendChild(o)}var r=document.getElementById(i.id).getPluginConfig("display");n.resize(r.width,r.height);var q={left:r.x,top:r.y};a.utils.css(o,q)}}function d(o){if(!o){return{}}var q={};for(var n in o){var m=o[n];for(var p in m){q[n+"."+p]=m[p]}}return q}function h(p,o){if(p[o]){var r=p[o];for(var n in r){var m=r[n];if(typeof m=="string"){if(!p[n]){p[n]=m}}else{for(var q in m){if(!p[n+"."+q]){p[n+"."+q]=m[q]}}}}delete p[o]}}function b(p){if(!p){return{}}var s={},r=[];for(var m in p){var o=a.utils.getPluginName(m);var n=p[m];r.push(m);for(var q in n){s[o+"."+q]=n[q]}}s.plugins=r.join(",");return s}function c(o){var m=o.netstreambasepath?"":"netstreambasepath="+encodeURIComponent(window.location.href)+"&";for(var n in o){if(typeof(o[n])=="object"){m+=n+"="+encodeURIComponent("[[JSON]]"+a.utils.strings.jsonToString(o[n]))+"&"}else{m+=n+"="+encodeURIComponent(o[n])+"&"}}return m.substring(0,m.length-1)}this.embed=function(){k.id=i.id;var x;var p=a.utils.extend({},k);var m=p.width;var v=p.height;if(f.id+"_wrapper"==f.parentNode.id){x=document.getElementById(f.id+"_wrapper")}else{x=document.createElement("div");x.id=f.id+"_wrapper";a.utils.wrap(f,x);a.utils.css(x,{position:"relative",width:m,height:v})}var n=e.setupPlugins(i,p,j);if(n.length>0){a.utils.extend(p,b(n.plugins))}else{delete p.plugins}var q=["height","width","modes","events"];for(var t=0;t<q.length;t++){delete p[q[t]]}var o="opaque";if(p.wmode){o=p.wmode}h(p,"components");h(p,"providers");if(typeof p["dock.position"]!="undefined"){if(p["dock.position"].toString().toLowerCase()=="false"){p.dock=p["dock.position"];delete p["dock.position"]}}var w="#000000";var s;if(a.utils.isIE()){var u='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" bgcolor="'+w+'" width="100%" height="100%" id="'+f.id+'" name="'+f.id+'" tabindex=0"">';u+='<param name="movie" value="'+g.src+'">';u+='<param name="allowfullscreen" value="true">';u+='<param name="allowscriptaccess" value="always">';u+='<param name="seamlesstabbing" value="true">';u+='<param name="wmode" value="'+o+'">';u+='<param name="flashvars" value="'+c(p)+'">';u+="</object>";a.utils.setOuterHTML(f,u);s=document.getElementById(f.id)}else{var r=document.createElement("object");r.setAttribute("type","application/x-shockwave-flash");r.setAttribute("data",g.src);r.setAttribute("width","100%");r.setAttribute("height","100%");r.setAttribute("bgcolor","#000000");r.setAttribute("id",f.id);r.setAttribute("name",f.id);r.setAttribute("tabindex",0);l(r,"allowfullscreen","true");l(r,"allowscriptaccess","always");l(r,"seamlesstabbing","true");l(r,"wmode",o);l(r,"flashvars",c(p));f.parentNode.replaceChild(r,f);s=r}i.container=s;i.setPlayer(s,"flash")};this.supportsConfig=function(){if(a.utils.hasFlash()){if(k){var n=a.utils.getFirstPlaylistItemFromConfig(k);if(typeof n.file=="undefined"&&typeof n.levels=="undefined"){return true}else{if(n.file){return flashCanPlay(n.file,n.provider)}else{if(n.levels&&n.levels.length){for(var m=0;m<n.levels.length;m++){if(n.levels[m].file&&flashCanPlay(n.levels[m].file,n.provider)){return true}}}}}}else{return true}}return false};flashCanPlay=function(m,o){var n=["video","http","sound","image"];if(o&&(n.toString().indexOf(o<0))){return true}var p=a.utils.extension(m);if(!p){return true}if(a.utils.extensionmap[p]!==undefined&&a.utils.extensionmap[p].flash===undefined){return false}return true}}})(jwplayer);(function(a){a.embed.html5=function(c,g,b,d,f){function e(i,j,h){return function(k){var l=document.getElementById(c.id+"_displayarea");if(h){l.appendChild(j)}var m=l.style;i.resize(parseInt(m.width.replace("px","")),parseInt(m.height.replace("px","")));j.left=m.left;j.top=m.top}}this.embed=function(){if(a.html5){d.setupPlugins(f,b,e);c.innerHTML="";var j=a.utils.extend({screencolor:"0x000000"},b);var h=["plugins","modes","events"];for(var k=0;k<h.length;k++){delete j[h[k]]}if(j.levels&&!j.sources){j.sources=b.levels}if(j.skin&&j.skin.toLowerCase().indexOf(".zip")>0){j.skin=j.skin.replace(/\.zip/i,".xml")}var l=new (a.html5(c)).setup(j);f.container=document.getElementById(f.id);f.setPlayer(l,"html5")}else{return null}};this.supportsConfig=function(){var h=document.createElement("video");if(!!h.canPlayType){if(b){var k=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof k.file=="undefined"&&typeof k.levels=="undefined"){return true}else{if(k.file){return html5CanPlay(h,k.file,k.provider,k.playlistfile)}else{if(k.levels&&k.levels.length){for(var j=0;j<k.levels.length;j++){if(k.levels[j].file&&html5CanPlay(h,k.levels[j].file,k.provider,k.playlistfile)){return true}}}}}}else{return true}}return false};html5CanPlay=function(j,i,k,h){if(h){return false}if(k&&k=="youtube"){return true}if(k&&k!="video"&&k!="http"&&k!="sound"){return false}var l=a.utils.extension(i);if(!l||a.utils.extensionmap[l]===undefined){return true}if(a.utils.extensionmap[l].html5===undefined){return false}if(a.utils.isLegacyAndroid()&&l.match(/m4v|mp4/)){return true}return browserCanPlay(j,a.utils.extensionmap[l].html5)};browserCanPlay=function(i,h){if(!h){return true}return i.canPlayType(h)}}})(jwplayer);(function(a){a.embed.logo=function(l,k,d){var i={prefix:"http://l.longtailvideo.com/"+k+"/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",margin:8,out:0.5,over:1,timeout:3,hide:false,position:"bottom-left"};_css=a.utils.css;var b;var h;j();function j(){n();c();f()}function n(){if(i.prefix){var p=a.version.split(/\W/).splice(0,2).join("/");if(i.prefix.indexOf(p)<0){i.prefix+=p+"/"}}h=a.utils.extend({},i)}function o(){var r={border:"none",textDecoration:"none",position:"absolute",cursor:"pointer",zIndex:10};r.display=h.hide?"none":"block";var q=h.position.toLowerCase().split("-");for(var p in q){r[q[p]]=h.margin}return r}function c(){b=document.createElement("img");b.id=d+"_jwplayer_logo";b.style.display="none";b.onload=function(p){_css(b,o());e()};if(!h.file){return}if(h.file.indexOf("http://")===0){b.src=h.file}else{b.src=h.prefix+h.file}}if(!h.file){return}function f(){if(h.link){b.onmouseover=g;b.onmouseout=e;b.onclick=m}else{this.mouseEnabled=false}}function m(p){if(typeof p!="undefined"){p.preventDefault();p.stopPropagation()}if(h.link){window.open(h.link,"_blank")}return}function e(p){if(h.link){b.style.opacity=h.out}return}function g(p){if(h.hide){b.style.opacity=h.over}return}return b}})(jwplayer);(function(a){a.html5=function(b){var c=b;this.setup=function(d){a.utils.extend(this,new a.html5.api(c,d));return this};return this}})(jwplayer);(function(b){var c=b.utils.css;b.html5.view=function(p,o,e){var s=p;var l=o;var v=e;var u;var f;var z;var q;var A;var n;function x(){u=document.createElement("div");u.id=l.id;u.className=l.className;_videowrapper=document.createElement("div");_videowrapper.id=u.id+"_video_wrapper";l.id=u.id+"_video";c(u,{position:"relative",height:v.height,width:v.width,padding:0,backgroundColor:B(),zIndex:0});function B(){if(s.skin.getComponentSettings("display")&&s.skin.getComponentSettings("display").backgroundcolor){return s.skin.getComponentSettings("display").backgroundcolor}return parseInt("000000",16)}c(l,{width:v.width,height:v.height,top:0,left:0,zIndex:1,margin:"auto",display:"block"});c(_videowrapper,{overflow:"hidden",position:"absolute",top:0,left:0,bottom:0,right:0});b.utils.wrap(l,u);b.utils.wrap(l,_videowrapper);q=document.createElement("div");q.id=u.id+"_displayarea";u.appendChild(q)}function j(){for(var B=0;B<v.plugins.order.length;B++){var C=v.plugins.order[B];if(v.plugins.object[C].getDisplayElement!==undefined){v.plugins.object[C].height=h(v.plugins.object[C].getDisplayElement().style.height);v.plugins.object[C].width=h(v.plugins.object[C].getDisplayElement().style.width);v.plugins.config[C].currentPosition=v.plugins.config[C].position}}t()}function t(C){if(v.getMedia()!==undefined){for(var B=0;B<v.plugins.order.length;B++){var D=v.plugins.order[B];if(v.plugins.object[D].getDisplayElement!==undefined){if(v.getMedia().hasChrome()){v.plugins.config[D].currentPosition=b.html5.view.positions.NONE}else{v.plugins.config[D].currentPosition=v.plugins.config[D].position}}}}i(v.width,v.height)}function h(B){if(typeof B=="string"){if(B===""){return 0}else{if(B.lastIndexOf("%")>-1){return B}else{return parseInt(B.replace("px",""),10)}}}return B}this.setup=function(B){l=B;x();j();s.jwAddEventListener(b.api.events.JWPLAYER_MEDIA_LOADED,t);s.jwAddEventListener(b.api.events.JWPLAYER_MEDIA_META,function(){w()});var C;if(window.onresize!==null){C=window.onresize}window.onresize=function(D){if(C!==undefined){try{C(D)}catch(F){}}if(s.jwGetFullscreen()){var E=document.body.getBoundingClientRect();v.width=Math.abs(E.left)+Math.abs(E.right);v.height=window.innerHeight}i(v.width,v.height)}};function g(B){switch(B.keyCode){case 27:if(s.jwGetFullscreen()){s.jwSetFullscreen(false)}break;case 32:if(s.jwGetState()!=b.api.events.state.IDLE&&s.jwGetState()!=b.api.events.state.PAUSED){s.jwPause()}else{s.jwPlay()}break}}function i(E,B){if(u.style.display=="none"){return}var D=[].concat(v.plugins.order);D.reverse();A=D.length+2;if(!v.fullscreen){v.width=E;v.height=B;f=E;z=B;c(q,{top:0,bottom:0,left:0,right:0,width:E,height:B});c(u,{height:z,width:f});var C=m(r,D);if(C.length>0){A+=C.length;m(k,C,true)}}else{if(navigator.vendor.indexOf("Apple")!==0){m(y,D,true)}}w()}function m(G,D,E){var C=[];for(var B=0;B<D.length;B++){var H=D[B];if(v.plugins.object[H].getDisplayElement!==undefined){if(v.plugins.config[H].currentPosition!=b.html5.view.positions.NONE){var F=G(H,A--);if(!F){C.push(H)}else{v.plugins.object[H].resize(F.width,F.height);if(E){delete F.width;delete F.height}c(v.plugins.object[H].getDisplayElement(),F)}}else{c(v.plugins.object[H].getDisplayElement(),{display:"none"})}}}return C}function r(C,D){if(v.plugins.object[C].getDisplayElement!==undefined){if(v.plugins.config[C].position&&a(v.plugins.config[C].position)){if(v.plugins.object[C].getDisplayElement().parentNode===null){u.appendChild(v.plugins.object[C].getDisplayElement())}var B=d(C);B.zIndex=D;return B}}return false}function k(D,E){if(v.plugins.object[D].getDisplayElement().parentNode===null){q.appendChild(v.plugins.object[D].getDisplayElement())}var B=v.width,C=v.height;if(typeof v.width=="string"&&v.width.lastIndexOf("%")>-1){percentage=parseFloat(v.width.substring(0,v.width.lastIndexOf("%")))/100;B=Math.round(window.innerWidth*percentage)}if(typeof v.height=="string"&&v.height.lastIndexOf("%")>-1){percentage=parseFloat(v.height.substring(0,v.height.lastIndexOf("%")))/100;C=Math.round(window.innerHeight*percentage)}return{position:"absolute",width:(B-h(q.style.left)-h(q.style.right)),height:(C-h(q.style.top)-h(q.style.bottom)),zIndex:E}}function y(B,C){return{position:"fixed",width:v.width,height:v.height,zIndex:C}}function w(){q.style.position="absolute";v.getMedia().getDisplayElement().style.position="absolute";if(v.getMedia().getDisplayElement().videoWidth==0||v.getMedia().getDisplayElement().videoHeight==0){return}var B,D;if(q.style.width.toString().lastIndexOf("%")>-1||q.style.width.toString().lastIndexOf("%")>-1){var C=q.getBoundingClientRect();B=Math.abs(C.left)+Math.abs(C.right);D=Math.abs(C.top)+Math.abs(C.bottom)}else{B=h(q.style.width);D=h(q.style.height)}b.utils.stretch(s.jwGetStretching(),v.getMedia().getDisplayElement(),B,D,v.getMedia().getDisplayElement().videoWidth,v.getMedia().getDisplayElement().videoHeight)}function d(C){var D={position:"absolute",margin:0,padding:0,top:null};var B=v.plugins.config[C].currentPosition.toLowerCase();switch(B.toUpperCase()){case b.html5.view.positions.TOP:D.top=h(q.style.top);D.left=h(q.style.left);D.width=f-h(q.style.left)-h(q.style.right);D.height=v.plugins.object[C].height;q.style[B]=h(q.style[B])+v.plugins.object[C].height+"px";q.style.height=h(q.style.height)-D.height+"px";break;case b.html5.view.positions.RIGHT:D.top=h(q.style.top);D.right=h(q.style.right);D.width=D.width=v.plugins.object[C].width;D.height=z-h(q.style.top)-h(q.style.bottom);q.style[B]=h(q.style[B])+v.plugins.object[C].width+"px";q.style.width=h(q.style.width)-D.width+"px";break;case b.html5.view.positions.BOTTOM:D.bottom=h(q.style.bottom);D.left=h(q.style.left);D.width=f-h(q.style.left)-h(q.style.right);D.height=v.plugins.object[C].height;q.style[B]=h(q.style[B])+v.plugins.object[C].height+"px";q.style.height=h(q.style.height)-D.height+"px";break;case b.html5.view.positions.LEFT:D.top=h(q.style.top);D.left=h(q.style.left);D.width=v.plugins.object[C].width;D.height=z-h(q.style.top)-h(q.style.bottom);q.style[B]=h(q.style[B])+v.plugins.object[C].width+"px";q.style.width=h(q.style.width)-D.width+"px";break;default:break}return D}this.resize=i;this.fullscreen=function(E){if(navigator.vendor.indexOf("Apple")===0){if(v.getMedia().getDisplayElement().webkitSupportsFullscreen){if(E){try{v.getMedia().getDisplayElement().webkitEnterFullscreen()}catch(D){}}else{try{v.getMedia().getDisplayElement().webkitExitFullscreen()}catch(D){}}}}else{if(E){document.onkeydown=g;clearInterval(n);var C=document.body.getBoundingClientRect();v.width=Math.abs(C.left)+Math.abs(C.right);v.height=window.innerHeight;var B={position:"fixed",width:"100%",height:"100%",top:0,left:0,zIndex:2147483000};c(u,B);B.zIndex=1;c(v.getMedia().getDisplayElement(),B);B.zIndex=2;c(q,B)}else{document.onkeydown="";v.width=f;v.height=z;c(u,{position:"relative",height:v.height,width:v.width,zIndex:0})}i(v.width,v.height)}}};function a(d){return([b.html5.view.positions.TOP,b.html5.view.positions.RIGHT,b.html5.view.positions.BOTTOM,b.html5.view.positions.LEFT].toString().indexOf(d.toUpperCase())>-1)}b.html5.view.positions={TOP:"TOP",RIGHT:"RIGHT",BOTTOM:"BOTTOM",LEFT:"LEFT",OVER:"OVER",NONE:"NONE"}})(jwplayer);(function(a){var b={backgroundcolor:"",margin:10,font:"Arial,sans-serif",fontsize:10,fontcolor:parseInt("000000",16),fontstyle:"normal",fontweight:"bold",buttoncolor:parseInt("ffffff",16),position:a.html5.view.positions.BOTTOM,idlehide:false,layout:{left:{position:"left",elements:[{name:"play",type:"button"},{name:"divider",type:"divider"},{name:"prev",type:"button"},{name:"divider",type:"divider"},{name:"next",type:"button"},{name:"divider",type:"divider"},{name:"elapsed",type:"text"}]},center:{position:"center",elements:[{name:"time",type:"slider"}]},right:{position:"right",elements:[{name:"duration",type:"text"},{name:"blank",type:"button"},{name:"divider",type:"divider"},{name:"mute",type:"button"},{name:"volume",type:"slider"},{name:"divider",type:"divider"},{name:"fullscreen",type:"button"}]}}};_css=a.utils.css;_hide=function(c){_css(c,{display:"none"})};_show=function(c){_css(c,{display:"block"})};a.html5.controlbar=function(k,M){var j=k;var A=a.utils.extend({},b,j.skin.getComponentSettings("controlbar"),M);if(A.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[A.position]=="undefined"){return}if(a.utils.mapLength(j.skin.getComponentLayout("controlbar"))>0){A.layout=j.skin.getComponentLayout("controlbar")}var R;var J;var Q;var B;var t="none";var f;var i;var S;var e;var d;var w;var K={};var o=false;var c={};var O;var h=false;function E(){if(!O){O=j.skin.getSkinElement("controlbar","background");if(!O){O={width:0,height:0,src:null}}}return O}function I(){Q=0;B=0;J=0;if(!o){var Z={height:E().height,backgroundColor:A.backgroundcolor};R=document.createElement("div");R.id=j.id+"_jwplayer_controlbar";_css(R,Z)}var Y=(j.skin.getSkinElement("controlbar","capLeft"));var X=(j.skin.getSkinElement("controlbar","capRight"));if(Y){v("capLeft","left",false,R)}var aa={position:"absolute",height:E().height,left:(Y?Y.width:0),zIndex:0};P("background",R,aa,"img");if(E().src){K.background.src=E().src}aa.zIndex=1;P("elements",R,aa);if(X){v("capRight","right",false,R)}}this.getDisplayElement=function(){return R};this.resize=function(Z,X){a.utils.cancelAnimation(R);document.getElementById(j.id).onmousemove=x;d=Z;w=X;x();var Y=u();D({id:j.id,duration:S,position:i});s({id:j.id,bufferPercent:e});return Y};this.show=function(){h=false;_show(R)};this.hide=function(){h=true;_hide(R)};function p(){var Y=["timeSlider","volumeSlider","timeSliderRail","volumeSliderRail"];for(var Z in Y){var X=Y[Z];if(typeof K[X]!="undefined"){c[X]=K[X].getBoundingClientRect()}}}function x(){if(h){return}a.utils.cancelAnimation(R);if(g()){a.utils.fadeTo(R,1,0,1,0)}else{a.utils.fadeTo(R,0,0.1,1,2)}}function g(){if(h){return false}if(j.jwGetState()==a.api.events.state.IDLE||j.jwGetState()==a.api.events.state.PAUSED){if(A.idlehide){return false}return true}if(j.jwGetFullscreen()){return false}if(A.position==a.html5.view.positions.OVER){return false}return true}function P(ab,aa,Z,X){var Y;if(!o){if(!X){X="div"}Y=document.createElement(X);K[ab]=Y;Y.id=R.id+"_"+ab;aa.appendChild(Y)}else{Y=document.getElementById(R.id+"_"+ab)}if(Z!==undefined){_css(Y,Z)}return Y}function H(){W(A.layout.left);W(A.layout.right,-1);W(A.layout.center)}function W(aa,X){var ab=aa.position=="right"?"right":"left";var Z=a.utils.extend([],aa.elements);if(X!==undefined){Z.reverse()}for(var Y=0;Y<Z.length;Y++){z(Z[Y],ab)}}function F(){return J++}function z(ab,ad){var aa,Y,Z,X,af;if(ab.type=="divider"){v("divider"+F(),ad,true,undefined,undefined,ab.width,ab.element);return}switch(ab.name){case"play":v("playButton",ad,false);v("pauseButton",ad,true);L("playButton","jwPlay");L("pauseButton","jwPause");break;case"prev":v("prevButton",ad,true);L("prevButton","jwPlaylistPrev");break;case"next":v("nextButton",ad,true);L("nextButton","jwPlaylistNext");break;case"elapsed":v("elapsedText",ad,true);break;case"time":Y=j.skin.getSkinElement("controlbar","timeSliderCapLeft")===undefined?0:j.skin.getSkinElement("controlbar","timeSliderCapLeft").width;Z=j.skin.getSkinElement("controlbar","timeSliderCapRight")===undefined?0:j.skin.getSkinElement("controlbar","timeSliderCapRight").width;aa=ad=="left"?Y:Z;X=j.skin.getSkinElement("controlbar","timeSliderRail").width+Y+Z;af={height:E().height,position:"absolute",top:0,width:X};af[ad]=ad=="left"?Q:B;var ac=P("timeSlider",K.elements,af);v("timeSliderCapLeft",ad,true,ac,ad=="left"?0:aa);v("timeSliderRail",ad,false,ac,aa);v("timeSliderBuffer",ad,false,ac,aa);v("timeSliderProgress",ad,false,ac,aa);v("timeSliderThumb",ad,false,ac,aa);v("timeSliderCapRight",ad,true,ac,ad=="right"?0:aa);N("time");break;case"fullscreen":v("fullscreenButton",ad,false);v("normalscreenButton",ad,true);L("fullscreenButton","jwSetFullscreen",true);L("normalscreenButton","jwSetFullscreen",false);break;case"volume":Y=j.skin.getSkinElement("controlbar","volumeSliderCapLeft")===undefined?0:j.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;Z=j.skin.getSkinElement("controlbar","volumeSliderCapRight")===undefined?0:j.skin.getSkinElement("controlbar","volumeSliderCapRight").width;aa=ad=="left"?Y:Z;X=j.skin.getSkinElement("controlbar","volumeSliderRail").width+Y+Z;af={height:E().height,position:"absolute",top:0,width:X};af[ad]=ad=="left"?Q:B;var ae=P("volumeSlider",K.elements,af);v("volumeSliderCapLeft",ad,true,ae,ad=="left"?0:aa);v("volumeSliderRail",ad,true,ae,aa);v("volumeSliderProgress",ad,false,ae,aa);v("volumeSliderCapRight",ad,true,ae,ad=="right"?0:aa);N("volume");break;case"mute":v("muteButton",ad,false);v("unmuteButton",ad,true);L("muteButton","jwSetMute",true);L("unmuteButton","jwSetMute",false);break;case"duration":v("durationText",ad,true);break}}function v(aa,ad,Y,ag,ab,X,Z){if(j.skin.getSkinElement("controlbar",aa)!==undefined||aa.indexOf("Text")>0||aa.indexOf("divider")===0){var ac={height:E().height,position:"absolute",display:"block",top:0};if((aa.indexOf("next")===0||aa.indexOf("prev")===0)&&j.jwGetPlaylist().length<2){Y=false;ac.display="none"}var ah;if(aa.indexOf("Text")>0){aa.innerhtml="00:00";ac.font=A.fontsize+"px/"+(E().height+1)+"px "+A.font;ac.color=A.fontcolor;ac.textAlign="center";ac.fontWeight=A.fontweight;ac.fontStyle=A.fontstyle;ac.cursor="default";ah=14+3*A.fontsize}else{if(aa.indexOf("divider")===0){if(X){if(!isNaN(parseInt(X))){ah=parseInt(X)}}else{if(Z){var ae=j.skin.getSkinElement("controlbar",Z);if(ae){ac.background="url("+ae.src+") repeat-x center left";ah=ae.width}}else{ac.background="url("+j.skin.getSkinElement("controlbar","divider").src+") repeat-x center left";ah=j.skin.getSkinElement("controlbar","divider").width}}}else{ac.background="url("+j.skin.getSkinElement("controlbar",aa).src+") repeat-x center left";ah=j.skin.getSkinElement("controlbar",aa).width}}if(ad=="left"){ac.left=isNaN(ab)?Q:ab;if(Y){Q+=ah}}else{if(ad=="right"){ac.right=isNaN(ab)?B:ab;if(Y){B+=ah}}}if(a.utils.typeOf(ag)=="undefined"){ag=K.elements}ac.width=ah;if(o){_css(K[aa],ac)}else{var af=P(aa,ag,ac);if(j.skin.getSkinElement("controlbar",aa+"Over")!==undefined){af.onmouseover=function(ai){af.style.backgroundImage=["url(",j.skin.getSkinElement("controlbar",aa+"Over").src,")"].join("")};af.onmouseout=function(ai){af.style.backgroundImage=["url(",j.skin.getSkinElement("controlbar",aa).src,")"].join("")}}}}}function C(){j.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,y);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_BUFFER,s);j.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,q);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_TIME,D);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,V);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_VOLUME,l);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_COMPLETE,G)}function y(){I();H();u();T()}function T(){D({id:j.id,duration:j.jwGetDuration(),position:0});s({id:j.id,bufferProgress:0});V({id:j.id,mute:j.jwGetMute()});q({id:j.id,newstate:a.api.events.state.IDLE});l({id:j.id,volume:j.jwGetVolume()})}function L(Z,aa,Y){if(o){return}if(j.skin.getSkinElement("controlbar",Z)!==undefined){var X=K[Z];if(X!==null){_css(X,{cursor:"pointer"});if(aa=="fullscreen"){X.onmouseup=function(ab){ab.stopPropagation();j.jwSetFullscreen(!j.jwGetFullscreen())}}else{X.onmouseup=function(ab){ab.stopPropagation();if(Y!==null){j[aa](Y)}else{j[aa]()}}}}}}function N(X){if(o){return}var Y=K[X+"Slider"];_css(K.elements,{cursor:"pointer"});_css(Y,{cursor:"pointer"});Y.onmousedown=function(Z){t=X};Y.onmouseup=function(Z){Z.stopPropagation();U(Z.pageX)};Y.onmousemove=function(Z){if(t=="time"){f=true;var aa=Z.pageX-c[X+"Slider"].left-window.pageXOffset;_css(K.timeSliderThumb,{left:aa})}}}function U(Y){f=false;var X;if(t=="time"){X=Y-c.timeSliderRail.left+window.pageXOffset;var aa=X/c.timeSliderRail.width*S;if(aa<0){aa=0}else{if(aa>S){aa=S-3}}if(j.jwGetState()==a.api.events.state.PAUSED||j.jwGetState()==a.api.events.state.IDLE){j.jwPlay()}j.jwSeek(aa)}else{if(t=="volume"){X=Y-c.volumeSliderRail.left-window.pageXOffset;var Z=Math.round(X/c.volumeSliderRail.width*100);if(Z<0){Z=0}else{if(Z>100){Z=100}}if(j.jwGetMute()){j.jwSetMute(false)}j.jwSetVolume(Z)}}t="none"}function s(Y){if(Y.bufferPercent!==null){e=Y.bufferPercent}if(c.timeSliderRail){var Z=c.timeSliderRail.width;var X=isNaN(Math.round(Z*e/100))?0:Math.round(Z*e/100);_css(K.timeSliderBuffer,{width:X})}}function V(X){if(X.mute){_hide(K.muteButton);_show(K.unmuteButton);_hide(K.volumeSliderProgress)}else{_show(K.muteButton);_hide(K.unmuteButton);_show(K.volumeSliderProgress)}}function q(X){if(X.newstate==a.api.events.state.BUFFERING||X.newstate==a.api.events.state.PLAYING){_show(K.pauseButton);_hide(K.playButton)}else{_hide(K.pauseButton);_show(K.playButton)}x();if(X.newstate==a.api.events.state.IDLE){_hide(K.timeSliderBuffer);_hide(K.timeSliderProgress);_hide(K.timeSliderThumb);D({id:j.id,duration:j.jwGetDuration(),position:0})}else{_show(K.timeSliderBuffer);if(X.newstate!=a.api.events.state.BUFFERING){_show(K.timeSliderProgress);_show(K.timeSliderThumb)}}}function G(X){s({bufferPercent:0});D(a.utils.extend(X,{position:0,duration:S}))}function D(aa){if(aa.position!==null){i=aa.position}if(aa.duration!==null){S=aa.duration}var Y=(i===S===0)?0:i/S;var ab=c.timeSliderRail;if(ab){var X=isNaN(Math.round(ab.width*Y))?0:Math.round(ab.width*Y);var Z=X;if(K.timeSliderProgress){K.timeSliderProgress.style.width=X+"px";if(!f){if(K.timeSliderThumb){K.timeSliderThumb.style.left=Z+"px"}}}}if(K.durationText){K.durationText.innerHTML=n(S)}if(K.elapsedText){K.elapsedText.innerHTML=n(i)}}function n(X){str="00:00";if(X>0){str=Math.floor(X/60)<10?"0"+Math.floor(X/60)+":":Math.floor(X/60)+":";str+=Math.floor(X%60)<10?"0"+Math.floor(X%60):Math.floor(X%60)}return str}function m(){var aa,Y;var Z=document.getElementById(R.id+"_elements").childNodes;for(var X in document.getElementById(R.id+"_elements").childNodes){if(isNaN(parseInt(X,10))){continue}if(Z[X].id.indexOf(R.id+"_divider")===0&&Y&&Y.id.indexOf(R.id+"_divider")===0&&Z[X].style.backgroundImage==Y.style.backgroundImage){Z[X].style.display="none"}else{if(Z[X].id.indexOf(R.id+"_divider")===0&&aa&&aa.style.display!="none"){Z[X].style.display="block"}}if(Z[X].style.display!="none"){Y=Z[X]}aa=Z[X]}}function u(){m();if(j.jwGetFullscreen()){_show(K.normalscreenButton);_hide(K.fullscreenButton)}else{_hide(K.normalscreenButton);_show(K.fullscreenButton)}var Y={width:d};var X={};if(A.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){Y.left=A.margin;Y.width-=2*A.margin;Y.top=w-E().height-A.margin;Y.height=E().height}else{Y.left=0}var aa=j.skin.getSkinElement("controlbar","capLeft");var Z=j.skin.getSkinElement("controlbar","capRight");X.left=aa?aa.width:0;X.width=Y.width-X.left-(Z?Z.width:0);var ab=j.skin.getSkinElement("controlbar","timeSliderCapLeft")===undefined?0:j.skin.getSkinElement("controlbar","timeSliderCapLeft").width;_css(K.timeSliderRail,{width:(X.width-Q-B),left:ab});if(K.timeSliderCapRight!==undefined){_css(K.timeSliderCapRight,{left:ab+(X.width-Q-B)})}_css(R,Y);_css(K.elements,X);_css(K.background,X);p();return Y}function l(ab){if(K.volumeSliderRail!==undefined){var Z=isNaN(ab.volume/100)?1:ab.volume/100;var aa=parseInt(K.volumeSliderRail.style.width.replace("px",""),10);var X=isNaN(Math.round(aa*Z))?0:Math.round(aa*Z);var ac=parseInt(K.volumeSliderRail.style.right.replace("px",""),10);var Y=j.skin.getSkinElement("controlbar","volumeSliderCapLeft")===undefined?0:j.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;_css(K.volumeSliderProgress,{width:X,left:Y});if(K.volumeSliderCapLeft!==undefined){_css(K.volumeSliderCapLeft,{left:0})}}}function r(){I();H();p();o=true;C();T();R.style.opacity=A.idlehide?0:1}r();return this}})(jwplayer);(function(b){var a=["width","height","state","playlist","item","position","buffer","duration","volume","mute","fullscreen"];b.html5.controller=function(t,r,e,q){var w=t;var y=e;var d=q;var k=r;var A=true;var c=-1;var u=(y.config.debug!==undefined)&&(y.config.debug.toString().toLowerCase()=="console");var i=new b.html5.eventdispatcher(k.id,u);b.utils.extend(this,i);function m(D){i.sendEvent(D.type,D)}y.addGlobalListener(m);function p(){try{if(y.playlist[y.item].levels[0].file.length>0){if(A||y.state==b.api.events.state.IDLE){y.addEventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,function(){y.getMedia().play()});y.addEventListener(b.api.events.JWPLAYER_MEDIA_TIME,function(E){if(E.position>=y.playlist[y.item].start&&c>=0){y.playlist[y.item].start=c;c=-1}});if(y.config.repeat){y.addEventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,function(E){setTimeout(n,25)})}y.getMedia().load(y.playlist[y.item]);A=false}else{if(y.state==b.api.events.state.PAUSED){y.getMedia().play()}}}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function B(){try{if(y.playlist[y.item].levels[0].file.length>0){switch(y.state){case b.api.events.state.PLAYING:case b.api.events.state.BUFFERING:y.getMedia().pause();break}}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function x(D){try{if(y.playlist[y.item].levels[0].file.length>0){if(typeof D!="number"){D=parseFloat(D)}switch(y.state){case b.api.events.state.IDLE:if(c<0){c=y.playlist[y.item].start;y.playlist[y.item].start=D}p();break;case b.api.events.state.PLAYING:case b.api.events.state.PAUSED:case b.api.events.state.BUFFERING:y.seek(D);break}}return true}catch(E){i.sendEvent(b.api.events.JWPLAYER_ERROR,E)}return false}function j(){try{if(y.playlist[y.item].levels[0].file.length>0&&y.state!=b.api.events.state.IDLE){y.getMedia().stop()}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function g(){try{if(y.playlist[y.item].levels[0].file.length>0){if(y.config.shuffle){o(s())}else{if(y.item+1==y.playlist.length){o(0)}else{o(y.item+1)}}}if(y.state!=b.api.events.state.PLAYING&&y.state!=b.api.events.state.BUFFERING){p()}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function f(){try{if(y.playlist[y.item].levels[0].file.length>0){if(y.config.shuffle){o(s())}else{if(y.item===0){o(y.playlist.length-1)}else{o(y.item-1)}}}if(y.state!=b.api.events.state.PLAYING&&y.state!=b.api.events.state.BUFFERING){p()}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function s(){var D=null;if(y.playlist.length>1){while(D===null){D=Math.floor(Math.random()*y.playlist.length);if(D==y.item){D=null}}}else{D=0}return D}function o(E){y.resetEventListeners();y.addGlobalListener(m);try{if(y.playlist[E].levels[0].file.length>0){var F=y.state;if(F!==b.api.events.state.IDLE){j()}y.item=E;A=true;y.setActiveMediaProvider(y.playlist[y.item]);i.sendEvent(b.api.events.JWPLAYER_PLAYLIST_ITEM,{index:E});if(F==b.api.events.state.PLAYING||F==b.api.events.state.BUFFERING||y.config.chromeless||e.config.autostart===true){p()}}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function z(E){try{switch(typeof(E)){case"number":y.getMedia().volume(E);break;case"string":y.getMedia().volume(parseInt(E,10));break}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function l(E){try{if(typeof E=="undefined"){y.getMedia().mute(!y.mute)}else{if(E.toString().toLowerCase()=="true"){y.getMedia().mute(true)}else{y.getMedia().mute(false)}}return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function h(E,D){try{y.width=E;y.height=D;d.resize(E,D);i.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:y.width,height:y.height});return true}catch(F){i.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function v(E){try{if(typeof E=="undefined"){y.fullscreen=!y.fullscreen;d.fullscreen(!y.fullscreen)}else{if(E.toString().toLowerCase()=="true"){y.fullscreen=true;d.fullscreen(true)}else{y.fullscreen=false;d.fullscreen(false)}}i.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:y.width,height:y.height});i.sendEvent(b.api.events.JWPLAYER_FULLSCREEN,{fullscreen:E});return true}catch(D){i.sendEvent(b.api.events.JWPLAYER_ERROR,D)}return false}function C(D){try{j();y.loadPlaylist(D);o(y.item);return true}catch(E){i.sendEvent(b.api.events.JWPLAYER_ERROR,E)}return false}b.html5.controller.repeatoptions={LIST:"LIST",ALWAYS:"ALWAYS",SINGLE:"SINGLE",NONE:"NONE"};function n(){y.resetEventListeners();y.addGlobalListener(m);switch(y.config.repeat.toUpperCase()){case b.html5.controller.repeatoptions.SINGLE:p();break;case b.html5.controller.repeatoptions.ALWAYS:if(y.item==y.playlist.length-1&&!y.config.shuffle){o(0);p()}else{g()}break;case b.html5.controller.repeatoptions.LIST:if(y.item==y.playlist.length-1&&!y.config.shuffle){o(0)}else{g()}break}}this.play=p;this.pause=B;this.seek=x;this.stop=j;this.next=g;this.prev=f;this.item=o;this.setVolume=z;this.setMute=l;this.resize=h;this.setFullscreen=v;this.load=C}})(jwplayer);(function(a){a.html5.defaultSkin=function(){this.text='<?xml version="1.0" ?><skin author="LongTail Video" name="Five" version="1.0"><settings><setting name="backcolor" value="0xFFFFFF"/><setting name="frontcolor" value="0x000000"/><setting name="lightcolor" value="0x000000"/><setting name="screencolor" value="0x000000"/></settings><components><component name="controlbar"><settings><setting name="margin" value="20"/><setting name="fontsize" value="11"/></settings><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAIAAABvFaqvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFJJREFUeNrslLENwAAIwxLU/09j5AiOgD5hVQzNAVY8JK4qEfHMIKBnd2+BQlBINaiRtL/aV2rdzYBsM6CIONbI1NZENTr3RwdB2PlnJgJ6BRgA4hwu5Qg5iswAAAAASUVORK5CYII="/><element name="capLeft" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="capRight" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="divider" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="playButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEhJREFUeNpiYqABYBo1dNRQ+hr6H4jvA3E8NS39j4SpZvh/LJig4YxEGEqy3kET+w+AOGFQRhTJhrEQkGcczfujhg4CQwECDADpTRWU/B3wHQAAAABJRU5ErkJggg=="/><element name="pauseButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAChJREFUeNpiYBgFo2DwA0YC8v/R1P4nRu+ooaOGUtnQUTAKhgIACDAAFCwQCfAJ4gwAAAAASUVORK5CYII="/><element name="prevButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEtJREFUeNpiYBgFo2Dog/9QDAPyQHweTYwiQ/2B+D0Wi8g2tB+JTdBQRiIMJVkvEy0iglhDF9Aq9uOpHVEwoE+NJDUKRsFgAAABBgDe2hqZcNNL0AAAAABJRU5ErkJggg=="/><element name="nextButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAElJREFUeNpiYBgFo2Dog/9AfB6I5dHE/lNqKAi/B2J/ahsKw/3EGMpIhKEk66WJoaR6fz61IyqemhEFSlL61ExSo2AUDAYAEGAAiG4hj+5t7M8AAAAASUVORK5CYII="/><element name="timeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADxJREFUeNpiYBgFo2AU0Bwwzluw+D8tLWARFhKiqQ9YuLg4aWsBGxs7bS1gZ6e5BWyjSX0UjIKhDgACDABlYQOGh5pYywAAAABJRU5ErkJggg=="/><element name="timeSliderBuffer" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYBgFo2AU0Bww1jc0/aelBSz8/Pw09QELOzs7bS1gY2OjrQWsrKy09gHraFIfBaNgqAOAAAMAvy0DChXHsZMAAAAASUVORK5CYII="/><element name="timeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAClJREFUeNpiYBgFo2AU0BwwAvF/WlrARGsfjFow8BaMglEwCugAAAIMAOHfAQunR+XzAAAAAElFTkSuQmCC"/><element name="timeSliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAICAYAAAA870V8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABZJREFUeNpiZICA/yCCiQEJUJcDEGAAY0gBD1/m7Q0AAAAASUVORK5CYII="/><element name="muteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADFJREFUeNpiYBgFIw3MB+L/5Gj8j6yRiRTFyICJXHfTXyMLAXlGati4YDRFDj8AEGAABk8GSqqS4CoAAAAASUVORK5CYII="/><element name="unmuteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYBgFgxz8p7bm+cQa+h8LHy7GhEcjIz4bmAjYykiun/8j0fakGPIfTfPgiSr6aB4FVAcAAQYAWdwR1G1Wd2gAAAAASUVORK5CYII="/><element name="volumeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGpJREFUeNpi/P//PwM9ABMDncCoRYPfIqqDZcuW1UPp/6AUDcNM1DQYKtRAlaAj1mCSLSLXYIIWUctgDItoZfDA5aOoqKhGEANIM9LVR7SymGDQUctikuOIXkFNdhHEOFrDjlpEd4sAAgwAriRMub95fu8AAAAASUVORK5CYII="/><element name="volumeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFtJREFUeNpi/P//PwM9ABMDncCoRYPfIlqAeij9H5SiYZiqBqPTlFqE02BKLSLaYFItIttgQhZRzWB8FjENiuRJ7aAbsMQwYMl7wDIsWUUQ42gNO2oR3S0CCDAAKhKq6MLLn8oAAAAASUVORK5CYII="/><element name="fullscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeNpiYBgFo2DQA0YC8v/xqP1PjDlMRDrEgUgxkgHIlfZoriVGjmzLsLFHAW2D6D8eA/9Tw7L/BAwgJE90PvhPpNgoGAVDEQAEGAAMdhTyXcPKcAAAAABJRU5ErkJggg=="/><element name="normalscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEZJREFUeNpiYBgFo2DIg/9UUkOUAf8JiFFsyX88fJyAkcQgYMQjNkzBoAgiezyRbE+tFGSPxQJ7auYBmma0UTAKBhgABBgAJAEY6zON61sAAAAASUVORK5CYII="/></elements></component><component name="display"><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC"/><element name="playIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg=="/><element name="muteIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHJJREFUeNrs1jEOgCAMBVAg7t5/8qaoIy4uoobyXsLCxA+0NCUAAADGUWvdQoQ41x4ixNBB2hBvBskdD3w5ZCkl3+33VqI0kjBBlh9rp+uTcyOP33TnolfsU85XX3yIRpQph8ZQY3wTZtU5AACASA4BBgDHoVuY1/fvOQAAAABJRU5ErkJggg=="/><element name="errorIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWlJREFUeNrsl+1twjAQhsHq/7BBYQLYIBmBDcoGMAIjtBPQTcII2SDtBDBBwrU6pGsUO7YbO470PtKJkz9iH++d4ywWAAAAAABgljRNsyWr2bZzDuJG1rLdZhcMbTjrBCGDyUKsqQLFciJb9bSvuG/WagRVRUVUI6gqy5HVeKWfSgRyJruKIU//TrZTSn2nmlaXThrloi/v9F2STC1W4+Aw5cBzkquRc09bofFNc6YLxEON0VUZS5FPTftO49vMjRsIF3RhOGr7/D/pJw+FKU+q0vDyq8W42jCunDqI3LC5XxNj2wHLU1XjaRnb0Lhykhqhhd8MtSF5J9tbjCv4mXGvKJz/65FF/qJryyaaIvzP2QRxZTX2nTuXjvV/VPFSwyLnW7mpH99yTh1FEVro6JBSd40/pMrRdV8vPtcKl28T2pT8TnFZ4yNosct3Q0io6JfBiz1FlGdqVQH3VHnepAEAAAAAADDzEGAAcTwB10jWgxcAAAAASUVORK5CYII="/><element name="bufferIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAuhJREFUeNrsWr9rU1EUznuNGqvFQh1ULOhiBx0KDtIuioO4pJuik3FxFfUPaAV1FTdx0Q5d2g4FFxehTnEpZHFoBy20tCIWtGq0TZP4HfkeHB5N8m6Sl/sa74XDybvv3vvOd8/Pe4lXrVZT3dD8VJc0B8QBcUAcEAfESktHGeR5XtMfqFQq/f92zPe/NbtGlKTdCY30kuxrpMGO94BlQCXs+rbh3ONgA6BlzP1p20d80gEI5hmA2A92Qua1Q2PtAFISM+bvjMG8U+Q7oA3rQGASwrYCU6WpNdLGYbA+Pq5jjXIiwi8EEa2UDbQSaKOIuV+SlkcCrfjY8XTI9EpKGwP0C2kru2hLtHqa4zoXtZRWyvi4CLwv9Opr6Hkn6A9HKgEANsQ1iqC3Ub/vRUk2JgmRkatK36kVrnt0qObunwUdUUMXMWYpakJsO5Am8tAw2GBIgwWA+G2S2dMpiw0gDioQRQJoKhRb1QiDwlHZUABYbaXWsm5ae6loTE4ZDxN4CZar8foVzOJ2iyZ2kWF3t7YIevffaMT5yJ70kQb2fQ1sE5SHr2wazs2wgMxgbsEKEAgxAvZUJbQLBGTSBMgNrncJbA6AljtS/eKDJ0Ez+DmrQEzXS2h1Ck25kAg0IZcUOaydCy4sYnN2fOA+2AP16gNoHALlQ+fwH7XO4CxLenUpgj4xr6ugY2roPMbMx+Xs18m/E8CVEIhxsNeg83XWOAN6grG3lGbk8uE5fr4B/WH3cJw+co/l9nTYsSGYCJ/lY5/qv0thn6nrIWmjeJcPSnWOeY++AkF8tpJHIMAUs/MaBBpj3znZfQo5psY+ZrG4gv5HickjEOymKjEeRpgyST6IuZcTcWbnjcgdPi5ghxciRKsl1lDSsgwA1i8fssonJgzmTSqfGUkCENndNdAL7PS6QQ7ZYISTo+1qq0LEWjTWcvY4isa4z+yfQB+7ooyHVg5RI7/i1Ijn/vnggDggDogD4oC00P4KMACd/juEHOrS4AAAAABJRU5ErkJggg=="/></elements></component><component name="dock"><elements><element name="button" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFBJREFUeNrs0cEJACAQA8Eofu0fu/W6EM5ZSAFDRpKTBs00CQQEBAQEBAQEBAQEBAQEBATkK8iqbY+AgICAgICAgICAgICAgICAgIC86QowAG5PAQzEJ0lKAAAAAElFTkSuQmCC"/></elements></component><component name="playlist"><elements><element name="item" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAIAAAC1nk4lAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHhJREFUeNrs2NEJwCAMBcBYuv/CFuIE9VN47WWCR7iocXR3pdWdGPqqwIoMjYfQeAiNh9B4JHc6MHQVHnjggQceeOCBBx77TifyeOY0iHi8DqIdEY8dD5cL094eePzINB5CO/LwcOTptNB4CP25L4TIbZzpU7UEGAA5wz1uF5rF9AAAAABJRU5ErkJggg=="/><element name="sliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAA8CAIAAADpFA0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADhJREFUeNrsy6ENACAMAMHClp2wYxZLAg5Fcu9e3OjuOKqqfTMzbs14CIZhGIZhGIZhGP4VLwEGAK/BBnVFpB0oAAAAAElFTkSuQmCC"/><element name="sliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAA8CAIAAADpFA0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADRJREFUeNrsy7ENACAMBLE8++8caFFKKiRffU53112SGs3ttOohGIZhGIZhGIZh+Fe8BRgAiaUGde6NOSEAAAAASUVORK5CYII="/></elements></component></components></skin>';this.xml=null;if(window.DOMParser){parser=new DOMParser();this.xml=parser.parseFromString(this.text,"text/xml")}else{this.xml=new ActiveXObject("Microsoft.XMLDOM");this.xml.async="false";this.xml.loadXML(this.text)}return this}})(jwplayer);(function(a){_css=a.utils.css;_hide=function(b){_css(b,{display:"none"})};_show=function(b){_css(b,{display:"block"})};a.html5.display=function(o,z){var r={icons:true};var j=a.utils.extend({},r,z);var w=o;var d={};var f;var A;var k;var x;var y;var p;var i;var n=w.skin.getComponentSettings("display").bufferrotation===undefined?15:parseInt(w.skin.getComponentSettings("display").bufferrotation,10);var e=w.skin.getComponentSettings("display").bufferinterval===undefined?100:parseInt(w.skin.getComponentSettings("display").bufferinterval,10);var c={display:{style:{cursor:"pointer",top:0,left:0,overflow:"hidden"},click:u},display_icon:{style:{cursor:"pointer",position:"absolute",top:((w.skin.getSkinElement("display","background").height-w.skin.getSkinElement("display","playIcon").height)/2),left:((w.skin.getSkinElement("display","background").width-w.skin.getSkinElement("display","playIcon").width)/2),border:0,margin:0,padding:0,zIndex:3}},display_iconBackground:{style:{cursor:"pointer",position:"absolute",top:((A-w.skin.getSkinElement("display","background").height)/2),left:((f-w.skin.getSkinElement("display","background").width)/2),border:0,backgroundImage:(["url(",w.skin.getSkinElement("display","background").src,")"]).join(""),width:w.skin.getSkinElement("display","background").width,height:w.skin.getSkinElement("display","background").height,margin:0,padding:0,zIndex:2}},display_image:{style:{display:"none",width:f,height:A,position:"absolute",cursor:"pointer",left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1}},display_text:{style:{zIndex:4,position:"relative",opacity:0.8,backgroundColor:parseInt("000000",16),color:parseInt("ffffff",16),textAlign:"center",fontFamily:"Arial,sans-serif",padding:"0 5px",fontSize:14}}};w.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,l);w.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,l);w.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,l);w.jwAddEventListener(a.api.events.JWPLAYER_ERROR,t);B();function B(){d.display=s("div","display");d.display_text=s("div","display_text");d.display.appendChild(d.display_text);d.display_image=s("img","display_image");d.display_image.onerror=function(C){_hide(d.display_image)};d.display_image.onload=m;d.display_icon=s("div","display_icon");d.display_iconBackground=s("div","display_iconBackground");d.display.appendChild(d.display_image);d.display_iconBackground.appendChild(d.display_icon);d.display.appendChild(d.display_iconBackground);b()}this.getDisplayElement=function(){return d.display};this.resize=function(D,C){f=D;A=C;_css(d.display,{width:D,height:C});_css(d.display_text,{width:(D-10),top:((A-d.display_text.getBoundingClientRect().height)/2)});_css(d.display_iconBackground,{top:((A-w.skin.getSkinElement("display","background").height)/2),left:((f-w.skin.getSkinElement("display","background").width)/2)});h();l({})};this.show=function(){_show(d.display_icon);_show(d.display_iconBackground)};this.hide=function(){q()};function m(C){k=d.display_image.naturalWidth;x=d.display_image.naturalHeight;h()}function h(){a.utils.stretch(w.jwGetStretching(),d.display_image,f,A,k,x)}function s(C,E){var D=document.createElement(C);D.id=w.id+"_jwplayer_"+E;_css(D,c[E].style);return D}function b(){for(var C in d){if(c[C].click!==undefined){d[C].onclick=c[C].click}}}function u(C){if(typeof C.preventDefault!="undefined"){C.preventDefault()}else{C.returnValue=false}if(w.jwGetState()!=a.api.events.state.PLAYING){w.jwPlay()}else{w.jwPause()}}function g(C){if(i||!j.icons){q();return}_show(d.display_iconBackground);d.display_icon.style.backgroundImage=(["url(",w.skin.getSkinElement("display",C).src,")"]).join("");_css(d.display_icon,{display:"block",width:w.skin.getSkinElement("display",C).width,height:w.skin.getSkinElement("display",C).height,top:(w.skin.getSkinElement("display","background").height-w.skin.getSkinElement("display",C).height)/2,left:(w.skin.getSkinElement("display","background").width-w.skin.getSkinElement("display",C).width)/2});if(w.skin.getSkinElement("display",C+"Over")!==undefined){d.display_icon.onmouseover=function(D){d.display_icon.style.backgroundImage=["url(",w.skin.getSkinElement("display",C+"Over").src,")"].join("")};d.display_icon.onmouseout=function(D){d.display_icon.style.backgroundImage=["url(",w.skin.getSkinElement("display",C).src,")"].join("")}}else{d.display_icon.onmouseover=null;d.display_icon.onmouseout=null}}function q(){_hide(d.display_icon);_hide(d.display_iconBackground)}function t(C){i=true;q();d.display_text.innerHTML=C.error;_show(d.display_text);d.display_text.style.top=((A-d.display_text.getBoundingClientRect().height)/2)+"px"}function v(){var C=d.display_image;d.display_image=s("img","display_image");d.display_image.onerror=function(D){_hide(d.display_image)};d.display_image.onload=m;d.display.replaceChild(d.display_image,C)}function l(C){if((C.type==a.api.events.JWPLAYER_PLAYER_STATE||C.type==a.api.events.JWPLAYER_PLAYLIST_ITEM)&&i){i=false;_hide(d.display_text)}if(p!==undefined){clearInterval(p);p=null;a.utils.animations.rotate(d.display_icon,0)}switch(w.jwGetState()){case a.api.events.state.BUFFERING:g("bufferIcon");y=0;p=setInterval(function(){y+=n;a.utils.animations.rotate(d.display_icon,y%360)},e);g("bufferIcon");break;case a.api.events.state.PAUSED:if(w.jwGetPlaylist()[w.jwGetItem()].provider!="sound"){_css(d.display_image,{background:"transparent no-repeat center center"})}g("playIcon");break;case a.api.events.state.IDLE:if(w.jwGetPlaylist()[w.jwGetItem()].image){_css(d.display_image,{display:"block"});d.display_image.src=a.utils.getAbsolutePath(w.jwGetPlaylist()[w.jwGetItem()].image)}else{v()}g("playIcon");break;default:if(w.jwGetMute()&&j.showmute){if(w.jwGetPlaylist()[w.jwGetItem()].provider!="sound"){v()}g("muteIcon")}else{if(w.jwGetPlaylist()[w.jwGetItem()].provider!="sound"){v()}_hide(d.display_iconBackground);_hide(d.display_icon)}break}}return this}})(jwplayer);(function(a){_css=a.utils.css;a.html5.dock=function(g,c){function f(){return{align:a.html5.view.positions.RIGHT}}var k=a.utils.extend({},f(),c);if(k.align=="FALSE"){return}var h={};var b=[];var d;var e;var j=document.createElement("div");j.id=g.id+"_jwplayer_dock";this.getDisplayElement=function(){return j};this.setButton=function(o,l,m,n){if(!l&&h[o]){a.utils.arrays.remove(b,o);j.removeChild(h[o].div);delete h[o]}else{if(l){if(!h[o]){h[o]={}}h[o].handler=l;h[o].outGraphic=m;h[o].overGraphic=n;if(!h[o].div){b.push(o);h[o].div=document.createElement("div");h[o].div.style.position="relative";j.appendChild(h[o].div);h[o].div.appendChild(document.createElement("img"));h[o].div.childNodes[0].style.position="absolute";h[o].div.childNodes[0].style.left=0;h[o].div.childNodes[0].style.top=0;h[o].div.childNodes[0].style.zIndex=10;h[o].div.childNodes[0].style.cursor="pointer";h[o].div.appendChild(document.createElement("img"));h[o].div.childNodes[1].style.position="absolute";h[o].div.childNodes[1].style.left=0;h[o].div.childNodes[1].style.top=0;if(g.skin.getSkinElement("dock","button")){h[o].div.childNodes[1].src=g.skin.getSkinElement("dock","button").src}h[o].div.childNodes[1].style.zIndex=9;h[o].div.childNodes[1].style.cursor="pointer";h[o].div.onmouseover=function(){if(h[o].overGraphic){h[o].div.childNodes[0].src=h[o].overGraphic}if(g.skin.getSkinElement("dock","buttonOver")){h[o].div.childNodes[1].src=g.skin.getSkinElement("dock","buttonOver").src}};h[o].div.onmouseout=function(){if(h[o].outGraphic){h[o].div.childNodes[0].src=h[o].outGraphic}if(g.skin.getSkinElement("dock","button")){h[o].div.childNodes[1].src=g.skin.getSkinElement("dock","button").src}};if(h[o].overGraphic){h[o].div.childNodes[0].src=h[o].overGraphic}if(h[o].outGraphic){h[o].div.childNodes[0].src=h[o].outGraphic}if(g.skin.getSkinElement("dock","button")){h[o].div.childNodes[1].src=g.skin.getSkinElement("dock","button").src}}if(l){h[o].div.onclick=function(p){p.preventDefault();a(g.id).callback(o);if(h[o].overGraphic){h[o].div.childNodes[0].src=h[o].overGraphic}if(g.skin.getSkinElement("dock","button")){h[o].div.childNodes[1].src=g.skin.getSkinElement("dock","button").src}}}}}i(d,e)};function i(n,l){d=n;e=l;if(b.length>0){var p=10;var r=n-g.skin.getSkinElement("dock","button").width-p;var o=p;var q=-1;if(k.align==a.html5.view.positions.LEFT){q=1;r=p}for(var m=0;m<b.length;m++){var s=Math.floor(o/l);if((o+g.skin.getSkinElement("dock","button").height+p)>((s+1)*l)){o=((s+1)*l)+p;s=Math.floor(o/l)}h[b[m]].div.style.top=(o%l)+"px";h[b[m]].div.style.left=(r+(g.skin.getSkinElement("dock","button").width+p)*s*q)+"px";o+=g.skin.getSkinElement("dock","button").height+p}}}this.resize=i;this.show=function(){_css(j,{display:"block"})};this.hide=function(){_css(j,{display:"none"})};return this}})(jwplayer);(function(a){a.html5.eventdispatcher=function(d,b){var c=new a.events.eventdispatcher(b);a.utils.extend(this,c);this.sendEvent=function(e,f){if(f===undefined){f={}}a.utils.extend(f,{id:d,version:a.version,type:e});c.sendEvent(e,f)}}})(jwplayer);(function(a){var b={prefix:"http://l.longtailvideo.com/html5/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",margin:8,out:0.5,over:1,timeout:3,hide:true,position:"bottom-left"};_css=a.utils.css;a.html5.logo=function(l,m){var r=l;var n;var i;var c;j();function j(){p();d();f()}function p(){if(b.prefix){var t=l.version.split(/\W/).splice(0,2).join("/");if(b.prefix.indexOf(t)<0){b.prefix+=t+"/"}}if(m.position==a.html5.view.positions.OVER){m.position=b.position}i=a.utils.extend({},b)}function d(){c=document.createElement("img");c.id=r.id+"_jwplayer_logo";c.style.display="none";c.onload=function(t){_css(c,q());r.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,s);e()};if(!i.file){return}if(i.file.indexOf("http://")===0){c.src=i.file}else{c.src=i.prefix+i.file}}if(!i.file){return}this.resize=function(u,t){};this.getDisplayElement=function(){return c};function f(){if(i.link){c.onmouseover=h;c.onmouseout=e;c.onclick=o}else{this.mouseEnabled=false}}function o(t){if(typeof t!="undefined"){t.stopPropagation()}r.jwPause();r.jwSetFullscreen(false);if(i.link){window.open(i.link,"_blank")}return}function e(t){if(i.link){c.style.opacity=i.out}return}function h(t){if(i.hide){c.style.opacity=i.over}return}function q(){var v={textDecoration:"none",position:"absolute",cursor:"pointer"};v.display=i.hide?"none":"block";var u=i.position.toLowerCase().split("-");for(var t in u){v[u[t]]=i.margin}return v}function k(){if(i.hide){c.style.display="block";c.style.opacity=0;a.utils.fadeTo(c,i.out,0.1,parseFloat(c.style.opacity));n=setTimeout(function(){g()},i.timeout*1000)}}function g(){if(i.hide){a.utils.fadeTo(c,0,0.1,parseFloat(c.style.opacity))}}function s(t){if(t.newstate==a.api.events.state.BUFFERING){clearTimeout(n);k()}}return this}})(jwplayer);(function(a){var c={ended:a.api.events.state.IDLE,playing:a.api.events.state.PLAYING,pause:a.api.events.state.PAUSED,buffering:a.api.events.state.BUFFERING};var b=a.utils.css;a.html5.mediavideo=function(f,F){var J={abort:t,canplay:m,canplaythrough:m,durationchange:q,emptied:t,ended:m,error:l,loadeddata:q,loadedmetadata:q,loadstart:m,pause:m,play:M,playing:m,progress:B,ratechange:t,seeked:m,seeking:m,stalled:m,suspend:m,timeupdate:M,volumechange:t,waiting:m,canshowcurrentframe:t,dataunavailable:t,empty:t,load:e,loadedfirstframe:t};var K=new a.html5.eventdispatcher();a.utils.extend(this,K);var h=f;var x=F;var G;var I;var d=a.api.events.state.IDLE;var C=null;var n;var g=0;var A=false;var r=false;var O;var N;var i=[];var P;var E=false;function v(){return d}function e(Q){}function t(Q){}function m(Q){if(c[Q.type]){s(c[Q.type])}}function s(Q){if(E){return}if(n){Q=a.api.events.state.IDLE}if(Q==a.api.events.state.PAUSED&&d==a.api.events.state.IDLE){return}if(Q==a.api.events.state.PLAYING&&d==a.api.events.state.IDLE){s(a.api.events.state.BUFFERING);K.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:h.buffer});z();return}if(d!=Q){var R=d;h.state=Q;d=Q;var S=false;if(Q==a.api.events.state.IDLE){p();if(h.position>=h.duration&&(h.position>0||h.duration>0)){S=true}if(x.style.display!="none"&&!h.config.chromeless){x.style.display="none"}}K.sendEvent(a.api.events.JWPLAYER_PLAYER_STATE,{oldstate:R,newstate:Q});if(S){K.sendEvent(a.api.events.JWPLAYER_MEDIA_COMPLETE)}}n=false}function q(Q){var R={height:Q.target.videoHeight,width:Q.target.videoWidth,duration:Math.round(Q.target.duration*10)/10};if(h.duration===0||isNaN(h.duration)){h.duration=Math.round(Q.target.duration*10)/10}h.playlist[h.item]=a.utils.extend(h.playlist[h.item],R);K.sendEvent(a.api.events.JWPLAYER_MEDIA_META,{metadata:R})}function M(R){if(n){return}if(R!==undefined&&R.target!==undefined){if(h.duration===0||isNaN(h.duration)){h.duration=Math.round(R.target.duration*10)/10}if(!A&&x.readyState>0){s(a.api.events.state.PLAYING)}if(d==a.api.events.state.PLAYING){if(!A&&x.readyState>0){A=true;try{x.currentTime=h.playlist[h.item].start}catch(Q){}x.volume=h.volume/100;x.muted=h.mute}h.position=Math.round(R.target.currentTime*10)/10;K.sendEvent(a.api.events.JWPLAYER_MEDIA_TIME,{position:R.target.currentTime,duration:R.target.duration})}}B(R)}function z(){if(G===false&&d==a.api.events.state.BUFFERING){K.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL);G=true}}function H(){var Q=(i[i.length-1]-i[0])/i.length;P=setTimeout(function(){if(!I){B({lengthComputable:true,loaded:1,total:1})}},Q*10)}function B(S){var R,Q;if(S!==undefined&&S.lengthComputable&&S.total){o();R=S.loaded/S.total*100;Q=R/100*(h.duration-x.currentTime);if(50<R&&!I){clearTimeout(P);H()}}else{if((x.buffered!==undefined)&&(x.buffered.length>0)){maxBufferIndex=0;if(maxBufferIndex>=0){R=x.buffered.end(maxBufferIndex)/x.duration*100;Q=x.buffered.end(maxBufferIndex)-x.currentTime}}}z();if(!I){if(R==100&&I===false){I=true}if(R!==null&&(R>h.buffer)){h.buffer=Math.round(R);K.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:Math.round(R)})}}}function w(){if(C===null){C=setInterval(function(){M()},100)}}function p(){clearInterval(C);C=null}function l(S){var R="There was an error: ";if((S.target.error&&S.target.tagName.toLowerCase()=="video")||S.target.parentNode.error&&S.target.parentNode.tagName.toLowerCase()=="video"){var Q=S.target.error===undefined?S.target.parentNode.error:S.target.error;switch(Q.code){case Q.MEDIA_ERR_ABORTED:R="You aborted the video playback: ";break;case Q.MEDIA_ERR_NETWORK:R="A network error caused the video download to fail part-way: ";break;case Q.MEDIA_ERR_DECODE:R="The video playback was aborted due to a corruption problem or because the video used features your browser did not support: ";break;case Q.MEDIA_ERR_SRC_NOT_SUPPORTED:R="The video could not be loaded, either because the server or network failed or because the format is not supported: ";break;default:R="An unknown error occurred: ";break}}else{if(S.target.tagName.toLowerCase()=="source"){N--;if(N>0){return}R="The video could not be loaded, either because the server or network failed or because the format is not supported: "}else{a.utils.log("Erroneous error received. Continuing...");return}}u();R+=j();E=true;K.sendEvent(a.api.events.JWPLAYER_ERROR,{error:R});return}function j(){var S="";for(var R in O.levels){var Q=O.levels[R];var T=x.ownerDocument.createElement("source");S+=a.utils.getAbsolutePath(Q.file);if(R<(O.levels.length-1)){S+=", "}}return S}this.getDisplayElement=function(){return x};this.play=function(){if(d!=a.api.events.state.PLAYING){if(x.style.display!="block"){x.style.display="block"}x.play();w();if(G){s(a.api.events.state.PLAYING)}}};this.pause=function(){x.pause();s(a.api.events.state.PAUSED)};this.seek=function(Q){if(!(h.duration===0||isNaN(h.duration))&&!(h.position===0||isNaN(h.position))){x.currentTime=Q;x.play()}};function u(){x.pause();x.removeAttribute("src");var Q=x.getElementsByTagName("source");for(var R=0;R<Q.length;R++){x.removeChild(Q[R])}if(typeof x.load=="function"){x.load()}p();h.position=0;n=true;s(a.api.events.state.IDLE)}this.stop=u;this.volume=function(Q){x.volume=Q/100;h.volume=Q;K.sendEvent(a.api.events.JWPLAYER_MEDIA_VOLUME,{volume:Math.round(Q)})};this.mute=function(Q){x.muted=Q;h.mute=Q;K.sendEvent(a.api.events.JWPLAYER_MEDIA_MUTE,{mute:Q})};this.resize=function(R,Q){if(false){b(x,{width:R,height:Q})}K.sendEvent(a.api.events.JWPLAYER_MEDIA_RESIZE,{fullscreen:h.fullscreen,width:R,hieght:Q})};this.fullscreen=function(Q){if(Q===true){this.resize("100%","100%")}else{this.resize(h.config.width,h.config.height)}};this.load=function(Q){L(Q);K.sendEvent(a.api.events.JWPLAYER_MEDIA_LOADED);G=false;I=false;A=false;if(!h.config.chromeless&&!r){i=[];o();s(a.api.events.state.BUFFERING);setTimeout(function(){M()},25)}};function o(){var Q=new Date().getTime();i.push(Q)}this.hasChrome=function(){return r};function L(Q){switch(Q.provider){case"youtube":k(Q);break;default:D(Q,document.createElement("video"));break}}function D(X,V){h.duration=X.duration;r=false;O=X;V.preload="none";V.setAttribute("x-webkit-airplay","allow");E=false;N=0;for(var R=0;R<X.levels.length;R++){var Q=X.levels[R];var S;var W=a.utils.extension(Q.file);if(Q.type===undefined){if(a.utils.extensionmap[W]!==undefined&&a.utils.extensionmap[W].html5!==undefined){S=a.utils.extensionmap[W].html5}}else{S=Q.type}if(!S||V.canPlayType(S)||(a.utils.isLegacyAndroid()&&W.match(/m4v|mp4/))){var U=x.ownerDocument.createElement("source");U.src=a.utils.getAbsolutePath(Q.file);if(S&&!a.utils.isLegacyAndroid()){U.type=S}N++;V.appendChild(U)}}if(N===0){E=true;K.sendEvent(a.api.events.JWPLAYER_ERROR,{error:"The media could not be loaded because the format is not supported by your browser: "+j()})}if(h.config.chromeless){V.poster=a.utils.getAbsolutePath(X.image);V.controls="controls"}V.style.top=x.style.top;V.style.left=x.style.left;V.style.width=x.style.width;V.style.height=x.style.height;V.style.zIndex=x.style.zIndex;V.onload=e;V.volume=0;x.parentNode.replaceChild(V,x);V.id=x.id;x=V;for(var T in J){x.addEventListener(T,function(Y){if(Y.target.parentNode!==null){J[Y.type](Y)}},true)}}function k(Q){var Y=Q.levels[0].file;var T=document.createElement("object");Y=["http://www.youtube.com/v/",y(Y),"&amp;hl=en_US&amp;fs=1&autoplay=1"].join("");var W={movie:Y,allowFullScreen:"true",allowscriptaccess:"always"};for(var S in W){var R=document.createElement("param");R.name=S;R.value=W[S];T.appendChild(R)}var X=document.createElement("embed");var U={src:Y,type:"application/x-shockwave-flash",allowscriptaccess:"always",allowfullscreen:"true",width:document.getElementById(f.id).style.width,height:document.getElementById(f.id).style.height};for(var V in U){X[V]=U[V]}T.appendChild(X);T.style.position=x.style.position;T.style.top=x.style.top;T.style.left=x.style.left;T.style.width=document.getElementById(f.id).style.width;T.style.height=document.getElementById(f.id).style.height;T.style.zIndex=2147483000;x.parentNode.replaceChild(T,x);T.id=x.id;x=T;r=true}function y(R){var Q=R.split(/\?|\#\!/);var T="";for(var S=0;S<Q.length;S++){if(Q[S].substr(0,2)=="v="){T=Q[S].substr(2)}}if(T==""){if(R.indexOf("/v/")>=0){T=R.substr(R.indexOf("/v/")+3)}else{if(R.indexOf("youtu.be")>=0){T=R.substr(R.indexOf("youtu.be/")+9)}else{T=R}}}if(T.indexOf("?")>-1){T=T.substr(0,T.indexOf("?"))}if(T.indexOf("&")>-1){T=T.substr(0,T.indexOf("&"))}return T}this.embed=L;return this}})(jwplayer);(function(jwplayer){var _configurableStateVariables=["width","height","start","duration","volume","mute","fullscreen","item","plugins","stretching"];jwplayer.html5.model=function(api,container,options){var _api=api;var _container=container;var _model={id:_container.id,playlist:[],state:jwplayer.api.events.state.IDLE,position:0,buffer:0,config:{width:480,height:320,item:-1,skin:undefined,file:undefined,image:undefined,start:0,duration:0,bufferlength:5,volume:90,mute:false,fullscreen:false,repeat:"none",stretching:jwplayer.utils.stretching.UNIFORM,autostart:false,debug:undefined,screencolor:undefined}};var _media;var _eventDispatcher=new jwplayer.html5.eventdispatcher();var _components=["display","logo","controlbar","dock"];jwplayer.utils.extend(_model,_eventDispatcher);for(var option in options){if(typeof options[option]=="string"){var type=/color$/.test(option)?"color":null;options[option]=jwplayer.utils.typechecker(options[option],type)}var config=_model.config;var path=option.split(".");for(var edge in path){if(edge==path.length-1){config[path[edge]]=options[option]}else{if(config[path[edge]]===undefined){config[path[edge]]={}}config=config[path[edge]]}}}for(var index in _configurableStateVariables){var configurableStateVariable=_configurableStateVariables[index];_model[configurableStateVariable]=_model.config[configurableStateVariable]}var pluginorder=_components.concat([]);if(_model.plugins!==undefined){if(typeof _model.plugins=="string"){var userplugins=_model.plugins.split(",");for(var userplugin in userplugins){if(typeof userplugins[userplugin]=="string"){pluginorder.push(userplugins[userplugin].replace(/^\s+|\s+$/g,""))}}}}if(typeof _model.config.chromeless=="undefined"&&jwplayer.utils.isIOS()){_model.config.chromeless=true}if(_model.config.chromeless){pluginorder=["logo"];if(_model.config.repeat===undefined||_model.config.repeat=="none"){_model.config.repeat="list"}}_model.plugins={order:pluginorder,config:{},object:{}};if(typeof _model.config.components!="undefined"){for(var component in _model.config.components){_model.plugins.config[component]=_model.config.components[component]}}for(var pluginIndex in _model.plugins.order){var pluginName=_model.plugins.order[pluginIndex];var pluginConfig=_model.config[pluginName]===undefined?{}:_model.config[pluginName];_model.plugins.config[pluginName]=_model.plugins.config[pluginName]===undefined?pluginConfig:jwplayer.utils.extend(_model.plugins.config[pluginName],pluginConfig);if(typeof _model.plugins.config[pluginName].position=="undefined"){_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.OVER}else{_model.plugins.config[pluginName].position=_model.plugins.config[pluginName].position.toString().toUpperCase()}}if(typeof _model.plugins.config.dock!="undefined"){if(typeof _model.plugins.config.dock!="object"){var position=_model.plugins.config.dock.toString().toUpperCase();_model.plugins.config.dock={position:position}}if(typeof _model.plugins.config.dock.position!="undefined"){_model.plugins.config.dock.align=_model.plugins.config.dock.position;_model.plugins.config.dock.position=jwplayer.html5.view.positions.OVER}}_model.loadPlaylist=function(arg,ready){var input;if(typeof arg=="string"){try{input=eval(arg)}catch(err){input=arg}}else{input=arg}var config;switch(jwplayer.utils.typeOf(input)){case"object":config=input;break;case"array":config={playlist:input};break;default:config={file:input};break}_model.playlist=new jwplayer.html5.playlist(config);if(_model.config.shuffle){_model.item=_getShuffleItem()}else{if(_model.config.item>=_model.playlist.length){_model.config.item=_model.playlist.length-1}else{if(_model.config.item<0){_model.config.item=0}}_model.item=_model.config.item}if(!ready){_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:_model.playlist})}_model.setActiveMediaProvider(_model.playlist[_model.item])};function _getShuffleItem(){var result=null;if(_model.playlist.length>1){while(result===null){result=Math.floor(Math.random()*_model.playlist.length);if(result==_model.item){result=null}}}else{result=0}return result}function forward(evt){if(evt.type==jwplayer.api.events.JWPLAYER_MEDIA_LOADED){_container=_media.getDisplayElement()}_eventDispatcher.sendEvent(evt.type,evt)}_model.setActiveMediaProvider=function(playlistItem){if(_media!==undefined){_media.resetEventListeners()}_media=new jwplayer.html5.mediavideo(_model,_container);_media.addGlobalListener(forward);if(_model.config.chromeless){_media.load(playlistItem)}return true};_model.getMedia=function(){return _media};_model.seek=function(pos){_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_MEDIA_SEEK,{position:_model.position,offset:pos});return _media.seek(pos)};_model.setupPlugins=function(){for(var plugin in _model.plugins.order){try{var pluginName=_model.plugins.order[plugin];if(jwplayer.html5[pluginName]!==undefined){_model.plugins.object[pluginName]=new jwplayer.html5[pluginName](_api,_model.plugins.config[pluginName])}else{_model.plugins.order.splice(plugin,plugin+1)}}catch(err){jwplayer.utils.log("Could not setup "+pluginName)}}};return _model}})(jwplayer);(function(a){a.html5.playlist=function(b){var d=[];if(b.playlist&&b.playlist instanceof Array&&b.playlist.length>0){for(var c in b.playlist){if(!isNaN(parseInt(c))){d.push(new a.html5.playlistitem(b.playlist[c]))}}}else{d.push(new a.html5.playlistitem(b))}return d}})(jwplayer);(function(b){b.html5.playlistitem=function(d){var e={author:"",date:"",description:"",image:"",link:"",mediaid:"",tags:"",title:"",provider:"",file:"",streamer:"",duration:-1,start:0,currentLevel:-1,levels:[]};var c=b.utils.extend({},e,d);if(c.type){c.provider=c.type;delete c.type}if(c.levels.length===0){c.levels[0]=new b.html5.playlistitemlevel(c)}if(!c.provider){c.provider=a(c.levels[0])}else{c.provider=c.provider.toLowerCase()}return c};function a(e){if(b.utils.isYouTube(e.file)){return"youtube"}else{var f=b.utils.extension(e.file);var c;if(f&&b.utils.extensionmap[f]){c=b.utils.extensionmap[f].html5}else{if(e.type){c=e.type}}if(c){var d=c.split("/")[0];if(d=="audio"){return"sound"}else{if(d=="video"){return d}}}}return""}})(jwplayer);(function(a){a.html5.playlistitemlevel=function(b){var d={file:"",streamer:"",bitrate:0,width:0};for(var c in d){if(b[c]!==undefined){d[c]=b[c]}}return d}})(jwplayer);(function(a){a.html5.skin=function(){var b={};var c=false;this.load=function(d,e){new a.html5.skinloader(d,function(f){c=true;b=f;e()},function(){new a.html5.skinloader("",function(f){c=true;b=f;e()})})};this.getSkinElement=function(d,e){if(c){try{return b[d].elements[e]}catch(f){a.utils.log("No such skin component / element: ",[d,e])}}return null};this.getComponentSettings=function(d){if(c){return b[d].settings}return null};this.getComponentLayout=function(d){if(c){return b[d].layout}return null}}})(jwplayer);(function(a){a.html5.skinloader=function(f,n,i){var m={};var c=n;var j=i;var e=true;var h;var l=f;var q=false;function k(){if(typeof l!="string"||l===""){d(a.html5.defaultSkin().xml)}else{a.utils.ajax(a.utils.getAbsolutePath(l),function(r){try{if(r.responseXML!==null){d(r.responseXML);return}}catch(s){}d(a.html5.defaultSkin().xml)},function(r){d(a.html5.defaultSkin().xml)})}}function d(w){var C=w.getElementsByTagName("component");if(C.length===0){return}for(var F=0;F<C.length;F++){var A=C[F].getAttribute("name");var z={settings:{},elements:{},layout:{}};m[A]=z;var E=C[F].getElementsByTagName("elements")[0].getElementsByTagName("element");for(var D=0;D<E.length;D++){b(E[D],A)}var x=C[F].getElementsByTagName("settings")[0];if(x!==undefined&&x.childNodes.length>0){var I=x.getElementsByTagName("setting");for(var N=0;N<I.length;N++){var O=I[N].getAttribute("name");var G=I[N].getAttribute("value");var v=/color$/.test(O)?"color":null;m[A].settings[O]=a.utils.typechecker(G,v)}}var J=C[F].getElementsByTagName("layout")[0];if(J!==undefined&&J.childNodes.length>0){var K=J.getElementsByTagName("group");for(var u=0;u<K.length;u++){var y=K[u];m[A].layout[y.getAttribute("position")]={elements:[]};for(var M=0;M<y.attributes.length;M++){var B=y.attributes[M];m[A].layout[y.getAttribute("position")][B.name]=B.value}var L=y.getElementsByTagName("*");for(var t=0;t<L.length;t++){var r=L[t];m[A].layout[y.getAttribute("position")].elements.push({type:r.tagName});for(var s=0;s<r.attributes.length;s++){var H=r.attributes[s];m[A].layout[y.getAttribute("position")].elements[t][H.name]=H.value}if(m[A].layout[y.getAttribute("position")].elements[t].name===undefined){m[A].layout[y.getAttribute("position")].elements[t].name=r.tagName}}}}e=false;p()}}function p(){clearInterval(h);if(!q){h=setInterval(function(){o()},100)}}function b(w,v){var u=new Image();var r=w.getAttribute("name");var t=w.getAttribute("src");var y;if(t.indexOf("data:image/png;base64,")===0){y=t}else{var s=a.utils.getAbsolutePath(l);var x=s.substr(0,s.lastIndexOf("/"));y=[x,v,t].join("/")}m[v].elements[r]={height:0,width:0,src:"",ready:false};u.onload=function(z){g(u,r,v)};u.onerror=function(z){q=true;p();j()};u.src=y}function o(){for(var r in m){if(r!="properties"){for(var s in m[r].elements){if(!m[r].elements[s].ready){return}}}}if(e===false){clearInterval(h);c(m)}}function g(r,t,s){m[s].elements[t].height=r.height;m[s].elements[t].width=r.width;m[s].elements[t].src=r.src;m[s].elements[t].ready=true;p()}k()}})(jwplayer);(function(a){a.html5.api=function(b,l){var k={};var f=document.createElement("div");b.parentNode.replaceChild(f,b);f.id=b.id;k.version=a.version;k.id=f.id;var j=new a.html5.model(k,f,l);var h=new a.html5.view(k,f,j);var i=new a.html5.controller(k,f,j,h);k.skin=new a.html5.skin();k.jwPlay=function(m){if(typeof m=="undefined"){e()}else{if(m.toString().toLowerCase()=="true"){i.play()}else{i.pause()}}};k.jwPause=function(m){if(typeof m=="undefined"){e()}else{if(m.toString().toLowerCase()=="true"){i.pause()}else{i.play()}}};function e(){if(j.state==a.api.events.state.PLAYING||j.state==a.api.events.state.BUFFERING){i.pause()}else{i.play()}}k.jwStop=i.stop;k.jwSeek=i.seek;k.jwPlaylistItem=i.item;k.jwPlaylistNext=i.next;k.jwPlaylistPrev=i.prev;k.jwResize=i.resize;k.jwLoad=i.load;function g(m){return function(){return j[m]}}function d(m,o,n){return function(){var p=j.plugins.object[m];if(p&&p[o]&&typeof p[o]=="function"){p[o].apply(p,n)}}}k.jwGetItem=g("item");k.jwGetPosition=g("position");k.jwGetDuration=g("duration");k.jwGetBuffer=g("buffer");k.jwGetWidth=g("width");k.jwGetHeight=g("height");k.jwGetFullscreen=g("fullscreen");k.jwSetFullscreen=i.setFullscreen;k.jwGetVolume=g("volume");k.jwSetVolume=i.setVolume;k.jwGetMute=g("mute");k.jwSetMute=i.setMute;k.jwGetStretching=g("stretching");k.jwGetState=g("state");k.jwGetVersion=function(){return k.version};k.jwGetPlaylist=function(){return j.playlist};k.jwGetPlaylistIndex=k.jwGetItem;k.jwAddEventListener=i.addEventListener;k.jwRemoveEventListener=i.removeEventListener;k.jwSendEvent=i.sendEvent;k.jwDockSetButton=function(p,m,n,o){if(j.plugins.object.dock&&j.plugins.object.dock.setButton){j.plugins.object.dock.setButton(p,m,n,o)}};k.jwShowControlbar=d("controlbar","show");k.jwHideControlbar=d("controlbar","hide");k.jwShowDock=d("dock","show");k.jwHideDock=d("dock","hide");k.jwShowDisplay=d("display","show");k.jwHideDisplay=d("display","hide");k.jwGetLevel=function(){};k.jwGetBandwidth=function(){};k.jwGetLockState=function(){};k.jwLock=function(){};k.jwUnlock=function(){};function c(o,n,m){return function(){o.loadPlaylist(o.config,true);o.setupPlugins();n.setup(o.getMedia().getDisplayElement());var p={id:k.id,version:k.version};m.sendEvent(a.api.events.JWPLAYER_READY,p);if(playerReady!==undefined){playerReady(p)}if(window[o.config.playerReady]!==undefined){window[o.config.playerReady](p)}o.sendEvent(a.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:o.playlist});m.item(o.item)}}if(j.config.chromeless){setTimeout(c(j,h,i),25)}else{k.skin.load(j.config.skin,c(j,h,i))}return k}})(jwplayer)};;

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
;
/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
﻿/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(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);;
// $Id: nice_menus.js,v 1.21 2010/06/18 06:14:12 vordude Exp $

// This uses Superfish 1.4.8
// (http://users.tpg.com.au/j_birch/plugins/superfish)

// Add Superfish to all Nice menus with some basic options.
(function ($) {
  $(document).ready(function() {
    $('ul.nice-menu').superfish({
      // Apply a generic hover class.
      hoverClass: 'over',
      // Disable generation of arrow mark-up.
      autoArrows: false,
      // Disable drop shadows.
      dropShadows: false,
      // Mouse delay.
      delay: Drupal.settings.nice_menus_options.delay,
      // Animation speed.
      speed: Drupal.settings.nice_menus_options.speed
    // Add in Brandon Aaron’s bgIframe plugin for IE select issues.
    // http://plugins.jquery.com/node/46/release
    }).find('ul').bgIframe({opacity:false});
    $('ul.nice-menu ul').css('display', 'none');
  });
})(jQuery);
;
/**
 * Provide the Drupal object with Drupal arg() functionality
 * Useage: if( Drupal.arg(0) == 'node' && Number(Drupal.arg(1)) ) alert('Node page');
 * jQuery Bonus: $.uri(0) :Recieves first item in URI path, $.uri() : Returns full array of URI args
 */
;(function($) {
	if(!Drupal)return;
	Drupal.arg = function(index) {
		if(index == undefined) return Drupal.settings.args;
		return Drupal.settings.args[index];
	}
	if($) {
		$.uri = function(index) {	
			var args = String(window.location.href)
				.replace(/http(s?):\/\/[a-z\-.]*[:0-9]*/,'')
				.substr(Drupal.settings.basePath.length).split('/');
			if(index == undefined) return args;
			return args[index]
		}
	}
}(jQuery));;
/**
 * Flash (http://jquery.lukelutman.com/plugins/flash)
 * A jQuery plugin for embedding Flash movies.
 * 
 * Version 1.0
 * November 9th, 2006
 *
 * Copyright (c) 2006 Luke Lutman (http://www.lukelutman.com)
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.opensource.org/licenses/gpl-license.php
 * 
 * Inspired by:
 * SWFObject (http://blog.deconcept.com/swfobject/)
 * UFO (http://www.bobbyvandersluis.com/ufo/)
 * sIFR (http://www.mikeindustries.com/sifr/)
 * 
 * IMPORTANT: 
 * The packed version of jQuery breaks ActiveX control
 * activation in Internet Explorer. Use JSMin to minifiy
 * jQuery (see: http://jquery.lukelutman.com/plugins/flash#activex).
 *
 **/ 
;(function(){
	
var $$;

/**
 * 
 * @desc Replace matching elements with a flash movie.
 * @author Luke Lutman
 * @version 1.0.1
 *
 * @name flash
 * @param Hash htmlOptions Options for the embed/object tag.
 * @param Hash pluginOptions Options for detecting/updating the Flash plugin (optional).
 * @param Function replace Custom block called for each matched element if flash is installed (optional).
 * @param Function update Custom block called for each matched if flash isn't installed (optional).
 * @type jQuery
 *
 * @cat plugins/flash
 * 
 * @example $('#hello').flash({ src: 'hello.swf' });
 * @desc Embed a Flash movie.
 *
 * @example $('#hello').flash({ src: 'hello.swf' }, { version: 8 });
 * @desc Embed a Flash 8 movie.
 *
 * @example $('#hello').flash({ src: 'hello.swf' }, { expressInstall: true });
 * @desc Embed a Flash movie using Express Install if flash isn't installed.
 *
 * @example $('#hello').flash({ src: 'hello.swf' }, { update: false });
 * @desc Embed a Flash movie, don't show an update message if Flash isn't installed.
 *
**/
$$ = jQuery.fn.flash = function(htmlOptions, pluginOptions, replace, update) {
	
	// Set the default block.
	var block = replace || $$.replace;
	
	// Merge the default and passed plugin options.
	pluginOptions = $$.copy($$.pluginOptions, pluginOptions);
	
	// Detect Flash.
	if(!$$.hasFlash(pluginOptions.version)) {
		// Use Express Install (if specified and Flash plugin 6,0,65 or higher is installed).
		if(pluginOptions.expressInstall && $$.hasFlash(6,0,65)) {
			// Add the necessary flashvars (merged later).
			var expressInstallOptions = {
				flashvars: {  	
					MMredirectURL: location,
					MMplayerType: 'PlugIn',
					MMdoctitle: jQuery('title').text() 
				}					
			};
		// Ask the user to update (if specified).
		} else if (pluginOptions.update) {
			// Change the block to insert the update message instead of the flash movie.
			block = update || $$.update;
		// Fail
		} else {
			// The required version of flash isn't installed.
			// Express Install is turned off, or flash 6,0,65 isn't installed.
			// Update is turned off.
			// Return without doing anything.
			return this;
		}
	}
	
	// Merge the default, express install and passed html options.
	htmlOptions = $$.copy($$.htmlOptions, expressInstallOptions, htmlOptions);
	
	// Invoke $block (with a copy of the merged html options) for each element.
	return this.each(function(){
		block.call(this, $$.copy(htmlOptions));
	});
	
};
/**
 *
 * @name flash.copy
 * @desc Copy an arbitrary number of objects into a new object.
 * @type Object
 * 
 * @example $$.copy({ foo: 1 }, { bar: 2 });
 * @result { foo: 1, bar: 2 };
 *
**/
$$.copy = function() {
	var options = {}, flashvars = {};
	for(var i = 0; i < arguments.length; i++) {
		var arg = arguments[i];
		if(arg == undefined) continue;
		jQuery.extend(options, arg);
		// don't clobber one flash vars object with another
		// merge them instead
		if(arg.flashvars == undefined) continue;
		jQuery.extend(flashvars, arg.flashvars);
	}
	options.flashvars = flashvars;
	return options;
};
/*
 * @name flash.hasFlash
 * @desc Check if a specific version of the Flash plugin is installed
 * @type Boolean
 *
**/
$$.hasFlash = function() {
	// look for a flag in the query string to bypass flash detection
	if(/hasFlash\=true/.test(location)) return true;
	if(/hasFlash\=false/.test(location)) return false;
	var pv = $$.hasFlash.playerVersion().match(/\d+/g);
	var rv = String([arguments[0], arguments[1], arguments[2]]).match(/\d+/g) || String($$.pluginOptions.version).match(/\d+/g);
	for(var i = 0; i < 3; i++) {
		pv[i] = parseInt(pv[i] || 0);
		rv[i] = parseInt(rv[i] || 0);
		// player is less than required
		if(pv[i] < rv[i]) return false;
		// player is greater than required
		if(pv[i] > rv[i]) return true;
	}
	// major version, minor version and revision match exactly
	return true;
};
/**
 *
 * @name flash.hasFlash.playerVersion
 * @desc Get the version of the installed Flash plugin.
 * @type String
 *
**/
$$.hasFlash.playerVersion = function() {
	// ie
	try {
		try {
			// avoid fp6 minor version lookup issues
			// see: http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
			var axo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6');
			try { axo.AllowScriptAccess = 'always';	} 
			catch(e) { return '6,0,0'; }				
		} catch(e) {}
		return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g, ',').match(/^,?(.+),?$/)[1];
	// other browsers
	} catch(e) {
		try {
			if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){
				return (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g, ",").match(/^,?(.+),?$/)[1];
			}
		} catch(e) {}		
	}
	return '0,0,0';
};
/**
 *
 * @name flash.htmlOptions
 * @desc The default set of options for the object or embed tag.
 *
**/
$$.htmlOptions = {
	height: 240,
	flashvars: {},
	pluginspage: 'http://www.adobe.com/go/getflashplayer',
	src: '#',
	type: 'application/x-shockwave-flash',
	width: 320		
};
/**
 *
 * @name flash.pluginOptions
 * @desc The default set of options for checking/updating the flash Plugin.
 *
**/
$$.pluginOptions = {
	expressInstall: false,
	update: true,
	version: '6.0.65'
};
/**
 *
 * @name flash.replace
 * @desc The default method for replacing an element with a Flash movie.
 *
**/
$$.replace = function(htmlOptions) {
	this.innerHTML = '<div class="alt">'+this.innerHTML+'</div>';
	jQuery(this)
		.addClass('flash-replaced')
		.prepend($$.transform(htmlOptions));
};
/**
 *
 * @name flash.update
 * @desc The default method for replacing an element with an update message.
 *
**/
$$.update = function(htmlOptions) {
	var url = String(location).split('?');
	url.splice(1,0,'?hasFlash=true&');
	url = url.join('');
	var msg = '<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+url+'">Click here.</a></p>';
	this.innerHTML = '<span class="alt">'+this.innerHTML+'</span>';
	jQuery(this)
		.addClass('flash-update')
		.prepend(msg);
};
/**
 *
 * @desc Convert a hash of html options to a string of attributes, using Function.apply(). 
 * @example toAttributeString.apply(htmlOptions)
 * @result foo="bar" foo="bar"
 *
**/
function toAttributeString() {
	var s = '';
	for(var key in this)
		if(typeof this[key] != 'function')
			s += key+'="'+this[key]+'" ';
	return s;		
};
/**
 *
 * @desc Convert a hash of flashvars to a url-encoded string, using Function.apply(). 
 * @example toFlashvarsString.apply(flashvarsObject)
 * @result foo=bar&foo=bar
 *
**/
function toFlashvarsString() {
	var s = '';
	for(var key in this)
		if(typeof this[key] != 'function')
			s += key+'='+encodeURIComponent(this[key])+'&';
	return s.replace(/&$/, '');		
};
/**
 *
 * @name flash.transform
 * @desc Transform a set of html options into an embed tag.
 * @type String 
 *
 * @example $$.transform(htmlOptions)
 * @result <embed src="foo.swf" ... />
 *
 * Note: The embed tag is NOT standards-compliant, but it 
 * works in all current browsers. flash.transform can be
 * overwritten with a custom function to generate more 
 * standards-compliant markup.
 *
**/
$$.transform = function(htmlOptions) {
	htmlOptions.toString = toAttributeString;
	if(htmlOptions.flashvars) htmlOptions.flashvars.toString = toFlashvarsString;
	return '<embed ' + String(htmlOptions) + '/>';		
};

/**
 *
 * Flash Player 9 Fix (http://blog.deconcept.com/2006/07/28/swfobject-143-released/)
 *
**/
if (window.attachEvent) {
	window.attachEvent("onbeforeunload", function(){
		__flash_unloadHandler = function() {};
		__flash_savedUnloadHandler = function() {};
	});
}
	
})();;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;



Drupal.behaviors.popup = function(context){

  // Process flat menu containers
  $('.popup-menu-flat:not(.popup-menu-flat-processed)').each(
    function(){
      var thisObject = $(this);
      thisObject.addClass('popup-menu-flat-processed');
      new PopupMenuContainerElement(thisObject);
    }
  );

  // Process popup-elements
  $('.popup-element:not(.popup-element-processed)').each(
    function(){
      var thisObject = $(this);
      thisObject
        .addClass('popup-element-processed')
        .removeClass('popup-element-noscript');
      new PopupElement(thisObject);
    }
  );

  // Process menu leaves
  $('.popup-menu-leaf-title:not(.popup-menu-leaf-processed)').each(
    function(){
      var thisObject = $(this);
      thisObject.addClass('popup-menu-leaf-processed');
      new PopupMenuLeafElement(thisObject);
    }
  );

  // Process relative links in AJAX loaded content
  $("a[href^='/ahah/popup/view']", context).each(
    function(){

      var thisObject = $(this);
      var thisContext = $(thisObject.parents('div.inner').get(0));

      var placeContent = function(data){
        thisContext.html(data);
        Drupal.attachBehaviors(context);
      }

      var fetchContent = function(){
        $.get(thisObject.attr('href'), null, placeContent);
        return false;
      }

      thisObject.click(fetchContent);
    }
  );

  // Correct relative form submits
  $(".ajax form").each(
    function(){
      var thisForm = $(this);

      if (thisForm.attr('action').match(/^\/ahah\/popup/)){
        thisForm.attr('action', '');
      }
    }
  );

  // Reposition on window resize
  var reposition = function(){
    $('.popup-element').trigger('reposition');
  }
  $(window).unbind('resize', reposition).resize(reposition);

}



/* ---- Popup element objects ---- */



PopupElement = function(element){

  var thisObject = this;

  // Gather elements
  this.element = element;
  this.title = $($('.popup-element-title', this.element)[0]);
  this.body = $($('.popup-element-body', this.element)[0]);
  this.elementId = this.element.attr('id');
  this.closeButton = $('.popup-close', this.body);

  this.children = new Array();

  this.isRoot = this
    .title
    .parents('.popup-element-body,.popup-menu-flat')
    .length == 0;

  this.body.data('popupElement', this);

  // Assign show/hide effects
  PopupElement.assignEffects.apply(this);

  // Assign origin positioning function
  PopupElement.assignPositioning.apply(this);

  // Move body and add a wrapper
  PopupElement.dom.apply(this);

  // Assign expansion function
  PopupElement.assignExpansion.apply(this);

  // Assign activation/deactivation events
  PopupElement.assignEvents.apply(this);

  // Apply css attributes
  PopupElement.applyAttributes.apply(this);

  // Attach AJAX behaviors
  PopupElement.applyAJAX.apply(this);

  // Reposition on window resize
  this.element.bind(
    'reposition',
    function(){
      thisObject.position();
    }
  );

  // Close button
  this.closeButton.click(
    function(){
      PopupElement.hide.apply(thisObject);
      return false;
    }
  );

}



PopupMenuLeafElement = function(element){

  this.element = element;
  this.parent = this.element.parents('.popup-element-body,.popup-menu-flat').data('popupElement');
  var thisObject = this;

  this.element.mouseover(
    function(){
      if (thisObject.parent){
        for(var i in thisObject.parent.children){
          PopupElement.hide.apply(thisObject.parent.children[i]);
        }
      }
    }
  );
}



PopupMenuContainerElement = function(element){

  this.element = element;
  this.body = element;
  this.children = new Array();
  this.element.data('popupElement', this);

}



PopupElement.count = 0;



/* ---- DOM preparation ---- */



PopupElement.dom = function(){

  this.body.appendTo('#popup-active-overlay');

  var classAttr = this.element.attr('class');
  var styleClass = classAttr.match(/popup-style-[^'\s]+/);

  this.body.wrap(
      '<div id="' +
        this.elementId +
      '-active" class="popup-element-wrapper' + (styleClass ? ' ' + styleClass : '') + '">'
    );

  this.wrapper = this.body.parent();
  this.wrapper.css('position', 'absolute');

  // Wrap in origin element
  this.body.wrap('<div class="popup-element-origin">');
  this.origin = this.body.parent();
  this.origin.css('position', 'absolute');
}



/* ---- Dynamic functions ---- */



PopupElement.assignEffects = function(){
  var effectName = this
    .element
    .attr('class')
    .match(/effect-([^\s]+)/)[1];
  this.animShow = new Function(
    Drupal.settings.popup.effects.show[effectName]
  );
  this.animHide = new Function(
    Drupal.settings.popup.effects.hide[effectName]
  );
}



PopupElement.assignPositioning = function(){
  var originName = this
    .element
    .attr('class')
    .match(/origin-([^\s]+)/)[1];
  this.position = PopupElement.position[originName];
}



PopupElement.assignExpansion = function(){
  var expandName = this
    .element
    .attr('class')
    .match(/expand-([^\s]+)/)[1];
  PopupElement.expand[expandName].apply(this);
}



PopupElement.assignEvents = function(){
  if (this.element.hasClass('activate-hover')){
    PopupElement.hoverEvents.apply(this);
  } else {
    PopupElement.clickEvents.apply(this);
  }

  var thisObject = this;

  // API show/hide events
  this.element.bind(
    'hide',
    function(){
      PopupElement.hide.apply(thisObject);
    }
  ).bind(
    'show',
    function(){
      PopupElement.show.apply(thisObject);
    }
  );

}



PopupElement.applyAttributes = function(){

  if (this.body.attr('class')){

    var opacity = this.body.attr('class').match(/opacity-([^\s]+)/);
    if (opacity && opacity[1] < 1){
      this.body.css(
        {
          opacity: opacity[1],
          filter: 'alpha(opacity=' + opacity[1] + ')'
        }
      );
    }

    var width = this.body.attr('class').match(/width-([^\s]+)/);
    if (width){
      $('.inner', this.body).css('width', width[1] + 'px');
    }
  }
}



/* ---- AJAX preparation ---- */



PopupElement.applyAJAX = function(){

  var thisObject = this;

  var placeContent = function(data){
    thisObject.body.unbind('showing', fetchContent);
    thisObject.ajaxPlaceholder.replaceWith(data);
    Drupal.attachBehaviors(thisObject.ajaxParent);
  }

  var fetchContent = function(){
    thisObject.ajaxPlaceholder = $($('.popup-ahah-placeholder', thisObject.body)[0]);
    var url = $('div.popup-ahah-placeholder a', thisObject.ajaxPlaceholder.parent()).attr('href');
    $.get(url, null, placeContent);
  }

  // Ajax
  if (this.body.hasClass('ajax')){
    this.body.bind('showing', fetchContent);
  }

}



/* ---- Popup actions ---- */



PopupElement.hide = function(){
  if (this.visible){
    this.body.trigger('hiding');
    this.animHide();
    this.title.removeClass('popup-title-active');
    this.element.removeClass('popup-element-active');
    this.visible = false;
    this.body.queue('function(){ PopupElement.count--; }');
    this.body.trigger('hidden');
  }
}



PopupElement.show = function(){
  if (!this.visible){
    this.body.css('z-index', ++PopupElement.count);
    this.body.trigger('showing');
    this.position();
    this.animShow();
    this.title.addClass('popup-title-active');
    this.element.addClass('popup-element-active');
    this.visible = true;
    this.body.trigger('shown');
  }
}



/* ---- Popup events ---- */



PopupElement.clickEvents = function(){

  this.visible = false;
  var thisObject = this;

  this.title.click(
    function(){
      if (thisObject.visible == true){
        PopupElement.hide.apply(thisObject);
      } else {
        PopupElement.show.apply(thisObject);
      }
      return false;
    }
  );
}



PopupElement.hoverEvents = function(){

  var thisObject = this;

  if (!this.isRoot){
    var popupElement = this.title.parents('.popup-element-body').data('popupElement');
    this.parent = popupElement
      ? popupElement
      : this.title.parents('.popup-menu-flat').data('popupElement');
    this.parent.children.push(this);
  }

  // Trigger hiding
  var delayedHide = function(){
    clearTimeout(thisObject.hideTimeout);
    thisObject.hideTimeout = setTimeout(
      function(){
        PopupElement.hide.apply(thisObject);
      },
      Drupal.settings.popup.linger
    );
    if (!thisObject.isRoot){
      thisObject.parent.body.trigger('mouseleave');
    }
  }
  this.body.bind('mouseleave', delayedHide);
  this.title.bind('mouseleave', delayedHide);

  // Cancel hiding
  var cancelHide = function(){
    var element = thisObject;
    clearTimeout(thisObject.hideTimeout);
    while(element = element.parent){
      clearTimeout(element.hideTimeout);
    }
  }
  this.body.bind('mouseover', cancelHide);
  this.title.bind('mouseover', cancelHide);

  // Trigger showing
  this.title.bind('mouseenter',
    function(){
      if (!thisObject.visible){
        PopupElement.show.apply(thisObject);
        if (thisObject.parent){
          for(var i in thisObject.parent.children){
            if (thisObject.parent.children[i] != thisObject){
              PopupElement.hide.apply(thisObject.parent.children[i]);
            }
          }
        }
      }
    }
  );

}



/* ---- Popup positioning ---- */



PopupElement.position = {

  'top-left': function(){
    var origin = this.title.offset();
    this.origin.css(
      {
        top: origin.top,
        left: origin.left
      }
    );
  },

  'top-right': function(){
    var origin = this.title.offset();
    this.origin.css(
      {
        top: origin.top,
        left: origin.left + this.title.outerWidth()
      }
    );
  },

  'bottom-left': function(){
    var origin = this.title.offset();
    this.origin.css(
      {
        top: origin.top + this.title.outerHeight(),
        left: origin.left
      }
    );
  },

  'bottom-right': function(){
    var origin = this.title.offset();
    this.origin.css(
      {
        top: origin.top + this.title.outerHeight(),
        left: origin.left + this.title.outerWidth()
      }
    );
  }

}



PopupElement.expand = {

  'top-left': function(){
    this.body.css({bottom: 0, right: 0});
  },

  'top-right': function(){
    this.body.css({bottom: 0, left: 0});
  },

  'bottom-left': function(){
    this.body.css({top: 0, right: 0});
  },

  'bottom-right': function(){
    this.body.css({top: 0, left: 0});
  }

}


;

/**
 * Ensure swftools namespace is established.
 */
var swftools = swftools || {};

/**
 * Establish jwPlayerReady namespace.
 */
swftools.jwPlayerReady = swftools.jwPlayerReady || {};

/**
 * Callback from LongTail player when an instance is initialized. 
 */
function playerReady(player) {
  swftools.jw5.pushInstance(player.id);
  player = swftools.getObject(player.id);
  
  // Attach listeners and handlers to the player
  jQuery.each(swftools.jwPlayerReady, function() {
    this(player);
  });

};


/**
 * Attach state tracking function to auto-pause players
 */
swftools.jwPlayerReady.swftools_jw5 = function(player) {
  player.addModelListener('STATE','swftools.jw5.stateTracker');
};


/**
* Define LongTail player functions here.
*/
swftools.jw5 = function() {
  var instances = [];
  var activePlayer = null;
  return {
    pushInstance: function(playerID) {
      instances.push(playerID);
    },
    stateTracker: function(player) {
      // States are: IDLE, BUFFERING, PLAYING, PAUSED, COMPLETED
      if (player.newstate == 'PAUSED' || player.newstate == 'COMPLETED') {
        activePlayer = null;
      }
      // Pause other players when another one starts
      if (player.newstate == 'PLAYING') {
        if (activePlayer && player.id != activePlayer) {
          swftools.jw5.pause(activePlayer);
        }
        activePlayer = player.id;
      }
    },
    play: function(playerID) {
      swftools.getObject(playerID).sendEvent('PLAY', 'true');
    },
    pause: function(playerID) {
      swftools.getObject(playerID).sendEvent('PLAY', 'false');
    },
    stop: function(playerID) {
      swftools.getObject(playerID).sendEvent('STOP');
    },
    mute: function(playerID) {
      swftools.getObject(playerID).sendEvent('MUTE', 'true');
    },
    unmute: function(playerID) {
      swftools.getObject(playerID).sendEvent('MUTE');
    }
  }
}();

Drupal.behaviors.swftools_jw5 = function (context) {
  $('[class^=jw5-accessible]:not(.swftools-jw5-processed)', context).addClass('swftools-jw5-processed').each(function () {
    $(this).click(function(){
      var classes = $(this).attr('class');
      var classes = classes.split(' ');
      var parts = classes[0].split('-');
      var idStarts = 16 + parts[2].length;
      var action = "swftools.jw5." + parts[2] + "('" + classes[0].substring(idStarts) + "')";
      eval(action);
      return false;
    });
  });
}
;

/**
 * Ensure swftools namespace is established.
 */
var swftools = swftools || {};

/**
 * Returns a DOM object that points to the flash content with the supplied id. 
 */
swftools.getObject = function(objectID) {
  
  // Get the base object
  swftoolsObject = document.getElementById(objectID);
  
  // See if we can get the object like this (IE/Chrome)
  if (typeof swftoolsObject == 'object') {
    return swftoolsObject;
  }
  // See if we can get the object like this (FF with swfobject embedding)
  if (typeof swftoolsObject.attributes.type != 'undefined' && swftoolsObject.attributes.type.value == 'application/x-shockwave-flash') {
    return swftoolsObject;
  }
  // Otherwise try this (FF with direct embedding)
  return swftoolsObject.getElementsByTagName('object')[0];
}
;

/**
 * @file
 * Adds some show/hide to the admin form to make the UXP easier.
 *
 */

$(document).ready(function() {
  //lets see if we have any jmedia movies
  if($.fn.media) {
    $('.jmedia').media();
  }
	
  video_hide_all_options();
  $("input[name='vid_convertor']").change(function() {
    video_hide_all_options();
  });

  // change metadata options
  video_hide_all__metadata_options();
  $("input[name='vid_metadata']").change(function() {
    video_hide_all__metadata_options();
  });

  // change metadata options
  video_hide_all__filesystem_options();
  $("input[name='vid_filesystem']").change(function() {
    video_hide_all__filesystem_options();
  });

  $('.video_select').each(function() {
    var ext = $(this).attr('rel');
    $('select', this).change(function() {
      if($(this).val() == 'video_play_flv') {
        $('#flv_player_'+ext).show();
      } else if($(this).val() == 'video_play_html5') {
        $('#html5_player_'+ext).show();
      } else {
        $('#flv_player_'+ext).hide();
        $('#html5_player_'+ext).hide();
      }
    });
    if($('select', this).val() == 'video_play_flv') {
      $('#flv_player_'+ext).show();
    }
    if($('select', this).val() == 'video_play_html5') {
      $('#html5_player_'+ext).show();
    } else {
      $('#html5_player_'+ext).hide();
    }
  });
	
  if(Drupal.settings.video) {
    $.fn.media.defaults.flvPlayer = Drupal.settings.video.flvplayer;

  }
	
  //lets setup our colorbox videos
  $('.video-box').each(function() {
    var url = $(this).attr('href');
    var data = $(this).metadata();
    var width = data.width;
    var height= data.height;
    var player = Drupal.settings.video.player; //player can be either jwplayer or flowplayer.
    $(this).colorbox({
      html: '<a id="video-overlay" href="'+url+'" style="height:'+height+'; width:'+width+'; display: block;"></a>',
      onComplete:function() {
        if(player == 'flowplayer') {
          flowplayer("video-overlay", Drupal.settings.video.flvplayer, {
            clip: {
              autoPlay: Drupal.settings.video.autoplay,
              autoBuffering: Drupal.settings.video.autobuffer
            }
          });
        } else {
          $('#video-overlay').media({
            flashvars: {
              autostart: Drupal.settings.video.autoplay
            },
            width:width,
            height:height
          });
        }
      }
    });
  });
});

function video_hide_all_options() {
  $("input[name='vid_convertor']").each(function() {
    var id = $(this).val();
    $('#'+id).hide();
    if ($(this).is(':checked')) {
      $('#' + id).show();
    }
  });
}

function videoftp_thumbnail_change() {
  // Add handlers for the video thumbnail radio buttons to update the large thumbnail onchange.
  $(".video-thumbnails input").each(function() {
    var path = $(this).val();
    if($(this).is(':checked')) {
      var holder = $(this).attr('rel');
      $('.'+holder+' img').attr('src', Drupal.settings.basePath + path);
    }
  });

}

function video_hide_all__metadata_options() {
  $("input[name='vid_metadata']").each(function() {
    var id = $(this).val();
    $('#'+id).hide();
    if ($(this).is(':checked')) {
      $('#' + id).show();
    }
  });
}

function video_hide_all__filesystem_options() {
  $("input[name='vid_filesystem']").each(function() {
    var id = $(this).val();
    $('#'+id).hide();
    if ($(this).is(':checked')) {
      $('#' + id).show();
    }
  });
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * jQuery UI 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */(function(C){var I=C.fn.remove,D=C.browser.mozilla&&(parseFloat(C.browser.version)<1.9);C.ui={version:"1.6",plugin:{add:function(K,L,N){var M=C.ui[K].prototype;for(var J in N){M.plugins[J]=M.plugins[J]||[];M.plugins[J].push([L,N[J]])}},call:function(J,L,K){var N=J.plugins[L];if(!N){return }for(var M=0;M<N.length;M++){if(J.options[N[M][0]]){N[M][1].apply(J.element,K)}}}},contains:function(L,K){var J=C.browser.safari&&C.browser.version<522;if(L.contains&&!J){return L.contains(K)}if(L.compareDocumentPosition){return !!(L.compareDocumentPosition(K)&16)}while(K=K.parentNode){if(K==L){return true}}return false},cssCache:{},css:function(J){if(C.ui.cssCache[J]){return C.ui.cssCache[J]}var K=C('<div class="ui-gen">').addClass(J).css({position:"absolute",top:"-5000px",left:"-5000px",display:"block"}).appendTo("body");C.ui.cssCache[J]=!!((!(/auto|default/).test(K.css("cursor"))||(/^[1-9]/).test(K.css("height"))||(/^[1-9]/).test(K.css("width"))||!(/none/).test(K.css("backgroundImage"))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(K.css("backgroundColor"))));try{C("body").get(0).removeChild(K.get(0))}catch(L){}return C.ui.cssCache[J]},hasScroll:function(M,K){if(C(M).css("overflow")=="hidden"){return false}var J=(K&&K=="left")?"scrollLeft":"scrollTop",L=false;if(M[J]>0){return true}M[J]=1;L=(M[J]>0);M[J]=0;return L},isOverAxis:function(K,J,L){return(K>J)&&(K<(J+L))},isOver:function(O,K,N,M,J,L){return C.ui.isOverAxis(O,N,J)&&C.ui.isOverAxis(K,M,L)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(D){var F=C.attr,E=C.fn.removeAttr,H="http://www.w3.org/2005/07/aaa",A=/^aria-/,B=/^wairole:/;C.attr=function(K,J,L){var M=L!==undefined;return(J=="role"?(M?F.call(this,K,J,"wairole:"+L):(F.apply(this,arguments)||"").replace(B,"")):(A.test(J)?(M?K.setAttributeNS(H,J.replace(A,"aaa:"),L):F.call(this,K,J.replace(A,"aaa:"))):F.apply(this,arguments)))};C.fn.removeAttr=function(J){return(A.test(J)?this.each(function(){this.removeAttributeNS(H,J.replace(A,""))}):E.call(this,J))}}C.fn.extend({remove:function(){C("*",this).add(this).each(function(){C(this).triggerHandler("remove")});return I.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var J;if((C.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){J=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(C.curCSS(this,"position",1))&&(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}else{J=this.parents().filter(function(){return(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!J.length?C(document):J}});C.extend(C.expr[":"],{data:function(K,L,J){return C.data(K,J[3])},tabbable:function(L,M,K){var N=L.nodeName.toLowerCase();function J(O){return !(C(O).is(":hidden")||C(O).parents(":hidden").length)}return(L.tabIndex>=0&&(("a"==N&&L.href)||(/input|select|textarea|button/.test(N)&&"hidden"!=L.type&&!L.disabled))&&J(L))}});function G(M,N,O,L){function K(Q){var P=C[M][N][Q]||[];return(typeof P=="string"?P.split(/,?\s+/):P)}var J=K("getter");if(L.length==1&&typeof L[0]=="string"){J=J.concat(K("getterSetter"))}return(C.inArray(O,J)!=-1)}C.widget=function(K,J){var L=K.split(".")[0];K=K.split(".")[1];C.fn[K]=function(P){var N=(typeof P=="string"),O=Array.prototype.slice.call(arguments,1);if(N&&P.substring(0,1)=="_"){return this}if(N&&G(L,K,P,O)){var M=C.data(this[0],K);return(M?M[P].apply(M,O):undefined)}return this.each(function(){var Q=C.data(this,K);(!Q&&!N&&C.data(this,K,new C[L][K](this,P)));(Q&&N&&C.isFunction(Q[P])&&Q[P].apply(Q,O))})};C[L]=C[L]||{};C[L][K]=function(O,N){var M=this;this.widgetName=K;this.widgetEventPrefix=C[L][K].eventPrefix||K;this.widgetBaseClass=L+"-"+K;this.options=C.extend({},C.widget.defaults,C[L][K].defaults,C.metadata&&C.metadata.get(O)[K],N);this.element=C(O).bind("setData."+K,function(Q,P,R){return M._setData(P,R)}).bind("getData."+K,function(Q,P){return M._getData(P)}).bind("remove",function(){return M.destroy()});this._init()};C[L][K].prototype=C.extend({},C.widget.prototype,J);C[L][K].getterSetter="option"};C.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName)},option:function(L,M){var K=L,J=this;if(typeof L=="string"){if(M===undefined){return this._getData(L)}K={};K[L]=M}C.each(K,function(N,O){J._setData(N,O)})},_getData:function(J){return this.options[J]},_setData:function(J,K){this.options[J]=K;if(J=="disabled"){this.element[K?"addClass":"removeClass"](this.widgetBaseClass+"-disabled")}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(K,L,M){var J=(K==this.widgetEventPrefix?K:this.widgetEventPrefix+K);L=L||C.event.fix({type:J,target:this.element[0]});return this.element.triggerHandler(J,[L,M],this.options[K])}};C.widget.defaults={disabled:false};C.ui.mouse={_mouseInit:function(){var J=this;this.element.bind("mousedown."+this.widgetName,function(K){return J._mouseDown(K)}).bind("click."+this.widgetName,function(K){if(J._preventClickEvent){J._preventClickEvent=false;return false}});if(C.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(C.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(L){(this._mouseStarted&&this._mouseUp(L));this._mouseDownEvent=L;var K=this,M=(L.which==1),J=(typeof this.options.cancel=="string"?C(L.target).parents().add(L.target).filter(this.options.cancel).length:false);if(!M||J||!this._mouseCapture(L)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){K.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(L)&&this._mouseDelayMet(L)){this._mouseStarted=(this._mouseStart(L)!==false);if(!this._mouseStarted){L.preventDefault();return true}}this._mouseMoveDelegate=function(N){return K._mouseMove(N)};this._mouseUpDelegate=function(N){return K._mouseUp(N)};C(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);if(!C.browser.safari){L.preventDefault()}return true},_mouseMove:function(J){if(C.browser.msie&&!J.button){return this._mouseUp(J)}if(this._mouseStarted){this._mouseDrag(J);return J.preventDefault()}if(this._mouseDistanceMet(J)&&this._mouseDelayMet(J)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,J)!==false);(this._mouseStarted?this._mouseDrag(J):this._mouseUp(J))}return !this._mouseStarted},_mouseUp:function(J){C(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=true;this._mouseStop(J)}return false},_mouseDistanceMet:function(J){return(Math.max(Math.abs(this._mouseDownEvent.pageX-J.pageX),Math.abs(this._mouseDownEvent.pageY-J.pageY))>=this.options.distance)},_mouseDelayMet:function(J){return this.mouseDelayMet},_mouseStart:function(J){},_mouseDrag:function(J){},_mouseStop:function(J){},_mouseCapture:function(J){return true}};C.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);
(function(d){function g(a,b){b?d(a).addClass("ui-state-disabled"):d(a).removeClass("ui-state-disabled")}d.widget("ui.carousel",{_init:function(){var a=this.options,b=this.element;this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal";this.running=false;this.curr=a.start;this._detectNavigation();b.addClass("ui-carousel ui-carousel-"+this.orientation+" ui-widget ui-widget-content ui-corner-all ui-helper-clearfix");this.slide=d(">ul, .ui-carousel-clip>ul",b).addClass("ui-carousel-slide");
this.clip=d(".ui-carousel-clip",b);if(this.clip.size()===0){this.slide.wrap('<div class="ui-carousel-clip"></div>');this.clip=d(".ui-carousel-clip",b)}this.rebuild(true);this.autoReset()},rebuild:function(a){var b=this.options;if(this.curr>=this.itemLength)this.curr-=this.itemLength;else if(this.curr<0)this.curr+=this.itemLength;this.slide.children(".ui-carousel-buffer").remove();this.offset=0;this.li=this.slide.children().addClass("ui-carousel-item");if(b.circular){var c=this.li;this.offset=Math.max(b.visible,
b.scroll);this.slide.prepend(c.slice(c.size()-this.offset).clone().addClass("ui-carousel-buffer")).append(c.slice(0,this.offset).clone().addClass("ui-carousel-buffer"));this.li=this.slide.children()}this.itemLength=this.li.size()-2*this.offset;a&&this.element.show();this.refresh()},prev:function(){return this._go(this.curr-this.options.scroll)},next:function(){return this._go(this.curr+this.options.scroll)},visible:function(a){if(a===undefined)a=this.curr;return this.slide.children().slice(a,a+this.options.visible)},
at:function(){return this.curr},view:function(a){var b=this.options,c=this.curr;if(!(a>c&&a<=c+b.visible)){b=b.scroll;var e=0;e=a<=c?c-(Math.floor((c-a)/b)*b+b):c+(Math.floor((a-c)/b)*b-b);return this._go(e)}},reset:function(){var a=this.options;this.curr!=a.start&&this.set(a.start)},refresh:function(){var a=this.options,b=this.orientation!="horizontal",c=b?"height":"width";this.animCss=b?"top":"left";this.li.css({width:"",height:""});this.liSize=b?this.li.outerHeight(true):this.li.outerWidth(true);
this.li.css({width:this.li.width(),height:this.li.height()});this.slide.css(c,this.liSize*(this.itemLength+2*this.offset));this.clip.css(c,this.liSize*a.visible);this.set(this.curr);this._updateNav()},autoReset:function(){var a=this.options;if(typeof this.autoTimer!=="undefined"){clearTimeout(this.autoTimer);delete this.autoTimer}if(a.auto){var b=this;this.autoTimer=setTimeout(function(){b.next()},a.auto)}},auto:function(a){this.options.auto=a;this.autoReset()},_go:function(a){var b=this.options,
c=b.visible;if(!b.circular){if(a>this.itemLength-c)a=this.itemLength-c;if(a<0)a=0}if(!(this.running||a==this.curr)){var e=this.curr,h=this.element;c=this.itemLength;var i=this.offset,f=this;this.running=true;if(b.circular)if(a<-i){e+=c;a+=c;this.set(e)}else if(a>c){e-=c;a-=c;this.set(e)}this.curr=a;a+=i;b.beforeStart.call(h,this.visible(this.curr),this.visible(a));this.slide.animate(this.animCss=="left"?{left:-(a*this.liSize)}:{top:-(a*this.liSize)},b.speed,b.easing,function(){f.running=false;f._updateNav();
f.autoReset();b.afterEnd.call(h,f.visible(a),f.visible(e))});return true}return false},set:function(a){this.curr=a;this.slide.css(this.animCss,-((a+this.offset)*this.liSize)+"px")},_updateNav:function(){var a=this.options;if(a.circular){var b=this.itemLength<=a.visible;g(this.nav.prev,b);g(this.nav.next,b)}else{b=this.visible(this.curr-1).length===0;a=this.visible(this.curr+a.visible).length===0;g(this.nav.prev,b);g(this.nav.next,a)}},_detectNavigation:function(){var a=this,b=" ui-icon-triangle-1-",
c=" ui-icon-triangle-1-";if(this.orientation=="horizontal"){b+="w";c+="e"}else{b+="n";c+="s"}this.nav={};this.nav.prev=d(".ui-carousel-prev",this.element).addClass("ui-icon"+b).click(function(e){e.preventDefault();d(this).not(".ui-state-disabled").length&&a.prev()});this.nav.next=d(".ui-carousel-next",this.element).addClass("ui-icon"+c).click(function(e){e.preventDefault();d(this).not(".ui-state-disabled").length&&a.next()})}});d.extend(d.ui.carousel,{defaults:{auto:null,speed:200,easing:null,orientation:"horizontal",
circular:true,visible:3,start:0,scroll:1,beforeStart:function(){},afterEnd:function(){}}})})(jQuery);
;
/* $Id: uicarousel.js,v 1.4 2010/02/01 20:26:23 neclimdul Exp $ */

/**
 * @file
 * Provides the jQuery UI Carousel Drupal behavior.
 */

/**
 * The jQuery UI Carousel Drupal behavior.
 *
 * Creates carousels based on the elements of Drupal.settings.uicarousel.
 */
Drupal.behaviors.uicarousel = function(context) {
  // Make sure carousel's are actually available.
  if (typeof $.ui.carousel === undefined) return;

  // Make sure the environment is sane.
  if (typeof Drupal.settings.uicarousel === undefined) return;

  // Iterate through each selector and add the carousel.
  $.each(Drupal.settings.uicarousel, function(selector, options) {
	  
    // Create the carousel on non-processed elements.
    $(selector + ':not(.uicarousel-processed)', context)
      .addClass('uicarousel-processed')
      .carousel(options);
  });
};
;
(function($){var NivoSlider=function(element,options){var settings=$.extend({},$.fn.nivoSlider.defaults,options);var vars={currentSlide:0,currentImage:'',totalSlides:0,randAnim:'',running:false,paused:false,stop:false};var slider=$(element);slider.data('nivo:vars',vars);slider.css('position','relative');slider.addClass('nivoSlider');var kids=slider.children();kids.each(function(){var child=$(this);var link='';if(!child.is('img')){if(child.is('a')){child.addClass('nivo-imageLink');link=child;}
child=child.find('img:first');}
var childWidth=child.width();if(childWidth==0)childWidth=child.attr('width');var childHeight=child.height();if(childHeight==0)childHeight=child.attr('height');if(childWidth>slider.width()){slider.width(childWidth);}
if(childHeight>slider.height()){slider.height(childHeight);}
if(link!=''){link.css('display','none');}
child.css('display','none');vars.totalSlides++;});if(settings.startSlide>0){if(settings.startSlide>=vars.totalSlides)settings.startSlide=vars.totalSlides-1;vars.currentSlide=settings.startSlide;}
if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');for(var i=0;i<settings.slices;i++){var sliceWidth=Math.round(slider.width()/settings.slices);if(i==settings.slices-1){slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:(slider.width()-(sliceWidth*i))+'px'}));}else{slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:sliceWidth+'px'}));}}
slider.append($('<div class="nivo-caption"><h1></h1></div>').css({display:'none',opacity:settings.captionOpacity}));if(vars.currentImage.attr('title')!=''){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();$('.nivo-caption h1',slider).html(title);Cufon.refresh();$('.nivo-caption',slider).fadeIn(settings.animSpeed);}
var timer=0;if(!settings.manualAdvance&&kids.length>1){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
if(settings.directionNav){slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav">Prev</a><a class="nivo-nextNav">Next</a></div>');if(settings.directionNavHide){$('.nivo-directionNav',slider).hide();slider.hover(function(){$('.nivo-directionNav',slider).show();},function(){$('.nivo-directionNav',slider).hide();});}
$('a.nivo-prevNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');});$('a.nivo-nextNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');});}
if(settings.controlNav){var nivoControl=$('<div class="nivo-controlNav"></div>');slider.append(nivoControl);for(var i=0;i<kids.length;i++){if(settings.controlNavThumbs){var child=kids.eq(i);if(!child.is('img')){child=child.find('img:first');}
if(settings.controlNavThumbsFromRel){nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('rel')+'" alt="" /></a>');}else{nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('src').replace(settings.controlNavThumbsSearch,settings.controlNavThumbsReplace)+'" alt="" /></a>');}}else{nivoControl.append('<a class="nivo-control" rel="'+i+'">'+(i+1)+'</a>');}}
$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');$('.nivo-controlNav a',slider).live('click',function(){if(vars.running)return false;if($(this).hasClass('active'))return false;clearInterval(timer);timer='';slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');vars.currentSlide=$(this).attr('rel')-1;nivoRun(slider,kids,settings,'control');});}
if(settings.keyboardNav){$(window).keypress(function(event){if(event.keyCode=='37'){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');}
if(event.keyCode=='39'){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');}});}
if(settings.pauseOnHover){slider.hover(function(){vars.paused=true;clearInterval(timer);timer='';},function(){vars.paused=false;if(timer==''&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}});}
slider.bind('nivo:animFinished',function(){vars.running=false;$(kids).each(function(){if($(this).is('a')){$(this).css('display','none');}});if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
if(timer==''&&!vars.paused&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
settings.afterChange.call(this);});var resetSliceWidth=function(slider,settings){var slices=$('.nivo-slice',slider);var i=0;slices.each(function(){var slice=$(this);var sliceWidth=Math.round(slider.width()/settings.slices);if(i==settings.slices-1){slice.css('width',(slider.width()-(sliceWidth*i))+'px');}else{slice.css('width',sliceWidth+'px');}
i++;});}
var nivoRun=function(slider,kids,settings,nudge){var vars=slider.data('nivo:vars');if(vars&&(vars.currentSlide==vars.totalSlides-1)){settings.lastSlide.call(this);}
if((!vars||vars.stop)&&!nudge)return false;settings.beforeChange.call(this);if(!nudge){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}else{if(nudge=='prev'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}
if(nudge=='next'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}}
vars.currentSlide++;if(vars.currentSlide==vars.totalSlides){vars.currentSlide=0;settings.slideshowEnd.call(this);}
if(vars.currentSlide<0)vars.currentSlide=(vars.totalSlides-1);if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if(settings.controlNav){$('.nivo-controlNav a',slider).removeClass('active');$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');}
if(vars.currentImage.attr('title')!=''){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();if($('.nivo-caption',slider).css('display')=='block'){$('.nivo-caption h1',slider).fadeOut(settings.animSpeed,function(){$(this).html(title);Cufon.refresh();$(this).fadeIn(settings.animSpeed);});}else{$('.nivo-caption h1',slider).html(title);Cufon.refresh();}
$('.nivo-caption',slider).fadeIn(settings.animSpeed);}else{$('.nivo-caption',slider).fadeOut(settings.animSpeed);}
var i=0;$('.nivo-slice',slider).each(function(){var sliceWidth=Math.round(slider.width()/settings.slices);$(this).css({height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'});i++;});if(settings.effect=='random'){var anims=new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade','slideInRight','slideInLeft');vars.randAnim=anims[Math.floor(Math.random()*(anims.length+1))];if(vars.randAnim==undefined)vars.randAnim='fade';}
if(settings.effect.indexOf(',')!=-1){var anims=settings.effect.split(',');vars.randAnim=anims[Math.floor(Math.random()*(anims.length))];if(vars.randAnim==undefined)vars.randAnim='fade';}
vars.running=true;if(settings.effect=='sliceDown'||settings.effect=='sliceDownRight'||vars.randAnim=='sliceDownRight'||settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft'){var timeBuff=0;var i=0;resetSliceWidth(slider,settings);var slices=$('.nivo-slice',slider);if(settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'top':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUp'||settings.effect=='sliceUpRight'||vars.randAnim=='sliceUpRight'||settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft'){var timeBuff=0;var i=0;resetSliceWidth(slider,settings);var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'bottom':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUpDown'||settings.effect=='sliceUpDownRight'||vars.randAnim=='sliceUpDown'||settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft'){var timeBuff=0;var i=0;var v=0;resetSliceWidth(slider,settings);var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);if(i==0){slice.css('top','0px');i++;}else{slice.css('bottom','0px');i=0;}
if(v==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;v++;});}
else if(settings.effect=='fold'||vars.randAnim=='fold'){var timeBuff=0;var i=0;resetSliceWidth(slider,settings);$('.nivo-slice',slider).each(function(){var slice=$(this);var origWidth=slice.width();slice.css({top:'0px',height:'100%',width:'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='fade'||vars.randAnim=='fade'){var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':slider.width()+'px'});firstSlice.animate({opacity:'1.0'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInRight'||vars.randAnim=='slideInRight'){var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInLeft'||vars.randAnim=='slideInLeft'){var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1','left':'','right':'0px'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){firstSlice.css({'left':'0px','right':''});slider.trigger('nivo:animFinished');});}}
var trace=function(msg){if(this.console&&typeof console.log!="undefined")
console.log(msg);}
this.stop=function(){if(!$(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=true;trace('Stop Slider');}}
this.start=function(){if($(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=false;trace('Start Slider');}}
this.jump=function(idx){idx--;clearInterval(timer);timer='';vars.currentSlide=idx;nivoRun(slider,kids,settings,false);}
settings.afterLoad.call(this);};$.fn.nivoSlider=function(options){return this.each(function(){var element=$(this);if(element.data('nivoslider'))return;var nivoslider=new NivoSlider(this,options);element.data('nivoslider',nivoslider);});};$.fn.nivoSlider.defaults={effect:'random',slices:15,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:false,controlNavThumbsSearch:'.jpg',controlNavThumbsReplace:'_thumb.jpg',keyboardNav:true,pauseOnHover:true,manualAdvance:false,captionOpacity:0.8,beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};$.fn._reverse=[].reverse;})(jQuery);;
// $Id: views_nivo_slider.js,v 1.1.2.5.2.2 2010/06/18 15:04:17 pedrofaria Exp $ 
Drupal.behaviors.views_nivo_sliderBehavior = function (context) {
  $('.views-nivo-slider').each(function() {
    var id = $(this).attr('id');
    var vns = $(this);
    var cfg = Drupal.settings.views_nivo_slider[id];

    // Fix sizes
    vns.data('hmax', 0).data('wmax', 0);
    $('img', vns).each(function () {
      hmax =  (vns.data('hmax') > $(this).height()) ? vns.data('hmax') : $(this).height();
      wmax =  (vns.data('wmax') > $(this).width()) ? vns.data('hmax') : $(this).width();

      vns.width(wmax).height(hmax).data('hmax', hmax).data('wmax', wmax);
    });

    vns.nivoSlider(cfg);
  });
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) Elektrosmog, Valentin HIndermann, Marco Walser and Pierre
 * Miedinger. www.lineto.com, 2006. All rights reserved.
 */
Cufon.registerFont({"w":167,"face":{"font-family":"BrauerNeue","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-12.6922 -293.088 283 86","underline-thickness":"16.2","underline-position":"-41.4","stemh":"38","stemv":"41","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":63},"!":{"d":"26,-245v0,-15,46,-16,48,0v5,46,-9,150,-12,164v0,6,-6,11,-14,10v-23,-12,-20,-115,-22,-174xm63,-40v14,0,11,16,11,30v0,15,-48,16,-48,0v0,-14,-3,-30,11,-30r26,0","w":100},"\"":{"d":"44,-172v-42,5,-16,-47,-23,-73v0,-10,12,-11,23,-10v21,7,5,50,10,73v0,5,-4,10,-10,10xm111,-172v-41,5,-15,-47,-22,-73v0,-10,11,-12,22,-10v23,5,6,49,11,73v0,5,-5,10,-11,10","w":142},"#":{"d":"38,-182v2,-12,19,-7,31,-8r13,-56v2,-12,38,-11,30,6r-11,50r40,0r12,-56v3,-11,35,-12,31,6r-12,50v13,0,36,-4,27,13v-2,9,-2,23,-13,23r-22,0r-11,50v12,1,33,-5,27,13v-3,9,-2,23,-13,23r-22,0r-14,60v-1,11,-30,12,-31,0r13,-60r-40,0r-13,60v-1,11,-31,13,-31,0r13,-60v-13,0,-33,4,-27,-13v3,-9,2,-23,13,-23r22,0r12,-50v-13,0,-36,3,-27,-13xm93,-154r-12,50r40,0r12,-50r-40,0","w":214},"$":{"d":"97,39v-13,0,-10,-20,-10,-33v-37,-7,-54,-35,-54,-84v0,-13,20,-10,33,-10v13,0,11,13,11,26v0,18,12,32,30,32v22,0,34,-15,30,-38v-10,-53,-104,-53,-104,-123v0,-38,20,-63,54,-70v0,-13,-3,-32,10,-32v13,1,30,-4,30,10r0,22v34,7,57,32,55,76v0,13,-20,10,-34,10v-9,0,-11,-8,-10,-18v0,-18,-10,-32,-30,-32v-21,0,-32,13,-31,36v13,51,105,51,105,127v0,38,-22,62,-55,68v-1,13,3,32,-9,33r-21,0","w":214},"%":{"d":"200,-96v-26,1,-17,38,-17,62v0,10,6,17,17,17v27,0,17,-37,17,-61v0,-10,-6,-18,-17,-18xm200,9v-19,0,-45,-15,-45,-45r0,-40v0,-30,26,-45,45,-45v19,0,45,15,45,45r0,40v0,30,-26,45,-45,45xm64,-230v-26,1,-17,38,-17,62v0,10,6,17,17,17v27,0,16,-37,18,-61v0,-10,-7,-18,-18,-18xm64,-126v-19,0,-45,-14,-45,-44r0,-41v0,-30,26,-44,45,-44v19,0,45,14,45,44r0,41v0,30,-26,44,-45,44xm174,-255v10,-1,24,-1,19,10r-100,260v-6,14,-11,9,-25,10v-6,0,-9,-5,-6,-10r100,-261v3,-9,7,-9,12,-9","w":264},"&":{"d":"119,-203v0,-10,-4,-23,-22,-23v-37,0,-19,40,-3,61v19,-12,25,-23,25,-38xm131,-44r-48,-74v-38,15,-43,89,13,88v13,0,25,-3,35,-14xm153,-77v8,-16,-1,-42,32,-36v7,0,11,5,10,12v-3,20,-8,40,-20,59v6,12,15,20,19,34v-3,16,-42,9,-43,-5v-13,13,-32,21,-56,21v-99,0,-96,-125,-32,-157v-37,-34,-27,-114,34,-114v33,0,58,24,58,59v0,31,-16,49,-41,68","w":213},"'":{"d":"44,-172v-42,5,-16,-47,-23,-73v0,-10,12,-11,23,-10v21,7,5,50,10,73v0,5,-4,10,-10,10","w":89},"(":{"d":"62,67v-46,-98,-47,-222,0,-320v7,-15,19,-8,36,-10v5,0,6,5,6,10v-17,26,-39,91,-39,160v-1,73,25,132,39,164v-4,10,-35,11,-42,-4","w":118},")":{"d":"56,-253v45,98,46,222,0,320v-7,15,-19,8,-36,10v-6,0,-6,-4,-6,-10v17,-26,39,-91,39,-160v1,-72,-24,-132,-39,-163v3,-11,35,-12,42,3","w":118},"*":{"d":"62,-169v-37,-11,-54,-8,-40,-42v14,-16,36,7,52,9v-1,-41,-13,-54,26,-53v19,8,8,18,9,53v16,-3,37,-24,52,-9v13,34,-4,32,-40,42v16,26,22,25,26,42v-4,9,-16,14,-25,19v-18,-8,-13,-15,-31,-41v-18,26,-12,33,-30,41v-9,-4,-21,-10,-25,-19v4,-18,10,-16,26,-42","w":183},"+":{"d":"81,-114r0,-69v0,-10,11,-11,22,-10v23,7,6,54,11,79v27,6,79,-18,70,25v-4,21,-47,6,-70,10r0,69v0,9,-12,11,-23,10v-6,0,-10,-5,-10,-10r0,-69r-61,0v-11,0,-11,-13,-10,-25v7,-21,48,-5,71,-10","w":194},",":{"d":"71,-30v4,39,-7,76,-38,70v-4,0,-7,-5,-6,-11v2,-13,25,-2,25,-21v0,-17,-29,0,-29,-18v0,-13,-3,-30,10,-30v15,0,37,-5,38,10","w":94},"-":{"d":"20,-114r105,0v11,0,11,13,10,25v0,6,-5,10,-10,10r-105,0v-11,0,-11,-13,-10,-25v0,-6,5,-10,10,-10","w":145},".":{"d":"60,-40v14,0,11,16,11,30v0,15,-48,16,-48,0v0,-13,-4,-30,10,-30r27,0","w":94},"\/":{"d":"120,-255v10,-1,24,-1,19,10r-100,260v-6,14,-11,9,-25,10v-6,0,-9,-5,-6,-10r100,-261v3,-9,7,-9,12,-9","w":147},"0":{"d":"19,-62r0,-131v0,-45,31,-69,72,-69v41,0,72,24,72,69r0,131v0,45,-31,70,-72,70v-41,0,-72,-25,-72,-70xm60,-193r0,131v0,19,13,32,31,32v18,0,30,-13,30,-32r0,-131v0,-19,-12,-32,-30,-32v-18,0,-31,13,-31,32","w":181},"1":{"d":"31,-227v34,-2,17,-28,61,-28v6,0,11,5,11,10r0,235v0,13,-20,10,-33,10v-6,0,-10,-5,-10,-10r0,-183v-21,0,-46,6,-40,-24v0,-5,5,-10,11,-10","w":140},"2":{"d":"62,-40r83,0v12,0,10,17,10,30v0,6,-5,10,-10,10r-119,0v-18,-1,-11,-47,-4,-58r78,-108v24,-23,16,-59,-16,-59v-19,0,-31,13,-30,36v0,13,-17,10,-30,10v-9,0,-11,-8,-10,-18v0,-42,32,-65,70,-65v57,0,94,62,57,113"},"3":{"d":"46,-180v-19,2,-35,0,-30,-22v0,-34,30,-60,68,-60v46,0,67,31,67,81v0,23,-1,34,-24,47v35,13,28,37,28,72v0,47,-32,70,-71,70v-42,0,-74,-26,-72,-75v0,-13,18,-10,31,-10v8,0,11,7,10,15v0,17,12,32,31,32v31,2,30,-31,29,-62v0,-18,-14,-23,-34,-23v-12,0,-10,-17,-10,-30v0,-9,8,-11,18,-10v20,0,23,-19,23,-42v0,-17,-9,-28,-26,-28v-21,1,-30,15,-28,35v0,5,-4,10,-10,10","w":171},"4":{"d":"101,-99r0,-121r-52,121r52,0xm101,-59r-85,0v-15,-3,-12,-32,-6,-47r61,-140v9,-17,38,-6,60,-9v6,0,10,5,10,10r0,147v21,-3,30,4,27,28v-1,13,-14,11,-27,11v-3,27,14,68,-30,59v-20,-4,-6,-39,-10,-59","w":175},"5":{"d":"57,-107v-1,13,-39,13,-40,-2r0,-136v0,-5,4,-10,10,-10r114,0v14,0,11,16,11,29v0,5,-5,10,-11,10r-83,0r0,64v29,-38,108,-31,100,45v8,66,-15,116,-72,115v-40,0,-69,-25,-69,-70v0,-13,17,-10,30,-10v6,0,10,5,10,11v0,18,12,31,29,31v32,0,31,-38,31,-73v0,-20,-11,-31,-30,-31v-17,0,-30,11,-30,27","w":171},"6":{"d":"84,-128v-33,0,-27,38,-27,70v0,15,10,28,27,28v33,0,27,-38,27,-70v0,-15,-10,-28,-27,-28xm153,-200v0,12,-16,10,-28,10v-6,0,-10,-5,-10,-10v0,-15,-12,-25,-27,-25v-34,0,-33,41,-31,76v30,-42,105,-13,95,42v7,64,-11,115,-68,115v-38,0,-67,-33,-67,-66r0,-136v0,-39,29,-68,71,-68v42,0,64,29,65,62","w":168},"7":{"d":"99,-216r-84,0v-14,0,-11,-16,-11,-29v0,-5,5,-10,11,-10r119,0v18,2,11,39,6,52r-71,193v-3,15,-21,9,-37,10v-5,0,-10,-8,-7,-14","w":150},"8":{"d":"86,-30v26,0,30,-25,30,-54v0,-18,-12,-32,-30,-32v-26,0,-30,25,-30,54v0,18,12,32,30,32xm86,-153v21,0,28,-17,28,-42v0,-18,-11,-30,-28,-30v-21,0,-28,17,-28,42v0,18,11,30,28,30xm86,-262v68,-7,93,88,45,126v24,13,28,36,28,73v0,49,-33,71,-73,71v-47,1,-73,-31,-73,-91v0,-27,9,-42,28,-53v-46,-33,-25,-133,45,-126","w":172},"9":{"d":"83,-130v32,0,27,-36,27,-67v0,-15,-10,-28,-27,-28v-32,0,-27,36,-27,67v0,16,9,28,27,28xm150,-197r0,136v0,39,-28,69,-70,69v-42,0,-64,-30,-65,-63v0,-12,15,-10,27,-10v20,5,8,39,38,35v36,5,30,-45,30,-80v-31,41,-100,15,-95,-42v-7,-62,13,-111,68,-111v38,0,67,33,67,66"},":":{"d":"60,-40v14,0,11,16,11,30v0,15,-48,16,-48,0v0,-13,-4,-30,10,-30r27,0xm60,-165v14,0,11,16,11,30v0,15,-48,16,-48,0v0,-13,-4,-30,10,-30r27,0","w":93},";":{"d":"71,-30v3,37,-5,76,-36,70v-4,0,-5,-6,-5,-11v1,-14,22,-2,22,-21v0,-17,-29,0,-29,-18v0,-13,-3,-30,10,-30v15,0,37,-5,38,10xm60,-165v14,0,11,16,11,30v0,15,-48,16,-48,0v0,-13,-4,-30,10,-30r27,0","w":93},"<":{"d":"149,-150r-73,54r73,53v12,5,6,22,7,36v0,7,-7,9,-12,5r-100,-71v-10,-6,-11,-40,0,-47v35,-25,67,-52,106,-73v10,4,10,35,-1,43","w":194},"=":{"d":"33,-76r128,0v11,0,11,13,10,25v0,6,-5,10,-10,10r-128,0v-11,0,-11,-13,-10,-25v0,-6,5,-10,10,-10xm33,-152r128,0v11,0,11,13,10,25v0,6,-5,10,-10,10r-128,0v-11,0,-11,-13,-10,-25v0,-6,5,-10,10,-10","w":194},">":{"d":"118,-96r-73,-54v-12,-5,-6,-22,-7,-36v0,-7,7,-9,12,-5r100,71v10,6,11,40,0,47v-35,25,-67,52,-106,73v-10,-4,-10,-36,1,-43","w":194},"?":{"d":"84,-225v-24,0,-30,15,-29,36v0,13,-19,10,-32,10v-8,-1,-11,-6,-11,-15v0,-41,29,-69,71,-69v54,0,93,59,62,106v-16,24,-48,36,-46,77v0,13,-20,10,-33,10v-21,-5,-10,-43,-1,-56v16,-23,47,-31,47,-66v0,-20,-6,-33,-28,-33xm90,-40v14,0,15,37,0,40v-14,-1,-35,4,-35,-10v1,-13,-4,-30,10,-30r25,0"},"@":{"d":"195,-32v7,0,14,20,13,21v0,9,-38,23,-72,23v-75,0,-122,-58,-122,-131v0,-61,47,-133,128,-133v67,0,120,42,120,108v0,64,-36,94,-79,94v-9,0,-19,-5,-22,-18v-9,13,-27,17,-39,17v-35,0,-46,-30,-46,-53v0,-52,32,-84,68,-84v18,0,28,7,33,16v-2,-16,24,-23,28,-7r-16,89v0,6,3,10,9,10v19,0,38,-28,38,-60v0,-50,-40,-85,-94,-85v-52,0,-100,46,-100,107v0,93,93,125,153,86xm127,-81v20,1,36,-25,36,-54v0,-16,-5,-24,-24,-24v-18,0,-35,20,-35,52v0,19,8,26,23,26","w":276},"A":{"d":"121,-91r-27,-119r-26,119r53,0xm62,-249v8,-13,38,-3,56,-6v4,0,8,2,9,6r55,241v-1,12,-38,13,-42,0r-11,-45r-69,0v-8,25,-2,62,-46,53v-8,-2,-9,-8,-6,-14","w":189},"B":{"d":"122,0r-92,0v-6,0,-10,-5,-10,-10r0,-235v0,-5,4,-10,10,-10r85,0v55,-3,66,101,19,120v41,10,34,45,34,88v0,23,-18,47,-46,47xm63,-115r0,79v27,0,59,5,59,-24v0,-26,3,-56,-23,-55r-36,0xm96,-150v22,0,24,-21,24,-45v0,-27,-30,-25,-57,-24r0,69r33,0","w":181},"C":{"d":"165,-187v-2,17,-52,16,-44,-6v0,-19,-12,-32,-30,-32v-18,0,-31,14,-31,32r0,130v0,19,13,32,31,32v20,0,32,-16,30,-38v0,-13,20,-10,33,-10v8,1,11,7,11,16v0,45,-33,70,-74,70v-41,0,-74,-25,-74,-70r0,-130v0,-45,33,-70,74,-70v43,0,79,27,74,76","w":177},"D":{"d":"121,-62r0,-131v1,-31,-29,-26,-57,-26r0,182v28,0,57,6,57,-25xm166,-208r0,161v0,25,-24,47,-50,47r-86,0v-6,0,-11,-5,-11,-10r0,-235v0,-5,5,-10,11,-10r86,0v26,0,50,22,50,47","w":183},"E":{"d":"143,0r-113,0v-6,0,-10,-5,-10,-10r0,-235v0,-5,4,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-5,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v0,6,-5,10,-10,10r-66,0r0,78r79,0v12,0,10,16,10,28v0,6,-5,10,-10,10","w":164},"F":{"d":"64,-116r0,106v-1,15,-20,9,-34,10v-6,0,-10,-5,-10,-10r0,-235v0,-5,4,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-5,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v0,6,-5,10,-10,10r-66,0","w":159},"G":{"d":"89,-121v-7,-45,39,-23,66,-28v5,0,10,5,10,11r0,128v0,15,-41,16,-44,0r0,-5v-35,42,-104,26,-104,-48r0,-130v0,-45,33,-70,74,-70v43,0,76,27,74,76v0,13,-20,10,-34,10v-8,0,-11,-7,-10,-16v0,-19,-12,-32,-30,-32v-18,0,-31,13,-31,32r0,130v0,19,13,32,31,32v36,1,30,-44,30,-80v-13,-1,-30,4,-32,-10","w":183},"H":{"d":"64,-152r61,0r0,-93v0,-13,20,-10,33,-10v6,0,11,5,11,10r0,235v0,13,-20,10,-34,10v-6,0,-10,-5,-10,-10r0,-104r-61,0r0,104v0,14,-21,9,-34,10v-6,0,-10,-5,-10,-10r0,-235v0,-14,21,-9,34,-10v6,0,10,5,10,10r0,93","w":189},"I":{"d":"20,-10r0,-235v0,-14,21,-9,34,-10v6,0,10,5,10,10r0,235v0,14,-21,9,-34,10v-6,0,-10,-5,-10,-10","w":84},"J":{"d":"78,7v-45,0,-76,-30,-72,-82v0,-13,20,-10,34,-10v11,0,10,11,10,22v0,19,9,32,28,32v19,0,28,-13,28,-32r0,-182v0,-13,20,-10,34,-10v6,0,10,5,10,10r0,182v0,44,-31,70,-72,70","w":168},"K":{"d":"163,-249v-16,39,-38,72,-56,109r65,132v-4,13,-43,12,-50,-2r-58,-114r0,114v0,14,-21,9,-34,10v-6,0,-10,-5,-10,-10r0,-235v0,-14,21,-9,34,-10v6,0,10,5,10,10r0,95r53,-95v3,-14,20,-9,36,-10v5,0,10,1,10,6","w":176},"L":{"d":"130,-38v13,0,10,16,10,28v0,5,-4,10,-10,10r-101,0v-6,0,-11,-5,-11,-10r0,-235v0,-13,20,-10,34,-10v6,0,11,5,11,10r0,207r67,0","w":149},"M":{"d":"140,-10v0,14,-31,15,-34,0r-44,-193r0,193v0,12,-17,10,-30,10v-6,0,-10,-5,-10,-10r0,-235v3,-18,37,-7,56,-10v6,0,10,5,11,10r34,155r34,-155v4,-18,37,-7,56,-10v6,0,11,5,11,10r0,235v0,12,-17,10,-30,10v-6,0,-10,-5,-10,-10r0,-193","w":245},"N":{"d":"140,-86r0,-159v0,-14,21,-9,34,-10v6,0,10,5,10,10r0,235v-1,16,-45,15,-52,0r-70,-160r0,160v0,14,-21,9,-34,10v-6,0,-10,-5,-10,-10r0,-235v0,-16,44,-15,51,0","w":202},"O":{"d":"121,-63r0,-130v0,-19,-12,-32,-30,-32v-18,0,-31,13,-31,32r0,130v0,19,13,32,31,32v18,0,30,-13,30,-32xm165,-193r0,130v0,45,-33,70,-74,70v-41,0,-74,-25,-74,-70r0,-130v0,-45,33,-70,74,-70v41,0,74,25,74,70","w":181},"P":{"d":"96,-130v30,4,22,-38,23,-65v1,-31,-28,-23,-55,-24r0,89r32,0xm64,-93r0,83v0,13,-20,10,-34,10v-6,0,-11,-5,-11,-10r0,-235v0,-5,5,-10,11,-10v58,1,135,-13,133,47v-1,50,11,116,-41,115r-58,0","w":175},"Q":{"d":"121,-62r0,-131v0,-19,-12,-32,-30,-32v-18,0,-31,13,-31,32r0,131v0,19,13,32,31,32v18,0,30,-13,30,-32xm158,-30v11,1,33,-5,28,10v-6,10,-9,26,-23,27r-79,0v-38,0,-67,-28,-67,-70r0,-130v0,-45,33,-70,74,-70v41,0,74,25,74,70v0,54,8,121,-7,163","w":188},"R":{"d":"99,-146v24,0,24,-24,24,-49v0,-28,-31,-25,-59,-24r0,73r35,0xm124,-86v0,-27,-33,-23,-60,-23r0,99v0,14,-21,9,-34,10v-6,0,-10,-5,-10,-10r0,-235v0,-5,4,-10,10,-10r88,0v42,1,46,38,46,83v0,23,-8,40,-31,43v51,7,31,69,35,119v0,13,-20,10,-33,10v-6,0,-11,-5,-11,-10r0,-76","w":183},"S":{"d":"88,-225v-21,0,-31,14,-30,36v13,50,104,51,104,126v0,45,-31,70,-75,70v-47,0,-79,-29,-74,-85v0,-13,20,-10,34,-10v12,0,10,13,10,25v0,18,12,32,30,32v37,0,42,-55,10,-65v-31,-23,-84,-43,-84,-95v0,-45,30,-72,75,-72v46,0,77,27,74,78v0,13,-20,10,-33,10v-9,-1,-11,-8,-11,-18v0,-18,-10,-32,-30,-32","w":176},"T":{"d":"19,-255r127,0v12,0,10,15,10,27v-2,19,-33,8,-51,11r0,207v0,13,-20,10,-34,10v-6,0,-11,-5,-11,-10r0,-207v-25,-2,-59,11,-51,-28v0,-6,5,-10,10,-10","w":165},"U":{"d":"122,-63r0,-182v0,-13,20,-10,34,-10v6,0,10,5,10,10r0,182v0,45,-33,70,-74,70v-41,0,-74,-25,-74,-70r0,-182v0,-13,20,-10,33,-10v6,0,11,5,11,10r0,182v0,19,12,32,30,32v18,0,30,-13,30,-32","w":185},"V":{"d":"89,-32r39,-213v1,-14,39,-16,44,-2r-44,239v-8,17,-46,5,-67,8v-5,0,-9,-4,-10,-8r-45,-239v2,-13,41,-13,44,2","w":178},"W":{"d":"283,-247r-41,237v-3,17,-33,8,-51,10v-6,0,-10,-5,-11,-10r-35,-199r-34,199v-3,17,-34,8,-52,10v-6,0,-9,-5,-10,-10r-41,-237v1,-13,39,-13,42,2r32,192r31,-192v3,-18,36,-7,55,-10v6,0,9,5,10,10r31,192r32,-192v1,-14,38,-16,42,-2","w":291},"X":{"d":"140,-244v6,-17,19,-9,37,-11v6,0,10,7,7,12r-50,111r62,124v-4,12,-40,14,-49,-3r-46,-92r-46,92v-7,18,-22,11,-41,11v-7,0,-10,-6,-7,-13r61,-119r-51,-115v4,-12,40,-16,45,3r39,78","w":202},"Y":{"d":"114,-10v-2,16,-45,14,-45,0r0,-108r-64,-130v4,-11,36,-12,44,4r42,83r43,-83v6,-17,18,-9,36,-11v7,0,10,6,7,11r-63,126r0,108","w":183},"Z":{"d":"25,0v-17,0,-11,-44,-5,-53r101,-162r-88,0v-12,0,-10,-17,-10,-30v0,-6,5,-10,10,-10r130,0v16,0,11,33,7,45r-105,170r98,0v13,-1,11,17,11,30v0,6,-6,10,-11,10r-138,0","w":185},"[":{"d":"58,-215r0,245v-4,29,41,-3,35,37v-2,12,-12,12,-24,11v-30,0,-45,-16,-45,-42r0,-257v-1,-31,22,-42,59,-42v10,0,11,11,10,22v-1,20,-35,-1,-35,26","w":108},"\\":{"d":"8,-245v-5,-11,9,-11,19,-10v5,0,9,0,12,9r101,265v-4,9,-26,11,-32,-4","w":147},"]":{"d":"49,30r0,-245v5,-29,-40,1,-34,-38v2,-11,12,-10,24,-10v30,0,44,16,44,42r0,257v1,31,-21,45,-58,42v-9,0,-10,-11,-10,-22v0,-21,34,0,34,-26","w":108},"^":{"d":"97,-219r-41,74v-9,11,-35,-2,-31,-17r54,-95v6,-8,29,-8,37,0r55,100v-3,11,-25,24,-32,12","w":194},"_":{"d":"20,31r152,0v9,-1,7,11,7,19v0,4,-3,7,-7,7r-152,0v-9,0,-5,-12,-6,-20v0,-4,2,-6,6,-6","w":192},"`":{"d":"55,-220v-33,6,-35,-26,-50,-43v4,-12,40,-12,45,3v4,11,26,36,5,40","w":103},"a":{"d":"107,-18v-26,35,-96,32,-98,-30v-1,-52,44,-60,80,-73v28,-10,21,-42,-7,-42v-16,0,-25,11,-25,27v0,12,-16,10,-29,10v-7,0,-11,-6,-10,-13v0,-34,27,-60,66,-60v91,0,57,109,63,189v0,13,-17,10,-30,10v-9,0,-11,-8,-10,-18xm79,-28v30,-1,29,-34,28,-66v-18,11,-55,16,-55,41v0,12,4,25,27,25","w":164},"b":{"d":"151,-149v-3,64,16,155,-48,155v-21,0,-37,-11,-44,-28v4,21,-11,24,-31,22v-6,0,-10,-5,-10,-10r0,-235v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,74v16,-46,94,-30,92,22xm85,-30v39,-1,25,-63,25,-100v0,-17,-9,-29,-25,-29v-40,2,-26,62,-26,100v0,15,10,29,26,29","w":165},"c":{"d":"146,-137v0,13,-17,10,-30,10v-20,-5,-7,-38,-36,-36v-41,3,-26,66,-26,106v0,15,11,27,26,27v18,0,26,-13,25,-30v0,-12,18,-10,31,-10v7,0,11,6,10,13v0,35,-26,63,-66,63v-39,0,-67,-28,-67,-63r0,-78v0,-35,28,-64,67,-64v40,0,66,27,66,62","w":157},"d":{"d":"15,-47r0,-102v-3,-51,76,-69,92,-22r0,-74v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,235v0,12,-18,10,-31,10v-11,0,-10,-11,-10,-22v-17,47,-92,30,-92,-25xm81,-159v-40,1,-26,62,-26,100v0,17,10,29,26,29v40,-2,26,-62,26,-100v0,-15,-10,-29,-26,-29","w":166},"e":{"d":"138,-87r-84,0v-2,28,-1,57,26,57v16,0,27,-12,27,-28v0,-12,18,-10,31,-10v6,0,10,5,10,11v0,35,-28,63,-68,63v-39,0,-67,-28,-67,-63r0,-78v0,-35,28,-64,67,-64v55,0,75,42,68,102v0,5,-4,10,-10,10xm107,-119v13,-46,-51,-60,-53,-16r0,16r53,0","w":161},"f":{"d":"105,-173v5,35,-23,25,-46,26r0,137v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10r0,-199v1,-36,34,-51,77,-47v11,1,11,15,10,27v-2,21,-55,0,-46,31r0,14v17,2,43,-7,46,11","w":112},"g":{"d":"28,12v46,-9,21,40,55,38v35,-2,24,-45,26,-78v-17,47,-92,30,-92,-25r0,-96v-3,-51,76,-69,92,-22v-5,-21,10,-24,30,-22v6,0,10,5,10,10r0,202v0,37,-28,67,-65,67v-36,0,-65,-28,-66,-64v0,-5,4,-10,10,-10xm83,-159v-38,0,-26,58,-26,94v0,17,10,29,26,29v38,-2,26,-57,26,-94v0,-15,-10,-29,-26,-29","w":166},"h":{"d":"59,-245r0,74v7,-17,23,-28,44,-28v73,0,48,117,48,189v0,12,-17,10,-30,10v-6,0,-11,-5,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-16,0,-26,14,-26,29r0,124v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10r0,-235v0,-13,17,-10,30,-10v6,0,11,5,11,10"},"i":{"d":"18,-10r0,-173v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,173v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10xm28,-255v22,-3,36,2,31,25v0,12,-18,10,-31,10v-12,0,-10,-13,-10,-25v0,-5,4,-10,10,-10","w":77},"j":{"d":"33,-255v22,-3,36,2,31,25v0,12,-18,10,-31,10v-12,0,-10,-13,-10,-25v0,-5,4,-10,10,-10xm-2,66v-15,-2,-15,-42,5,-36v18,0,20,-10,20,-22r0,-191v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,203v-1,32,-28,50,-66,46","w":82},"k":{"d":"18,-10r0,-235v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,129r48,-64v5,-12,39,-13,46,-1v-13,30,-37,50,-54,76v19,33,44,60,59,96v-1,14,-41,14,-45,-1r-54,-86r0,86v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10","w":164},"l":{"d":"18,-10r0,-235v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,235v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10","w":77},"m":{"d":"194,-199v73,0,48,117,48,189v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10r0,-124v0,-17,-10,-29,-26,-29v-16,0,-24,14,-24,29r0,124v0,12,-17,10,-30,10v-6,0,-11,-5,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-16,0,-26,14,-26,29r0,124v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10r0,-173v0,-13,17,-10,30,-10v11,0,12,10,11,22v11,-38,77,-34,88,0v7,-16,26,-28,47,-28","w":257},"n":{"d":"28,-193v20,-2,36,0,31,22v7,-17,23,-28,44,-28v73,0,48,117,48,189v0,12,-17,10,-30,10v-6,0,-11,-5,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-16,0,-26,14,-26,29r0,124v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10r0,-173v0,-5,4,-10,10,-10"},"o":{"d":"13,-57r0,-78v0,-35,28,-64,67,-64v40,0,68,29,68,64r0,78v0,35,-28,63,-68,63v-39,0,-67,-28,-67,-63xm80,-30v43,-2,27,-65,27,-105v0,-15,-11,-28,-27,-28v-41,0,-26,66,-26,106v0,15,11,27,26,27","w":161},"p":{"d":"102,-199v62,1,44,92,47,155v2,52,-76,67,-92,22r0,78v0,13,-17,10,-30,10v-6,0,-10,-5,-10,-10r0,-239v0,-13,17,-10,30,-10v11,0,10,11,10,22v7,-17,24,-28,45,-28xm83,-33v40,-1,26,-63,26,-101v0,-17,-10,-29,-26,-29v-40,0,-26,62,-26,101v0,15,10,29,26,29","w":164},"q":{"d":"15,-44v3,-64,-15,-154,48,-155v21,0,37,11,44,28v-4,-21,11,-24,31,-22v6,0,10,5,10,10r0,239v0,13,-17,10,-30,10v-6,0,-11,-5,-11,-10r0,-78v-16,46,-94,30,-92,-22xm81,-163v-39,1,-25,64,-25,101v0,17,9,29,25,29v40,0,26,-62,26,-101v0,-15,-10,-29,-26,-29","w":164},"r":{"d":"143,-133v-3,17,-48,15,-41,-5v0,-14,-4,-25,-21,-25v-12,0,-22,11,-22,25r0,128v0,12,-18,10,-31,10v-6,0,-10,-5,-10,-10r0,-173v0,-13,17,-10,30,-10v10,0,12,8,11,19v16,-34,86,-34,84,18r0,23","w":149},"s":{"d":"104,-139v1,-33,-49,-32,-51,-5v15,43,94,26,94,91v0,33,-28,59,-67,59v-39,0,-68,-29,-68,-62v0,-12,17,-10,29,-10v6,0,10,5,10,10v0,16,12,26,29,26v29,-1,37,-28,14,-41v-30,-17,-80,-25,-80,-70v0,-36,26,-58,63,-58v38,0,67,23,66,60v0,12,-17,10,-29,10v-6,0,-10,-5,-10,-10","w":158},"t":{"d":"59,-156r0,98v-4,18,15,21,36,21v11,0,11,15,10,27v-1,16,-23,10,-38,10v-27,0,-49,-20,-49,-46r0,-199v0,-13,17,-10,30,-10v22,0,7,41,11,62v23,1,52,-9,46,27v-3,17,-30,8,-46,10","w":119},"u":{"d":"149,-10v-6,18,-52,14,-41,-12v-7,17,-24,28,-45,28v-73,0,-40,-118,-47,-189v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,124v0,17,9,29,25,29v16,0,26,-14,26,-29r0,-124v0,-13,17,-10,30,-10v6,0,11,5,11,10r0,173"},"v":{"d":"105,-10v-8,17,-49,14,-53,0r-50,-176v2,-11,37,-12,40,1r36,136r36,-136v2,-12,36,-13,41,-1","w":157},"w":{"d":"111,-193v17,3,44,-7,48,10r27,133r29,-133v0,-15,36,-15,40,-2r-39,175v-2,18,-30,7,-47,10v-6,0,-9,-4,-10,-10r-29,-137r-29,137v-2,18,-30,7,-47,10v-6,0,-9,-4,-10,-10r-39,-175v1,-12,37,-14,40,2r29,133r27,-133v1,-6,4,-10,10,-10","w":260},"x":{"d":"109,-8r-31,-63r-30,63v-4,12,-38,13,-43,0v12,-34,30,-62,44,-94r-39,-82v0,-14,35,-13,41,-1r27,54r27,-54v2,-13,48,-12,40,4r-38,79r45,94v-2,12,-37,13,-43,0","w":156},"y":{"d":"84,-44r35,-141v2,-12,38,-14,42,0r-58,208v-13,43,-30,44,-71,43v-11,0,-11,-14,-10,-26v0,-22,51,6,40,-31r-58,-194v1,-13,38,-13,42,0","w":162},"z":{"d":"132,-193v17,0,13,39,7,48r-81,107r77,0v11,0,11,16,10,28v0,6,-5,10,-10,10r-112,0v-17,1,-14,-38,-8,-46r83,-109r-70,0v-12,0,-10,-16,-10,-28v0,-6,5,-10,10,-10r104,0","w":155},"{":{"d":"116,-230v-58,3,13,126,-53,137v43,6,30,70,30,115v0,13,7,23,23,22v10,0,11,11,10,22v0,9,-8,11,-18,11v-59,0,-51,-69,-49,-127v1,-40,-47,4,-38,-54v4,-24,38,5,38,-31v0,-61,-12,-127,57,-127v11,0,10,11,10,22v0,6,-4,10,-10,10","w":141},"|":{"d":"18,15r0,-260v0,-11,11,-10,22,-10v5,0,10,4,10,10r0,260v0,11,-11,10,-22,10v-5,0,-10,-4,-10,-10","w":68},"}":{"d":"78,-93v-44,-6,-30,-70,-30,-115v0,-13,-7,-23,-23,-22v-11,0,-10,-11,-10,-22v0,-9,8,-11,18,-10v28,0,49,21,49,47r0,80v-1,40,47,-4,38,54v-4,23,-39,-4,-38,31v2,61,11,132,-57,127v-10,0,-11,-11,-10,-22v2,-18,38,-8,33,-33v3,-46,-13,-109,30,-115","w":141},"~":{"d":"118,-75v-18,1,-24,-12,-42,-13v-22,6,-29,27,-41,-10v6,-10,21,-20,41,-20v18,0,24,13,42,14v23,-5,28,-27,41,9v-5,11,-21,19,-41,20","w":194},"\u00a0":{"w":63}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) Elektrosmog, Valentin HIndermann, Marco Walser and Pierre
 * Miedinger. www.lineto.com, 2006. All rights reserved.
 */
Cufon.registerFont({"w":164,"face":{"font-family":"BrauerNeueBold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-12.8782 -332.082 283 86","underline-thickness":"16.2","underline-position":"-41.4","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":63},"!":{"d":"26,-196v0,-20,-9,-56,11,-59v15,1,36,-5,37,10v2,57,-4,114,-12,164v-1,6,-6,11,-14,10v-5,0,-9,-5,-9,-10v-8,-54,-13,-92,-13,-115xm26,-30v3,-17,48,-14,48,0v0,13,3,31,-11,30v-15,-1,-36,5,-37,-10r0,-20","w":100},"\"":{"d":"44,-172v-11,1,-23,1,-23,-10r0,-63v0,-11,12,-11,23,-10v21,7,6,50,10,73v1,5,-5,10,-10,10xm111,-172v-11,1,-22,0,-22,-10r0,-63v0,-10,11,-12,22,-10v23,4,6,50,11,73v0,6,-5,10,-11,10","w":142},"#":{"d":"38,-182v2,-12,19,-7,31,-8r13,-56v3,-13,38,-10,30,6r-11,50r40,0r12,-56v2,-10,36,-13,31,6r-12,50v13,1,36,-5,27,13v-2,9,-2,23,-13,23r-22,0r-11,50v12,1,33,-6,27,13v-3,9,-2,23,-13,23r-22,0r-14,60v0,11,-31,13,-31,0r13,-60r-40,0r-13,60v0,10,-31,14,-31,0r13,-60v-12,-1,-33,5,-27,-13v3,-9,2,-23,13,-23r22,0r12,-50v-13,0,-36,3,-27,-13xm93,-154r-12,50r40,0r12,-50r-40,0","w":214},"$":{"d":"118,39v-14,0,-32,3,-31,-11r0,-22v-37,-7,-57,-37,-54,-84v1,-14,20,-9,33,-10v12,-1,11,13,11,26v-1,18,13,32,30,32v37,0,39,-58,10,-66v-32,-26,-84,-37,-84,-95v0,-39,21,-64,54,-70v1,-13,-4,-32,10,-32v13,1,30,-4,30,10r0,22v34,7,58,33,55,76v0,14,-20,9,-34,10v-9,0,-10,-8,-10,-18v0,-19,-11,-32,-30,-32v-28,0,-40,33,-25,51v30,37,99,38,99,112v0,38,-22,63,-55,68v-1,13,4,33,-9,33","w":214},"%":{"d":"217,-34v0,-24,8,-61,-17,-62v-26,0,-15,38,-17,62v-1,11,7,17,17,17v10,0,17,-7,17,-17xm245,-76v0,46,-5,85,-45,85v-39,0,-45,-39,-45,-85v0,-26,21,-45,45,-45v23,0,45,19,45,45xm82,-168v-2,-25,8,-62,-18,-62v-25,1,-17,38,-17,62v0,10,7,17,17,17v10,0,18,-7,18,-17xm109,-211v0,46,-5,85,-45,85v-39,-1,-45,-39,-45,-85v0,-25,22,-43,45,-44v23,0,45,18,45,44xm167,-254v11,-2,32,-4,26,9r-105,269v-8,1,-32,5,-26,-9","w":264},"&":{"d":"94,-165v14,-11,24,-18,25,-38v0,-15,-8,-23,-22,-23v-33,0,-22,39,-3,61xm83,-118v-41,17,-39,91,13,88v14,0,26,-5,35,-14xm170,-113v12,0,26,-2,25,12v-3,21,-9,41,-20,59v6,12,15,20,19,34v-2,16,-42,10,-43,-5v-46,45,-134,15,-134,-58v0,-32,15,-59,46,-78v-36,-33,-28,-114,34,-114v33,0,58,26,58,59v-1,36,-18,49,-41,68r39,59v5,-7,2,-36,17,-36","w":213},"\u2019":{"d":"56,-246v5,38,-2,73,-38,71v-8,-3,-7,-21,5,-18v10,2,21,-19,8,-22v-22,5,-24,-11,-22,-31v1,-14,45,-15,47,0","w":81},"(":{"d":"104,67v3,16,-17,8,-29,10v-5,0,-10,-3,-13,-10v-48,-101,-47,-218,0,-320v6,-14,20,-9,36,-10v5,0,7,4,6,10v-50,71,-51,249,0,320","w":118},")":{"d":"14,-253v-3,-16,18,-8,30,-10v5,0,9,3,12,10v48,101,46,218,0,320v-7,14,-20,9,-36,10v-5,0,-7,-4,-6,-10v50,-71,51,-249,0,-320","w":118},"*":{"d":"41,-120v-16,-15,15,-34,21,-49v-15,-8,-49,-5,-46,-26v4,-10,6,-27,22,-21r36,14v-1,-47,-13,-52,26,-53v19,8,8,13,9,53v16,-3,38,-24,52,-9v7,12,10,32,-10,33v-7,0,-22,6,-30,9v7,15,36,33,20,49v-6,4,-12,10,-19,12v-17,-7,-17,-20,-31,-41v-15,29,-26,53,-50,29","w":183},"+":{"d":"20,-79v-14,0,-15,-36,0,-35r61,0r0,-69v0,-10,11,-11,22,-10v6,0,11,4,11,10r0,69v27,6,79,-17,70,25v-4,21,-48,6,-70,10r0,69v0,10,-12,11,-23,10v-5,0,-10,-5,-10,-10r0,-69r-61,0","w":194},",":{"d":"71,-30v3,37,-3,72,-38,70v-4,-1,-7,-5,-6,-11v2,-12,25,-4,25,-21v0,-16,-30,0,-29,-18v0,-13,-3,-30,10,-30v15,0,37,-5,38,10","w":94},"-":{"d":"20,-79v-14,0,-15,-36,0,-35r105,0v11,0,10,13,10,25v0,5,-5,10,-10,10r-105,0","w":145},".":{"d":"23,-30v3,-17,48,-15,48,0v0,13,3,31,-11,30v-14,-1,-36,5,-37,-10r0,-20","w":94},"\/":{"d":"113,-254v11,-2,32,-4,26,9r-105,269v-8,1,-32,5,-26,-9","w":147},"0":{"d":"91,8v-42,0,-73,-27,-72,-70r0,-131v-1,-43,30,-69,72,-69v42,0,73,26,72,69r0,131v1,44,-30,70,-72,70xm91,-225v-18,0,-31,14,-31,32r0,131v0,18,13,32,31,32v17,1,30,-14,30,-32r0,-131v1,-18,-13,-33,-30,-32","w":181},"1":{"d":"60,-193v-21,0,-46,6,-40,-24v4,-17,37,-7,40,-31v5,-11,40,-12,43,3r0,235v0,14,-19,9,-33,10v-5,0,-10,-5,-10,-10r0,-183","w":140},"2":{"d":"84,-262v59,0,92,64,57,113r-79,109r83,0v13,0,10,17,10,30v0,5,-5,10,-10,10r-119,0v-18,-3,-13,-45,-4,-58r89,-125v10,-21,-4,-42,-27,-42v-21,0,-31,14,-30,36v0,13,-17,10,-30,10v-9,0,-10,-8,-10,-18v0,-39,30,-65,70,-65","w":167},"3":{"d":"56,-190v-7,19,-50,14,-40,-12v-1,-35,32,-60,68,-60v43,0,72,30,67,81v-3,29,-4,35,-24,47v28,7,28,35,28,72v0,44,-29,70,-71,70v-45,0,-74,-28,-72,-75v0,-13,18,-10,31,-10v7,0,10,6,10,15v-1,18,12,32,31,32v32,0,30,-31,29,-62v0,-18,-14,-23,-34,-23v-13,0,-10,-17,-10,-30v4,-19,46,-3,41,-33v2,-26,-2,-48,-26,-47v-20,0,-30,13,-28,35","w":171},"4":{"d":"101,-99r0,-121r-52,121r52,0xm141,-10v-1,16,-41,14,-40,0r0,-49r-85,0v-16,-3,-12,-32,-6,-47r61,-140v8,-17,39,-6,60,-9v5,0,10,5,10,10r0,147v21,-3,31,4,27,28v1,13,-14,11,-27,11r0,49","w":175},"5":{"d":"117,-61v0,-34,6,-73,-30,-73v-17,0,-30,11,-30,27v0,11,-18,7,-30,8v-5,0,-10,-5,-10,-10r0,-136v0,-5,5,-10,10,-10r114,0v13,0,11,16,11,29v-1,5,-5,10,-11,10r-83,0r0,64v28,-40,110,-27,100,45v8,67,-14,115,-72,115v-41,0,-71,-27,-69,-70v0,-13,17,-10,30,-10v6,0,10,5,10,11v0,17,11,31,29,31v17,1,32,-13,31,-31","w":171},"6":{"d":"84,-128v-32,0,-28,38,-27,70v0,16,11,28,27,28v32,1,27,-38,27,-70v1,-16,-11,-28,-27,-28xm88,-262v37,0,65,26,65,62v0,12,-16,10,-28,10v-5,0,-10,-5,-10,-10v0,-15,-12,-25,-27,-25v-38,0,-31,41,-31,76v29,-41,105,-14,95,42v8,64,-13,114,-68,115v-35,1,-68,-32,-67,-66r0,-136v0,-39,30,-68,71,-68","w":168},"7":{"d":"69,-10v-5,18,-51,15,-44,-4r74,-202r-84,0v-13,1,-11,-16,-11,-29v0,-6,5,-10,11,-10r119,0v17,3,12,36,6,52","w":150},"8":{"d":"56,-84v0,30,4,54,30,54v26,0,30,-24,30,-54v0,-18,-13,-32,-30,-32v-17,0,-30,14,-30,32xm58,-195v0,25,7,42,28,42v21,0,28,-17,28,-42v0,-17,-11,-30,-28,-30v-17,0,-28,13,-28,30xm18,-182v0,-51,24,-76,68,-80v66,-6,93,90,45,126v26,11,28,35,28,73v0,46,-30,71,-73,71v-50,-1,-77,-33,-73,-91v2,-30,8,-42,28,-53v-15,-9,-23,-24,-23,-46","w":172},"9":{"d":"83,-130v31,0,28,-36,27,-67v0,-16,-11,-28,-27,-28v-31,-1,-28,35,-27,67v0,16,10,28,27,28xm83,-263v35,-1,67,31,67,66r0,136v1,40,-30,70,-70,69v-38,0,-64,-27,-65,-63v0,-12,15,-10,27,-10v6,0,11,4,11,10v1,17,10,25,27,25v39,0,29,-45,30,-80v-29,42,-103,12,-95,-42v-8,-63,15,-110,68,-111","w":167},":":{"d":"23,-30v3,-17,48,-15,48,0v0,13,3,31,-11,30v-14,-1,-36,5,-37,-10r0,-20xm23,-155v3,-17,48,-15,48,0v0,13,3,31,-11,30v-14,-1,-36,5,-37,-10r0,-20","w":93},";":{"d":"71,-30v2,36,-1,72,-36,70v-4,0,-6,-5,-5,-11v1,-12,25,-4,22,-21v1,-16,-30,0,-29,-18v0,-13,-3,-30,10,-30v15,0,37,-5,38,10xm23,-155v3,-17,48,-15,48,0v0,13,3,31,-11,30v-14,-1,-36,5,-37,-10r0,-20","w":93},"<":{"d":"149,-150r-73,54r73,53v12,6,6,21,7,36v0,8,-7,8,-12,5r-100,-71v-10,-8,-10,-36,0,-47v36,-24,67,-52,106,-73v10,3,10,36,-1,43","w":194},"=":{"d":"33,-41v-14,0,-15,-36,0,-35r128,0v11,0,10,13,10,25v0,5,-5,10,-10,10r-128,0xm33,-117v-14,0,-15,-36,0,-35r128,0v11,0,10,13,10,25v0,5,-5,10,-10,10r-128,0","w":194},">":{"d":"118,-96r-73,-54v-12,-6,-6,-21,-7,-36v0,-8,7,-8,12,-5r100,71v10,8,10,36,0,47v-36,24,-67,52,-106,73v-10,-3,-10,-36,1,-43","w":194},"?":{"d":"105,-171v14,-19,8,-54,-21,-54v-20,0,-30,13,-29,36v0,14,-19,9,-32,10v-8,0,-11,-6,-11,-15v0,-41,30,-69,71,-69v57,0,92,60,62,106v-16,24,-47,37,-46,77v0,14,-20,10,-33,10v-21,0,-9,-47,-1,-56xm55,-30v2,-17,46,-15,44,0v-1,12,4,30,-9,30v-14,-1,-35,5,-35,-10r0,-20","w":167},"@":{"d":"76,-104v-1,-45,27,-83,68,-84v16,0,27,5,33,16v-3,-15,25,-23,28,-7r-16,89v0,6,3,10,9,10v22,-1,38,-34,38,-60v0,-50,-42,-85,-94,-85v-54,0,-100,51,-100,107v0,83,86,129,153,86v5,0,14,16,13,21v-4,13,-50,23,-72,23v-73,0,-125,-59,-122,-131v3,-78,49,-130,128,-133v65,-3,120,43,120,108v0,55,-29,93,-79,94v-11,-1,-20,-7,-22,-18v-8,11,-21,17,-39,17v-31,2,-45,-25,-46,-53xm127,-81v24,0,35,-25,36,-54v0,-17,-7,-24,-24,-24v-23,1,-36,24,-35,52v0,17,6,26,23,26","w":276},"A":{"d":"121,-91r-27,-119r-26,119r53,0xm49,-8v-4,14,-42,11,-43,0r56,-241v7,-13,39,-3,56,-6v5,0,8,2,9,6r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0","w":189},"B":{"d":"168,-89v3,48,-3,90,-46,89r-92,0v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r85,0v53,-5,67,103,19,120v23,2,32,23,34,46xm122,-60v0,-26,4,-55,-23,-55r-36,0r0,79v28,0,59,5,59,-24xm63,-150v27,0,57,4,57,-24v0,-24,-1,-45,-24,-45r-33,0r0,69","w":181},"C":{"d":"165,-187v-2,16,-45,15,-44,0v2,-22,-10,-38,-30,-38v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32v19,0,30,-16,30,-38v0,-14,20,-9,33,-10v8,0,11,6,11,16v0,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70v43,0,77,28,74,76","w":177},"D":{"d":"64,-37v28,0,57,5,57,-25r0,-131v2,-30,-29,-27,-57,-26r0,182xm116,-255v25,-1,50,23,50,47r0,161v0,24,-25,48,-50,47r-86,0v-6,0,-11,-4,-11,-10r0,-235v0,-6,5,-10,11,-10r86,0","w":183},"E":{"d":"143,-38v16,0,14,39,0,38r-113,0v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v-7,21,-52,5,-76,10r0,78r79,0"},"F":{"d":"130,-153v16,0,14,38,0,37r-66,0r0,106v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0","w":159},"G":{"d":"99,-111v-16,0,-14,-40,0,-38v22,3,62,-10,66,11r0,128v0,14,-20,9,-34,10v-7,0,-11,-6,-10,-15v-33,44,-104,19,-104,-48r0,-130v-1,-44,33,-70,74,-70v43,0,77,28,74,76v0,14,-20,9,-34,10v-8,0,-11,-7,-10,-16v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32v36,1,30,-43,30,-80r-22,0","w":183},"H":{"d":"20,-245v2,-17,45,-14,44,0r0,93r61,0r0,-93v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,235v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-104r-61,0r0,104v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-235","w":189},"I":{"d":"64,-10v-2,17,-45,14,-44,0r0,-235v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,235","w":84},"J":{"d":"78,7v-46,0,-76,-31,-72,-82v0,-14,20,-9,34,-10v10,0,11,11,10,22v-1,19,10,32,28,32v18,0,29,-13,28,-32r0,-182v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,182v1,42,-30,71,-72,70","w":168},"K":{"d":"20,-245v2,-17,45,-14,44,0r0,95r53,-95v6,-16,19,-8,36,-10v11,0,11,6,8,13r-54,102r65,132v-3,13,-42,13,-50,-2r-58,-114r0,114v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-235","w":176},"L":{"d":"130,-38v12,0,10,16,10,28v0,5,-5,10,-10,10r-101,0v-6,0,-11,-4,-11,-10r0,-235v0,-14,20,-9,34,-10v6,0,11,4,11,10r0,207r67,0","w":149},"M":{"d":"224,-10v-1,16,-41,14,-40,0r0,-193r-44,193v0,14,-31,15,-34,0r-44,-193r0,193v0,13,-17,10,-30,10v-5,0,-10,-5,-10,-10r0,-235v3,-19,37,-10,56,-10v6,0,10,3,11,10r34,155r34,-155v4,-20,37,-7,56,-10v6,-1,11,4,11,10r0,235","w":245},"N":{"d":"18,-245v2,-15,44,-16,51,0r71,159r0,-159v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,235v-2,15,-45,17,-52,0r-70,-160r0,160v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-235","w":202},"O":{"d":"91,-31v17,1,30,-14,30,-32r0,-130v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32xm91,-263v41,0,74,27,74,70r0,130v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70","w":181},"P":{"d":"64,-130v26,-1,57,7,55,-23v-2,-28,8,-66,-23,-66r-32,0r0,89xm163,-208v-1,51,11,115,-41,115r-58,0r0,83v0,14,-20,9,-34,10v-6,0,-11,-4,-11,-10r0,-235v0,-6,5,-10,11,-10r87,0v26,-1,47,21,46,47","w":175},"Q":{"d":"91,-30v17,1,30,-14,30,-32r0,-131v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,131v0,18,13,32,31,32xm91,-263v41,0,76,27,74,70v-2,54,8,120,-7,163v11,1,33,-5,28,10v-6,10,-8,27,-23,27r-79,0v-39,1,-67,-30,-67,-70r0,-130v-1,-44,33,-70,74,-70","w":188},"R":{"d":"64,-146v28,0,59,5,59,-24v0,-25,1,-50,-24,-49r-35,0r0,73xm124,-10v-4,-37,16,-99,-25,-99r-35,0r0,99v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r88,0v40,0,46,37,46,83v0,27,-10,41,-31,43v46,1,33,71,35,119v0,14,-20,9,-33,10v-6,0,-11,-4,-11,-10","w":183},"S":{"d":"88,-225v-27,0,-39,33,-25,51v29,37,99,39,99,111v0,45,-30,71,-75,70v-49,0,-78,-31,-74,-85v1,-14,20,-9,34,-10v11,0,10,13,10,25v0,17,13,32,30,32v37,0,42,-55,10,-65v-32,-26,-84,-37,-84,-95v0,-45,30,-72,75,-72v46,0,78,27,74,78v0,14,-20,9,-33,10v-8,-1,-12,-8,-11,-18v1,-20,-10,-32,-30,-32","w":176},"T":{"d":"19,-217v-15,0,-14,-39,0,-38r127,0v12,0,10,15,10,27v-1,19,-33,8,-51,11r0,207v0,15,-45,16,-45,0r0,-207r-41,0","w":165},"U":{"d":"92,-31v17,0,30,-14,30,-32r0,-182v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,182v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-182v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,182v-1,18,13,32,30,32","w":185},"V":{"d":"6,-247v3,-14,41,-12,44,2r39,213r39,-213v1,-13,49,-19,44,3r-44,234v-8,17,-46,4,-67,8v-4,0,-11,-3,-10,-8","w":178},"W":{"d":"241,-245v2,-15,41,-14,42,-2r-41,237v-3,19,-33,10,-51,10v-6,0,-10,-3,-11,-10r-35,-199r-34,199v-3,19,-33,10,-52,10v-6,0,-9,-3,-10,-10r-41,-237v1,-13,40,-13,42,2r32,192r31,-192v3,-20,36,-10,55,-10v6,0,9,3,10,10r31,192","w":291},"X":{"d":"18,-243v-6,-16,17,-12,32,-12v9,0,8,3,12,11r39,78r45,-87v10,-3,45,-8,38,10r-50,111r62,124v-2,14,-46,13,-49,-3r-46,-92r-52,101v-12,2,-51,8,-42,-11r61,-119","w":202},"Y":{"d":"114,-10v0,14,-20,9,-34,10v-6,0,-11,-4,-11,-10r0,-108v-20,-44,-46,-83,-64,-130v3,-13,41,-11,44,4r42,83r49,-92v9,-2,45,-7,37,9r-63,126r0,108","w":183},"Z":{"d":"25,0v-18,-2,-12,-42,-5,-53r101,-162r-88,0v-13,0,-10,-17,-10,-30v0,-5,5,-10,10,-10r130,0v16,0,10,34,7,45r-105,170r98,0v13,0,11,16,11,30v-1,5,-5,10,-11,10r-138,0","w":185},"[":{"d":"93,-253v0,39,-35,9,-35,38r0,245v-4,29,43,-2,35,37v0,12,-12,12,-24,11v-28,0,-45,-15,-45,-42r0,-257v0,-32,23,-45,59,-42v5,0,10,5,10,10","w":108},"\\":{"d":"8,-245v-5,-13,12,-10,24,-10v3,2,5,4,7,9r101,265v-1,10,-33,11,-32,-4","w":147},"]":{"d":"15,67v-8,-39,34,-8,34,-37r0,-245v5,-30,-42,1,-34,-38v0,-11,13,-11,24,-10v28,0,44,15,44,42r0,257v1,33,-22,45,-58,42v-6,0,-10,-5,-10,-11","w":108},"^":{"d":"97,-219r-41,74v-9,11,-35,-2,-31,-17r54,-95v5,-8,30,-8,37,0r55,100v-3,11,-25,24,-32,12","w":194},"_":{"d":"20,57v-10,0,-9,-26,0,-26r152,0v9,0,7,10,7,19v0,4,-3,7,-7,7r-152,0","w":192},"\u2018":{"d":"23,-181v-3,-38,2,-73,38,-71v5,0,6,6,5,12v-3,11,-27,3,-24,20v-1,17,29,-1,29,18v0,13,3,31,-10,30v-14,-1,-37,5,-38,-9","w":83},"a":{"d":"147,-10v-1,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-10,-5,-10,-13v0,-36,29,-60,66,-60v38,0,64,26,63,63r0,126xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25"},"b":{"d":"59,-171v16,-44,95,-30,92,22v-4,65,16,154,-48,155v-22,1,-38,-12,-44,-28v4,22,-11,24,-31,22v-5,0,-10,-5,-10,-10r0,-235v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,74xm85,-30v39,-2,22,-62,25,-100v1,-17,-9,-29,-25,-29v-39,0,-23,61,-26,100v0,15,11,29,26,29","w":165},"c":{"d":"80,-199v37,0,66,27,66,62v0,13,-17,10,-30,10v-18,-5,-10,-38,-36,-36v-41,3,-23,67,-26,106v-1,16,11,27,26,27v16,-1,25,-13,25,-30v0,-14,40,-16,41,0v1,39,-28,66,-66,66v-37,0,-67,-27,-67,-63r0,-78v0,-36,29,-64,67,-64","w":157},"d":{"d":"107,-22v-18,49,-92,27,-92,-25r0,-102v-3,-48,74,-71,92,-22r0,-74v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,235v0,13,-18,10,-31,10v-10,0,-11,-11,-10,-22xm81,-159v-40,1,-23,62,-26,100v-1,17,10,29,26,29v39,0,23,-61,26,-100v0,-15,-11,-29,-26,-29","w":166},"e":{"d":"148,-135v-1,17,7,48,-10,48r-84,0v-2,29,-1,57,26,57v16,0,28,-11,27,-28v0,-13,18,-10,31,-10v6,0,10,5,10,11v1,36,-30,63,-68,63v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,70,27,68,64xm80,-163v-22,0,-29,19,-26,44r53,0v3,-25,-5,-44,-27,-44","w":161},"f":{"d":"95,-184v15,0,14,38,0,37r-36,0r0,137v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-199v0,-36,34,-51,77,-47v12,1,11,15,10,27v-2,22,-55,-3,-46,31r0,14r36,0","w":112},"g":{"d":"18,22v1,-16,41,-14,40,0v0,17,10,27,25,28v34,1,25,-45,26,-78v-18,49,-92,28,-92,-25r0,-96v-3,-48,74,-71,92,-22v-4,-21,10,-24,30,-22v5,0,10,5,10,10r0,202v1,36,-29,67,-65,67v-35,0,-68,-29,-66,-64xm83,-159v-38,0,-23,57,-26,94v-1,17,10,29,26,29v37,-1,24,-57,26,-94v0,-15,-11,-29,-26,-29","w":166},"h":{"d":"18,-245v1,-16,42,-14,41,0r0,74v7,-15,23,-28,44,-28v72,0,48,116,48,189v0,13,-17,10,-30,10v-6,0,-11,-4,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-15,0,-26,14,-26,29r0,124v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-235","w":167},"i":{"d":"59,-10v-1,16,-42,14,-41,0r0,-173v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm18,-245v10,-20,51,-13,41,15v0,13,-18,10,-31,10v-11,0,-10,-13,-10,-25","w":77},"j":{"d":"23,-245v10,-20,51,-13,41,15v0,13,-18,10,-31,10v-11,0,-10,-13,-10,-25xm-2,66v-15,-2,-14,-37,0,-36v18,0,26,-5,25,-22r0,-191v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,203v-1,31,-29,50,-66,46","w":82},"k":{"d":"59,-10v-1,16,-42,14,-41,0r0,-235v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,129r48,-64v7,-12,20,-7,36,-8v10,-1,12,7,8,14r-52,69v19,33,44,60,59,96v-1,14,-39,15,-45,-1r-54,-86r0,86"},"l":{"d":"59,-10v-1,16,-42,14,-41,0r0,-235v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,235","w":77},"m":{"d":"147,-171v7,-15,26,-28,47,-28v72,0,48,116,48,189v0,14,-41,16,-41,0r0,-124v1,-17,-10,-29,-26,-29v-14,0,-24,15,-24,29r0,124v0,13,-17,10,-30,10v-6,0,-11,-4,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-15,0,-26,14,-26,29r0,124v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-173v0,-13,17,-10,30,-10v11,0,12,10,11,22v11,-35,77,-36,88,0","w":257},"n":{"d":"18,-183v7,-19,51,-14,41,12v7,-15,23,-28,44,-28v72,0,48,116,48,189v0,13,-17,10,-30,10v-6,0,-11,-4,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-15,0,-26,14,-26,29r0,124v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-173","w":167},"o":{"d":"80,6v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,69,27,68,64r0,78v1,36,-30,63,-68,63xm80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27","w":161},"p":{"d":"102,-199v27,0,48,25,47,54v-2,63,16,151,-47,151v-22,1,-38,-13,-45,-28r0,78v0,13,-17,10,-30,10v-5,0,-10,-5,-10,-10r0,-239v0,-13,17,-10,30,-10v10,0,11,11,10,22v7,-15,24,-28,45,-28xm83,-33v40,-1,23,-63,26,-101v1,-17,-10,-29,-26,-29v-39,0,-23,62,-26,101v0,15,11,29,26,29"},"q":{"d":"107,-22v-15,45,-95,31,-92,-22v4,-65,-16,-153,48,-155v21,0,37,13,44,28v-4,-22,11,-24,31,-22v5,0,10,5,10,10r0,239v0,13,-17,10,-30,10v-6,0,-11,-4,-11,-10r0,-78xm81,-163v-39,2,-22,63,-25,101v-1,17,9,29,25,29v39,0,23,-62,26,-101v0,-15,-11,-29,-26,-29"},"r":{"d":"143,-133v-3,16,-47,16,-41,-5v0,-16,-7,-25,-21,-25v-13,-1,-23,12,-22,25r0,128v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-173v0,-13,17,-10,30,-10v9,0,12,8,11,19v17,-35,86,-31,84,18r0,23","w":149},"s":{"d":"143,-139v-1,16,-40,14,-39,0v0,-16,-9,-24,-26,-24v-23,0,-34,26,-14,36v34,18,83,21,83,74v0,35,-32,60,-67,59v-35,0,-68,-28,-68,-62v0,-13,16,-10,29,-10v5,0,10,5,10,10v0,16,12,26,29,26v25,0,37,-29,14,-41v-31,-16,-80,-23,-80,-70v0,-36,27,-59,63,-58v36,1,68,22,66,60","w":158},"t":{"d":"95,-193v15,0,14,38,0,37r-36,0r0,98v-9,40,54,-4,46,48v-2,15,-23,9,-38,10v-24,1,-49,-20,-49,-46r0,-199v0,-13,17,-10,30,-10v21,0,7,41,11,62r36,0","w":119},"u":{"d":"149,-10v-7,19,-51,14,-41,-12v-6,16,-23,29,-45,28v-71,-5,-47,-117,-47,-189v0,-13,17,-10,30,-10v6,0,10,5,11,10r0,124v-1,18,9,29,25,29v15,0,26,-14,26,-29r0,-124v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173","w":167},"v":{"d":"114,-185v4,-13,39,-11,41,-1r-50,176v-3,16,-25,8,-41,10v-6,0,-10,-3,-12,-10r-50,-176v1,-11,37,-12,40,1r36,136","w":157},"w":{"d":"5,-183v-1,-13,18,-10,31,-10v5,0,7,3,9,10r29,133r27,-133v2,-19,31,-10,48,-10v6,0,9,3,10,10r27,133r29,-133v0,-16,37,-15,40,0r-39,173v-4,18,-29,10,-47,10v-6,0,-9,-3,-10,-10r-29,-137r-29,137v-2,18,-30,7,-47,10v-5,0,-8,-3,-10,-10","w":260},"x":{"d":"151,-11v5,14,-19,11,-33,11v-4,0,-7,-3,-9,-8r-31,-63r-30,63v-4,12,-39,13,-43,0v12,-34,30,-62,44,-94r-39,-82v-1,-13,19,-8,32,-9v4,0,7,3,9,8r27,54r27,-54v3,-13,19,-7,33,-8v5,0,11,7,7,12r-38,79","w":156},"y":{"d":"5,-182v-5,-15,19,-10,32,-11v5,0,8,3,9,8r38,141r35,-141v2,-12,38,-14,42,0r-58,208v-9,36,-28,45,-71,43v-12,0,-10,-14,-10,-26v0,-22,51,6,40,-31","w":162},"z":{"d":"132,-193v18,-1,12,38,7,48r-81,107r77,0v12,0,10,16,10,28v0,5,-5,10,-10,10r-112,0v-18,2,-11,-35,-8,-46r83,-109r-70,0v-12,0,-10,-16,-10,-28v0,-5,5,-10,10,-10r104,0","w":155},"{":{"d":"126,-252v5,36,-38,14,-33,44v-4,45,15,112,-30,115v44,4,26,70,30,115v0,14,7,24,23,22v10,0,11,11,10,22v0,9,-7,11,-18,11v-26,0,-49,-22,-49,-48r0,-79v5,-35,-47,0,-38,-54v4,-21,44,0,38,-31r0,-80v0,-29,25,-50,57,-47v5,0,10,5,10,10","w":141},"|":{"d":"40,25v-11,1,-22,0,-22,-10r0,-260v0,-10,11,-11,22,-10v5,0,10,5,10,10r0,260v0,5,-5,10,-10,10","w":68},"}":{"d":"78,-93v-45,-3,-26,-71,-30,-115v0,-14,-7,-24,-23,-22v-10,0,-11,-11,-10,-22v0,-9,8,-10,18,-10v26,0,49,21,49,47r0,80v-4,35,47,0,38,54v-4,21,-38,0,-38,31r0,79v0,29,-24,51,-57,48v-10,0,-11,-11,-10,-22v2,-18,38,-7,33,-33v4,-45,-14,-111,30,-115","w":141},"~":{"d":"159,-95v-20,30,-57,17,-83,7v-11,1,-18,9,-26,12v-5,-3,-12,-11,-15,-22v21,-29,56,-18,83,-6v10,-1,18,-9,26,-12v7,2,11,10,15,21","w":194},"\u00a1":{"d":"74,-59v0,20,9,56,-11,59v-15,-1,-36,5,-37,-10v-2,-57,5,-116,13,-165v2,-12,22,-11,23,0v8,54,12,93,12,116xm26,-245v3,-17,48,-14,48,0v0,13,3,31,-11,30v-15,-1,-36,5,-37,-10r0,-20","w":100},"\u00a2":{"d":"41,-135v-1,-39,32,-69,73,-63v4,-10,3,-33,17,-28v11,4,31,1,27,18r-6,24v15,12,22,27,22,47v0,13,-17,10,-30,10v-6,0,-11,-4,-11,-10v0,-14,-11,-26,-26,-26v-41,3,-26,66,-26,106v0,15,11,27,26,27v16,0,26,-12,26,-30v0,-13,17,-10,30,-10v7,0,11,5,11,13v-1,38,-31,66,-73,63v-5,11,-1,36,-20,30v-9,-4,-28,-2,-24,-17r7,-27v-33,-23,-21,-77,-23,-127","w":214},"\u00a3":{"d":"19,-10v-1,-13,-1,-26,11,-26v30,0,11,-50,16,-76v-18,2,-26,-2,-26,-23v0,-12,14,-10,26,-10v-8,-69,14,-118,75,-118v39,-1,69,29,68,69v0,13,-17,10,-30,10v-5,0,-10,-5,-10,-10v0,-21,-9,-31,-28,-31v-38,-2,-31,44,-31,80v24,5,70,-15,63,23v-4,20,-42,6,-63,10r0,76r95,0v12,0,10,14,10,26v0,5,-5,10,-10,10r-155,0v-6,0,-11,-4,-11,-10","w":214},"\u00a5":{"d":"172,-171v14,0,16,37,0,36r-34,0r-8,17v23,3,59,-12,52,25v-3,18,-34,7,-52,10r0,73v0,14,-21,9,-35,10v-5,0,-10,-5,-10,-10r0,-73v-23,-3,-61,13,-53,-25v3,-18,35,-7,53,-10r-9,-17v-22,-1,-51,8,-44,-25v-1,-12,13,-11,26,-11v-12,-26,-28,-48,-37,-77v2,-13,41,-11,43,4r43,83r49,-92v9,-2,45,-7,37,9r-37,73r16,0","w":214},"\u0192":{"d":"44,56v-8,-46,39,-11,39,-48r0,-146v-21,3,-26,-4,-26,-27v0,-12,14,-10,26,-10v-7,-58,17,-88,77,-81v12,1,11,15,10,27v-2,22,-54,-3,-47,31r0,23v23,1,52,-10,47,26v-3,18,-30,9,-47,11r0,158v0,33,-30,51,-69,46v-5,0,-10,-5,-10,-10","w":214},"\u00a7":{"d":"70,-144v-18,9,-21,41,-1,55r33,23v17,-11,21,-40,0,-55xm16,-2v1,-16,40,-14,41,0v2,25,54,24,51,-4v-16,-45,-93,-50,-93,-110v0,-19,9,-37,26,-51v-39,-36,-4,-96,49,-96v35,0,67,23,66,56v0,13,-18,10,-31,10v-16,-5,-11,-31,-35,-29v-46,4,-19,47,2,54v27,17,65,40,65,79v0,19,-9,36,-26,50v39,36,4,97,-49,97v-35,0,-67,-23,-66,-56","w":172},"\u00a4":{"d":"203,-182v22,36,23,72,1,109v7,10,30,18,21,34v-8,6,-15,22,-28,15r-21,-21v-35,22,-74,23,-109,1v-10,7,-17,28,-34,21v-5,-8,-25,-17,-15,-28r20,-21v-21,-37,-22,-71,-1,-109v-6,-11,-29,-19,-20,-34v8,-5,17,-26,28,-15r21,21v35,-22,73,-23,108,-1v10,-7,19,-30,34,-21v6,8,23,14,16,28xm121,-66v33,0,60,-28,60,-61v0,-33,-28,-61,-60,-61v-33,0,-61,28,-61,61v0,33,28,61,61,61","w":242},"'":{"d":"44,-172v-11,1,-23,1,-23,-10r0,-63v0,-11,12,-11,23,-10v21,7,6,50,10,73v1,5,-5,10,-10,10","w":89},"\u201c":{"d":"13,-182v-3,-38,2,-73,38,-70v4,0,6,5,5,11v-1,13,-27,3,-24,21v-2,17,30,-1,28,18v-1,13,4,30,-9,30v-15,-1,-38,5,-38,-10xm87,-182v0,-38,2,-73,38,-70v8,3,7,21,-5,18v-11,-3,-23,19,-8,22v22,-5,23,10,22,30v-1,15,-24,9,-38,10v-5,0,-9,-4,-9,-10","w":157},"\u00ab":{"d":"101,-161v4,40,-30,45,-45,67v15,22,48,28,45,67v2,11,-12,8,-16,6v-20,-22,-44,-40,-62,-65v1,-11,-2,-17,5,-24r57,-57v4,-2,18,-5,16,6xm182,-161v4,40,-30,45,-45,67v15,22,48,28,45,67v2,11,-12,8,-16,6v-20,-22,-44,-40,-62,-65v1,-11,-2,-17,5,-24r57,-57v4,-2,18,-5,16,6","w":201},"\u2013":{"d":"22,-79v-14,0,-15,-36,0,-35r149,0v11,0,10,13,10,25v0,5,-5,10,-10,10r-149,0","w":192},"\u00b7":{"d":"10,-107v3,-17,48,-14,48,0v0,13,3,31,-11,30v-15,-1,-36,5,-37,-10r0,-20","w":68},"\u00b6":{"d":"99,25v-11,1,-23,1,-23,-10r0,-145v-54,7,-65,-29,-61,-83v4,-58,85,-39,143,-42v5,0,10,5,10,10r0,260v0,11,-12,11,-23,10v-5,0,-10,-5,-10,-10r0,-229r-25,0r0,229v0,6,-5,10,-11,10","w":188},"\u201d":{"d":"144,-246v3,38,-2,73,-37,71v-4,-1,-7,-5,-6,-11v2,-12,25,-4,25,-21v0,-16,-30,0,-29,-18v0,-13,-3,-31,10,-30v14,1,37,-6,37,9xm71,-246v3,38,-3,72,-38,71v-4,-1,-7,-5,-6,-11v2,-12,25,-4,25,-21v0,-16,-30,0,-29,-18v0,-13,-3,-31,10,-30v14,1,36,-5,38,9","w":157},"\u00bb":{"d":"145,-94v-15,-22,-48,-27,-45,-67v-2,-11,12,-8,16,-6v20,22,44,40,62,65v-1,11,2,17,-5,24r-57,57v-4,2,-18,5,-16,-6v-4,-37,30,-45,45,-67xm64,-94v-15,-22,-48,-27,-45,-67v-2,-11,12,-8,16,-6v20,22,44,40,62,65v-1,11,2,17,-5,24r-57,57v-4,2,-18,5,-16,-6v-4,-37,30,-45,45,-67","w":201},"\u2026":{"d":"18,-30v3,-17,47,-14,48,0v0,14,2,30,-11,30v-14,0,-36,5,-37,-10r0,-20xm103,-30v3,-17,48,-14,48,0v0,13,3,31,-11,30v-15,-1,-36,5,-37,-10r0,-20xm189,-30v3,-17,47,-15,47,0v0,13,3,30,-10,30v-14,0,-36,5,-37,-10r0,-20","w":254},"\u00bf":{"d":"63,-92v-16,18,-8,54,21,54v21,0,29,-14,28,-37v0,-14,19,-9,33,-10v8,1,11,7,11,16v0,41,-30,69,-72,69v-56,0,-91,-59,-62,-106v16,-25,48,-37,47,-78v-1,-15,20,-9,33,-10v19,4,9,49,1,57xm113,-234v-2,16,-45,15,-45,0v0,-13,-3,-30,10,-30v14,1,35,-4,35,10r0,20","w":167},"`":{"d":"6,-260v-4,-14,17,-9,31,-10v17,4,21,28,27,43v0,11,-31,10,-34,0","w":103},"\u00b4":{"d":"54,-260v5,-16,41,-14,44,-3v-14,17,-17,48,-50,43v-20,-3,4,-29,6,-40","w":103},"\u00af":{"d":"132,-250v9,0,9,10,9,20v0,6,-4,10,-9,10r-104,0v-9,0,-11,-10,-10,-20v0,-5,5,-10,10,-10r104,0","w":160},"\u00a8":{"d":"31,-242v0,-17,45,-14,44,0v0,12,3,30,-9,30v-14,0,-36,5,-35,-10r0,-20xm102,-242v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":177},"\u00b8":{"d":"60,19v20,-10,41,8,42,27v1,37,-54,49,-74,18v4,-30,47,18,47,-16v0,-28,-37,6,-39,-19v7,-14,4,-49,26,-38v11,5,-1,19,-2,28","w":118},"\u2014":{"d":"24,-79v-14,0,-15,-36,0,-35r186,0v11,0,10,13,10,25v0,5,-5,10,-10,10r-186,0","w":234},"\u00c6":{"d":"132,0v-19,-3,-7,-37,-10,-56r-56,0v-12,23,-8,66,-52,56v-5,-1,-10,-3,-9,-10r85,-236v2,-6,6,-9,12,-9r138,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-74,0r0,64r63,0v12,0,10,15,10,27v-7,21,-50,6,-73,10r0,78r76,0v12,0,10,16,10,28v0,5,-5,10,-10,10r-110,0xm122,-211r-44,120r44,0r0,-120","w":263},"\u00aa":{"d":"53,-149v21,1,26,-19,24,-43v-21,12,-34,9,-39,30v0,9,5,13,15,13xm77,-143v-13,27,-68,23,-68,-17v0,-43,51,-37,68,-61v3,-22,-33,-22,-35,-6v2,12,-6,17,-19,15v-4,0,-9,-5,-9,-9v0,-24,19,-42,44,-42v60,0,44,71,46,127v0,8,-9,10,-19,9v-6,-1,-9,-8,-8,-16","w":119},"\u0141":{"d":"39,0v-21,-7,-6,-50,-10,-73v-8,21,-35,8,-38,-8v8,-21,26,-32,38,-49r0,-115v0,-14,20,-9,34,-10v21,6,6,49,10,72v9,-8,14,-27,31,-20v6,6,23,14,14,25r-45,53r0,87r67,0v12,0,10,16,10,28v0,5,-5,10,-10,10r-101,0","w":149},"\u00d8":{"d":"19,-193v-5,-73,107,-93,138,-39v7,-6,16,-22,27,-13v5,8,22,15,16,26r-32,33r0,124v6,64,-78,89,-124,55v-7,6,-16,24,-28,15v-6,-8,-25,-18,-14,-29r20,-20v-7,-44,0,-102,-3,-152xm94,-30v17,1,30,-14,30,-32r0,-131v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,131v0,18,13,32,31,32","w":201},"\u0152":{"d":"91,-30v17,1,30,-14,30,-32r0,-131v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,131v0,18,13,32,31,32xm17,-193v-3,-57,62,-84,112,-62r113,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v-7,21,-52,5,-76,10r0,78r79,0v12,0,10,16,10,28v0,5,-5,10,-10,10r-115,0v-50,23,-112,-4,-112,-62r0,-131","w":265},"\u00ba":{"d":"57,-148v28,0,16,-43,18,-71v1,-10,-9,-19,-18,-19v-28,0,-17,44,-19,72v-1,10,9,18,19,18xm57,-263v22,0,45,18,44,40r0,60v1,22,-22,41,-44,41v-23,0,-45,-18,-45,-41r0,-60v-1,-22,23,-40,45,-40","w":113},"\u00e6":{"d":"79,-28v31,0,29,-34,28,-66v-19,12,-55,13,-55,41v0,17,8,25,27,25xm174,-163v-22,0,-29,19,-26,44r53,0v3,-25,-5,-44,-27,-44xm242,-58v6,62,-90,87,-122,39v-26,41,-111,32,-111,-29v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-11,-5,-10,-13v-4,-54,74,-79,111,-44v39,-36,118,-7,113,48v-1,18,8,47,-11,48r-83,0v-2,29,-1,57,26,57v16,0,28,-11,27,-28v0,-13,17,-10,30,-10v6,0,11,4,11,10","w":255},"\u0131":{"d":"59,-10v-1,16,-42,14,-41,0r0,-173v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173","w":90},"\u0142":{"d":"89,-10v-1,16,-42,14,-41,0r0,-65v-7,22,-37,12,-40,-6v8,-22,28,-33,40,-51r0,-113v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,65v10,-8,15,-30,32,-23v6,6,23,14,14,25r-46,55r0,113","w":146},"\u00f8":{"d":"155,-57v3,55,-71,82,-113,48v-6,6,-15,21,-24,11v-6,-7,-23,-16,-14,-28v8,-10,22,-13,16,-31r0,-78v-4,-58,82,-86,118,-43v6,-6,14,-20,24,-11v5,7,22,15,16,26r-23,24r0,82xm87,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27","w":174},"\u0153":{"d":"80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27xm175,-163v-22,0,-30,19,-27,44r54,0v2,-25,-5,-44,-27,-44xm242,-58v5,57,-75,84,-114,47v-39,36,-115,11,-115,-46r0,-78v-3,-56,76,-85,115,-46v39,-39,118,-10,114,46v-1,17,7,48,-10,48r-84,0v-2,29,0,57,27,57v16,0,27,-12,27,-28v0,-13,17,-10,30,-10v5,0,10,5,10,10","w":255},"\u00df":{"d":"94,-125v-15,-6,-11,-41,10,-33v16,-1,20,-16,19,-35v-1,-18,-15,-32,-33,-32v-18,0,-31,14,-31,32r0,183v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-183v-1,-43,32,-66,73,-70v63,-7,102,93,45,119v43,7,37,55,36,102v-1,31,-32,42,-70,42v-12,0,-10,-16,-10,-28v4,-19,39,-2,35,-34v-4,-31,7,-69,-33,-63","w":188},"\u00d0":{"d":"116,-255v25,-1,50,23,50,47r0,161v0,24,-25,48,-50,47r-86,0v-6,0,-11,-4,-11,-10r0,-89v-20,2,-34,-1,-29,-25v0,-13,16,-10,29,-10r0,-111v0,-6,5,-10,11,-10r86,0xm121,-193v2,-30,-29,-27,-57,-26r0,85v20,-2,33,2,28,25v0,12,-16,10,-28,10r0,62v28,0,57,5,57,-25r0,-131","w":183},"\u00f0":{"d":"84,-30v41,0,24,-60,27,-98v1,-16,-11,-28,-27,-28v-40,1,-27,60,-27,98v0,16,11,28,27,28xm85,-272v34,-2,68,34,67,67v21,-4,23,10,22,30v-1,10,-11,11,-22,10r0,107v1,34,-32,66,-67,66v-35,0,-68,-32,-68,-66v0,-64,-9,-137,55,-135v16,0,29,4,39,12v2,-27,-1,-53,-26,-53v-13,1,-10,-15,-10,-28v-1,-6,4,-10,10,-10","w":184},"\u0160":{"d":"88,-225v-27,0,-39,33,-25,51v29,37,99,39,99,111v0,45,-30,71,-75,70v-49,0,-78,-31,-74,-85v1,-14,20,-9,34,-10v11,0,10,13,10,25v0,17,13,32,30,32v37,0,42,-55,10,-65v-32,-26,-84,-37,-84,-95v0,-45,30,-72,75,-72v46,0,78,27,74,78v0,14,-20,9,-33,10v-8,-1,-12,-8,-11,-18v1,-20,-10,-32,-30,-32xm139,-324v-11,19,-23,38,-40,51v-12,1,-24,1,-26,-9v-10,-14,-23,-25,-30,-42v16,-20,40,12,48,22v13,-10,15,-31,41,-28v4,0,7,2,7,6","w":176},"\u0161":{"d":"143,-139v-1,16,-40,14,-39,0v0,-16,-9,-24,-26,-24v-23,0,-34,26,-14,36v34,18,83,21,83,74v0,35,-32,60,-67,59v-35,0,-68,-28,-68,-62v0,-13,16,-10,29,-10v5,0,10,5,10,10v0,16,12,26,29,26v25,0,37,-29,14,-41v-31,-16,-80,-23,-80,-70v0,-36,27,-59,63,-58v36,1,68,22,66,60xm128,-263v-11,19,-22,39,-40,51v-35,4,-37,-31,-55,-47v-5,-10,8,-11,18,-10v14,5,19,19,29,28v13,-10,15,-31,41,-28v4,0,7,2,7,6","w":158},"\u00dd":{"d":"114,-10v0,14,-20,9,-34,10v-6,0,-11,-4,-11,-10r0,-108v-20,-44,-46,-83,-64,-130v3,-13,41,-11,44,4r42,83r49,-92v9,-2,45,-7,37,9r-63,126r0,108xm86,-316v5,-16,41,-14,45,-3v-14,17,-17,48,-50,44v-21,-3,2,-29,5,-41","w":183},"\u00fd":{"d":"5,-182v-5,-15,19,-10,32,-11v5,0,8,3,9,8r38,141r35,-141v2,-12,38,-14,42,0r-58,208v-9,36,-28,45,-71,43v-12,0,-10,-14,-10,-26v0,-22,51,6,40,-31xm81,-256v4,-16,41,-14,44,-3v-14,17,-17,46,-50,44v-20,-6,3,-30,6,-41","w":162},"\u00de":{"d":"64,-94v31,1,58,3,51,-37v3,-29,-25,-24,-51,-24r0,61xm20,-245v2,-17,45,-14,44,0r0,53v49,-4,93,4,95,47v2,45,0,89,-42,88r-53,0v-3,19,9,53,-10,57v-14,-1,-34,4,-34,-10r0,-235","w":171},"\u00fe":{"d":"102,-199v27,0,48,25,47,54v-2,63,16,151,-47,151v-22,1,-38,-13,-45,-28r0,74v0,13,-17,10,-30,10v-5,0,-10,-5,-10,-10r0,-297v0,-13,17,-10,30,-10v5,0,10,5,10,10r0,74v7,-15,24,-28,45,-28xm83,-33v40,-1,23,-63,26,-101v1,-17,-10,-29,-26,-29v-39,0,-23,62,-26,101v0,15,11,29,26,29"},"\u017d":{"d":"25,0v-18,-2,-12,-42,-5,-53r101,-162r-88,0v-13,0,-10,-17,-10,-30v0,-5,5,-10,10,-10r130,0v16,0,10,34,7,45r-105,170r98,0v13,0,11,16,11,30v-1,5,-5,10,-11,10r-138,0xm153,-323v-9,20,-25,33,-37,50v-37,4,-43,-29,-59,-50v17,-20,40,12,48,22v14,-10,16,-31,42,-28v4,0,6,2,6,6","w":185},"\u017e":{"d":"132,-193v18,-1,12,38,7,48r-81,107r77,0v12,0,10,16,10,28v0,5,-5,10,-10,10r-112,0v-18,2,-11,-35,-8,-46r83,-109r-70,0v-12,0,-10,-16,-10,-28v0,-5,5,-10,10,-10r104,0xm134,-262v-11,19,-23,37,-40,50v-35,4,-37,-31,-55,-46v-5,-10,8,-12,18,-10v12,2,20,20,29,28v12,-10,16,-32,41,-28v4,0,7,2,7,6","w":155},"\u00bd":{"d":"41,-217v-17,6,-35,-10,-18,-22v16,1,15,-22,38,-17v4,0,6,3,6,7r0,135v0,9,-12,5,-20,6v-4,0,-6,-2,-6,-6r0,-103xm158,-254v1,-15,36,-13,31,1r-101,257v-7,3,-32,6,-26,-8xm206,-150v36,0,56,39,34,67r-45,57r48,0v7,0,5,12,5,20v1,4,-3,6,-5,6r-71,0v-11,-2,-6,-28,-2,-35v17,-24,41,-46,53,-73v0,-11,-7,-17,-17,-18v-12,0,-18,7,-18,21v0,7,-10,5,-17,5v-6,0,-6,-6,-6,-12v-1,-24,18,-38,41,-38","w":266},"\u00bc":{"d":"41,-218v-17,6,-35,-8,-18,-21v14,0,27,-31,44,-11r0,136v0,9,-12,5,-20,6v-4,0,-6,-2,-6,-6r0,-104xm174,-59r29,0r0,-68xm203,-35v-23,-2,-70,13,-53,-27r34,-80v5,-12,25,-4,39,-6v4,0,6,3,6,7r0,82v17,-7,23,18,10,24r-10,0v-1,17,7,41,-20,35v-12,-2,-4,-24,-6,-35xm158,-254v1,-15,36,-13,31,1r-101,257v-7,3,-32,6,-26,-8","w":261},"\u00b9":{"d":"37,-218v-13,-1,-27,5,-23,-15v3,-11,20,-5,23,-19v2,-6,25,-8,26,2r0,136v0,9,-12,5,-20,6v-4,0,-5,-3,-6,-6r0,-104","w":86},"\u00be":{"d":"193,-59r29,0r0,-68xm222,-35v-23,-2,-70,13,-53,-27r34,-80v5,-12,25,-4,39,-6v4,0,6,3,6,7r0,82v17,-7,23,18,10,24r-10,0v-1,17,7,41,-20,35v-12,-2,-4,-24,-6,-35xm176,-254v1,-15,36,-13,31,1r-101,257v-7,3,-32,6,-26,-8xm44,-219v0,10,-24,10,-25,2v-3,-27,16,-42,40,-44v38,-4,58,53,27,75v33,15,16,88,-27,79v-27,1,-42,-16,-42,-44v0,-9,11,-5,19,-6v12,4,4,27,23,27v17,0,18,-14,18,-31v0,-20,-33,-2,-26,-32v6,-12,30,-2,24,-28v1,-10,-6,-17,-16,-16v-11,0,-16,6,-15,18","w":280},"\u00b3":{"d":"44,-219v0,10,-24,10,-25,2v-3,-27,16,-42,40,-44v38,-4,58,53,27,75v33,15,16,88,-27,79v-27,1,-42,-16,-42,-44v0,-9,11,-5,19,-6v12,4,4,27,23,27v17,0,18,-14,18,-31v0,-20,-33,-2,-26,-32v6,-12,30,-2,24,-28v1,-10,-6,-17,-16,-16v-11,0,-16,6,-15,18","w":119},"\u00b2":{"d":"58,-258v36,0,57,39,35,67r-45,57v21,4,59,-14,53,20v0,4,-3,5,-6,6r-71,0v-10,-2,-5,-27,-2,-35v17,-24,41,-46,54,-73v0,-12,-7,-17,-18,-18v-12,0,-17,8,-17,21v0,7,-11,5,-18,5v-6,0,-6,-6,-6,-12v0,-23,18,-38,41,-38","w":119},"\u00a6":{"d":"17,-246v3,-15,44,-13,45,0r0,83v-1,13,-41,15,-45,0r0,-83xm17,-91v2,-17,45,-14,45,0r0,82v-1,13,-41,15,-45,0r0,-82","w":79},"\u00d7":{"d":"143,-30v-20,-9,-30,-29,-46,-42v-16,14,-27,32,-46,42v-11,-3,-24,-15,-18,-28r39,-38v-13,-16,-31,-27,-41,-46v3,-11,14,-25,28,-18r38,39v14,-13,25,-29,42,-39v11,3,27,16,19,28r-36,36v13,16,32,25,41,45v-3,10,-11,17,-20,21","w":194},"\u00c4":{"d":"121,-91r-27,-119r-26,119r53,0xm49,-8v-4,14,-42,11,-43,0r56,-241v7,-13,39,-3,56,-6v5,0,8,2,9,6r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0xm36,-311v2,-16,45,-15,44,0v0,12,3,30,-9,30v-14,0,-35,5,-35,-10r0,-20xm107,-311v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":189},"\u00c5":{"d":"94,-320v37,0,53,46,33,71r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0r-11,45v-2,13,-38,13,-43,0r56,-243v-22,-27,0,-69,32,-69xm120,-91r-26,-119r-26,119r52,0xm91,-255v16,2,24,-12,26,-23v1,-11,-12,-24,-23,-23v-27,0,-27,42,-3,46","w":189},"\u00c7":{"d":"91,19v21,-10,42,7,42,27v2,38,-54,49,-73,18v3,-31,46,18,46,-16v0,-29,-34,7,-39,-19r6,-22v-33,-6,-56,-30,-56,-69r0,-131v-1,-44,33,-70,74,-70v43,0,77,28,74,76v0,14,-20,9,-34,10v-8,0,-11,-7,-10,-16v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,131v0,18,13,32,31,32v19,0,30,-16,30,-38v0,-14,20,-9,33,-10v8,0,11,6,11,16v0,42,-31,68,-70,70","w":177},"\u00c9":{"d":"143,-38v16,0,14,39,0,38r-113,0v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v-7,21,-52,5,-76,10r0,78r79,0xm82,-315v5,-16,39,-13,44,-4v-7,16,-20,30,-30,43v-9,2,-35,4,-27,-12"},"\u00d1":{"d":"18,-245v2,-15,44,-16,51,0r71,159r0,-159v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,235v-2,15,-45,17,-52,0r-70,-160r0,160v0,14,-20,9,-34,10v-5,0,-10,-5,-10,-10r0,-235xm167,-296v-29,43,-73,-9,-108,18r-17,-23v7,-12,29,-21,41,-20v17,2,49,26,64,2v8,-5,13,8,20,23","w":202},"\u00d6":{"d":"91,-31v17,1,30,-14,30,-32r0,-130v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32xm91,-263v41,0,74,27,74,70r0,130v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70xm33,-310v2,-17,46,-15,44,0v-1,12,4,30,-9,30v-14,-1,-35,5,-35,-10r0,-20xm104,-310v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":181},"\u00dc":{"d":"92,-31v17,0,30,-14,30,-32r0,-182v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,182v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-182v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,182v-1,18,13,32,30,32xm35,-310v2,-17,45,-14,45,0v0,13,2,30,-10,30v-15,0,-35,4,-35,-11r0,-19xm107,-310v0,-17,45,-14,44,0v0,13,2,30,-10,30v-14,0,-35,4,-34,-11r0,-19","w":185},"\u00e1":{"d":"147,-10v-1,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-10,-5,-10,-13v0,-36,29,-60,66,-60v38,0,64,26,63,63r0,126xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25xm80,-257v4,-16,41,-14,44,-3v-14,17,-17,46,-50,44v-20,-6,3,-30,6,-41"},"\u00e0":{"d":"147,-10v-1,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-10,-5,-10,-13v0,-36,29,-60,66,-60v38,0,64,26,63,63r0,126xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25xm52,-256v-4,-14,17,-9,31,-10v17,3,19,29,27,42v0,12,-31,12,-35,0"},"\u00e2":{"d":"147,-10v-1,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-10,-5,-10,-13v0,-36,29,-60,66,-60v38,0,64,26,63,63r0,126xm35,-217v14,-21,29,-67,68,-49v9,18,24,30,32,49v-3,6,-26,7,-32,0r-18,-23v-9,14,-25,38,-50,23xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25"},"\u00e4":{"d":"147,-10v-1,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-10,-5,-10,-13v0,-36,29,-60,66,-60v38,0,64,26,63,63r0,126xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25xm25,-251v2,-17,46,-15,44,0v-1,12,4,30,-9,30v-14,-1,-35,5,-35,-10r0,-20xm96,-251v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20"},"\u00e3":{"d":"147,-10v-1,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-10,-5,-10,-13v0,-36,29,-60,66,-60v38,0,64,26,63,63r0,126xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25xm149,-239v-28,45,-74,-9,-108,19v-2,0,-7,-6,-15,-19v-4,-15,28,-26,39,-25v18,1,48,27,64,3v8,-5,12,7,20,22","w":166},"\u00e5":{"d":"147,-10v0,16,-41,14,-40,0r0,-8v-25,39,-98,24,-98,-30v0,-55,60,-59,94,-81v11,-14,-1,-36,-21,-34v-14,1,-26,10,-25,27v1,13,-16,10,-29,10v-7,0,-11,-5,-10,-13v0,-27,17,-47,38,-55v-25,-25,-3,-70,31,-70v37,0,58,48,30,72v50,23,30,116,30,182xm79,-28v30,0,30,-34,28,-66v-19,12,-55,13,-55,41v0,17,9,25,27,25xm87,-199v11,0,23,-12,23,-23v0,-11,-12,-23,-23,-23v-12,0,-22,12,-22,23v0,11,10,23,22,23"},"\u00e7":{"d":"78,19v20,-10,40,7,41,27v2,38,-54,49,-73,18v4,-31,46,18,46,-16v0,-30,-34,8,-39,-19r7,-25v-26,-7,-47,-29,-47,-61r0,-78v0,-36,29,-64,67,-64v37,0,66,27,66,62v0,13,-17,10,-30,10v-18,-5,-10,-38,-36,-36v-41,3,-23,67,-26,106v-1,16,11,27,26,27v16,-1,25,-13,25,-30v0,-14,40,-16,41,0v1,38,-27,65,-64,66","w":157},"\u00e9":{"d":"148,-135v-1,17,7,48,-10,48r-84,0v-2,29,-1,57,26,57v16,0,28,-11,27,-28v0,-13,18,-10,31,-10v6,0,10,5,10,11v1,36,-30,63,-68,63v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,70,27,68,64xm80,-163v-22,0,-29,19,-26,44r53,0v3,-25,-5,-44,-27,-44xm78,-255v4,-16,42,-14,45,-3v-14,17,-17,47,-50,43v-21,-3,2,-29,5,-40","w":161},"\u00e8":{"d":"148,-135v-1,17,7,48,-10,48r-84,0v-2,29,-1,57,26,57v16,0,28,-11,27,-28v0,-13,18,-10,31,-10v6,0,10,5,10,11v1,36,-30,63,-68,63v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,70,27,68,64xm80,-163v-22,0,-29,19,-26,44r53,0v3,-25,-5,-44,-27,-44xm71,-216v-8,-13,-41,-38,-22,-49v16,1,31,-4,37,10r14,33v0,11,-20,7,-29,6","w":161},"\u00ea":{"d":"148,-135v-1,17,7,48,-10,48r-84,0v-2,29,-1,57,26,57v16,0,28,-11,27,-28v0,-13,18,-10,31,-10v6,0,10,5,10,11v1,36,-30,63,-68,63v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,70,27,68,64xm30,-217v13,-20,37,-73,71,-45v9,15,22,28,29,45v-3,7,-26,7,-32,0r-18,-23v-9,14,-25,38,-50,23xm80,-163v-22,0,-29,19,-26,44r53,0v3,-25,-5,-44,-27,-44","w":161},"\u00eb":{"d":"148,-135v-1,17,7,48,-10,48r-84,0v-2,29,-1,57,26,57v16,0,28,-11,27,-28v0,-13,18,-10,31,-10v6,0,10,5,10,11v1,36,-30,63,-68,63v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,70,27,68,64xm80,-163v-22,0,-29,19,-26,44r53,0v3,-25,-5,-44,-27,-44xm22,-250v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20xm94,-250v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":161},"\u00ed":{"d":"59,-10v-1,16,-42,14,-41,0r0,-173v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm38,-256v5,-16,41,-14,44,-3v-8,15,-19,29,-29,42v-8,3,-36,6,-28,-11","w":100},"\u00ec":{"d":"80,-10v-2,15,-41,15,-41,0r0,-173v0,-13,17,-10,30,-10v6,0,10,5,11,10r0,173xm48,-216v-8,-13,-41,-38,-22,-49v16,1,31,-4,37,10r14,33v0,11,-20,7,-29,6","w":97},"\u00ee":{"d":"89,-10v-1,16,-42,14,-41,0r0,-173v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm18,-217v12,-23,36,-73,71,-45v9,15,22,28,29,45v-3,6,-26,7,-32,0r-18,-23v-9,14,-25,38,-50,23","w":136},"\u00ef":{"d":"18,-250v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20xm90,-250v2,-16,45,-15,44,0v0,12,3,30,-9,30v-14,0,-35,5,-35,-10r0,-20xm96,-10v-1,16,-41,14,-40,0r0,-173v0,-13,17,-10,30,-10v5,0,10,5,10,10r0,173","w":152},"\u00f1":{"d":"18,-183v7,-19,51,-14,41,12v7,-15,23,-28,44,-28v72,0,48,116,48,189v0,13,-17,10,-30,10v-6,0,-11,-4,-11,-10r0,-124v0,-17,-9,-29,-25,-29v-15,0,-26,14,-26,29r0,124v0,13,-18,10,-31,10v-5,0,-10,-5,-10,-10r0,-173xm107,-218v-17,-2,-50,-25,-64,-3v-8,5,-13,-8,-20,-23v20,-29,55,-18,82,-6v12,0,16,-10,26,-12r17,23v-7,12,-30,22,-41,21","w":167},"\u00f3":{"d":"80,6v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,69,27,68,64r0,78v1,36,-30,63,-68,63xm80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27xm81,-255v5,-16,41,-14,44,-3v-14,17,-17,48,-50,43v-20,-3,4,-29,6,-40","w":161},"\u00f2":{"d":"80,6v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,69,27,68,64r0,78v1,36,-30,63,-68,63xm80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27xm38,-255v-5,-14,30,-10,30,-10v17,4,21,28,27,43v0,12,-28,9,-34,0","w":161},"\u00f4":{"d":"80,6v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,69,27,68,64r0,78v1,36,-30,63,-68,63xm80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27xm30,-217v14,-22,28,-67,68,-49v9,18,24,30,32,49v-3,6,-26,7,-32,0r-18,-23v-9,14,-25,38,-50,23","w":161},"\u00f6":{"d":"80,6v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,69,27,68,64r0,78v1,36,-30,63,-68,63xm80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27xm23,-250v2,-16,45,-15,44,0v0,12,3,30,-9,30v-14,0,-35,5,-35,-10r0,-20xm94,-250v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":161},"\u00f5":{"d":"80,6v-36,0,-67,-27,-67,-63r0,-78v-1,-36,31,-64,67,-64v37,0,69,27,68,64r0,78v1,36,-30,63,-68,63xm80,-30v42,-1,24,-65,27,-105v1,-16,-11,-28,-27,-28v-41,2,-23,67,-26,106v-1,16,11,27,26,27xm103,-218v-17,-2,-49,-24,-64,-3v-7,4,-7,-4,-18,-18v-5,-16,27,-25,38,-25v17,0,43,26,60,6v10,-11,16,2,25,19v-7,13,-30,22,-41,21","w":161},"\u00fa":{"d":"149,-10v-7,19,-51,14,-41,-12v-6,16,-23,29,-45,28v-71,-5,-47,-117,-47,-189v0,-13,17,-10,30,-10v6,0,10,5,11,10r0,124v-1,18,9,29,25,29v15,0,26,-14,26,-29r0,-124v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm81,-255v5,-16,41,-14,44,-3v-14,17,-17,48,-50,43v-20,-3,4,-29,6,-40","w":167},"\u00f9":{"d":"149,-10v-7,19,-51,14,-41,-12v-6,16,-23,29,-45,28v-71,-5,-47,-117,-47,-189v0,-13,17,-10,30,-10v6,0,10,5,11,10r0,124v-1,18,9,29,25,29v15,0,26,-14,26,-29r0,-124v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm98,-215v-31,4,-57,-40,-42,-51v16,1,31,-4,37,10r14,33v0,5,-3,8,-9,8","w":167},"\u00fb":{"d":"149,-10v-7,19,-51,14,-41,-12v-6,16,-23,29,-45,28v-71,-5,-47,-117,-47,-189v0,-13,17,-10,30,-10v6,0,10,5,11,10r0,124v-1,18,9,29,25,29v15,0,26,-14,26,-29r0,-124v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm36,-217v10,-20,24,-37,37,-53v13,1,30,-3,33,8r30,45v-3,6,-26,7,-32,0r-18,-23v-11,13,-16,32,-45,27v-4,0,-5,-2,-5,-4","w":167},"\u00fc":{"d":"149,-10v-7,19,-51,14,-41,-12v-6,16,-23,29,-45,28v-71,-5,-47,-117,-47,-189v0,-13,17,-10,30,-10v6,0,10,5,11,10r0,124v-1,18,9,29,25,29v15,0,26,-14,26,-29r0,-124v0,-13,17,-10,30,-10v6,0,11,4,11,10r0,173xm23,-250v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20xm95,-250v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":167},"\u00b0":{"d":"68,-262v27,0,50,23,50,50v0,26,-23,49,-50,49v-27,0,-50,-23,-50,-49v0,-27,23,-50,50,-50xm68,-181v17,0,32,-14,32,-31v0,-17,-15,-31,-32,-31v-16,0,-31,14,-31,31v0,17,15,31,31,31","w":136},"\u00ae":{"d":"129,-141v27,3,42,-3,42,-33v0,-20,-21,-20,-42,-19r0,52xm196,-37v-11,0,-25,2,-25,-8v-2,-36,14,-84,-40,-72r0,72v1,10,-14,8,-25,8v-4,1,-9,-4,-8,-8r0,-165v4,-18,44,-6,65,-9v42,-5,56,78,16,90v32,4,25,49,25,84v1,4,-4,9,-8,8xm149,-260v71,0,133,62,133,133v0,72,-62,133,-133,133v-72,0,-134,-62,-134,-133v0,-70,62,-133,134,-133xm149,-8v64,0,118,-54,118,-119v0,-65,-54,-119,-118,-119v-64,0,-119,55,-119,119v0,64,55,119,119,119","w":297},"\u00a9":{"d":"150,-192v-41,1,-20,67,-24,104v-2,16,9,24,24,24v13,-1,25,-10,24,-24v0,-10,13,-7,23,-7v4,0,8,4,7,10v2,28,-26,49,-54,49v-30,0,-54,-22,-55,-50r0,-85v0,-26,26,-48,55,-48v29,0,54,20,54,52v0,9,-13,7,-22,7v-3,0,-9,-2,-8,-7v1,-14,-11,-25,-24,-25xm149,-260v71,0,133,62,133,133v0,72,-62,133,-133,133v-72,0,-134,-62,-134,-133v0,-70,62,-133,134,-133xm149,-8v64,0,118,-54,118,-119v0,-65,-54,-119,-118,-119v-64,0,-119,55,-119,119v0,64,55,119,119,119","w":297},"\u2122":{"d":"59,-129v-11,0,-22,1,-22,-8r0,-92v-15,-1,-34,6,-29,-18v0,-5,2,-8,7,-8r73,0v9,0,8,9,8,18v0,12,-19,5,-30,7r0,93v0,3,-2,9,-7,8xm222,-129v-10,0,-21,1,-20,-8r0,-75r-24,76v-4,10,-15,10,-19,0r-24,-76r0,75v-1,8,-10,9,-20,8v-5,1,-8,-4,-8,-8r0,-110v0,-12,37,-14,41,-1r20,65r21,-65v4,-13,20,-5,33,-7v5,-1,7,5,7,8r0,110v0,3,-2,9,-7,8","w":244},"\u00b1":{"d":"91,-207v11,-1,23,-1,23,10r0,66v26,5,74,-16,66,25v-4,20,-45,6,-66,10r0,61v26,5,73,-17,66,25v0,5,-5,10,-10,10r-146,0v-11,0,-10,-13,-10,-25v6,-20,45,-6,67,-10r0,-61v-26,-5,-75,17,-67,-25v4,-20,45,-6,67,-10r0,-66v0,-5,5,-10,10,-10","w":194},"\u00ac":{"d":"31,-100v-14,0,-15,-36,0,-35r132,0v22,4,8,46,11,68v1,11,-13,10,-25,10v-16,-1,-8,-27,-10,-43r-108,0","w":194},"\u00a0":{"w":63},"\u00c0":{"d":"121,-91r-27,-119r-26,119r53,0xm49,-8v-4,14,-42,11,-43,0r56,-241v7,-13,39,-3,56,-6v5,0,8,2,9,6r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0xm104,-275v-31,4,-57,-40,-42,-51v16,1,32,-5,37,10v4,11,11,20,14,33v0,5,-3,8,-9,8","w":189},"\u00c3":{"d":"121,-91r-27,-119r-26,119r53,0xm49,-8v-4,14,-42,11,-43,0r56,-241v7,-13,39,-3,56,-6v5,0,8,2,9,6r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0xm116,-277v-15,0,-45,-25,-60,-5v-11,8,-15,-3,-24,-20v19,-31,55,-16,83,-7v22,-7,30,-22,42,12v-8,12,-30,21,-41,20","w":189},"\u00d5":{"d":"91,-31v17,1,30,-14,30,-32r0,-130v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32xm91,-263v41,0,74,27,74,70r0,130v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70xm154,-297v-29,43,-73,-9,-108,18v-2,0,-7,-6,-15,-19v-2,-17,28,-25,39,-24v17,1,49,26,64,2v8,-5,13,8,20,23","w":181},"\u00f7":{"d":"87,-12v-13,0,-16,-35,0,-35v20,0,33,0,30,25v-2,13,-17,10,-30,10xm77,-157v-4,-22,8,-24,30,-24v11,0,10,13,10,24v0,14,-17,11,-30,11v-6,0,-10,-5,-10,-11xm26,-79v-14,0,-15,-36,0,-35r142,0v11,0,10,13,10,25v0,5,-5,10,-10,10r-142,0","w":194},"\u00ff":{"d":"5,-182v-5,-15,19,-10,32,-11v5,0,8,3,9,8r38,141r35,-141v2,-12,38,-14,42,0r-58,208v-9,36,-28,45,-71,43v-12,0,-10,-14,-10,-26v0,-22,51,6,40,-31xm26,-242v0,-17,45,-14,44,0v0,13,3,30,-10,30v-14,0,-34,5,-34,-10r0,-20xm97,-242v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":162},"\u0178":{"d":"114,-10v0,14,-20,9,-34,10v-6,0,-11,-4,-11,-10r0,-108v-20,-44,-46,-83,-64,-130v3,-13,41,-11,44,4r42,83r49,-92v9,-2,45,-7,37,9r-63,126r0,108xm106,-310v2,-17,45,-15,44,0v-1,13,3,30,-9,30v-15,0,-35,4,-35,-11r0,-19xm34,-310v2,-17,45,-14,45,0v0,13,2,30,-10,30v-15,0,-35,4,-35,-11r0,-19","w":183},"\u00c2":{"d":"49,-8v-4,14,-42,11,-43,0r56,-241v7,-13,39,-3,56,-6v5,0,8,2,9,6r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0xm45,-277v12,-20,21,-41,40,-54v40,-5,42,34,60,54v-5,5,-26,6,-32,-1r-18,-23v-9,14,-24,37,-50,24xm121,-91r-27,-119r-26,119r53,0","w":189},"\u00ca":{"d":"143,-38v16,0,14,39,0,38r-113,0v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v-7,21,-52,5,-76,10r0,78r79,0xm34,-278v10,-20,24,-37,37,-53v13,1,30,-4,33,8r30,45v-3,6,-26,7,-32,0r-18,-23v-9,14,-25,38,-50,23"},"\u00c1":{"d":"121,-91r-27,-119r-26,119r53,0xm49,-8v-4,14,-42,11,-43,0r56,-241v7,-13,39,-3,56,-6v5,0,8,2,9,6r55,241v-1,13,-38,13,-42,0r-11,-45r-69,0xm92,-316v5,-16,41,-14,44,-3v-8,15,-19,29,-29,42v-9,2,-36,5,-28,-12","w":189},"\u00cb":{"d":"143,-38v16,0,14,39,0,38r-113,0v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v-7,21,-52,5,-76,10r0,78r79,0xm25,-311v2,-17,45,-14,45,0v0,13,3,29,-10,29v-14,-1,-35,5,-35,-10r0,-19xm97,-311v2,-17,45,-15,44,0v-1,12,3,29,-9,29v-14,-1,-35,5,-35,-10r0,-19"},"\u00c8":{"d":"143,-38v16,0,14,39,0,38r-113,0v-5,0,-10,-5,-10,-10r0,-235v0,-5,5,-10,10,-10r111,0v12,0,10,15,10,27v0,6,-4,11,-10,11r-77,0r0,64r66,0v12,0,10,15,10,27v-7,21,-52,5,-76,10r0,78r79,0xm52,-316v-5,-14,30,-10,30,-10v17,4,21,28,27,43v0,12,-28,9,-34,0"},"\u00cd":{"d":"64,-10v-2,17,-45,14,-44,0r0,-235v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,235xm39,-316v5,-16,41,-14,45,-3r-30,42v-8,3,-36,6,-28,-11","w":88},"\u00ce":{"d":"70,-10v-2,16,-44,15,-44,0r0,-235v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,235xm-3,-278v13,-22,36,-74,71,-46r30,46v-3,6,-26,6,-32,-1r-18,-22v-10,13,-26,38,-51,23","w":95},"\u00cf":{"d":"75,-10v-2,16,-44,15,-44,0r0,-235v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,235xm-4,-311v2,-16,45,-15,44,0v0,12,3,30,-9,30v-14,0,-35,5,-35,-10r0,-20xm67,-311v2,-17,45,-14,45,0v0,13,3,30,-10,30v-14,-1,-35,5,-35,-10r0,-20","w":108},"\u00cc":{"d":"68,-10v-2,17,-45,14,-44,0r0,-235v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,235xm6,-316v-5,-14,30,-10,30,-10v17,3,20,28,27,43v0,13,-30,10,-34,0","w":88},"\u00d3":{"d":"91,-31v17,1,30,-14,30,-32r0,-130v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32xm91,-263v41,0,74,27,74,70r0,130v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70xm87,-316v4,-16,42,-14,45,-3v-14,17,-17,48,-50,44v-21,-3,2,-29,5,-41","w":181},"\u00d4":{"d":"91,-263v41,0,74,27,74,70r0,130v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70xm91,-31v17,1,30,-14,30,-32r0,-130v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32xm42,-278v10,-20,24,-37,37,-53v13,1,30,-3,33,8r30,45v-3,6,-26,7,-32,0r-18,-23v-9,14,-25,38,-50,23","w":181},"\u00d2":{"d":"91,-31v17,1,30,-14,30,-32r0,-130v1,-18,-13,-33,-30,-32v-18,0,-31,14,-31,32r0,130v0,18,13,32,31,32xm91,-263v41,0,74,27,74,70r0,130v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-130v-1,-44,33,-70,74,-70xm52,-316v-5,-14,30,-10,30,-10v17,4,21,28,27,43v0,12,-28,9,-34,0","w":181},"\u00da":{"d":"92,-31v17,0,30,-14,30,-32r0,-182v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,182v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-182v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,182v-1,18,13,32,30,32xm90,-316v5,-16,41,-14,44,-3v-14,17,-17,48,-50,43v-20,-3,4,-29,6,-40","w":185},"\u00db":{"d":"92,-31v17,0,30,-14,30,-32r0,-182v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,182v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-182v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,182v-1,18,13,32,30,32xm42,-278v13,-22,36,-74,71,-46r30,46v-3,6,-26,6,-32,-1r-18,-22v-10,13,-26,38,-51,23","w":185},"\u00d9":{"d":"92,-31v17,0,30,-14,30,-32r0,-182v0,-14,20,-9,34,-10v5,0,10,5,10,10r0,182v1,44,-33,70,-74,70v-41,0,-74,-27,-74,-70r0,-182v0,-14,20,-9,33,-10v6,0,11,4,11,10r0,182v-1,18,13,32,30,32xm104,-275v-31,4,-57,-40,-42,-51v16,1,31,-4,37,10r14,33v0,5,-3,8,-9,8","w":185}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) Elektrosmog, Valentin HIndermann, Marco Walser and Pierre
 * Miedinger. www.lineto.com, 2006. All rights reserved.
 */
Cufon.registerFont({"w":160,"face":{"font-family":"BrauerNeueReg","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-14.8861 -325.329 288 86","underline-thickness":"16.2","underline-position":"-41.4","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"!":{"d":"31,-249v3,-10,32,-9,32,0r-9,171v0,4,-3,6,-7,6v-4,0,-7,-2,-7,-6v-10,-91,-9,-100,-9,-171xm31,-23v2,-12,34,-10,32,0v-1,9,4,23,-6,23v-10,-1,-26,4,-26,-6r0,-17","w":93},"\"":{"d":"26,-249v1,-10,25,-9,25,0r0,65v1,10,-11,6,-19,7v-4,0,-6,-3,-6,-7r0,-65xm86,-249v0,-10,26,-8,26,0r0,65v0,9,-11,7,-20,7v-4,0,-7,-2,-6,-7r0,-65","w":138},"#":{"d":"172,-93v2,24,-16,24,-36,22r-15,65v-1,7,-9,6,-17,6v-6,0,-5,-5,-5,-10r14,-61r-50,0r-15,65v-1,7,-9,6,-17,6v-6,0,-5,-5,-5,-10r14,-61v-17,1,-40,3,-27,-20v2,-12,21,-5,33,-7r14,-62v-18,0,-39,5,-29,-21v4,-11,23,-4,35,-6r14,-60v1,-7,9,-6,17,-6v6,0,5,5,5,10r-13,56r50,0r14,-60v1,-7,9,-6,17,-6v6,0,5,5,5,10r-13,56v11,2,34,-6,28,10v2,19,-15,18,-34,17r-14,62v10,1,29,-4,30,5xm83,-160r-14,62r50,0r14,-62r-50,0","w":200},"$":{"d":"141,-122v52,29,31,128,-29,129v-1,15,7,37,-16,32v-10,-2,-4,-20,-6,-31v-37,-6,-61,-35,-61,-82v0,-10,13,-7,22,-7v15,6,1,36,16,46v6,8,13,13,23,15r0,-100v-26,-16,-60,-36,-60,-74v0,-37,25,-66,60,-68v2,-14,-7,-35,15,-31v12,2,5,20,7,31v35,3,59,31,59,71v0,11,-13,6,-22,7v-14,-4,-4,-29,-15,-37v-5,-7,-12,-12,-22,-14r0,95xm112,-20v25,-4,38,-41,25,-66v-3,-4,-14,-15,-25,-19r0,85xm90,-235v-26,3,-40,39,-25,63v4,5,14,12,25,18r0,-81","w":200},"%":{"d":"63,-233v-28,0,-20,38,-21,65v0,11,10,20,21,20v27,0,19,-38,20,-64v0,-11,-9,-21,-20,-21xm63,-126v-41,0,-44,-40,-44,-86v0,-24,21,-43,44,-43v40,0,43,41,43,87v0,23,-21,42,-43,42xm198,-99v-28,0,-20,38,-21,65v0,12,9,20,21,20v28,0,19,-37,20,-64v1,-12,-8,-21,-20,-21xm198,9v-40,0,-44,-41,-44,-87v0,-24,22,-43,44,-43v40,0,43,41,43,87v0,24,-21,43,-43,43xm173,-255v7,0,18,-2,15,7r-102,266v-2,10,-25,12,-24,-1r102,-265v2,-5,5,-7,9,-7","w":260},"&":{"d":"126,-206v-1,-19,-8,-32,-28,-32v-41,0,-32,51,-5,79v22,-14,33,-30,33,-47xm85,-126v-51,19,-51,108,12,107v18,0,33,-7,44,-20xm168,-101v0,-9,25,-9,26,0v-3,23,-10,44,-22,63v6,11,15,19,19,32v-7,16,-35,1,-35,-11v-42,49,-136,22,-136,-52v0,-33,16,-59,50,-78v-9,-17,-26,-34,-26,-60v0,-33,21,-56,53,-56v32,-1,55,25,55,56v0,37,-20,47,-45,68r49,77v6,-10,10,-23,12,-39","w":210},"(":{"d":"96,-258v-27,43,-48,102,-48,165v0,63,21,123,48,166v-2,8,-27,9,-30,-2v-55,-82,-57,-244,0,-327v2,-11,26,-12,30,-2","w":112},")":{"d":"17,73v25,-45,47,-101,47,-166v0,-64,-22,-121,-47,-165v1,-8,26,-11,29,2v56,81,59,245,0,327v-3,10,-13,6,-24,7v-3,1,-6,-2,-5,-5","w":112},"*":{"d":"69,-172v-34,-14,-62,-6,-50,-38v19,-10,40,12,58,16v-2,-27,-2,-44,-2,-51v-1,-12,10,-10,20,-10v5,0,8,3,8,10v0,7,-1,24,-3,51v19,-4,40,-26,59,-16v11,33,-17,25,-50,38v21,32,35,33,29,53r-15,8v-15,-10,-14,-20,-34,-50v-19,30,-20,39,-34,50v-7,-3,-16,-6,-18,-14v4,-14,11,-18,32,-47","w":177},"+":{"d":"184,-109v10,0,9,25,0,25r-67,0r0,77v0,9,-12,7,-21,7v-4,0,-6,-3,-6,-7r0,-77r-67,0v-10,1,-6,-11,-7,-19v0,-4,2,-7,7,-6r67,0r0,-77v0,-9,12,-7,21,-7v4,0,6,3,6,7r0,77r67,0","w":206},",":{"d":"62,-27v3,31,-3,73,-31,61v-4,-15,18,-8,16,-25v3,-16,-22,-2,-24,-15v1,-10,-5,-28,7,-27v11,2,31,-5,32,6","w":85},"-":{"d":"26,-84v-10,0,-9,-25,0,-25r111,0v9,-1,5,11,6,19v0,4,-2,6,-6,6r-111,0","w":163},".":{"d":"23,-27v3,-11,39,-9,39,0v0,10,4,27,-7,27v-11,0,-30,5,-32,-6r0,-21","w":85},"\/":{"d":"118,-255v0,0,18,-2,15,7r-101,266v-2,9,-22,11,-25,2r102,-268v2,-5,5,-7,9,-7","w":141},"0":{"d":"21,-192v-1,-41,29,-69,68,-69v39,0,68,28,68,69r0,130v1,41,-29,69,-68,69v-39,0,-68,-28,-68,-69r0,-130xm130,-62v-6,-64,26,-173,-41,-173v-67,0,-35,110,-41,173v-3,25,17,43,41,43v24,0,43,-18,41,-43","w":177},"1":{"d":"25,-203v0,-9,-2,-20,7,-20v19,-4,24,-9,29,-29v3,-5,27,-6,27,3r0,243v0,9,-27,10,-27,0r0,-191v-12,-2,-36,6,-36,-6","w":124},"2":{"d":"146,-26v9,1,9,26,0,26r-122,0v-13,-1,-7,-30,-2,-38r91,-125v26,-29,11,-72,-28,-72v-26,0,-41,18,-40,44v0,9,-11,7,-20,7v-6,0,-8,-5,-7,-12v0,-36,28,-65,67,-65v56,0,87,61,54,107r-92,128r99,0","w":167},"3":{"d":"121,-62v0,-37,-2,-57,-43,-57v-10,0,-7,-14,-7,-24v0,-8,12,-6,20,-6v24,1,29,-20,28,-46v-1,-25,-14,-40,-39,-40v-25,0,-38,17,-38,40v0,10,-12,5,-20,6v-5,1,-7,-2,-7,-6v0,-38,27,-66,65,-66v44,0,69,31,65,80v-2,28,-3,33,-20,47v24,10,24,39,24,72v0,41,-29,69,-69,69v-40,0,-70,-30,-68,-71v0,-9,12,-7,21,-7v5,0,7,3,7,8v0,25,15,44,40,44v24,0,41,-18,41,-43","w":163},"4":{"d":"108,-91r0,-141r-70,141r70,0xm19,-65v-12,-3,-8,-25,-3,-37r74,-150v7,-7,27,-1,39,-3v4,0,6,2,6,6r0,158v0,0,33,-5,29,19v-2,11,-18,6,-29,7r0,59v1,9,-13,5,-21,6v-4,0,-5,-3,-6,-6r0,-59r-89,0","w":175},"5":{"d":"86,7v-39,0,-69,-28,-67,-69v0,-9,12,-5,21,-6v4,0,6,2,6,6v0,25,16,43,40,43v41,1,40,-42,40,-85v0,-29,-14,-44,-41,-44v-22,0,-36,17,-37,39v0,9,-12,7,-21,7v-4,0,-6,-3,-6,-7r0,-140v0,-4,3,-5,6,-6r111,0v9,0,10,26,0,26r-90,0r0,77v31,-44,105,-21,105,38v0,67,-8,121,-67,121","w":167},"6":{"d":"85,-19v38,1,38,-39,38,-79v0,-28,-13,-42,-38,-42v-36,0,-40,38,-38,77v1,24,14,44,38,44xm149,-199v-1,10,-27,9,-27,0v0,-21,-15,-38,-37,-37v-41,0,-40,47,-38,90v32,-46,110,-21,103,42v6,62,-10,111,-65,111v-39,0,-65,-30,-65,-70r0,-130v-1,-40,27,-70,65,-70v36,-1,66,27,64,64","w":168},"7":{"d":"12,-229v-11,0,-10,-26,0,-26r114,0v11,4,7,23,3,35r-79,213v-2,10,-27,12,-29,0r81,-222r-90,0","w":141},"8":{"d":"47,-137v-49,-30,-26,-134,38,-124v64,-10,88,93,39,124v25,13,30,36,30,75v0,42,-30,65,-69,69v-71,7,-94,-114,-38,-144xm47,-197v0,30,11,49,38,48v27,0,40,-19,39,-48v-1,-23,-15,-38,-39,-38v-23,-1,-38,15,-38,38xm44,-80v0,36,11,60,41,61v30,0,41,-25,41,-61v0,-25,-17,-43,-41,-43v-24,0,-41,19,-41,43","w":170},"9":{"d":"121,-160v0,-40,-1,-76,-38,-76v-37,0,-38,36,-38,76v0,29,13,44,38,44v22,-1,38,-20,38,-44xm19,-57v1,-10,29,-9,28,0v-1,21,15,37,36,37v42,0,39,-47,38,-91v-32,47,-103,19,-103,-42v0,-62,10,-110,65,-110v39,0,66,30,66,70r0,129v0,40,-27,70,-66,70v-36,0,-64,-27,-64,-63","w":168},":":{"d":"23,-153v5,-11,37,-9,39,0v-1,10,4,27,-7,27v-11,0,-30,5,-32,-6r0,-21xm23,-27v3,-11,39,-9,39,0v0,10,4,27,-7,27v-11,0,-30,5,-32,-6r0,-21","w":85},";":{"d":"23,-153v5,-11,37,-9,39,0v-1,10,4,27,-7,27v-11,0,-30,5,-32,-6r0,-21xm62,-27v3,30,-3,72,-30,61v-4,-15,19,-8,17,-25v3,-17,-23,-2,-25,-15v1,-10,-4,-27,6,-27v11,0,31,-5,32,6","w":85},"<":{"d":"52,-78v-8,-7,-8,-31,0,-36r102,-78v8,2,8,26,0,32r-81,64r81,63v9,5,4,16,5,27v0,6,-5,6,-9,4","w":206},"=":{"d":"42,-121v-11,0,-10,-27,0,-26r122,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-122,0xm42,-46v-11,0,-10,-27,0,-26r122,0v9,0,7,10,7,19v0,4,-3,7,-7,7r-122,0","w":206},">":{"d":"154,-114v8,5,9,30,0,36v-34,26,-64,56,-102,77v-8,-2,-7,-25,1,-32r81,-63r-81,-64v-9,-3,-10,-27,-1,-32v37,23,67,53,102,78","w":206},"?":{"d":"93,-77v0,12,-30,10,-30,0v0,-61,63,-68,63,-118v0,-27,-14,-41,-40,-41v-26,0,-40,18,-39,43v0,9,-27,10,-28,0v-4,-42,29,-68,67,-70v53,-3,86,61,54,105v-18,25,-47,35,-47,81xm61,-27v2,-11,34,-9,34,0v-1,10,4,27,-7,27v-10,0,-27,4,-27,-6r0,-21","w":172},"@":{"d":"125,-78v21,1,39,-26,39,-56v0,-21,-8,-26,-30,-27v-33,-2,-58,81,-9,83xm203,-13v-8,17,-44,24,-70,25v-71,1,-121,-59,-118,-132v3,-76,48,-129,125,-132v63,-2,119,44,119,105v0,55,-30,98,-82,92v-7,-1,-15,-11,-17,-20v-22,38,-89,20,-85,-28v-6,-59,58,-109,101,-68v-3,-13,17,-21,24,-9v-5,32,-14,60,-17,95v0,5,6,7,12,7v25,-1,43,-33,42,-63v-1,-53,-43,-88,-98,-88v-55,0,-103,52,-102,110v1,62,35,107,99,107v23,0,42,-8,56,-16v4,-1,12,12,11,15","w":274},"A":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-242v5,-8,35,-9,42,0r65,244v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0","w":190},"B":{"d":"50,-148v44,1,89,7,79,-49v4,-42,-41,-33,-79,-34r0,83xm132,-55v0,-35,2,-67,-34,-67r-48,0r0,98v37,-1,82,10,82,-31xm163,-86v3,47,-6,86,-49,86r-86,0v-4,0,-6,-2,-6,-6r0,-243v0,-4,2,-6,6,-6v55,2,128,-14,128,44v0,36,2,67,-26,76v22,4,31,24,33,49","w":178},"C":{"d":"132,-68v3,-11,34,-10,29,5v1,41,-30,70,-70,70v-41,0,-72,-29,-71,-70r0,-130v-1,-41,31,-70,71,-70v41,0,72,30,70,74v0,10,-14,6,-23,7v-5,0,-6,-5,-6,-11v0,-24,-17,-43,-41,-43v-67,2,-35,109,-41,173v-3,25,17,43,41,43v25,0,43,-20,41,-48","w":178},"D":{"d":"131,-58r0,-140v3,-43,-43,-32,-80,-33r0,207v38,-1,80,9,80,-34xm22,-249v0,-4,3,-5,6,-6r82,0v78,3,43,127,49,202v3,30,-19,54,-49,53r-82,0v-4,0,-5,-3,-6,-6r0,-243","w":178},"E":{"d":"142,-255v11,0,10,27,0,26r-91,0r0,79r76,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-76,0r0,98r93,0v9,0,10,26,0,26r-116,0v-4,0,-5,-3,-6,-6r0,-243v0,-4,3,-5,6,-6r114,0","w":162},"F":{"d":"138,-255v10,1,8,26,0,26r-90,0r0,79r74,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-74,0r0,118v-1,9,-27,10,-29,0r0,-243v0,-4,3,-5,6,-6r113,0","w":153},"G":{"d":"161,-6v-7,13,-38,7,-29,-13v-31,50,-112,22,-112,-44r0,-130v-1,-41,31,-70,71,-70v41,0,72,30,70,74v0,10,-14,6,-23,7v-5,0,-6,-5,-6,-11v0,-24,-17,-43,-41,-43v-67,2,-35,109,-41,173v-3,25,17,43,41,43v44,1,43,-49,41,-95v-18,-1,-44,8,-37,-22v0,-4,2,-7,6,-7r54,0v4,0,6,3,6,7r0,131","w":181},"H":{"d":"23,-249v2,-10,29,-9,29,0r0,103r87,0r0,-103v0,-9,27,-10,29,0r0,243v-1,9,-27,10,-29,0r0,-115r-87,0r0,115v0,9,-27,10,-29,0r0,-243","w":191},"I":{"d":"24,-249v2,-10,28,-9,29,0r0,243v-1,9,-27,10,-29,0r0,-243","w":76},"J":{"d":"13,-70v4,-13,34,-10,28,7v0,25,14,43,39,43v25,0,39,-18,39,-43r0,-186v1,-9,27,-10,29,0r0,186v1,41,-28,70,-68,70v-42,0,-70,-32,-67,-77","w":165},"K":{"d":"22,-249v2,-10,28,-9,29,0r0,105r71,-104v4,-9,27,-11,31,-2v-21,41,-51,72,-75,110v26,46,58,85,81,134v-2,10,-26,10,-30,-2r-78,-125r0,127v-1,9,-27,10,-29,0r0,-243","w":172},"L":{"d":"22,-249v2,-10,28,-9,29,0r0,223r82,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-105,0v-4,0,-5,-3,-6,-6r0,-243","w":148},"M":{"d":"210,-6v-2,10,-28,9,-29,0r0,-224r-51,222v-1,12,-25,12,-28,0r-52,-222r0,224v1,10,-14,5,-22,6v-4,0,-5,-3,-6,-6r0,-243v4,-12,28,-4,42,-6v4,0,7,3,8,8r44,189r43,-189v3,-15,29,-5,44,-8v4,0,7,2,7,6r0,243","w":231},"N":{"d":"49,-6v-2,10,-29,9,-28,0r0,-243v0,-10,29,-10,33,0r93,195r0,-195v0,-9,27,-10,29,0r0,243v-2,9,-29,10,-34,0r-93,-195r0,195","w":196},"O":{"d":"49,-193v6,64,-26,173,41,173v67,0,35,-109,41,-173v3,-25,-17,-43,-41,-43v-24,0,-43,18,-41,43xm19,-193v0,-40,31,-70,71,-70v40,0,71,30,71,70r0,130v0,40,-30,70,-71,70v-41,0,-71,-30,-71,-70r0,-130","w":180},"P":{"d":"156,-207v1,52,7,108,-46,108r-59,0r0,93v-1,9,-27,10,-29,0r0,-243v0,-4,3,-5,6,-6r83,0v29,-1,45,20,45,48xm51,-124v35,-1,79,9,77,-30v-2,-36,9,-77,-32,-77r-45,0r0,107","w":171},"Q":{"d":"50,-193v6,64,-26,174,41,174v67,0,35,-110,41,-174v2,-24,-17,-43,-41,-43v-24,0,-43,18,-41,43xm91,-263v39,0,72,30,70,70v-3,60,12,136,-14,175v11,3,33,-7,33,7v-4,7,-7,19,-17,18r-72,0v-41,1,-72,-29,-71,-70r0,-130v-1,-41,31,-70,71,-70","w":185},"R":{"d":"50,-141v39,0,81,8,81,-35v0,-31,-1,-55,-32,-55r-49,0r0,90xm131,-129v43,10,29,74,29,123v0,9,-27,10,-29,0v-6,-43,20,-116,-33,-111r-48,0r0,111v1,10,-14,5,-22,6v-4,0,-6,-2,-6,-6r0,-243v0,-4,2,-6,6,-6v57,2,129,-14,129,47v0,36,3,72,-26,79","w":178},"S":{"d":"13,-74v7,-15,36,-9,29,11v-1,24,18,43,42,43v32,0,53,-37,37,-66v-29,-34,-107,-47,-107,-108v-1,-40,30,-70,71,-69v42,0,71,29,70,72v0,10,-14,6,-23,7v-5,0,-6,-6,-6,-12v0,-22,-16,-40,-41,-40v-36,0,-57,38,-36,64v30,37,107,40,106,108v0,39,-31,72,-71,71v-42,-1,-78,-32,-71,-81","w":167},"T":{"d":"15,-229v-11,0,-10,-27,0,-26r131,0v9,0,7,10,7,19v-7,15,-40,4,-58,7r0,223v-1,9,-27,10,-29,0r0,-223r-51,0"},"U":{"d":"91,7v-41,0,-72,-29,-71,-70r0,-186v1,-9,28,-10,30,0r0,186v-1,25,17,43,41,43v24,0,41,-19,41,-43r0,-186v0,-9,27,-10,29,0r0,186v1,41,-30,70,-70,70","w":181},"V":{"d":"148,-255v9,0,22,-2,20,8r-52,241v-6,13,-32,3,-48,6v-3,0,-6,-2,-7,-6r-52,-242v1,-10,29,-11,29,1r51,232r50,-232v0,-4,5,-9,9,-8","w":177},"W":{"d":"183,-6r-41,-218r-42,218v-3,13,-26,3,-39,6v-4,0,-7,-3,-8,-8r-44,-240v-1,-11,12,-6,21,-7v5,0,8,3,9,8r39,225r41,-227v5,-10,38,-10,46,0r41,227r38,-225v0,-11,29,-13,31,-1r-44,240v-3,15,-27,5,-42,8v-3,0,-5,-2,-6,-6","w":283},"X":{"d":"20,-246v-4,-11,12,-9,22,-9v7,0,6,2,9,8r48,92r52,-99v8,-2,33,-4,27,8r-58,113r67,127v-3,10,-30,11,-34,-3r-54,-102r-54,102v-3,13,-28,13,-34,3v20,-44,45,-84,67,-127","w":198},"Y":{"d":"108,-6v-2,10,-28,9,-29,0r0,-113r-68,-130v1,-10,29,-9,31,2r52,95r56,-102v7,-1,31,-4,25,7r-67,128r0,113","w":187},"Z":{"d":"28,-229v-11,0,-10,-27,0,-26r130,0v12,-1,6,25,5,32r-120,197r118,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-142,0v-10,0,-5,-24,-5,-32r120,-197r-106,0","w":180},"[":{"d":"62,-262v18,-8,28,20,13,24v-15,-1,-27,3,-26,16r0,259v-5,26,39,1,33,34v-1,8,-12,6,-20,6v-24,0,-39,-19,-39,-42r0,-255v0,-23,15,-42,39,-42","w":99},"\\":{"d":"8,-248v-2,-4,-1,-7,4,-7v10,0,17,-2,20,7r102,268v-1,8,-21,8,-25,-2","w":141},"]":{"d":"24,77v-13,-7,-7,-30,10,-24v11,0,16,-6,16,-16r0,-259v5,-26,-38,-2,-32,-34v0,-8,11,-6,19,-6v24,-1,40,18,39,42r0,255v0,29,-19,46,-52,42","w":99},"^":{"d":"89,-258v3,-7,23,-7,28,0r54,99v-1,10,-17,16,-24,10r-44,-80r-44,80v-7,7,-29,-2,-23,-13","w":206},"_":{"d":"19,57v-9,-1,-9,-26,0,-26r152,0v9,0,7,10,7,19v0,4,-3,7,-7,7r-152,0","w":190},"a":{"d":"70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm115,-24v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-3,-37,28,-58,62,-59v86,-3,59,114,59,192v0,9,-27,9,-27,0r0,-18"},"b":{"d":"46,-169v23,-51,98,-29,98,31v0,64,9,142,-50,144v-22,0,-38,-10,-48,-29v8,19,-15,33,-26,17r0,-243v0,-9,26,-10,26,0r0,80xm82,-174v-48,1,-36,64,-36,111v0,24,9,44,36,44v46,0,35,-66,35,-111v0,-30,-12,-44,-35,-44","w":159},"c":{"d":"81,5v-35,0,-65,-28,-64,-62r0,-79v-1,-34,29,-62,64,-62v36,0,66,28,64,64v0,9,-25,9,-27,0v1,-22,-15,-40,-37,-40v-49,0,-36,68,-37,117v0,20,17,38,37,38v22,0,38,-18,37,-41v0,-9,12,-7,21,-7v5,1,6,4,6,10v1,34,-29,62,-64,62","w":159},"d":{"d":"113,-23v-23,52,-97,27,-97,-32v0,-63,-10,-142,50,-143v22,0,37,10,47,29r0,-80v0,-9,27,-10,27,0r0,243v0,9,-27,9,-27,0r0,-17xm77,-19v50,1,34,-65,36,-111v1,-26,-11,-43,-36,-44v-46,-4,-34,67,-34,111v0,30,11,44,34,44","w":159},"e":{"d":"82,-174v-30,0,-42,26,-38,61r76,0v5,-35,-9,-61,-38,-61xm146,-136v-1,15,6,40,-6,45r-96,0v-3,38,3,72,38,72v21,1,38,-17,37,-38v0,-9,25,-10,27,0v2,35,-30,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,66,28,64,62"},"f":{"d":"46,-6v-2,10,-27,9,-27,0r0,-206v-1,-35,28,-47,67,-43v9,0,9,24,0,25v-35,-5,-44,10,-40,46v18,3,52,-12,46,19v-3,14,-31,4,-46,7r0,152","w":101},"g":{"d":"78,62v45,0,34,-50,35,-92v-22,52,-97,29,-97,-31v0,-62,-8,-137,50,-137v22,0,37,10,47,29v-2,-16,0,-28,21,-24v4,0,6,3,6,7r0,209v1,37,-24,63,-60,63v-34,0,-64,-27,-62,-63v0,-9,26,-10,26,0v0,23,12,39,34,39xm77,-25v48,1,34,-60,36,-105v0,-26,-11,-43,-36,-44v-44,-4,-33,62,-34,105v0,30,11,44,34,44"},"h":{"d":"83,-174v-62,0,-28,108,-36,168v0,8,-12,6,-20,6v-4,0,-6,-2,-6,-6r0,-243v-1,-9,12,-5,20,-6v4,0,5,3,6,6r0,80v23,-51,97,-29,97,31r0,132v0,9,-27,9,-27,0r0,-124v0,-30,-11,-44,-34,-44","w":162},"i":{"d":"51,-6v-2,10,-27,9,-27,0r0,-180v0,-9,11,-7,20,-7v4,0,7,3,7,7r0,180xm53,-231v-3,10,-31,9,-31,0v0,-9,-3,-24,6,-24v10,0,25,-3,25,6r0,18","w":74},"j":{"d":"5,66v-20,8,-26,-21,-13,-25v26,0,31,-7,30,-34r0,-193v0,-9,11,-7,20,-7v4,0,7,3,7,7r0,207v1,24,-21,46,-44,45xm51,-231v-3,10,-31,9,-31,0v0,-10,-3,-24,7,-24v9,1,23,-3,24,6r0,18","w":69},"k":{"d":"46,-6v-2,10,-27,9,-27,0r0,-243v0,-9,27,-9,27,0r0,136r64,-69v4,-9,26,-9,31,-1v0,2,0,5,-1,6r-68,72v25,33,55,62,78,98v-2,11,-28,11,-33,-1r-71,-90r0,92","w":154},"l":{"d":"22,-249v2,-10,27,-8,27,0r0,243v0,9,-27,10,-27,0r0,-243","w":70},"m":{"d":"27,-193v9,0,20,-2,20,7r0,17v16,-39,77,-37,91,0v8,-15,25,-30,48,-29v73,3,45,118,50,192v0,9,-27,10,-27,0r0,-124v0,-30,-11,-44,-33,-44v-22,0,-33,14,-33,44r0,124v0,9,-27,10,-27,0r0,-124v0,-30,-11,-44,-34,-44v-24,0,-36,20,-35,44r0,124v0,8,-12,6,-20,6v-4,0,-6,-2,-6,-6r0,-180v-1,-5,2,-7,6,-7","w":254},"n":{"d":"83,-174v-62,0,-28,108,-36,168v0,8,-12,6,-20,6v-4,0,-6,-2,-6,-6r0,-180v-1,-10,11,-7,20,-7v9,0,5,15,6,24v23,-51,97,-29,97,31r0,132v0,9,-27,9,-27,0r0,-124v0,-30,-11,-44,-34,-44","w":162},"o":{"d":"146,-57v1,34,-29,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,65,28,64,62r0,79xm119,-57v-2,-49,13,-116,-37,-117v-50,0,-37,67,-38,117v0,20,17,39,38,38v20,0,37,-18,37,-38","w":163},"p":{"d":"46,-169v23,-51,98,-29,98,31v0,64,9,142,-50,144v-22,0,-38,-10,-48,-29r0,83v0,9,-26,10,-26,0r0,-246v0,-9,11,-7,20,-7v9,0,5,15,6,24xm82,-174v-48,1,-36,64,-36,111v0,24,9,44,36,44v46,0,35,-66,35,-111v0,-30,-12,-44,-35,-44","w":161},"q":{"d":"113,-23v-23,52,-97,27,-97,-32v0,-63,-10,-142,50,-143v22,0,37,10,47,29v-2,-16,0,-28,21,-24v4,0,6,3,6,7r0,246v0,9,-27,9,-27,0r0,-83xm77,-19v50,1,34,-65,36,-111v1,-26,-11,-43,-36,-44v-46,-4,-34,67,-34,111v0,30,11,44,34,44","w":159},"r":{"d":"46,-172v26,-45,99,-28,86,33v1,10,-11,6,-20,7v-5,0,-6,-5,-6,-11v0,-21,-9,-31,-28,-31v-20,0,-32,12,-32,31r0,137v0,9,-26,10,-26,0r0,-180v0,-9,11,-7,20,-7v8,1,6,12,6,21","w":138},"s":{"d":"76,-174v-34,-2,-49,35,-19,51v31,17,83,26,83,72v0,33,-27,56,-63,56v-37,0,-66,-25,-64,-62v0,-9,11,-6,19,-6v5,-1,7,3,7,8v0,22,15,36,38,36v35,0,52,-39,21,-55v-31,-16,-82,-27,-82,-71v-1,-33,25,-54,59,-53v35,1,66,20,63,59v0,11,-24,11,-25,0v0,-23,-12,-33,-37,-35","w":153},"t":{"d":"46,-58v-1,31,10,34,40,33v9,0,7,10,7,19v0,10,-17,6,-27,6v-27,0,-48,-18,-47,-46r0,-203v0,-9,27,-10,27,0r0,63v18,4,53,-12,47,18v-3,14,-32,4,-47,7r0,103","w":99},"u":{"d":"80,-19v62,0,36,-107,36,-167v0,-9,11,-7,20,-7v4,0,6,3,6,7r0,180v0,9,-26,10,-26,0r0,-17v-24,53,-98,26,-98,-32r0,-131v0,-9,12,-7,21,-7v4,0,7,2,6,7r0,123v0,30,12,44,35,44","w":162},"v":{"d":"99,-8v-3,12,-37,14,-41,0r-51,-179v0,-9,11,-5,19,-6v4,0,6,2,7,6r45,160r46,-160v0,-9,24,-10,25,0","w":156},"w":{"d":"110,-185v1,-12,35,-14,39,0r36,164r40,-164v-1,-12,23,-11,25,-2r-42,179v-2,14,-23,6,-36,8v-4,0,-6,-3,-7,-8r-35,-162r-36,162v-2,13,-40,14,-43,0r-42,-179v1,-7,23,-11,26,2r39,164","w":259},"x":{"d":"144,-8v2,11,-12,7,-21,8v-3,0,-5,-2,-7,-6r-41,-77r-42,77v-2,9,-29,11,-28,-2r50,-94r-42,-84v0,-10,22,-10,27,-1r35,66r34,-66v2,-9,25,-10,27,1r-42,84","w":149},"y":{"d":"37,66v-10,-1,-8,-25,0,-25v23,2,41,0,33,-26r-61,-202v0,-9,13,-5,21,-6v4,0,6,2,7,6r48,169r45,-169v1,-9,12,-5,21,-6v5,-1,7,5,5,8r-60,219v-7,29,-25,33,-59,32","w":165},"z":{"d":"25,-168v-11,0,-10,-26,0,-25r108,0v12,0,7,26,3,32r-95,136r94,0v9,0,6,11,6,19v0,4,-2,6,-6,6r-117,0v-10,-1,-6,-25,-3,-31r95,-137r-85,0","w":153},"{":{"d":"114,-263v9,1,9,24,0,24v-66,-5,9,132,-57,146v39,3,29,73,29,117v0,25,5,29,28,30v7,0,6,9,6,17v0,7,-8,6,-15,6v-56,2,-43,-71,-43,-126v0,-26,-9,-27,-33,-27v-11,0,-6,-16,-7,-26v0,-6,6,-8,13,-7v21,-1,27,-4,27,-27v2,-58,-16,-134,52,-127","w":138},"|":{"d":"20,-249v1,-10,26,-9,26,0r0,270v0,9,-12,5,-20,6v-4,0,-6,-2,-6,-6r0,-270","w":66},"}":{"d":"82,-93v-65,-13,9,-151,-57,-146v-12,-5,-7,-29,9,-24v56,-2,43,72,43,127v0,26,9,27,33,27v11,0,6,16,7,26v0,6,-6,8,-13,7v-21,1,-27,4,-27,27v-2,58,15,133,-52,126v-7,0,-6,-9,-6,-17v0,-4,3,-5,6,-6v66,5,-9,-133,57,-147","w":138},"~":{"d":"44,-95v25,-47,74,12,107,-17r12,15v-27,45,-78,-14,-108,17v-2,1,-10,-8,-11,-15","w":206},"\u00a1":{"d":"63,-6v-3,10,-32,9,-32,0r2,-100r7,-71v0,-4,3,-7,7,-7v4,0,7,3,7,7v10,91,9,100,9,171xm63,-233v0,12,-33,10,-32,0v1,-9,-3,-22,6,-23v10,1,27,-5,26,7r0,16","w":93},"\u00a2":{"d":"164,-60v1,42,-37,74,-82,63v-3,15,-10,47,-28,27r9,-35v-38,-21,-26,-78,-27,-131v-1,-39,34,-69,78,-61v1,-15,14,-46,27,-22r-8,30v16,11,32,28,31,55v0,9,-27,10,-27,0v0,-13,-4,-21,-11,-29r-38,142v27,8,51,-12,49,-39v0,-9,11,-7,20,-7v4,0,7,3,7,7xm108,-173v-56,-10,-45,63,-45,116v0,9,3,18,8,24","w":200},"\u00a3":{"d":"179,-197v-1,12,-29,10,-28,-1v2,-23,-15,-38,-38,-38v-48,0,-39,51,-39,95r61,0v9,-1,5,11,6,19v0,4,-3,5,-6,6r-61,0r0,90r102,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-152,0v-9,0,-7,-10,-7,-19v10,-14,37,-3,29,-38r0,-59v0,0,-33,5,-29,-19v2,-11,19,-4,29,-6v-5,-66,5,-122,67,-122v39,0,67,26,66,66","w":200},"\u00a5":{"d":"161,-119v11,0,10,27,0,26r-47,0r0,87v1,10,-14,5,-22,6v-4,0,-6,-2,-6,-6r0,-87v-20,-4,-59,14,-53,-20v7,-13,36,-3,53,-6r-10,-18v-19,-3,-49,11,-43,-20v1,-10,19,-5,29,-6r-45,-86v1,-10,29,-9,31,2r52,95r57,-102v7,-1,28,-6,26,7r-45,84v16,0,35,-5,30,19v-3,14,-30,4,-44,7r-10,18r47,0","w":200},"\u00a7":{"d":"126,-211v1,-18,-17,-25,-35,-25v-47,0,-41,45,-15,56v24,24,76,38,76,81v0,21,-9,40,-28,58v41,34,15,95,-41,95v-32,0,-62,-20,-61,-52v1,-7,23,-7,26,0v-1,18,17,25,35,25v47,0,41,-43,15,-56v-27,-25,-76,-35,-76,-82v0,-28,11,-40,28,-57v-40,-34,-16,-95,41,-95v32,0,62,20,61,52v-1,7,-23,7,-26,0xm70,-152v-22,15,-34,47,-6,67r40,28v22,-15,33,-47,5,-67","w":173},"\u00a4":{"d":"189,-127v0,-39,-32,-70,-71,-70v-39,0,-71,31,-71,70v0,38,32,70,71,70v39,0,71,-32,71,-70xm58,-205v43,-26,77,-27,120,0v11,-15,34,-35,45,-7v-4,12,-17,18,-24,28v24,42,24,74,-1,116v15,12,34,35,5,44v-12,-5,-17,-17,-27,-24v-39,25,-77,25,-116,0v-11,15,-34,35,-45,7v4,-12,17,-18,24,-27v-26,-42,-27,-74,-2,-116v-15,-12,-36,-36,-5,-45v11,6,17,16,26,24","w":236},"'":{"d":"26,-249v1,-10,25,-9,25,0r0,65v1,10,-11,6,-19,7v-4,0,-6,-3,-6,-7r0,-65","w":77},"\u00ab":{"d":"85,-164v13,-8,12,8,12,19v-10,20,-36,35,-51,51v16,22,52,28,51,66v-1,6,-7,7,-12,4v-21,-22,-48,-39,-65,-65v0,-9,-1,-14,5,-19xm157,-164v13,-8,12,8,12,19v-10,20,-36,35,-51,51v16,22,52,28,51,66v-1,6,-7,7,-12,4v-21,-22,-48,-39,-65,-65v0,-9,-1,-14,5,-19","w":194},"\u00b7":{"d":"16,-106v4,-12,39,-10,39,0v0,11,3,26,-8,26v-12,-1,-31,4,-31,-7r0,-19","w":70},"\u00b6":{"d":"22,-177v-3,-45,10,-78,48,-78r87,0v4,0,5,3,6,6r0,268v0,9,-27,9,-27,0r0,-243r-22,0r0,243v0,9,-27,9,-27,0r0,-149v-38,5,-63,-15,-65,-47","w":186},"\u00bb":{"d":"110,-24v-13,8,-12,-8,-12,-19v10,-20,36,-35,51,-51v-16,-22,-52,-28,-51,-66v1,-6,7,-7,12,-4v21,22,48,39,65,65v0,9,1,14,-5,19xm37,-24v-13,8,-12,-8,-12,-19v10,-20,36,-35,51,-51v-16,-22,-52,-28,-51,-66v1,-6,7,-7,12,-4v21,22,48,39,65,65v0,9,1,14,-5,19","w":194},"\u00bf":{"d":"79,-186v0,-12,30,-10,30,0v0,60,-56,68,-62,116v-3,28,11,43,39,43v26,0,40,-17,39,-42v0,-10,13,-7,22,-7v6,0,7,5,6,11v1,38,-30,65,-67,65v-53,0,-86,-62,-56,-105v18,-26,49,-35,49,-81xm111,-236v-2,12,-34,10,-34,0v1,-10,-4,-27,7,-27v10,0,27,-4,27,7r0,20","w":172},"`":{"d":"34,-259v-2,-4,1,-8,6,-7v12,1,23,-3,27,7v1,11,20,29,6,35v-25,3,-26,-23,-39,-35","w":112},"\u00b4":{"d":"77,-265v-1,15,-14,42,-37,41v-12,-11,5,-54,37,-41","w":112},"\u00af":{"d":"22,-234v0,-7,-2,-17,6,-16r101,0v7,0,6,9,6,16v0,4,-2,6,-6,6r-101,0v-4,0,-7,-1,-6,-6","w":156},"\u00a8":{"d":"45,-249v2,-11,33,-9,34,0v-1,9,4,25,-6,24v-10,-1,-29,5,-28,-6r0,-18xm102,-249v3,-11,33,-9,34,0v-1,9,4,25,-6,24v-10,-1,-28,5,-28,-6r0,-18","w":181},"\u00b8":{"d":"23,67v6,-26,42,14,44,-19v2,-31,-38,4,-38,-21v7,-12,4,-44,23,-37v10,4,-3,20,-3,29v21,-7,40,7,40,29v0,33,-47,44,-66,19","w":112},"\u00c6":{"d":"125,-87r0,-142r-56,142r56,0xm226,-150v11,0,10,27,0,26r-73,0r0,98r90,0v9,0,5,12,6,20v0,4,-2,6,-6,6r-110,0v-16,-3,-5,-41,-8,-60r-66,0r-21,52v-1,11,-28,13,-29,0r98,-243v1,-3,3,-4,6,-4r129,0v9,0,9,26,0,26r-89,0r0,79r73,0","w":262},"\u00aa":{"d":"53,-144v23,0,31,-23,27,-51v-28,16,-45,9,-45,33v0,12,6,18,18,18xm59,-263v60,0,41,73,44,128v0,6,-9,7,-17,6v-7,0,-6,-8,-6,-15v-15,30,-70,21,-68,-18v2,-37,43,-38,66,-54v6,-13,-3,-28,-19,-26v-12,1,-20,8,-20,20v0,7,-8,6,-16,6v-4,0,-5,-3,-6,-6v0,-23,17,-41,42,-41","w":116},"\u00d8":{"d":"25,-192v-4,-62,79,-93,120,-51v6,-16,23,-28,34,-8v-2,14,-12,21,-17,33v10,45,1,104,4,156v4,63,-80,92,-121,50v-3,17,-26,23,-32,4v3,-13,11,-19,16,-30v-9,-44,-1,-103,-4,-154xm60,-39v17,34,77,19,77,-24r0,-111xm131,-217v-18,-35,-76,-19,-76,24r0,109","w":188},"\u00ba":{"d":"57,-263v47,0,43,50,43,99v0,23,-20,42,-43,42v-22,0,-43,-19,-43,-42r0,-58v-2,-23,21,-41,43,-41xm57,-145v31,0,19,-46,21,-75v0,-12,-10,-21,-21,-21v-30,0,-19,45,-21,75v0,12,9,21,21,21","w":114},"\u00e6":{"d":"60,-77v-30,10,-25,58,10,58v23,0,45,-15,45,-38r0,-47xm180,-174v-30,0,-42,26,-38,61r76,0v5,-35,-9,-61,-38,-61xm124,-26v-24,47,-111,41,-112,-19v-1,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-8,-58,82,-78,110,-37v34,-43,118,-17,113,40v-1,15,6,40,-6,45r-96,0v-3,38,3,72,38,72v21,1,38,-17,37,-38v0,-9,25,-10,27,0v7,65,-95,82,-120,31","w":258},"\u00f8":{"d":"145,-57v2,50,-61,80,-103,50v-2,15,-22,13,-26,1v2,-8,6,-12,9,-19v-17,-27,-7,-72,-9,-111v-2,-48,59,-80,101,-51v3,-16,22,-18,28,-3v-2,8,-7,13,-10,20v18,27,7,72,10,113xm55,-29v23,23,63,3,63,-28r0,-83xm104,-165v-23,-22,-61,-1,-61,29r0,79","w":159},"\u00df":{"d":"103,-129v-20,8,-26,-24,-12,-27v29,3,41,-6,41,-37v0,-29,-14,-43,-42,-43v-28,0,-42,14,-42,43r0,187v0,9,-26,9,-28,0r0,-187v-1,-41,30,-70,70,-70v66,0,95,90,44,119v39,6,32,55,32,99v0,36,-29,45,-69,45v-8,0,-7,-10,-7,-18v0,-10,14,-7,23,-7v33,0,24,-41,24,-71v0,-25,-11,-33,-34,-33","w":181},"\u00d0":{"d":"31,0v-4,0,-7,-2,-7,-6r0,-99v-16,0,-35,6,-30,-19v-1,-12,19,-5,30,-7r0,-118v0,-4,3,-6,7,-6r81,0v78,3,43,127,49,202v3,30,-19,54,-49,53r-81,0xm82,-131v9,1,9,26,0,26r-29,0r0,81v38,-1,80,9,80,-34r0,-140v3,-43,-43,-32,-80,-33r0,100r29,0","w":180},"\u00f0":{"d":"86,-166v-47,0,-38,57,-38,104v-1,24,14,43,38,43v47,0,38,-57,38,-104v1,-24,-14,-43,-38,-43xm151,-200v20,-8,28,22,13,26r-13,0r0,112v1,39,-27,70,-65,70v-63,0,-65,-65,-65,-134v0,-55,64,-90,103,-50v3,-37,-4,-68,-38,-68v-9,0,-10,-27,0,-28v38,-2,66,34,65,72","w":188},"\u00dd":{"d":"108,-6v-2,10,-28,9,-29,0r0,-113r-68,-130v1,-10,29,-9,31,2r52,95r56,-102v7,-1,31,-4,25,7r-67,128r0,113xm116,-320v-2,15,-15,42,-38,41v-12,-13,6,-53,38,-41","w":187},"\u00fd":{"d":"37,66v-10,-1,-8,-25,0,-25v23,2,41,0,33,-26r-61,-202v0,-9,13,-5,21,-6v4,0,6,2,7,6r48,169r45,-169v1,-9,12,-5,21,-6v5,-1,7,5,5,8r-60,219v-7,29,-25,33,-59,32xm107,-259v-2,15,-14,42,-37,41v-11,-10,2,-51,33,-42v2,0,3,0,4,1","w":165},"\u00de":{"d":"158,-144v0,47,-5,87,-48,87r-57,0r0,51v-1,9,-27,10,-29,0r0,-243v0,-9,27,-10,29,0r0,57v52,-3,105,-2,105,48xm53,-82v35,-1,77,9,77,-30v0,-31,1,-55,-32,-55r-45,0r0,85","w":170},"\u00fe":{"d":"82,-19v51,1,33,-70,36,-118v1,-21,-15,-38,-36,-37v-48,2,-31,71,-34,119v-1,19,16,36,34,36xm48,60v-2,10,-28,9,-28,0r0,-309v0,-9,26,-9,28,0r0,78v20,-46,97,-26,97,31r0,88v5,56,-77,78,-97,31r0,81","w":163},"\u00bd":{"d":"65,-114v0,9,-21,8,-21,0r0,-104v-13,0,-28,4,-24,-15v0,-4,3,-5,7,-5v19,2,9,-22,32,-18v4,0,6,3,6,7r0,135xm166,-263v8,0,18,-1,15,7r-97,254v-2,9,-22,11,-25,2r98,-256v2,-5,5,-7,9,-7xm201,-131v-24,0,-10,31,-35,28v-4,0,-7,-3,-7,-8v0,-23,17,-40,42,-40v35,0,54,40,33,67r-52,64r56,0v7,-1,6,6,6,13v0,5,-1,7,-6,7r-74,0v-11,1,-7,-20,-4,-26v20,-28,48,-51,62,-84v0,-12,-9,-21,-21,-21","w":260},"\u00bc":{"d":"65,-114v0,9,-21,8,-21,0r0,-105v-13,-1,-28,5,-24,-14v0,-4,2,-6,7,-6v19,3,8,-21,32,-17v4,0,5,3,6,6r0,136xm165,-263v7,0,17,-1,14,7r-97,254v-2,10,-25,12,-24,-1r98,-253v2,-5,5,-7,9,-7xm223,-6v0,9,-21,8,-21,0r0,-31r-52,0v-7,-1,-4,-14,-2,-21r38,-85v5,-6,33,-8,37,2r0,84v15,-7,22,16,9,20r-9,0r0,31xm202,-134r-33,77r33,0r0,-77","w":252},"\u00b9":{"d":"55,-108v-7,0,-15,1,-14,-6r0,-105v-13,-1,-29,5,-25,-14v0,-5,3,-6,8,-6v18,2,9,-21,31,-17v4,0,6,2,6,6r0,136v0,4,-2,6,-6,6","w":77},"\u00be":{"d":"193,-263v8,0,18,-1,15,7r-97,254v-2,9,-22,11,-25,2r98,-256v2,-5,5,-7,9,-7xm64,-105v-24,-3,-47,-18,-45,-45v0,-7,7,-7,15,-7v4,0,6,3,6,8v0,14,10,25,24,24v17,0,23,-12,23,-31v0,-15,-9,-19,-24,-18v-8,2,-6,-8,-6,-15v2,-13,32,1,28,-26v-2,-15,-5,-23,-21,-23v-15,0,-22,7,-22,22v0,7,-7,6,-13,6v-4,0,-7,-3,-7,-7v0,-25,15,-43,42,-42v40,-6,55,53,30,74v30,20,12,85,-30,80xm244,-6v0,9,-20,9,-20,0r0,-31r-52,0v-8,-1,-5,-14,-3,-21r38,-85v5,-6,33,-8,37,2r0,84v15,-6,23,16,9,20r-9,0r0,31xm224,-134r-34,77r34,0r0,-77","w":273},"\u00b3":{"d":"61,-105v-24,-3,-47,-18,-45,-45v0,-7,7,-7,15,-7v4,0,6,3,6,8v0,14,10,25,24,24v17,0,24,-12,24,-31v0,-15,-10,-19,-25,-18v-8,1,-6,-8,-6,-15v4,-13,32,0,28,-26v-2,-15,-5,-23,-21,-23v-15,0,-22,7,-22,22v0,7,-7,6,-13,6v-4,0,-7,-3,-7,-7v0,-25,15,-43,42,-42v40,-6,55,53,30,74v30,20,12,85,-30,80","w":121},"\u00b2":{"d":"60,-239v-23,0,-9,31,-34,28v-4,0,-7,-3,-7,-8v0,-22,17,-40,41,-40v36,0,56,40,34,67r-52,64r56,0v7,-1,6,6,6,13v0,5,-1,7,-6,7r-74,0v-11,1,-7,-20,-4,-26v20,-28,48,-51,62,-84v0,-12,-10,-21,-22,-21","w":119},"\u00a6":{"d":"67,-161v-2,12,-34,10,-34,0r0,-88v1,-9,30,-10,34,0r0,88xm67,-7v-2,12,-34,10,-34,1r0,-89v1,-9,30,-10,34,0r0,88","w":99},"\u00d7":{"d":"85,-96v-14,-17,-33,-29,-45,-48v3,-8,10,-17,20,-14r43,43v18,-12,27,-40,52,-42v4,6,16,12,9,19r-42,42v14,16,33,28,44,47v-3,8,-11,19,-20,14r-43,-43v-16,15,-29,32,-47,45v-7,-3,-20,-12,-14,-21","w":206},"\u00c4":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-242v5,-8,35,-9,42,0r65,244v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0xm50,-309v1,-11,35,-9,34,0v-1,9,3,23,-6,24v-10,-1,-28,5,-28,-6r0,-18xm107,-309v2,-11,35,-9,34,0v-1,9,4,24,-6,24v-10,-1,-28,4,-28,-6r0,-18","w":190},"\u00c5":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-241v-30,-17,-13,-67,21,-67v35,0,51,48,21,67r65,243v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0xm95,-256v12,0,22,-12,22,-23v0,-12,-9,-23,-22,-23v-12,0,-22,11,-22,23v0,12,11,23,22,23","w":190},"\u00c7":{"d":"91,-263v41,0,72,30,70,74v0,10,-14,6,-23,7v-5,0,-6,-5,-6,-11v0,-24,-17,-43,-41,-43v-67,2,-35,110,-41,174v-3,25,17,43,41,43v25,0,41,-20,41,-48v0,-9,28,-10,29,0v4,44,-27,75,-68,75r-4,11v21,-7,41,7,41,29v0,33,-48,45,-66,19v1,-6,7,-10,11,-12v10,10,31,13,32,-7v2,-29,-36,1,-38,-19r6,-23v-32,-5,-56,-31,-55,-68r0,-131v-1,-41,31,-70,71,-70","w":178},"\u00c9":{"d":"142,-255v11,0,10,27,0,26r-91,0r0,79r76,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-76,0r0,98r93,0v9,0,10,26,0,26r-116,0v-4,0,-5,-3,-6,-6r0,-243v0,-4,3,-5,6,-6r114,0xm109,-320v3,13,-14,24,-19,36v-3,7,-22,9,-25,0v7,-19,12,-46,44,-36","w":162},"\u00d1":{"d":"49,-6v-2,10,-29,9,-28,0r0,-243v0,-10,29,-10,33,0r93,195r0,-195v0,-9,27,-10,29,0r0,243v-2,9,-29,10,-34,0r-93,-195r0,195xm158,-299v-18,33,-65,-5,-91,14v-1,1,-10,-8,-13,-16v26,-34,62,10,92,-14","w":196},"\u00d6":{"d":"49,-193v6,64,-26,173,41,173v67,0,35,-109,41,-173v3,-25,-17,-43,-41,-43v-24,0,-43,18,-41,43xm19,-193v0,-40,31,-70,71,-70v40,0,71,30,71,70r0,130v0,40,-30,70,-71,70v-41,0,-71,-30,-71,-70r0,-130xm44,-309v2,-12,35,-10,35,0v-1,10,3,24,-7,24v-11,0,-27,4,-28,-7r0,-17xm102,-309v1,-13,35,-10,34,0v-1,9,3,23,-6,24v-10,-2,-29,5,-28,-7r0,-17","w":180},"\u00dc":{"d":"91,7v-41,0,-72,-29,-71,-70r0,-186v1,-9,28,-10,30,0r0,186v-1,25,17,43,41,43v24,0,41,-19,41,-43r0,-186v0,-9,27,-10,29,0r0,186v1,41,-30,70,-70,70xm46,-309v2,-11,35,-9,35,0v-1,9,3,23,-6,24v-10,-1,-29,4,-29,-6r0,-18xm104,-309v1,-11,35,-9,34,0v-1,9,3,23,-6,24v-10,-1,-28,5,-28,-6r0,-18","w":181},"\u00e1":{"d":"81,-259v4,-11,34,-11,33,0v-12,12,-13,37,-39,35v-15,-5,4,-25,6,-35xm70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm115,-24v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-3,-37,28,-58,62,-59v86,-3,59,114,59,192v0,9,-27,9,-27,0r0,-18"},"\u00e0":{"d":"55,-259v0,-9,28,-12,33,0v1,11,20,29,6,35v-25,3,-26,-23,-39,-35xm70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm115,-24v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-3,-37,28,-58,62,-59v86,-3,59,114,59,192v0,9,-27,9,-27,0r0,-18"},"\u00e2":{"d":"115,-24v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-3,-37,28,-58,62,-59v86,-3,59,114,59,192v0,9,-27,9,-27,0r0,-18xm70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm67,-256v32,-20,45,19,56,37v-17,12,-33,-10,-39,-20v-9,10,-19,32,-40,20v6,-14,16,-24,23,-37"},"\u00e4":{"d":"37,-248v4,-10,34,-9,35,0v-1,10,3,25,-7,24v-10,-1,-28,4,-28,-6r0,-18xm94,-248v4,-10,34,-9,35,0v-1,10,3,25,-7,24v-10,-1,-28,4,-28,-6r0,-18xm70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm115,-24v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-3,-37,28,-58,62,-59v86,-3,59,114,59,192v0,9,-27,9,-27,0r0,-18"},"\u00e3":{"d":"135,-242v-3,25,-49,18,-69,9v-9,0,-15,7,-22,9r-12,-16v25,-34,64,11,91,-15v2,0,6,4,12,13xm70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm115,-24v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-25,10,-27,0v-3,-37,28,-58,62,-59v86,-3,59,114,59,192v0,9,-27,9,-27,0r0,-18"},"\u00e5":{"d":"21,-139v-2,-28,14,-47,35,-54v-28,-22,-9,-71,26,-71v36,0,56,48,27,71v55,18,33,120,33,187v0,9,-27,9,-27,0r0,-18v-19,41,-103,36,-103,-21v0,-46,51,-60,84,-75v33,-14,19,-54,-15,-54v-21,0,-33,13,-33,35v0,9,-26,10,-27,0xm70,-19v23,0,45,-15,45,-38r0,-47v-25,16,-73,21,-75,57v-1,17,13,28,30,28xm82,-199v13,0,25,-12,25,-25v0,-13,-12,-25,-25,-25v-14,0,-24,13,-24,25v0,12,10,25,24,25"},"\u00e7":{"d":"64,3v-25,-5,-47,-30,-47,-60r0,-79v-1,-34,29,-62,64,-62v36,0,66,28,64,64v0,9,-25,9,-27,0v1,-22,-15,-40,-37,-40v-49,0,-36,68,-37,117v0,20,17,38,37,38v22,0,38,-18,37,-41v0,-9,12,-7,21,-7v5,1,6,4,6,10v1,34,-29,63,-64,62r-4,14v21,-7,41,7,41,29v0,33,-48,45,-66,19v1,-6,7,-10,11,-12v10,10,31,13,32,-7v1,-30,-32,2,-38,-19","w":159},"\u00e9":{"d":"82,-174v-30,0,-42,26,-38,61r76,0v5,-35,-9,-61,-38,-61xm146,-136v-1,15,6,40,-6,45r-96,0v-3,38,3,72,38,72v21,1,38,-17,37,-38v0,-9,25,-10,27,0v2,35,-30,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,66,28,64,62xm113,-259v-2,14,-15,41,-37,41v-16,-4,2,-25,5,-35v3,-11,20,-7,32,-6"},"\u00e8":{"d":"82,-174v-30,0,-42,26,-38,61r76,0v5,-35,-9,-61,-38,-61xm146,-136v-1,15,6,40,-6,45r-96,0v-3,38,3,72,38,72v21,1,38,-17,37,-38v0,-9,25,-10,27,0v2,35,-30,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,66,28,64,62xm72,-223v-4,-11,-30,-28,-15,-37v12,1,25,-3,28,8v2,11,21,30,5,35v-9,0,-14,0,-18,-6"},"\u00ea":{"d":"146,-136v-1,15,6,40,-6,45r-96,0v-3,38,3,72,38,72v21,1,38,-17,37,-38v0,-9,25,-10,27,0v2,35,-30,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,66,28,64,62xm82,-174v-30,0,-42,26,-38,61r76,0v5,-35,-9,-61,-38,-61xm65,-256v31,-22,46,20,57,37v-19,10,-33,-9,-40,-20v-8,11,-18,30,-40,20v6,-14,16,-24,23,-37"},"\u00eb":{"d":"82,-174v-30,0,-42,26,-38,61r76,0v5,-35,-9,-61,-38,-61xm146,-136v-1,15,6,40,-6,45r-96,0v-3,38,3,72,38,72v21,1,38,-17,37,-38v0,-9,25,-10,27,0v2,35,-30,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,66,28,64,62xm33,-248v2,-12,35,-10,35,0v-1,9,3,23,-6,24v-10,-1,-29,4,-29,-6r0,-18xm91,-248v2,-12,34,-10,34,0v-1,9,3,23,-6,24v-10,-1,-28,4,-28,-6r0,-18"},"\u00ed":{"d":"49,-6v-2,10,-27,9,-27,0r0,-180v0,-9,11,-7,20,-7v4,0,7,3,7,7r0,180xm67,-259v-1,15,-14,42,-37,41v-11,-10,2,-51,33,-42v2,0,3,0,4,1","w":76},"\u00ec":{"d":"57,-6v-2,10,-27,9,-27,0r0,-180v0,-9,11,-7,20,-7v4,0,7,3,7,7r0,180xm28,-223v-4,-11,-30,-28,-15,-37v12,1,25,-3,28,8v2,11,21,30,5,35v-9,0,-14,0,-18,-6","w":78},"\u00ee":{"d":"61,-6v-2,10,-27,9,-27,0r0,-180v0,-9,11,-7,20,-7v4,0,7,3,7,7r0,180xm7,-221v10,-18,28,-57,57,-36v7,12,17,23,23,36v-17,12,-34,-9,-40,-19v-8,11,-19,31,-40,19","w":94},"\u00ef":{"d":"5,-248v2,-12,35,-10,35,0v-1,10,3,25,-7,24v-10,-1,-28,4,-28,-6r0,-18xm63,-248v1,-13,35,-10,34,0v-1,9,3,23,-6,24v-10,-1,-28,5,-28,-6r0,-18xm68,-6v-2,10,-27,9,-27,0r0,-180v0,-9,11,-7,20,-7v4,0,7,3,7,7r0,180","w":102},"\u00f1":{"d":"83,-174v-62,0,-28,108,-36,168v0,8,-12,6,-20,6v-4,0,-6,-2,-6,-6r0,-180v-1,-10,11,-7,20,-7v9,0,5,15,6,24v23,-51,97,-29,97,31r0,132v0,9,-27,9,-27,0r0,-124v0,-30,-11,-44,-34,-44xm139,-239v-18,33,-65,-5,-91,14r-13,-16v26,-34,62,10,92,-14","w":162},"\u00f3":{"d":"146,-57v1,34,-29,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,65,28,64,62r0,79xm119,-57v-2,-49,13,-116,-37,-117v-50,0,-37,67,-38,117v0,20,17,39,38,38v20,0,37,-18,37,-38xm92,-261v46,-4,9,24,3,37v-3,7,-22,9,-25,0v6,-13,8,-33,22,-37","w":163},"\u00f2":{"d":"146,-57v1,34,-29,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,65,28,64,62r0,79xm119,-57v-2,-49,13,-116,-37,-117v-50,0,-37,67,-38,117v0,20,17,39,38,38v20,0,37,-18,37,-38xm56,-253v-2,-4,1,-8,6,-7v12,1,23,-3,27,7v1,11,20,29,6,35v-25,3,-26,-23,-39,-35","w":163},"\u00f4":{"d":"146,-57v1,34,-29,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,65,28,64,62r0,79xm119,-57v-2,-49,13,-116,-37,-117v-50,0,-37,67,-38,117v0,20,17,39,38,38v20,0,37,-18,37,-38xm65,-256v31,-22,46,20,57,37v-19,10,-33,-9,-40,-20v-8,11,-18,30,-40,20v6,-14,16,-24,23,-37","w":163},"\u00f6":{"d":"146,-57v1,34,-29,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,65,28,64,62r0,79xm119,-57v-2,-49,13,-116,-37,-117v-50,0,-37,67,-38,117v0,20,17,39,38,38v20,0,37,-18,37,-38xm36,-249v3,-11,34,-9,35,0v-1,9,4,25,-7,24v-10,-1,-28,5,-28,-6r0,-18xm93,-249v4,-10,34,-9,35,0v-1,9,4,25,-7,24v-10,-1,-28,5,-28,-6r0,-18","w":163},"\u00f5":{"d":"146,-57v1,34,-29,62,-64,62v-35,0,-65,-28,-65,-62r0,-79v0,-34,30,-62,65,-62v35,0,65,28,64,62r0,79xm119,-57v-2,-49,13,-116,-37,-117v-50,0,-37,67,-38,117v0,20,17,39,38,38v20,0,37,-18,37,-38xm134,-239v-14,20,-48,14,-70,5v-8,1,-14,7,-22,9r-12,-16v26,-33,63,9,92,-14","w":163},"\u00fa":{"d":"80,-19v62,0,36,-107,36,-167v0,-9,11,-7,20,-7v4,0,6,3,6,7r0,180v0,9,-26,10,-26,0r0,-17v-24,53,-98,26,-98,-32r0,-131v0,-9,12,-7,21,-7v4,0,7,2,6,7r0,123v0,30,12,44,35,44xm105,-261v17,8,-11,26,-14,37v-4,7,-22,9,-25,0v8,-18,9,-43,39,-37","w":162},"\u00f9":{"d":"80,-19v62,0,36,-107,36,-167v0,-9,11,-7,20,-7v4,0,6,3,6,7r0,180v0,9,-26,10,-26,0r0,-17v-24,53,-98,26,-98,-32r0,-131v0,-9,12,-7,21,-7v4,0,7,2,6,7r0,123v0,30,12,44,35,44xm70,-224v-4,-11,-30,-28,-15,-37v12,1,24,-3,28,8r12,29v-1,8,-20,7,-25,0","w":162},"\u00fb":{"d":"80,-19v62,0,36,-107,36,-167v0,-9,11,-7,20,-7v4,0,6,3,6,7r0,180v0,9,-26,10,-26,0r0,-17v-24,53,-98,26,-98,-32r0,-131v0,-9,12,-7,21,-7v4,0,7,2,6,7r0,123v0,30,12,44,35,44xm40,-221v9,-18,27,-59,56,-37v8,13,17,23,24,37v-19,10,-34,-9,-40,-20v-8,11,-18,30,-40,20","w":162},"\u00fc":{"d":"80,-19v62,0,36,-107,36,-167v0,-9,11,-7,20,-7v4,0,6,3,6,7r0,180v0,9,-26,10,-26,0r0,-17v-24,53,-98,26,-98,-32r0,-131v0,-9,12,-7,21,-7v4,0,7,2,6,7r0,123v0,30,12,44,35,44xm36,-248v2,-12,34,-10,34,0v-1,9,3,23,-6,24v-10,-1,-28,4,-28,-6r0,-18xm93,-248v2,-12,36,-10,34,0v-1,9,4,24,-6,24v-10,-1,-28,4,-28,-6r0,-18","w":162},"\u00b0":{"d":"66,-262v27,0,50,22,50,50v0,27,-23,49,-50,49v-27,0,-50,-23,-50,-49v0,-27,23,-50,50,-50xm66,-180v18,1,33,-14,33,-32v0,-19,-15,-33,-33,-33v-17,0,-32,16,-32,33v0,17,14,32,32,32","w":132},"\u00ae":{"d":"185,-162v0,-20,1,-35,-20,-35r-36,0r0,57v25,-1,56,7,56,-22xm104,-211v0,-5,4,-7,8,-8v55,-2,96,-8,96,61v0,15,-5,24,-14,29v25,9,16,53,16,85v0,10,-24,10,-25,0v-4,-28,14,-73,-20,-73r-36,0r0,73v0,8,-9,7,-17,7v-5,0,-8,-2,-8,-7r0,-167xm155,-260v71,0,133,62,133,133v0,72,-62,133,-133,133v-72,0,-133,-61,-133,-133v0,-71,61,-133,133,-133xm155,-8v64,0,119,-55,119,-119v0,-64,-55,-119,-119,-119v-64,0,-119,55,-119,119v0,64,55,119,119,119","w":309},"\u00a9":{"d":"193,-93v9,0,16,-1,16,9v0,27,-26,48,-53,47v-26,0,-53,-21,-53,-48r0,-86v-1,-27,27,-48,53,-48v27,0,55,20,53,49v0,8,-8,7,-16,7v-5,0,-7,-3,-7,-9v0,-14,-15,-26,-30,-25v-46,0,-28,69,-30,112v-2,32,60,35,60,1v0,-5,2,-9,7,-9xm155,-260v71,0,133,62,133,133v0,72,-62,133,-133,133v-72,0,-133,-61,-133,-133v0,-71,61,-133,133,-133xm155,-8v64,0,119,-55,119,-119v0,-64,-55,-119,-119,-119v-64,0,-119,55,-119,119v0,64,55,119,119,119","w":309},"\u00b1":{"d":"180,-123v10,1,8,26,0,26r-67,0r0,71r67,0v9,0,10,26,0,26r-157,0v-9,0,-7,-10,-7,-19v0,-4,3,-7,7,-7r63,0r0,-71r-63,0v-9,0,-7,-11,-7,-20v0,-4,3,-6,7,-6r63,0r0,-76v0,-9,27,-10,27,0r0,76r67,0","w":206},"\u00ac":{"d":"178,-66v-1,12,-29,10,-28,0r0,-39r-115,0v-9,0,-7,-10,-7,-19v0,-4,3,-7,7,-7r137,0v14,10,2,45,6,65","w":206},"\u00a0":{"w":64},"\u00c0":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-242v5,-8,35,-9,42,0r65,244v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0xm68,-314v-2,-3,0,-7,5,-7v11,1,24,-4,27,7v2,10,22,29,6,35v-25,2,-26,-23,-38,-35","w":190},"\u00c3":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-242v5,-8,35,-9,42,0r65,244v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0xm146,-299v-19,32,-65,-5,-92,14r-12,-16v26,-33,62,8,92,-14","w":190},"\u00d5":{"d":"49,-193v6,64,-26,173,41,173v67,0,35,-109,41,-173v3,-25,-17,-43,-41,-43v-24,0,-43,18,-41,43xm19,-193v0,-40,31,-70,71,-70v40,0,71,30,71,70r0,130v0,40,-30,70,-71,70v-41,0,-71,-30,-71,-70r0,-130xm141,-299v-13,20,-48,14,-69,5v-8,2,-15,6,-22,9r-13,-16v26,-33,63,9,92,-14","w":180},"\u00f7":{"d":"38,-85v-11,0,-10,-27,0,-26r130,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-130,0xm87,-171v1,-12,32,-10,31,0v-1,9,3,22,-6,22v-10,0,-25,4,-25,-7r0,-15xm87,-37v1,-12,32,-10,31,0v-1,9,3,22,-6,22v-10,0,-25,4,-25,-7r0,-15","w":206},"\u00ff":{"d":"37,66v-10,-1,-8,-25,0,-25v23,2,41,0,33,-26r-61,-202v0,-9,13,-5,21,-6v4,0,6,2,7,6r48,169r45,-169v1,-9,12,-5,21,-6v5,-1,7,5,5,8r-60,219v-7,29,-25,33,-59,32xm37,-248v2,-12,35,-10,35,0v-1,9,3,23,-6,24v-10,-1,-29,4,-29,-6r0,-18xm95,-248v2,-12,34,-10,34,0v-1,9,3,23,-6,24v-10,-1,-28,4,-28,-6r0,-18","w":165},"\u00c2":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-242v5,-8,35,-9,42,0r65,244v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0xm55,-280v10,-19,28,-57,57,-36v7,12,17,23,23,36v-17,12,-34,-9,-40,-20v-8,11,-19,32,-40,20","w":190},"\u00ca":{"d":"142,-255v11,0,10,27,0,26r-91,0r0,79r76,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-76,0r0,98r93,0v9,0,10,26,0,26r-116,0v-4,0,-5,-3,-6,-6r0,-243v0,-4,3,-5,6,-6r114,0xm66,-319v31,-22,45,19,56,37v-19,10,-33,-10,-40,-20v-8,11,-18,30,-40,20","w":162},"\u00c1":{"d":"37,-6v-3,11,-31,9,-28,-2r65,-242v5,-8,35,-9,42,0r65,244v-1,8,-26,10,-28,0r-14,-54r-88,0xm132,-87r-37,-140r-37,140r74,0xm117,-321v3,13,-14,24,-19,36v-3,7,-22,9,-25,0v6,-20,12,-45,44,-36","w":190},"\u00cb":{"d":"142,-255v11,0,10,27,0,26r-91,0r0,79r76,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-76,0r0,98r93,0v9,0,10,26,0,26r-116,0v-4,0,-5,-3,-6,-6r0,-243v0,-4,3,-5,6,-6r114,0xm39,-309v2,-11,34,-9,34,0v0,10,3,24,-6,25v-10,-2,-29,5,-28,-7r0,-18xm96,-309v3,-11,34,-9,34,0v0,9,4,26,-6,25v-11,-1,-28,4,-28,-7r0,-18","w":162},"\u00c8":{"d":"142,-255v11,0,10,27,0,26r-91,0r0,79r76,0v9,0,7,11,7,20v0,4,-3,6,-7,6r-76,0r0,98r93,0v9,0,10,26,0,26r-116,0v-4,0,-5,-3,-6,-6r0,-243v0,-4,3,-5,6,-6r114,0xm58,-314v-2,-3,0,-7,5,-7v12,1,24,-4,28,7r12,30v-21,19,-37,-19,-45,-30","w":162},"\u00cd":{"d":"24,-249v2,-10,28,-9,29,0r0,243v-1,9,-27,10,-29,0r0,-243xm71,-320v3,13,-14,24,-18,36v-4,7,-23,9,-26,0v7,-19,13,-45,44,-36","w":76},"\u00ce":{"d":"30,-249v2,-10,29,-9,29,0r0,243v0,9,-27,10,-29,0r0,-243xm27,-316v31,-22,45,20,57,37v-19,10,-33,-9,-40,-20v-9,10,-18,30,-40,20v5,-15,16,-24,23,-37","w":87},"\u00cf":{"d":"30,-249v2,-10,28,-9,29,0r0,243v-1,9,-27,10,-29,0r0,-243xm-1,-309v2,-11,35,-9,34,0v-1,9,4,24,-6,24v-10,-1,-28,4,-28,-6r0,-18xm56,-309v2,-11,35,-9,35,0v-1,10,3,25,-7,24v-10,-1,-28,4,-28,-6r0,-18","w":89},"\u00cc":{"d":"22,-249v1,-10,28,-9,28,0r0,243v1,10,-14,5,-22,6v-4,0,-6,-2,-6,-6r0,-243xm4,-314v-2,-11,14,-6,23,-7v15,3,16,25,22,37v-20,19,-37,-19,-45,-30","w":74},"\u00d3":{"d":"49,-193v6,64,-26,173,41,173v67,0,35,-109,41,-173v3,-25,-17,-43,-41,-43v-24,0,-43,18,-41,43xm19,-193v0,-40,31,-70,71,-70v40,0,71,30,71,70r0,130v0,40,-30,70,-71,70v-41,0,-71,-30,-71,-70r0,-130xm117,-320v-2,14,-15,41,-37,41v-16,-4,2,-25,5,-35v3,-11,20,-7,32,-6","w":180},"\u00d4":{"d":"19,-193v0,-40,31,-70,71,-70v40,0,71,30,71,70r0,130v0,40,-30,70,-71,70v-41,0,-71,-30,-71,-70r0,-130xm49,-193v6,64,-26,173,41,173v67,0,35,-109,41,-173v3,-25,-17,-43,-41,-43v-24,0,-43,18,-41,43xm73,-319v32,-20,46,18,57,37v-17,12,-34,-10,-40,-20v-8,11,-19,32,-40,20v6,-14,16,-24,23,-37","w":180},"\u00d2":{"d":"49,-193v6,64,-26,173,41,173v67,0,35,-109,41,-173v3,-25,-17,-43,-41,-43v-24,0,-43,18,-41,43xm19,-193v0,-40,31,-70,71,-70v40,0,71,30,71,70r0,130v0,40,-30,70,-71,70v-41,0,-71,-30,-71,-70r0,-130xm67,-314v-2,-3,0,-7,5,-7v11,1,23,-4,27,7v4,10,10,19,13,30v-21,19,-38,-18,-45,-30","w":180},"\u00da":{"d":"91,7v-41,0,-72,-29,-71,-70r0,-186v1,-9,28,-10,30,0r0,186v-1,25,17,43,41,43v24,0,41,-19,41,-43r0,-186v0,-9,27,-10,29,0r0,186v1,41,-30,70,-70,70xm121,-320v3,13,-14,24,-19,36v-3,7,-22,9,-25,0v7,-19,12,-46,44,-36","w":181},"\u00db":{"d":"91,7v-41,0,-72,-29,-71,-70r0,-186v1,-9,28,-10,30,0r0,186v-1,25,17,43,41,43v24,0,41,-19,41,-43r0,-186v0,-9,27,-10,29,0r0,186v1,41,-30,70,-70,70xm74,-315v31,-22,46,19,57,36v-17,12,-34,-9,-40,-19v-8,11,-20,31,-40,19v6,-13,16,-24,23,-36","w":181},"\u00d9":{"d":"91,7v-41,0,-72,-29,-71,-70r0,-186v1,-9,28,-10,30,0r0,186v-1,25,17,43,41,43v24,0,41,-19,41,-43r0,-186v0,-9,27,-10,29,0r0,186v1,41,-30,70,-70,70xm85,-284v-4,-12,-30,-28,-15,-37v12,1,25,-3,28,8v2,11,21,30,5,35v-9,0,-14,0,-18,-6","w":181}}});
;

/**
 * Nivo Slider controls
 * Gives click control to a sibling group to control a Nivo Slider based on the child's index
 * USEAGE: $('.my-div .links').viewsNivoClickControls($slider [,onChange($current, $last)]);
 *
 */
jQuery.fn.viewsNivoClickControls = function($nivoSlider, onChange) {
	var $links = $(this);
	$links.each(function(index, item){
		var $this = $(this);
		$this.click(function(){
			$nivoSlider.data('nivoslider').jump(index);
			var $prevActive = $this.siblings('.active');
			$prevActive.removeClass('active');
			$this.removeClass('active').addClass('active');
			if(onChange) onChange($this, $prevActive);
		});
		if(!index) {
			$this.removeClass('active').addClass('active');
			if(onChange) onChange($this);
		};
	});
	$nivoSlider.find('.nivo-nextNav, .nivo-prevNav').each(function(){
		$(this).click(function(){
			setTimeout(function() {
				var index = $nivoSlider.data('nivo:vars').currentSlide;
				$links.each(function(){
					if($(this).hasClass('active')) $(this).removeClass('active');
				});
				$($links.get(index)).removeClass('active').addClass('active');
			}, 100*2);
		});
	});
};


/**
 * Suite of functions and events to delegate document height
 */
jQuery.documentHeight = function() {
	var D = document;
	var documentHeight = Math.max(
		Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
		Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
		Math.max(D.body.clientHeight, D.documentElement.clientHeight)
	);
	return documentHeight;
};
jQuery.fn.documentHeight = function(updateOnWindowResize) {
	var $this = jQuery(this);
	if($this.hasClass('resized-to-doc')) {
		$this.height('auto');
		$(window).unbind('resize.docResize');
	}
	var initHeight = $this.height();
	if(updateOnWindowResize == true) {
		$(window).bind('resize.docResize', function(){
			$this.height('auto');
			var newHeight = jQuery.documentHeight();
			if(newHeight > initHeight) {
				$this.height(newHeight);
			} else {
				$this.height(initHeight);
			};
		}).trigger('resize');
	};
	$this.addClass('resized-to-doc', 'true');
	return $this;
};

/**
 * Input Hints
 * A great way to join minimalist design and usability
 * 
 */
jQuery.fn.hint = function(blurClass) {
  if (!blurClass) blurClass = 'blur';
  return this.each(function() {
    var $input = jQuery(this);
    if($input.hasClass('hinting')) return true;
    var title = $input.attr('title'),
      $form = jQuery(this.form),
      $win = jQuery(window);
    function remove() {
      if ($input.val() === title && $input.hasClass(blurClass)) {
        $input.val('').removeClass(blurClass);
      }
    }
    if(title) {
      $input.blur(function () {
        if (this.value === '') {
          $input.val(title).addClass(blurClass);
        }
      }).focus(remove).blur();
      $form.submit(remove);
      $win.unload(remove);
    }
    if($input.attr('id')) $input.parent().find('label[for='+$input.attr('id')+']').remove()
    if(!$input.hasClass('hinting')) $input.addClass('hinting');
  });
};



jQuery.fn.disableLink = function() {
	return jQuery(this).each(function(){
		if(!jQuery(this).hasClass('link-disabled')) {
			jQuery(this)
				.addClass('link-disabled')
				.attr('rel', jQuery(this).attr('href'))
				.removeAttr('href');
		}
	});
};
jQuery.fn.enableLink = function() {
	return jQuery(this).each(function(){
		if(jQuery(this).hasClass('link-disabled')) {
			jQuery(this)
				.removeClass('link-disabled')
				.attr('href', jQuery(this).attr('rel'))
				.removeAttr('rel');
		}
	});
};




;

/**
 * Overrides Nivo Slider Module's behavior to provide
 * it with image clickability to it's node either from
 * the image or caption.
 * Useage: Add either Views CSS Classes:
 *  'image-linked-to-node'
 *  'title-linked-to-link'
 *
 */
var previous_views_nivo_sliderBehavior = Drupal.behaviors.views_nivo_sliderBehavior;
Drupal.behaviors.views_nivo_sliderBehavior = function(){
	var $slidersImage = $('.view.image-linked-to-node .views-nivo-slider')
	.css('cursor', 'pointer');
	function setImageLinks() {
		var event = 'nivoImageClick';
		var toolClicked = false;
		$slidersImage.each(function(){
			var $this = $(this);
			var href = $this.find('.nivo-caption a').attr('href');
			$this.unbind('click.'+event)
			.bind('click.'+event, function(){
				if(!toolClicked) {
					window.location.href = Drupal.settings.basePath+href;
					toolClicked = false;
				}
			});
		})
		.find('.nivo-caption, .nivo-directionNav, .nivo-controlNav')
		.unbind('click.'+event)
		.bind('click.'+event, function(){
			toolClicked = true;
		});
	}
	var $slidersTitle = $('.view.title-linked-to-link .views-nivo-slider');
	function setTitleLinks() {
		var event = 'nivoTitleClick';
		$slidersTitle.each(function(){
			var $this = $(this);
			var href;
			$this.find('.nivo-imageLink').each(function(){
				if($(this).css('display')=='block') {
					href = $(this).attr('href');
				}
			});
			$this.find('.nivo-caption').unbind('click.'+event)
			.css('cursor', 'pointer')
			.bind('click.'+event, function(){
				window.location.href = href;
			});
		});
	}
	if(Drupal.settings.views_nivo_slider) {
		$.each(Drupal.settings.views_nivo_slider, function(){
			this.afterChange = function() {
				setImageLinks();
				setTitleLinks();
			}
		});
		previous_views_nivo_sliderBehavior();
		setImageLinks();
		setTitleLinks();
	}
}

/**
 * Apply the input field hints
 * using the $().hint() plugin
 * that grabs it from the input
 * field's title attr.
 *
 */
Drupal.behaviors.inputHints = function(a) {
	$('#edit-search-block-form-1').hint();
	$('#edit-email').attr('title', 'Email Address').hint();
}

/**
 * Gives the prev and next
 * van arrowa a little hover
 * animation. Kinda cool...
 *
 */
Drupal.behaviors.animateNivoNav = function() {
	$('.nivo-directionNav a').each(function(){
		var $nav = $(this);
		$nav.hover(function(){
			var pos = $nav.hasClass('nivo-nextNav') ? '-69px 0px' : '-20px 0px';
			$nav.stop().animate({backgroundPosition:pos}, 'fast');
		}, function(){
			var next = $nav.hasClass('nivo-nextNav');
			$nav.css('backgroundPosition', next ? '-69px 0px' : '-20px 0px');
			var position = next ? '-89px 0px' : '0px 0px';
			$nav.stop().animate({backgroundPosition:position}, 'fast');
		});
	});
}

/**
 * Parent Clicking
 * For site content that's main use is to link to something,
 * it will be nice to be able to click anywhere not just on its
 * title or thumbnail.
 *
 */
/*Drupal.behaviors.parentClicking = function(a) {
	$('.node.type-story.teaser:not(.parent-click)').each(function(){
		var $this = $(this);
		$this.css('cursor', 'pointer').click(function(){
			window.location.href = $this.find('.teaser-image a').attr('href');
		}).addClass('parent-click');
	});
}*/

/**
 * Rotated elements
 * Adds rotation to items like tabs and such that
 * may need it for aesthetics.
 *
 */
/*
Drupal.behaviors.rotateToRotated = function(a) {
	$('.rotate-270').each(function(){
		var $this = $(this);
		var width = Math.max($this.outerWidth(),$this.width());
		var height = Math.max($this.outerHeight(),$this.height());
		$this.css({left:-(width/2)-height+'px', top:(width/2)+'px'});
	});
};
*/


/**
 * Sticky right column adjustments
 *
 */
Drupal.behaviors.stickyColumnAdjustments = function(a) {
	if(Drupal.stickyColumnAdjustments) {
		var view = Drupal.settings.views.ajaxViews[0];
		if(view.view_name == 'News' && view.view_display_id == 'page_2') {
			$('#sidebar-right').animate({top: $('.type-story.teaser.sticky').length*300+'px'});
		}
	}
	Drupal.stickyColumnAdjustments = true;
}

;

/**
 * Dialogues
 *
 * 1) Set the body's height to match the document's. This is usefull
 *    when you have a background pattern on the html element and the
 *    body element is not as tall in height.
 *    This is set via Drupal behaviors so it can work
 *    when ajax calls return new content heights.
 *
 * 2) Adds a fade effect to the Nice Menus on hovers
 *
 * 3) Makes it so that when expanding the
 *    Ubercart Cart block, that it toggles
 *    the visibility of its entire contents
 * 
 */

// BEHAVIORS //

/**
 * 1) Set the body's height to match the document's
 */
Drupal.behaviors.matchBodyToDocumentHeight = function(s) {
	$('body').documentHeight(true);
}

/**
 * 2) Set the body's height to match the document's
 */
Drupal.behaviors.refreshCufon = function(s) {
	Cufon.refresh();
}


function pausePlayers() {
	$('.views-nivo-slider').data('nivoslider').stop();
}
function resumePlayers() {
	$('.views-nivo-slider').data('nivoslider').start();
}

// DOCUMENT READY //

;(jQuery(function($){
	
	
	$('#navbar-inner').hover(function(){
		pausePlayers();
	},function(){
		resumePlayers();
	});
	
	
	/**
	 * 2) Adds superfish to Nice Menu
	 */
	if($('#superfish-inner').length) {
		$('#superfish-inner ul').superfish({
			autoArrows:false,
			dropShadows:false,
			delay: 0,
			animation	: {opacity:'show'},
			duration:'fast'
		});
	};
	
	/**
	 * 3 ) Ubercart Cart Popup
	 */
	if(Drupal.settings.ucCollapsedBlock == true) {
    $('.cart-block-title-bar').click(function() {
		  $('.cart-block-summary').toggle();
		  $('#block-uc_cart-0 .content').toggle();
    })
  };
  
  /**
   * 4) Cosmos Country form hovers
   */
  if($('body.logged-in').length) {
	  $('div.cosmos-country').each(function(){
		  var $blockForm = $(this).find('.block-form');
		  var initFormOffset = $blockForm.css('right');
		  var clicked = false;
		  var $join = $('#sidebar-right div.cosmos-country a.join-link');
		  var $title = $('#sidebar-right div.cosmos-country h2.title');
		  $(this).click(function(){
			  clicked = true;
			  $(this).unbind('click')
						   .unbind('mouseover')
						   .unbind('mouseout');
		  })
		  .hover(function(){
			  if(!clicked) {
				  $blockForm.stop().animate({right:0}, 'slow');
				  $join.stop().animate({left:-$join.outerWidth()+'px'}, 'slow');
				  $title.stop().animate({left:-$title.outerWidth()+'px'}, 'slow');
			  }
		  }, function(){
			  if(!clicked) {
				  $blockForm.stop().animate({right:initFormOffset}, 'slow');
				  $join.stop().animate({left:0}, 'slow');
				  $title.stop().animate({left:0}, 'slow');
			  }
		  });
	  });
	  //console.log(2);
  }
  
  /**
	 * FullScreen Flash Gallery
	 */
	$('div.node.type-product.full #fullscreen').flash({
		src:Drupal.settings.basePath+'sites/all/themes/nycosmos/swfs/hgallery/hgallery.swf',
		width: 117,
		height: 30,
		wmode:'transparent',
		allowfullscreen:true,
		flashvars:{
			datapath:Drupal.settings.basePath+'product/'+String($('.node.type-product').attr('id')).split('node-').join('')+'/feed',
			configpath:Drupal.settings.basePath+'sites/all/themes/nycosmos/swfs/hgallery/xml/config.xml',
			title:$('.node.type-product').attr('title')
		}
	},{
		version: 9,
		update:false
	},function(htmlOptions){
		$(this).flash(htmlOptions);
	});
	 
	/**
	 * Flash Logos
	 */
	var page = Drupal.settings.args[0] == 'front-page' ? 'home' : 'site';
	//var wmode = page == 'home' ? 'transparent' : 'opaque';
	var wmode = 'transparent';
	$('#logo').flash({
		src:Drupal.settings.basePath+'sites/all/themes/nycosmos/swfs/cosmos-'+page+'-logo.swf',
		width: 120,
		height: 120,
		wmode:wmode,
		bgcolor: '#C7ECD6',
		allowfullscreen:false,
		flashvars:{linkPath:Drupal.settings.basePath}
	},{
		version: 9,
		update:false
	},function(htmlOptions){
		if(page == 'site') $(this).css('backgroundImage', 'url('+$(this).find('img').attr('src')+')');
		$(this).empty().flash(htmlOptions);
	});
	
	/**
	 * Show both arrows on ad gallery rollover
	 */
	$('.ad-image-wrapper').hover(function(){
		$('.ad-prev-image, .ad-next-image').css({opacity:1, display:'block'});
	});
	
	$('a.title-accepted-credit-cards, a.title-paypal').disableLink();
	
	
	/**
	 * Status btton
	 */
	var $status = $('div.status');
	$status.append($('<div class="expander"></div>').click(function(){
		var $this = $(this);
		if($this.hasClass('minimized')) {
			$this.removeClass('minimized');
			$status.stop().animate({bottom:0});
		} else {
			$this.addClass('minimized');
			$status.stop().animate({bottom:-$status.height()-20+'px'});
		}
	}));
	
	/**
	 * Cufon font size differenciations
	 */
  $('ul.nice-menu.sf-js-enabled a').css('fontSize', '2.195em');
  $('ul.nice-menu.sf-js-enabled li.menuparent ul a').css({fontSize:'1.5em', lineHeight:'.5em'});
  Cufon.refresh();
	
}));



















;

