/*
 * 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")}})})();


/*
 * jQuery cookie
*/
jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";m.expires=-1}var e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){var f;if(typeof m.expires=="number"){f=new Date();f.setTime(f.getTime()+(m.expires*24*60*60*1000))}else{f=m.expires}e="; expires="+f.toUTCString()}var l=m.path?"; path="+(m.path):"";var g=m.domain?"; domain="+(m.domain):"";var a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var k=document.cookie.split(";");for(var h=0;h<k.length;h++){var c=jQuery.trim(k[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}};


/*
* jquery easing
*/

jQuery.extend(jQuery.easing,{easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});

/*
* jquey fancybox
*/

(function(f){f.fn.fixPNG=function(){return this.each(function(){var j=f(this).css("backgroundImage");if(j.match(/^url\(["']?(.*\.png)["']?\)$/i)){j=RegExp.$1;f(this).css({backgroundImage:"none",filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod="+(f(this).css("backgroundRepeat")=="no-repeat"?"crop":"scale")+", src='"+j+"')"}).each(function(){var k=f(this).css("position");if(k!="absolute"&&k!="relative"){f(this).css("position","relative")}})}})};var d,a,g=false,c=new Image,h,i=1,e=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i;var b=(f.browser.msie&&parseInt(f.browser.version.substr(0,1))<8);f.fn.fancybox=function(k){k=f.extend({},f.fn.fancybox.defaults,k);var s=this;function n(){d=this;f.fn.fancybox.elemout=d;a=k;l();return false}function l(){if(g){return}if(f.isFunction(a.callbackOnStart)){a.callbackOnStart()}a.itemArray=[];a.itemCurrent=0;if(k.itemArray.length>0){a.itemArray=k.itemArray}else{var u={};if(!d.rel||d.rel==""){var u={href:d.href,title:d.title};if(f(d).children("img:first").length){u.orig=f(d).children("img:first")}a.itemArray.push(u)}else{var v=f(s).filter("a[rel="+d.rel+"]");var u={};for(var t=0;t<v.length;t++){u={href:v[t].href,title:v[t].title};if(f(v[t]).children("img:first").length){u.orig=f(v[t]).children("img:first")}a.itemArray.push(u)}while(a.itemArray[a.itemCurrent].href!=d.href){a.itemCurrent++}}}if(a.overlayShow){if(b){f("embed, object, select").css("visibility","hidden")}f("#fancy_overlay").css("opacity",a.overlayOpacity).show()}o()}function o(){f("#fancy_right, #fancy_left, #fancy_close, #fancy_title").hide();var t=a.itemArray[a.itemCurrent].href;if(t.match(/#/)){var u=window.location.href.split("#")[0];u=t.replace(u,"");u=u.substr(u.indexOf("#"));m('<div id="fancy_div">'+f(u).html()+"</div>",a.frameWidth,a.frameHeight)}else{if(t.match(e)){c=new Image;c.src=t;if(c.complete){r()}else{f.fn.fancybox.showLoading();f(c).unbind().bind("load",function(){f(".fancy_loading").hide();r()})}}else{if(t.match("iframe")||d.className.indexOf("iframe")>=0){m('<iframe id="fancy_frame" onload="$.fn.fancybox.showIframe()" name="fancy_iframe'+Math.round(Math.random()*1000)+'" frameborder="0" hspace="0" src="'+t+'"></iframe>',a.frameWidth,a.frameHeight)}else{f.get(t,function(v){m('<div id="fancy_ajax">'+v+"</div>",a.frameWidth,a.frameHeight)})}}}}function r(){if(a.imageScale){var u=f.fn.fancybox.getViewport();var x=Math.min(Math.min(u[0]-36,c.width)/c.width,Math.min(u[1]-60,c.height)/c.height);var v=Math.round(x*c.width);var t=Math.round(x*c.height)}else{var v=c.width;var t=c.height}m('<img alt="" id="fancy_img" src="'+c.src+'" />',v,t)}function p(){if((a.itemArray.length-1)>a.itemCurrent){var t=a.itemArray[a.itemCurrent+1].href;if(t.match(e)){objNext=new Image();objNext.src=t}}if(a.itemCurrent>0){var t=a.itemArray[a.itemCurrent-1].href;if(t.match(e)){objNext=new Image();objNext.src=t}}}function m(z,u,B){g=true;var x=a.padding;if(b){f("#fancy_content")[0].style.removeExpression("height");f("#fancy_content")[0].style.removeExpression("width")}if(x>0){u+=x*2;B+=x*2;f("#fancy_content").css({top:x+"px",right:x+"px",bottom:x+"px",left:x+"px",width:"auto",height:"auto"});if(b){f("#fancy_content")[0].style.setExpression("height","(this.parentNode.clientHeight - 20)");f("#fancy_content")[0].style.setExpression("width","(this.parentNode.clientWidth - 20)")}}else{f("#fancy_content").css({top:0,right:0,bottom:0,left:0,width:"100%",height:"100%"})}if(f("#fancy_outer").is(":visible")&&u==f("#fancy_outer").width()&&B==f("#fancy_outer").height()){f("#fancy_content").fadeOut("fast",function(){f("#fancy_content").empty().append(f(z)).fadeIn("normal",function(){j()})});return}var A=f.fn.fancybox.getViewport();var v=(u+36)>A[0]?A[2]:(A[2]+Math.round((A[0]-u-36)/2));var D=(B+50)>A[1]?A[3]:(A[3]+Math.round((A[1]-B-50)/2));var C={left:v,top:D,width:u+"px",height:B+"px"};if(f("#fancy_outer").is(":visible")){f("#fancy_content").fadeOut("normal",function(){f("#fancy_content").empty();f("#fancy_outer").animate(C,a.zoomSpeedChange,a.easingChange,function(){f("#fancy_content").append(f(z)).fadeIn("normal",function(){j()})})})}else{if(a.zoomSpeedIn>0&&a.itemArray[a.itemCurrent].orig!==undefined){f("#fancy_content").empty().append(f(z));var y=a.itemArray[a.itemCurrent].orig;var t=f.fn.fancybox.getPosition(y);f("#fancy_outer").css({left:(t.left-18)+"px",top:(t.top-18)+"px",width:f(y).width(),height:f(y).height()});if(a.zoomOpacity){C.opacity="show"}f("#fancy_outer").animate(C,a.zoomSpeedIn,a.easingIn,function(){j()})}else{f("#fancy_content").hide().empty().append(f(z)).show();f("#fancy_outer").css(C).fadeIn("normal",function(){j()})}}}function q(){if(a.itemCurrent!=0){f("#fancy_left, #fancy_left_ico").unbind().bind("click",function(t){t.stopPropagation();a.itemCurrent--;o();return false});f("#fancy_left").show()}if(a.itemCurrent!=(a.itemArray.length-1)){f("#fancy_right, #fancy_right_ico").unbind().bind("click",function(t){t.stopPropagation();a.itemCurrent++;o();return false});f("#fancy_right").show()}}function j(){q();p();f(document).keydown(function(t){if(t.keyCode==27){f.fn.fancybox.close();f(document).unbind("keydown")}else{if(t.keyCode==37&&a.itemCurrent!=0){a.itemCurrent--;o();f(document).unbind("keydown")}else{if(t.keyCode==39&&a.itemCurrent!=(a.itemArray.length-1)){a.itemCurrent++;o();f(document).unbind("keydown")}}}});if(a.centerOnScroll){f(window).bind("resize scroll",f.fn.fancybox.scrollBox)}else{f("div#fancy_outer").css("position","absolute")}if(a.hideOnContentClick){f("#fancy_wrap").click(f.fn.fancybox.close)}f("#fancy_overlay, #fancy_close").bind("click",f.fn.fancybox.close);f("#fancy_close").show();if(a.itemArray[a.itemCurrent].title!==undefined&&a.itemArray[a.itemCurrent].title.length>0){f("#fancy_title div").html(a.itemArray[a.itemCurrent].title);f("#fancy_title").show()}if(a.overlayShow&&b){f("embed, object, select",f("#fancy_content")).css("visibility","visible")}if(f.isFunction(a.callbackOnShow)){a.callbackOnShow()}g=false}return this.unbind("click").click(n)};f.fn.fancybox.scrollBox=function(){var j=f.fn.fancybox.getViewport();f("#fancy_outer").css("left",((f("#fancy_outer").width()+36)>j[0]?j[2]:j[2]+Math.round((j[0]-f("#fancy_outer").width()-36)/2)));f("#fancy_outer").css("top",((f("#fancy_outer").height()+50)>j[1]?j[3]:j[3]+Math.round((j[1]-f("#fancy_outer").height()-50)/2)))};f.fn.fancybox.getNumeric=function(j,k){return parseInt(f.curCSS(j.jquery?j[0]:j,k,true))||0};f.fn.fancybox.getPosition=function(j){var k=j.offset();k.top+=f.fn.fancybox.getNumeric(j,"paddingTop");k.top+=f.fn.fancybox.getNumeric(j,"borderTopWidth");k.left+=f.fn.fancybox.getNumeric(j,"paddingLeft");k.left+=f.fn.fancybox.getNumeric(j,"borderLeftWidth");return k};f.fn.fancybox.showIframe=function(){f(".fancy_loading").hide();f("#fancy_frame").show()};f.fn.fancybox.getViewport=function(){return[f(window).width(),f(window).height(),f(document).scrollLeft(),f(document).scrollTop()]};f.fn.fancybox.animateLoading=function(){if(!f("#fancy_loading").is(":visible")){clearInterval(h);return}f("#fancy_loading > div").css("top",(i*-40)+"px");i=(i+1)%12};f.fn.fancybox.showLoading=function(){clearInterval(h);var j=f.fn.fancybox.getViewport();f("#fancy_loading").css({left:((j[0]-40)/2+j[2]),top:((j[1]-40)/2+j[3])}).show();f("#fancy_loading").bind("click",f.fn.fancybox.close);h=setInterval(f.fn.fancybox.animateLoading,66)};f.fn.fancybox.close=function(){g=true;f(c).unbind();f("#fancy_overlay, #fancy_close").unbind();if(a.hideOnContentClick){f("#fancy_wrap").unbind()}f("#fancy_close, .fancy_loading, #fancy_left, #fancy_right, #fancy_title").hide();if(a.centerOnScroll){f(window).unbind("resize scroll")}__cleanup=function(){f("#fancy_overlay, #fancy_outer").hide();if(a.centerOnScroll){f(window).unbind("resize scroll")}if(b){f("embed, object, select").css("visibility","visible")}if(f.isFunction(a.callbackOnClose)){a.callbackOnClose()}g=false};if(f("#fancy_outer").is(":visible")!==false){if(a.zoomSpeedOut>0&&a.itemArray[a.itemCurrent].orig!==undefined){var k=a.itemArray[a.itemCurrent].orig;var j=f.fn.fancybox.getPosition(k);var l={left:(j.left-18)+"px",top:(j.top-18)+"px",width:f(k).width(),height:f(k).height()};if(a.zoomOpacity){l.opacity="hide"}f("#fancy_outer").stop(false,true).animate(l,a.zoomSpeedOut,a.easingOut,__cleanup)}else{f("#fancy_outer").stop(false,true).fadeOut("fast",__cleanup)}}else{__cleanup()}return false};f.fn.fancybox.build=function(){var j="";j+='<div id="fancy_overlay"></div>';j+='<div id="fancy_wrap">';j+='<div class="fancy_loading" id="fancy_loading"><div></div></div>';j+='<div id="fancy_outer">';j+='<div id="fancy_inner">';j+='<div id="fancy_close"></div>';j+='<div id="fancy_bg"><div class="fancy_bg fancy_bg_n"></div><div class="fancy_bg fancy_bg_ne"></div><div class="fancy_bg fancy_bg_e"></div><div class="fancy_bg fancy_bg_se"></div><div class="fancy_bg fancy_bg_s"></div><div class="fancy_bg fancy_bg_sw"></div><div class="fancy_bg fancy_bg_w"></div><div class="fancy_bg fancy_bg_nw"></div></div>';j+='<a href="javascript:;" id="fancy_left"><span class="fancy_ico" id="fancy_left_ico"></span></a><a href="javascript:;" id="fancy_right"><span class="fancy_ico" id="fancy_right_ico"></span></a>';j+='<div id="fancy_content"></div>';j+='<div id="fancy_title"></div>';j+="</div>";j+="</div>";j+="</div>";f(j).appendTo("body");f('<table cellspacing="0" cellpadding="0" border="0"><tr><td class="fancy_title" id="fancy_title_left"></td><td class="fancy_title" id="fancy_title_main"><div></div></td><td class="fancy_title" id="fancy_title_right"></td></tr></table>').appendTo("#fancy_title");if(b){f("#fancy_inner").prepend('<iframe class="fancy_bigIframe" scrolling="no" frameborder="0"></iframe>');f("#fancy_close, .fancy_bg, .fancy_title, .fancy_ico").fixPNG()}};f.fn.fancybox.defaults={padding:15,imageScale:true,zoomOpacity:true,zoomSpeedIn:0,zoomSpeedOut:0,zoomSpeedChange:300,easingIn:"swing",easingOut:"swing",easingChange:"swing",frameWidth:425,frameHeight:355,overlayShow:true,overlayOpacity:0.3,hideOnContentClick:false,centerOnScroll:true,itemArray:[],callbackOnStart:null,callbackOnShow:null,callbackOnClose:null};f(document).ready(function(){f.fn.fancybox.build()})})(jQuery);


/* FULL SCREEN (prehome only)
------------------------------------------ */

function fullScreen() {
	newLocation = $('#login a').attr('href');
	winWidth = 1024; // sets a default width for browsers who do not understand screen.width below
	winheight = 768; // ditto for height
	if (screen) { // weeds out older browsers who do not understand screen.width/screen.height
	winWidth = screen.width;
	winHeight = screen.height;
	}
	$('#login a').click(function() {
		newWindow = window.open(newLocation,'wwc','fullscreen=yes,titlebar=no,toolbar=no,location=no,scrollbars=no,resizable= no,width='+winWidth+',height='+winHeight+',left=0,top=0');
		newWindow.focus();
		return false;
	})
}

/* BIGSCREEN once everything is loaded
------------------------------------------ */
function bigScreen() {
	var viewportFullHeight = $(window).height();
	if(viewportFullHeight > 725) {
		// all
		$('#header h1 a').css('height', 239);
		// home
		$('body.page-template-frontpage-php #header img').css('marginTop', 105);
		$('body.page-template-frontpage-php').css('backgroundPosition', 'center 488px');		
		// cat
		$('body.category').css('backgroundPosition', 'center 651px');	
		$('body.category #header img').css('marginTop', 85);		
		$('body.category #content div.carousel-prev').css('top', 445);
		$('body.category #content div.carousel-next').css('top', 445);
	}	
	if(viewportFullHeight < 725) {
		// all
		$('#header h1 a').css('height', 150);
		// home
		$('body.page-template-frontpage-php #header img').css('marginTop', 35);	
		$('body.page-template-frontpage-php').css('backgroundPosition', 'center 399px');		
		// cat
		$('body.category').css('backgroundPosition', 'center 562px');	
		$('body.category #header img').css('marginTop', 0);		
		$('body.category #content div.carousel-prev').css('top', 340);
		$('body.category #content div.carousel-next').css('top', 340);
	}	
}

/* CAROUSEL
------------------------------------------ */
function carousel() {
	var $carousel = $('#content ul');
	var $carouselItem = $('#content li');	
	isIE = !jQuery.support.opacity;

	// Calcul préalables : 
	viewportWidth = $(window).width();
	if(isIE) viewportWidth += 25; // If IE	
	diapoOpenedWidth = 710;
	diapoClosedWidth = 270;
	if(isIE) diapoClosedWidth -= 1; // If IE		
	decalLeft = (viewportWidth-diapoOpenedWidth)/2 + 8;
	viewportHeigth = 390;
	animationSpeed = 'slow';
	animationType = 'swing';
	nbElements = $carouselItem.size();
	marginMax = decalLeft;
	marginMin = diapoOpenedWidth - diapoClosedWidth * (nbElements);
     
	// Ciblage de la bande de diapositives 
	$carousel 
		// Englobage de la liste par la zone de visualisation 
		.wrap('<div class="carousel-conteneur"></div>') 
		// Application d'une largeur à la bande de diapositive afin de conserver une structrure horizontale 
		.css("width", 5000);
  
	// Ciblage de la zone de visualisation 
	$("#content div.carousel-conteneur") 
	    // Application de la largeur d'une seule diapositive 
	    .css("width",  viewportWidth)
	    // Application de la hauteur d'une seule diapositive 
	    .css("height", viewportHeigth ) 
	    // Blocage des débordements 
	    .css("overflow", "hidden")
	    // Insertion des boutons de navigation 
	    .after('' 
	        +    '    <div class="carousel-prev">Précédent</div>' 
	        +    '    <div class="carousel-next">Suivant</div>' 
	        +    '');

	// Decal Carousel
	marginToDecal = (viewportWidth - diapoOpenedWidth)/2;			
	$carousel.animate({marginLeft: marginToDecal}, "slow", animationType);	
	
	// creation des boutons
	var $prevbutton = $("#content div.carousel-prev");
	var $nextbutton = $("#content div.carousel-next");
	
	// Positionnement des boutons de navigation 
	$prevbutton.css('marginLeft', 50);
	$nextbutton.css('marginLeft', (viewportWidth - 80));	

	/* Actions de navigation */
	
	// previous
	$prevbutton.mouseenter(function(){
		$carousel.stop();
		movable = true;	
		moveThisPrev(250, 1000, 'easeInQuad');
		function moveThisPrev(decal, speed, transition) {
			carouselMarginLeft = parseInt($carousel.css('marginLeft').split('px')[0]);
			var nextMarginLeft = carouselMarginLeft + decal;
			// limite
			if(carouselMarginLeft > marginMax) {
				return;
			}			
			$carousel.animate({'marginLeft' : nextMarginLeft}, speed, transition, function() {
				if (movable) moveThisPrev(200, 500, 'linear');
			});
		}
	   }).mouseleave(function(){
				movable = false;	
	 			$carousel.animate({marginLeft : carouselMarginLeft + 250}, {duration: 1000, easing: 'easeOutQuad'});
			$carousel.stop();
	   });
	
	// next
	$nextbutton.mouseenter(function(){
		$carousel.stop();
		movable = true;	
		moveThisNext(250, 1000, 'easeInQuad');
		function moveThisNext(decal, speed, transition) {
			carouselMarginLeft = parseInt($carousel.css('marginLeft').split('px')[0]);
			var nextMarginLeft = carouselMarginLeft - decal;
			// limite
			if(carouselMarginLeft < marginMin) {
				return;
			}			
			$carousel.animate({'marginLeft' : nextMarginLeft}, speed, transition, function() {
				if (movable) moveThisNext(200, 500, 'linear');
			});			
		}
	   }).mouseleave(function(){
	 			movable = false;	
	 			$carousel.animate({marginLeft : carouselMarginLeft - 250}, {duration: 1000, easing: 'easeOutQuad'});
			$carousel.stop();
	   });


	/* Inside Carousel */
	// On cache le texte du carousel
	$("#content h2, #content h3, #content p, #content div.actions, #content div.moreimages").css({'opacity' : 0, 'display' : 'none'});
	
	// decalage image à droite
	$("#content div.imgcontainer img").css('margin-left', -(diapoOpenedWidth - diapoClosedWidth))	
	// hover : on affiche le titre de la diapo	
	$carouselItem.hover(
		// If closed
		function() {
			if($(this).width()<280) {
				$("h2", this).css('display', 'block');
				$("h2", this).animate({opacity: 1});
			}
		},
		function() {
			if($(this).width()<280) {
				$("h2", this).animate({opacity: 0}, function(){
					$("h2", this).css('display', 'none');
				});
			}
		}		
	);

	// ******** ACTIONS CAROUSEL ******
	
	// OUVRIR / FERMER
	$carousel.bind('click', function(e){
			var $li = $(e.target).parents('li');
			numberLi = $li.attr('id').split('-')[1];
			//postid = ($li.attr('class')); // recupere l'id du post			

			// close all slides 
			$carouselItem.each(function(){
				if($(this).width()>280) {
					$(this).animate({width: diapoClosedWidth}, animationSpeed, animationType);
					$("div.imgcontainer img", this).animate({marginLeft: -(diapoOpenedWidth - diapoClosedWidth)}, "slow", animationType);
					$("h2, h3, p, div.actions, div.moreimages", this)
						.animate({opacity: 0}, animationSpeed, animationType)
						.css('display', 'none');
				}
			})

			// open slide
			if($li.width()<280) {
				marginToDecal = (-(diapoClosedWidth * (numberLi-1)) + decalLeft);			
				// decal carousel
				$carousel.animate({marginLeft: marginToDecal}, "slow", animationType);			
				// move image
				$("div.imgcontainer img", $li).animate({marginLeft: 0}, "slow", animationType);
				// open slide
				$li.animate({width: diapoOpenedWidth}, animationSpeed, animationType);				
				// let show the content previously hidden
				$("h2, h3, p, div.moreimages", $li)
					.css('display', 'block')
					.animate({opacity: 1}, animationSpeed, animationType);
				$("div.actions", $li)
					.css('display', 'block')
					.animate({opacity: 0.7}, animationSpeed, animationType);
				return false;
			}
					
		}
	);

	// READ MORE
	$("#content div.textcontent a.more-link").fancybox({
		'overlayShow' : true,
		'overlayOpacity' : 0.5,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'frameWidth' : 550,
		'frameHeight' : 380,
		'callbackOnShow' : function() {		
			$('#fancy_close').css('top', 5);
		},
		'callbackOnClose' : function() {		
			$('#fancy_close').css('top', 10);
		}
	})


	// SHOW IMAGES
	$("#content a.viewimage").fancybox({
		'overlayShow' : true,
		'overlayOpacity' : 0.5,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'padding': 0,
		'callbackOnShow' : function() {		
			$('#fancy_close').css('top', 5);
		},
		'callbackOnClose' : function() {		
			$('#fancy_close').css('top', 10);
		}
	})
	
	// VIEW ALL IMAGES	
	$('#content div.moreimages span a').click(function() {
		// preload
		imgToLoad = $(this).attr('href');
		insideWichElem = $(this).parents('li');
		// load image
		$('div.imgcontainer img', insideWichElem).fadeOut(
			'slow', 
			function() {
				$(this).attr('src', imgToLoad).fadeIn('slow');
			}
		);		
		
		// change source for full size image
		/*
		imageName = imgToLoad.substring(imgToLoad.lastIndexOf("/") + 1, imgToLoad.length);
		pathBeforeImageName = imgToLoad.substring(0, imgToLoad.lastIndexOf("/") + 1);
		fullImage = imageName.split('.');		
		imageNoExtension = fullImage[0];
		extension = fullImage[1];
		fullLenght = imageNoExtension.length;
		charPos = fullLenght - 4;	
		widthHeightSep = imageNoExtension.charAt(charPos);
		if (widthHeightSep == 'x') {
			charToCut = fullLenght - 8;
			fullImage = pathBeforeImageName + imageNoExtension.substring(0,charToCut) + '.' + extension;
			$('a.viewimage', insideWichElem).attr('href', fullImage);
		} else {
			$('a.viewimage', insideWichElem).attr('href', imgToLoad);	
		}
		*/
		$('a.viewimage', insideWichElem).attr('href', imgToLoad);	
		
		return false;
	});
	// affiche on load
	$carousel.removeClass('loading');
}


/*
* MODAL BOXES HOME
*/
function modalBoxesHome() {
	/* DREAMLIST fancybox
	------------------------------------------ */
	 $("#subcontent a.opendreamlist").fancybox({
			'overlayShow' : true,
			'overlayOpacity' : 0.5,
			'frameWidth' : 530,
			'frameHeight' : 560,
			'zoomSpeedIn' : 500,
			'zoomSpeedOut' : 500
	})
	/* FIRST TIME fancybox
	------------------------------------------ */
	$("a.firstconnection").fancybox({
		'overlayShow' : true,
		'overlayOpacity' : 0.5,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'frameWidth' : 570,
		'frameHeight' : 560
	})
	
	/* MENU fancybox
	------------------------------------------ */	
	$("#header a.info, #subcontent a.info").fancybox({
		'overlayShow' : true,
		'overlayOpacity' : 0.5,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'frameWidth' : 570,
		'frameHeight' : 550		
	})	
}


/*
* MODAL BOXES CAT
*/
function modalBoxesCat() {
	/* SOMETHINGSPECIFIC fancybox
	------------------------------------------ */
	$("#header a.specific").fancybox({		
		'overlayShow' : true,
		'overlayOpacity' : 0.5,
		'frameWidth' : 500,
		'frameHeight' : 330,		
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'frameHeight' : 450		
	});
	/* DREAMLIST fancybox
	------------------------------------------ */
	 $("#content div.dreamliststuffs a, #subcontent a.opendreamlist").fancybox({
			'overlayShow' : true,
			'overlayOpacity' : 0.5,
			'frameWidth' : 530,
			'frameHeight' : 560,
			'zoomSpeedIn' : 500,
			'zoomSpeedOut' : 500
	})
	/* MENU fancybox
	------------------------------------------ */	
	$("#subcontent a.info").fancybox({
		'overlayShow' : true,
		'overlayOpacity' : 0.5,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'frameWidth' : 570,
		'frameHeight' : 550		
	})	
}

/* 
 * CUFON
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(d){var c=document.createElement("style"),b,a;c.type="text/css";c.media=d;b=F("head")[0];b.insertBefore(c,b.firstChild);a=!!(c.sheet||c.styleSheet);b.removeChild(c);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={},b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var c=!M.recognizesMedia("all"),b=false;var a=[],e=function(){c=true;for(var h;h=a.shift();h()){}};var f=F("link"),g={stylesheet:1};function d(){var j,h,k;for(h=0;k=f[h];++h){if(k.disabled||!g[k.rel.toLowerCase()]||!M.recognizesMedia(k.media||"screen")){continue}j=k.sheet||k.styleSheet;if(!j||j.disabled){return false}}return true}W.ready(function(){if(!b){b=M.getStyle(document.body).isUsable()}if(c||(b&&d())){e()}else{setTimeout(arguments.callee,10)}});return function(h){if(c){h()}else{a.push(h)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX,c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return !!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AD,Z,u,V,d,AE){var I=(Z===null);if(I){Z=d.alt}var b=AD.viewBox;var K=u.getSize("fontSize",AD.baseSize);var s=u.get("letterSpacing");s=(s=="normal")?0:K.convertFrom(parseInt(s,10));var c=0,t=0,r=0,X=0;var a=V.textShadow,p=[];if(a){for(var AC=a.length;AC--;){var h=a[AC];var o=K.convertFrom(parseFloat(h.offX));var n=K.convertFrom(parseFloat(h.offY));p[AC]=[o,n];if(n<c){c=n}if(o>t){t=o}if(n>r){r=n}if(o<X){X=o}}}var AH=Cufon.CSS.textTransform(Z,u).split(""),T;var J=AD.glyphs,W,M,w;var G=0,P,f=[];for(var AC=0,AA=0,v=AH.length;AC<v;++AC){W=J[T=AH[AC]]||AD.missingGlyph;if(!W){continue}if(M){G-=w=M[T]||0;f[AA-1]-=w}G+=P=f[AA++]=~~(W.w||AD.w)+s;M=W.k}if(P===undefined){return null}t+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var z=document.createElement("span");z.className="cufon-alt";z.appendChild(document.createTextNode(Z));U.appendChild(z)}}var AI=U.style;var m=L.style;var H=K.convert(b.height);var AG=Math.ceil(H);var q=AG/H;L.width=Math.ceil(K.convert(G*q+t-X));L.height=Math.ceil(K.convert(b.height-c+r));c+=b.minY;m.top=Math.round(K.convert(c-AD.ascent))+"px";m.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(G*q))+"px";if(A){AI.width=S;AI.height=K.convert(AD.height)+"px"}else{AI.paddingLeft=S;AI.paddingBottom=(K.convert(AD.height)-1)+"px"}var AF=L.getContext("2d"),e=H/b.height;AF.scale(e,e*q);AF.translate(-X,-c);AF.lineWidth=AD.face["underline-thickness"];AF.save();function N(i,g){AF.strokeStyle=g;AF.beginPath();AF.moveTo(0,i);AF.lineTo(G,i);AF.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AE,u):{};if(O.underline){N(-AD.face["underline-position"],O.underline)}if(O.overline){N(AD.ascent,O.overline)}function AB(){AF.scale(q,1);for(var x=0,k=0,g=AH.length;x<g;++x){var y=J[AH[x]]||AD.missingGlyph;if(!y){continue}if(y.d){AF.beginPath();if(y.code){C(y.code,AF)}else{y.code=D("m"+y.d,AF)}AF.fill()}AF.translate(f[k++],0)}AF.restore()}if(a){for(var AC=a.length;AC--;){var h=a[AC];AF.save();AF.fillStyle=h.color;AF.translate.apply(AF,p[AC]);AB()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AF.createLinearGradient(0,b.minY,0,b.maxY);for(var AC=0,v=Y.length;AC<v;++AC){Q.addColorStop.apply(Q,Y[AC])}AF.fillStyle=Q}else{AF.fillStyle=u.get("color")}AB();if(O["line-through"]){N(-AD.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AB,b,v,Y,f,AC,t){var I=(b===null);if(I){b=f.alt}var d=AB.viewBox;var K=v.computedFontSize||(v.computedFontSize=new Cufon.CSS.Size(C(AC,v.get("fontSize"))+"px",AB.baseSize));var s=v.computedLSpacing;if(s==undefined){s=v.get("letterSpacing");v.computedLSpacing=s=(s=="normal")?0:~~K.convertFrom(A(AC,s))}var V,L;if(I){V=f;L=f.firstChild}else{V=document.createElement("span");V.className="cufon cufon-vml";V.alt=b;L=document.createElement("span");L.className="cufon-vml-canvas";V.appendChild(L);if(Y.printable){var y=document.createElement("span");y.className="cufon-alt";y.appendChild(document.createTextNode(b));V.appendChild(y)}if(!t){V.appendChild(document.createElement("cvml:shape"))}}var AH=V.style;var n=L.style;var G=K.convert(d.height),AE=Math.ceil(G);var r=AE/G;var q=d.minX,p=d.minY;n.height=AE;n.top=Math.round(K.convert(p-AB.ascent));n.left=Math.round(K.convert(q));AH.height=K.convert(AB.height)+"px";var P=Y.enableTextDecoration?Cufon.CSS.textDecoration(AC,v):{};var a=v.get("color");var AG=Cufon.CSS.textTransform(b,v).split(""),U;var J=AB.glyphs,Z,M,x;var F=0,g=[],o=0,Q;var S,c=Y.textShadow;for(var AA=0,z=0,w=AG.length;AA<w;++AA){Z=J[U=AG[AA]]||AB.missingGlyph;if(!Z){continue}if(M){F-=x=M[U]||0;g[z-1]-=x}F+=Q=g[z++]=~~(Z.w||AB.w)+s;M=Z.k}if(Q===undefined){return null}var T=-q+F+(d.width-Q);var AF=K.convert(T*r),u=Math.round(AF);var m=T+","+d.height,H;var e="r"+m+"ns";var R=Y.textGradient&&D(Y.textGradient);for(AA=0,z=0;AA<w;++AA){Z=J[AG[AA]]||AB.missingGlyph;if(!Z){continue}if(I){S=L.childNodes[z];while(S.firstChild){S.removeChild(S.firstChild)}}else{S=document.createElement("cvml:shape");L.appendChild(S)}S.stroked="f";S.coordsize=m;S.coordorigin=H=(q-o)+","+p;S.path=(Z.d?"m"+Z.d+"xe":"")+"m"+H+e;S.fillcolor=a;if(R){S.appendChild(R.cloneNode(false))}var AD=S.style;AD.width=u;AD.height=AE;if(c){var O=c[0],N=c[1];var X=Cufon.CSS.color(O.color),W;var h=document.createElement("cvml:shadow");h.on="t";h.color=X.color;h.offset=O.offX+","+O.offY;if(N){W=Cufon.CSS.color(N.color);h.type="double";h.color2=W.color;h.offset2=N.offX+","+N.offY}h.opacity=X.opacity||(W&&W.opacity)||1;S.appendChild(h)}o+=g[z++]}AH.width=Math.max(Math.ceil(K.convert(F*r)),0);return V}})());

/*
* AauxPro OT FONT
*/

Cufon.registerFont({"w":176,"face":{"font-family":"AauxPro OT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 2 0 0 2 0 4","ascent":"279","descent":"-81","x-height":"3","bbox":"-7 -279 269 79.0579","underline-thickness":"7.2","underline-position":"-41.4","stemh":"11","stemv":"9","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":97,"k":{"v":7,"t":7}},"\u00d7":{"d":"133,-51r-7,7r-48,-47r-47,47r-8,-7r48,-48r-48,-47r8,-7r47,47r48,-47r7,7r-47,47","w":156},"!":{"d":"58,-251r0,121r-5,66r-5,0v-7,-57,-6,-123,-6,-187r16,0xm62,-9v0,16,-23,15,-23,0v0,-6,5,-12,11,-12v6,0,12,6,12,12","w":100},"\"":{"d":"97,-197r-17,0r0,-58v0,-5,4,-8,9,-8v5,0,8,3,8,8r0,58xm42,-255r0,58r-17,0r0,-58v0,-5,4,-8,9,-8v5,0,8,3,8,8","w":122,"k":{"z":14,"u":11,"s":11,"r":11,"q":18,"p":14,"o":18,"m":11,"g":18,"f":14,"e":18,"d":18,"c":18,"a":18,"J":14,"A":18,"#":18}},"#":{"d":"228,-172r-2,9r-47,0r-16,74r47,0r-2,10r-47,0r-17,79r-9,0r17,-79r-75,0r-17,79r-9,0r17,-79r-47,0r2,-10r47,0r16,-74r-47,0r2,-9r47,0r17,-79r9,0r-17,79r75,0r17,-79r9,0r-17,79r47,0xm170,-163r-75,0r-16,74r75,0","w":249,"k":{"6":11,"4":11}},"$":{"d":"166,-80v0,37,-34,57,-68,58r0,22r-10,0r0,-22v-32,-1,-61,-15,-70,-49r9,-2v8,29,34,41,61,42r0,-99v-32,-7,-62,-16,-62,-51v0,-35,31,-50,62,-50r0,-20r10,0r0,21v24,2,45,10,58,33r-8,4v-12,-20,-29,-26,-50,-28r0,84v33,8,68,17,68,57xm88,-222v-25,0,-54,11,-54,41v0,27,26,35,54,42r0,-83xm157,-80v0,-32,-29,-41,-59,-48r0,97v29,-1,59,-17,59,-49","w":182},"%":{"d":"263,-65v0,35,-12,69,-50,69v-38,0,-50,-34,-50,-69v0,-35,12,-69,50,-69v38,0,50,34,50,69xm201,-251r-109,251r-10,0r110,-251r9,0xm121,-186v0,35,-12,69,-50,69v-38,0,-50,-34,-50,-69v0,-34,12,-69,50,-69v38,0,50,34,50,69xm254,-65v0,-24,-5,-61,-41,-61v-36,0,-42,37,-42,61v0,24,6,61,42,61v36,0,41,-37,41,-61xm112,-186v0,-24,-5,-61,-41,-61v-36,0,-41,37,-41,61v0,24,5,61,41,61v36,0,41,-37,41,-61","w":283},"&":{"d":"212,-8r-5,8r-33,-27v-45,49,-155,43,-156,-36v0,-37,18,-57,55,-78v-34,-37,-42,-113,20,-113v28,0,45,19,45,46v0,31,-21,50,-52,69v26,36,53,66,86,97v14,-23,19,-45,20,-67r10,0v-1,25,-7,50,-23,74v11,10,24,20,33,27xm129,-208v0,-21,-13,-36,-36,-36v-54,0,-39,69,-12,98v24,-16,48,-32,48,-62xm166,-34v-34,-32,-61,-63,-88,-100v-32,19,-50,35,-50,72v0,69,97,72,138,28","w":233,"k":{"'":22}},"'":{"d":"45,-197r-17,0r0,-58v0,-5,4,-8,9,-8v5,0,8,3,8,8r0,58","w":74,"k":{"z":7,"u":11,"s":29,"r":7,"q":14,"o":14,"n":11,"m":11,"g":18,"f":7,"e":18,"d":18,"c":18,"a":22,"J":14,"A":18,"'":-83}},"(":{"d":"89,0r-12,0v-72,-66,-73,-186,0,-251r12,0v-75,67,-75,183,0,251","w":113,"k":{"4":7,"0":5}},")":{"d":"40,-251v74,65,73,186,0,251r-11,0v73,-68,74,-184,0,-251r11,0","w":113},"*":{"d":"135,-205r-53,16r34,44r-9,6r-31,-46r-31,46r-8,-6r34,-44r-54,-16r4,-10r52,19r-2,-55r10,0r-1,55r52,-19","w":152},"+":{"d":"161,-94r-67,0r0,68r-11,0r0,-68r-67,0r0,-10r67,0r0,-67r11,0r0,67r67,0r0,10"},",":{"d":"38,-21v32,10,-4,44,-11,58v3,-20,-9,-55,11,-58","w":75,"k":{"Y":14,"W":7,"V":11,"T":14,"9":14,"7":11,"4":11,"3":4,"1":18,"0":7}},"-":{"d":"116,-94r-93,0r0,-10r93,0r0,10","w":139,"k":{"x":7,"Z":11,"Y":11,"X":11,"T":22,"A":7,"9":11,"7":14,"3":7,"2":11,"1":18}},".":{"d":"51,-10v0,7,-5,12,-12,12v-6,0,-12,-5,-12,-12v0,-6,6,-12,12,-12v7,0,12,6,12,12","w":78,"k":{"Y":18,"W":14,"V":14,"T":14,"9":14,"7":7,"5":7,"4":11,"3":11,"1":29}},"\/":{"d":"136,-279r-116,306r-11,0r116,-306r11,0","w":145,"k":{"z":18,"y":11,"x":11,"w":11,"v":7,"u":18,"t":7,"s":29,"r":18,"q":29,"p":18,"o":29,"n":18,"m":18,"g":29,"f":7,"e":29,"d":18,"c":29,"a":29,"Y":-14,"W":-14,"V":-14,"T":-14,"O":18,"J":25,"I":-11,"G":14,"C":14,"A":29,"7":-7,"6":20,"4":22,"0":7,"\/":36}},"0":{"d":"183,-126v0,56,-16,129,-83,129v-67,0,-82,-73,-82,-129v0,-57,15,-127,82,-127v67,0,83,70,83,127xm173,-126v0,-43,-9,-118,-73,-118v-64,0,-72,75,-72,118v0,42,8,120,72,120v64,0,73,-78,73,-120","w":200,"k":{"}":7,"]":7,"\\":7,"9":4,"7":4,"6":7,"4":4,"3":4,"2":4,"\/":7}},"1":{"d":"80,0r-10,0r0,-239r-46,35r-6,-7r53,-40r9,0r0,251","w":127,"k":{".":14,"-":7,",":11}},"2":{"d":"176,0r-154,0v4,-50,34,-78,68,-108v29,-25,69,-35,69,-82v-1,-64,-99,-74,-124,-22r-8,-3v25,-60,142,-49,142,25v0,51,-40,63,-73,90v-27,21,-57,55,-64,91r144,0r0,9","w":197,"k":{"}":4,"\\":7,"9":11,"8":7,"7":7,"6":11,"4":22,"3":4,"0":7,"-":11,"#":7}},"3":{"d":"165,-68v0,81,-121,96,-146,27r9,-3v22,59,127,46,127,-24v0,-40,-29,-59,-66,-60r0,-7v34,-1,60,-18,60,-55v0,-62,-98,-75,-119,-21r-8,-3v24,-61,138,-50,136,24v0,30,-15,50,-43,59v31,9,50,30,50,63","w":183,"k":{"}":7,"]":7,"\\":4,"4":4,".":11}},"4":{"d":"177,-68r-26,0r0,68r-9,0r0,-68r-126,0r0,-13r110,-170r10,0r-111,173r117,0r0,-109r9,2r0,107r26,0r0,10","w":195,"k":{"9":7}},"5":{"d":"172,-82v0,86,-120,117,-149,42r9,-3v10,24,34,37,60,37v47,0,70,-34,70,-76v0,-41,-22,-75,-69,-75v-19,0,-39,7,-53,20r-11,0r0,-114r126,0r0,8r-118,0r0,98v57,-48,135,-10,135,63","w":190,"k":{"}":7,"9":14,"7":4,"3":7,"2":7}},"6":{"d":"175,-73v0,44,-34,75,-77,75v-49,0,-81,-37,-81,-85v0,-66,39,-131,92,-168r12,0v-51,36,-82,83,-94,145v14,-30,38,-46,71,-46v46,0,77,34,77,79xm166,-73v0,-39,-28,-70,-68,-70v-37,0,-70,30,-70,68v0,37,33,69,70,69v38,0,68,-29,68,-67","w":192,"k":{"}":7,"9":14,"8":7,"7":7,"4":7,"3":7,"2":7,"1":7,"0":4}},"7":{"d":"162,-242v-43,51,-90,124,-88,242r-12,0v0,-117,44,-188,89,-242r-127,0r0,22r-10,0r0,-31r148,0r0,9","k":{"\\":-7,";":7,":":11,"9":7,"8":7,"6":22,"5":7,"4":29,"3":7,"2":11,"0":7,"\/":18,".":22,"-":18,",":11,"#":14}},"8":{"d":"123,-132v86,23,52,135,-28,135v-80,0,-111,-112,-28,-135v-72,-24,-44,-121,28,-121v72,0,103,95,28,121xm156,-190v0,-33,-30,-55,-61,-55v-31,0,-60,22,-60,55v0,36,27,55,60,55v34,0,61,-19,61,-55xm163,-68v0,-40,-31,-59,-68,-59v-38,0,-67,19,-67,59v0,37,31,62,67,62v36,0,68,-25,68,-62","w":190,"k":{"]":4,"9":11,"7":7,"4":7}},"9":{"d":"169,-168v0,60,-33,127,-91,168r-12,0v42,-31,80,-75,92,-145v-40,76,-141,39,-142,-34v0,-41,33,-75,75,-75v50,0,78,39,78,86xm158,-179v0,-36,-30,-66,-67,-66v-37,0,-66,31,-66,66v0,35,29,67,66,67v39,0,67,-30,67,-67","w":186,"k":{"}":7,"]":11,"\\":7,"8":7,"7":7,"6":14,"4":11,"3":7,"2":11,"0":7,"\/":14,".":29,"-":7,",":11,"#":14}},":":{"d":"51,-125v0,6,-5,12,-12,12v-6,0,-12,-6,-12,-12v0,-7,6,-13,12,-13v7,0,12,6,12,13xm51,-9v0,7,-5,12,-12,12v-6,0,-12,-5,-12,-12v0,-6,6,-12,12,-12v7,0,12,6,12,12","w":78,"k":{"7":7}},";":{"d":"51,-125v0,6,-5,12,-12,12v-6,0,-12,-6,-12,-12v0,-7,6,-13,12,-13v7,0,12,6,12,13xm38,-21v32,10,-4,44,-11,58v3,-20,-9,-55,11,-58","w":81},"<":{"d":"138,-251r-106,125r106,126r-12,0r-107,-126r107,-125r12,0","w":160,"k":{"<":54}},"=":{"d":"164,-125r-144,0r0,-10r144,0r0,10xm164,-45r-144,0r0,-10r144,0r0,10","w":183},">":{"d":"141,-126r-106,126r-12,0r106,-126r-106,-125r12,0","w":160,"k":{">":54}},"?":{"d":"78,-91v-2,-64,63,-45,66,-99v3,-69,-116,-71,-123,-7r-10,0v3,-35,35,-57,72,-57v39,0,71,25,71,64v-1,58,-68,40,-68,99r-1,26v-9,0,-5,-18,-7,-26xm95,-9v0,7,-5,12,-11,12v-7,0,-13,-5,-13,-12v0,-6,6,-12,13,-12v6,0,11,6,11,12","w":168},"@":{"d":"152,-252v69,0,90,89,69,152r-6,100r-10,-1r3,-55v-13,30,-37,60,-73,60v-35,0,-49,-34,-49,-64v0,-44,33,-112,83,-112v26,0,41,22,48,46v11,-54,-13,-116,-66,-116v-97,0,-164,171,-84,239r-5,9v-89,-72,-17,-258,90,-258xm210,-104v0,-23,-12,-58,-40,-58v-45,0,-74,64,-74,102v0,24,10,54,39,54v44,0,75,-62,75,-98","w":252},"A":{"d":"216,0r-10,0r-31,-80r-128,0r-31,80r-10,0r96,-251r18,0xm172,-89r-61,-158r-61,158r122,0","w":222,"k":{"\u2019":14,"\u201d":22,"z":-7,"y":14,"w":14,"v":18,"u":4,"t":7,"l":7,"g":7,"f":7,"e":7,"\\":25,"Y":32,"W":18,"V":29,"U":14,"T":29,"Q":7,"O":11,"G":7,"C":7,"-":7,"'":18,"\"":18}},"B":{"d":"202,-67v0,83,-96,65,-175,67r0,-251v75,1,165,-15,165,64v0,22,-11,45,-42,58v38,11,52,35,52,62xm182,-187v0,-72,-79,-52,-145,-55r0,110v66,-3,145,17,145,-55xm192,-67v0,-75,-85,-55,-155,-58r0,115v69,-4,155,19,155,-57","w":218,"k":{"o":5,"\\":11,"Y":22,"V":7,"U":4,"T":11,"A":4,"\/":7}},"C":{"d":"188,-33v-21,24,-40,36,-73,36v-75,0,-99,-63,-99,-129v0,-66,24,-129,99,-129v33,0,52,12,73,36r-7,7v-18,-21,-36,-32,-66,-32v-72,0,-89,63,-89,118v0,55,17,119,89,119v30,0,48,-11,66,-32","w":206,"k":{"X":4,"V":4,"Q":13,"O":4,"G":13,"C":13}},"D":{"d":"203,-126v0,82,-4,126,-104,126r-72,0r0,-251r72,0v100,0,104,43,104,125xm99,-10v85,7,94,-47,94,-116v0,-68,-9,-125,-94,-116r-62,0r0,232r62,0","w":224,"k":{"\\":7,"Z":11,"Y":11,"X":14,"W":7,"V":7,"T":11,"S":4,"J":7,"D":7,"A":11}},"E":{"d":"183,0r-156,0r0,-251r156,0r0,9r-146,0r0,107r128,0r0,9r-128,0r0,116r146,0r0,10","w":201,"k":{"q":7,"T":-4,"S":7,"O":7,"C":7}},"F":{"d":"180,-242r-143,0r0,107r128,0r0,9r-128,0r0,126r-10,0r0,-251r153,0r0,9","w":194,"k":{"u":7,"r":7,"o":11,"e":11,"a":11,"W":-7,"V":-7,"T":-11,"Q":7,"J":18,"I":-4,"F":7,"C":7,"A":25,"\/":18,".":14,"-":7,",":14}},"G":{"d":"199,-127r0,127r-10,0r0,-51v-14,41,-39,54,-75,54v-73,0,-98,-64,-98,-129v0,-65,27,-129,100,-129v33,0,52,12,73,36r-8,7v-18,-21,-35,-32,-65,-32v-72,0,-90,62,-90,118v0,54,18,119,88,119v61,0,75,-56,75,-110r-68,0r0,-10r78,0","w":222,"k":{"Y":14,"W":7,"V":7,"T":7,"G":4}},"H":{"d":"205,0r-10,0r0,-126r-158,0r0,126r-10,0r0,-251r10,0r0,116r158,0r0,-116r10,0r0,251","w":231,"k":{"Y":7}},"I":{"d":"45,0r-10,0r0,-251r10,0r0,251","w":79,"k":{"J":7,"\/":-11}},"J":{"d":"162,-74v13,90,-129,102,-150,30r10,-2v10,27,35,38,63,38v47,0,67,-21,67,-66r0,-177r10,0r0,177","w":187,"k":{"A":7}},"K":{"d":"175,0r-14,0r-122,-126r114,-125r13,0r-114,125xm37,0r-10,0r0,-251r10,0r0,251","w":188,"k":{"y":11,"w":11,"v":14,"u":11,"r":7,"o":11,"e":7,"a":7,"S":13,"Q":14,"O":14,"G":11,"C":13,"-":11}},"L":{"d":"168,0r-141,0r0,-251r10,0r0,242r131,0r0,9","w":177,"k":{"y":7,"Y":31,"V":14,"U":7,"T":31,"Q":14,"O":11,"L":7,"G":11,"C":7,"A":-7,"-":11,"'":14,"\"":18}},"M":{"d":"231,0r-10,0r0,-230r-85,230r-14,0r-85,-229r0,229r-10,0r0,-251r12,0r90,242r91,-242r11,0r0,251","w":258},"N":{"d":"196,0r-13,0r-146,-238r0,238r-10,0r0,-251r14,0r145,238r0,-238r10,0r0,251","w":223},"O":{"d":"213,-126v0,66,-24,129,-99,129v-75,0,-98,-63,-98,-129v0,-66,23,-129,98,-129v75,0,99,63,99,129xm203,-126v0,-55,-17,-118,-89,-118v-72,0,-88,63,-88,118v0,55,16,119,88,119v72,0,89,-64,89,-119","w":228,"k":{"}":11,"]":7,"\\":11,"Z":11,"Y":14,"X":14,"W":7,"V":7,"T":11,"Q":7,"P":4,"O":7,"B":7,"A":5,"\/":18}},"P":{"d":"199,-185v0,80,-86,66,-162,67r0,118r-10,0r0,-251v78,2,172,-18,172,66xm189,-185v0,-77,-84,-52,-152,-56r0,114v69,-3,152,19,152,-58","w":212,"k":{"t":-4,"s":11,"o":11,"e":11,"Y":7,"X":7,"S":7,"R":4,"P":7,"O":4,"N":4,"J":31,"H":4,"E":7,"A":32,"\/":36,".":14,"-":18,",":14}},"Q":{"d":"114,-255v112,1,123,152,70,228r22,27v-19,3,-20,-12,-29,-20v-20,16,-41,23,-63,23v-75,0,-98,-63,-98,-129v0,-66,23,-129,98,-129xm203,-126v0,-55,-17,-118,-89,-118v-72,0,-88,63,-88,118v0,55,16,119,88,119v19,0,39,-5,57,-20v-16,-18,-32,-28,-52,-31r0,-9v22,3,40,11,59,32v23,-30,25,-61,25,-91","w":227,"k":{"\\":7,"Y":14,"T":11}},"R":{"d":"192,0r-12,0r-54,-92v-11,-30,-48,-30,-89,-28r0,120r-10,0r0,-251v76,0,162,-13,162,66v0,41,-24,62,-75,65v35,31,51,81,78,120xm179,-185v0,-72,-77,-54,-142,-56r0,112v65,-2,142,15,142,-56","w":213,"k":{"u":4,"o":7,"h":4,"e":7,"d":7,"a":7,"Y":7,"V":7,"U":7,"T":7,"S":4,"R":-4,"Q":7,"O":4,"G":7,"C":7}},"S":{"d":"198,-67v1,91,-169,94,-181,10r10,-2v10,41,49,53,85,53v36,0,76,-19,76,-61v0,-87,-162,-38,-162,-126v0,-79,137,-80,161,-15r-9,4v-16,-30,-41,-40,-74,-40v-30,0,-68,12,-68,51v0,77,162,30,162,126","w":214,"k":{"q":-4,"Y":11,"T":11,"S":4,"A":4}},"T":{"d":"185,-242r-84,0r0,242r-10,0r0,-242r-84,0r0,-9r178,0r0,9","w":192,"k":{"y":22,"x":9,"w":22,"v":22,"u":36,"s":29,"r":11,"q":18,"p":11,"o":31,"n":31,"m":31,"g":31,"e":31,"d":14,"c":31,"a":31,"\\":-11,"Y":-4,"W":-4,"V":-7,"T":-11,"S":7,"Q":11,"O":11,"J":31,"G":11,"D":-4,"C":13,"A":29,"\/":18,".":14,"-":22,",":14}},"U":{"d":"203,-251v-6,110,31,254,-89,254v-120,0,-83,-144,-89,-254r10,0v9,103,-37,244,79,244v116,0,69,-141,79,-244r10,0","w":228,"k":{"U":7,"S":7,"P":11,"A":11,"\/":11}},"V":{"d":"192,-251r-86,251r-13,0r-86,-251r11,0r81,239r82,-239r11,0","w":198,"k":{"s":5,"o":22,"g":9,"e":22,"d":22,"c":11,"a":22,"\\":-14,"T":-7,"S":7,"Q":7,"O":7,"J":29,"G":7,"C":11,"A":25,"\/":22,".":14,",":11}},"W":{"d":"263,-251r-59,251r-12,0r-54,-234r-55,234r-12,0r-59,-251r10,0r55,234r54,-234r13,0r54,234r55,-234r10,0","w":275,"k":{"y":7,"r":7,"o":14,"g":7,"e":11,"d":18,"a":14,"\\":-14,"Z":11,"T":-4,"O":4,"J":29,"G":7,"C":4,"A":18,"\/":22,".":14,",":7}},"X":{"d":"192,0r-12,0r-78,-121r-78,121r-11,0r83,-130r-78,-121r12,0r72,112r72,-112r12,0r-78,121","w":204,"k":{"u":7,"o":5,"\\":-7,"O":11,"G":7,"C":11,"-":11}},"Y":{"d":"188,-251r-83,168r0,83r-10,0r0,-83r-83,-168r11,0r77,156r77,-156r11,0","w":199,"k":{"v":14,"u":22,"s":5,"q":14,"o":36,"g":7,"e":36,"d":32,"c":11,"a":32,"\\":-14,"U":4,"T":-4,"S":7,"Q":14,"O":14,"N":4,"J":29,"G":14,"C":11,"A":32,"\/":29,".":18,"-":11,",":14}},"Z":{"d":"186,0r-170,0r0,-12r160,-230r-146,0r0,-9r156,0r0,13r-159,228r159,0r0,10","w":205,"k":{"o":14,"e":14,"\\":-7,"Z":7,"S":7,"Q":11,"O":7,"J":14,"G":7,"C":11,"-":7}},"[":{"d":"79,22r-54,0r0,-295r54,0r0,6r-42,0r0,282r42,0r0,7","w":96,"k":{"O":7,"9":4,"8":4,"6":7,"4":18,"3":11,"1":4,"0":7}},"\\":{"d":"136,27r-11,0r-116,-306r11,0","w":145,"k":{"z":-11,"v":7,"Y":29,"W":18,"V":22,"U":7,"T":22,"Q":7,"O":7,"G":4,"C":11,"7":11,"6":7,"3":4,"0":7}},"]":{"d":"79,22r-54,0r0,-7r43,0r0,-282r-43,0r0,-6r54,0r0,295","w":96},"^":{"d":"163,-143r-8,5r-62,-108r-63,108r-8,-5r62,-108r17,0","w":184},"_":{"d":"181,8r-172,0r0,-8r172,0r0,8","w":190},"`":{"d":"78,-196r-13,0r-34,-53r17,0","w":108},"a":{"d":"150,0r-8,2r-5,-23v-36,40,-121,33,-121,-26v0,-41,39,-52,84,-48v11,0,25,0,36,-12v12,-66,-76,-80,-101,-31r-8,-2v16,-51,116,-47,118,11v1,43,-4,93,5,129xm136,-32r0,-63v-36,21,-110,-12,-110,48v0,56,83,51,110,15","w":167,"k":{"\\":18,"Y":11,"T":31,"'":18,"\"":18}},"b":{"d":"159,-86v0,48,-14,89,-68,89v-19,0,-41,-4,-56,-31r0,28r-10,0r0,-251r10,0r0,108v15,-26,38,-32,56,-32v54,0,68,41,68,89xm150,-86v0,-37,-7,-80,-59,-80v-30,0,-56,19,-56,51r0,59v0,32,26,50,56,50v52,0,59,-43,59,-80","w":175,"k":{"y":7,"v":7,"f":7,"\\":18,"Y":11,"T":31,"'":18,"\"":18}},"c":{"d":"148,-20v-16,17,-31,23,-55,23v-53,0,-77,-39,-77,-89v0,-50,24,-89,77,-89v24,0,39,6,55,23r-7,6v-13,-14,-26,-21,-48,-21v-51,0,-66,40,-66,81v0,41,15,81,66,81v22,0,35,-7,48,-21","w":166,"k":{"q":4,"o":7,"c":11,"\\":11,"Y":11,"V":11,"T":31,"'":18,"\"":18}},"d":{"d":"151,-27v0,10,11,28,-3,29r-7,-29v-14,22,-36,30,-56,30v-55,0,-69,-40,-69,-89v0,-48,16,-89,70,-89v18,0,39,7,55,30r0,-106r10,0r0,224xm141,-56r0,-59v0,-31,-25,-51,-55,-51v-52,0,-60,43,-60,80v0,37,8,80,59,80v30,0,56,-18,56,-50","w":179,"k":{"d":4}},"e":{"d":"90,-175v50,1,68,39,66,89r-130,0v0,48,17,80,68,80v21,0,36,-4,48,-18r7,6v-14,15,-31,21,-55,21v-57,0,-78,-36,-78,-89v0,-50,19,-89,74,-89xm146,-95v-1,-39,-14,-71,-56,-71v-43,0,-61,28,-64,71r120,0","w":171,"k":{"x":7,"v":4,"\\":22,"Y":11,"V":7,"T":31,"'":11,"\"":18}},"f":{"d":"96,-242v-30,-2,-56,32,-49,70r42,0r0,9r-42,0r0,163r-9,0r0,-163r-20,0r0,-9r20,0v-4,-44,16,-79,58,-79r0,9","w":102,"k":{"o":11,"f":7,"c":7,"a":7,"\\":-7,"T":-7,"'":-14,"\"":-11}},"g":{"d":"163,7v0,37,-43,61,-79,61v-33,0,-77,-17,-66,-54v5,1,10,2,8,10v0,26,37,36,58,36v28,0,70,-18,70,-53v0,-46,-63,-17,-96,-17v-39,0,-32,-43,-1,-58v-53,-25,-37,-107,28,-107v16,0,32,2,45,14v13,-3,20,-9,21,-19r9,0v-1,12,-8,21,-24,26v27,51,-8,103,-72,87v-13,8,-24,19,-24,34v0,13,8,15,17,15v39,0,106,-25,106,25xm136,-120v0,-33,-19,-47,-51,-47v-32,0,-50,14,-50,47v0,32,18,48,50,48v32,0,51,-16,51,-48","w":175,"k":{"g":7,"\\":11,"Y":7,"W":7,"V":9,"T":31,"'":11,"\"":11}},"h":{"d":"91,-175v88,-3,65,95,68,175r-9,0v-6,-72,25,-167,-59,-166v-25,0,-56,18,-56,46r0,120r-10,0r0,-251r10,0r0,108v15,-24,37,-32,56,-32","w":181,"k":{"h":5,"\\":11,"T":31,"'":18,"\"":22}},"i":{"d":"48,-240v0,17,-23,14,-23,0v0,-6,5,-11,11,-11v6,0,12,5,12,11xm41,0r-10,0r0,-172r10,0r0,172","w":72},"j":{"d":"60,-240v0,15,-24,15,-24,0v0,-14,24,-14,24,0xm53,10v0,39,-16,67,-60,69r0,-9v40,-2,50,-30,50,-60r0,-182r10,0r0,182","w":82},"k":{"d":"140,0r-13,0r-90,-91r77,-81r12,0r-77,80xm35,0r-10,0r0,-251r10,0r0,251","w":150,"k":{"q":9,"o":9,"l":4,"e":7,"\\":7,"Y":9,"T":31,"-":11,"'":7,"\"":11}},"l":{"d":"60,0v-24,-2,-35,-16,-35,-37r0,-214r10,0r0,214v0,12,5,26,25,28r0,9","w":72,"k":{"l":-4,"'":14,"\"":14}},"m":{"d":"256,0r-9,0v-6,-69,25,-166,-52,-166v-75,0,-45,97,-51,166r-9,0v-6,-69,25,-166,-52,-166v-23,0,-49,17,-49,44r0,122r-9,0r0,-172r9,0r0,28v30,-47,85,-43,106,10v10,-29,31,-41,55,-41v81,-1,58,99,61,175","w":277,"k":{"y":7,"m":5,"\\":22,"T":31,"'":18,"\"":25}},"n":{"d":"91,-175v87,-3,65,95,68,175r-9,0v-5,-73,24,-167,-59,-166v-32,0,-56,22,-56,48r0,118r-10,0r0,-172r10,0r0,29v17,-26,37,-32,56,-32","w":181,"k":{"\u2019":14,"n":5,"m":5,"\\":18,"T":31,"'":18,"\"":25}},"o":{"d":"160,-86v0,50,-17,89,-72,89v-55,0,-72,-39,-72,-89v0,-50,17,-89,72,-89v55,0,72,39,72,89xm150,-86v0,-41,-9,-80,-62,-80v-53,0,-62,39,-62,80v0,40,9,80,62,80v53,0,62,-40,62,-80","k":{"y":4,"x":7,"w":7,"v":7,"g":4,"\\":18,"Y":9,"X":5,"W":5,"V":9,"T":31,"'":14,"\"":18}},"p":{"d":"159,-86v0,48,-14,89,-68,89v-18,0,-41,-7,-56,-33r0,109r-10,0r0,-251r10,0r0,31v14,-27,38,-35,56,-35v54,0,68,42,68,90xm150,-86v0,-37,-7,-81,-59,-81v-30,0,-56,20,-56,51r0,59v0,32,26,51,56,51v52,0,59,-43,59,-80","w":175,"k":{"p":7,"\\":18,"T":14,"'":18,"\"":25}},"q":{"d":"156,-171r-6,26r0,224r-9,0r0,-107v-16,24,-37,31,-55,31v-54,0,-70,-41,-70,-89v0,-49,14,-90,69,-90v20,0,42,9,56,31r6,-29xm141,-57r0,-59v0,-32,-26,-51,-56,-51v-51,0,-59,44,-59,81v0,38,8,80,60,80v30,0,55,-20,55,-51","k":{"\\":11,"T":18,"'":18,"\"":14}},"r":{"d":"122,-170r-5,9v-38,-14,-81,11,-82,45r0,116r-10,0r0,-172r10,0r0,32v25,-37,49,-38,87,-30","w":134,"k":{"s":9,"r":7,"q":7,"o":11,"e":11,"d":11,"c":11,"a":14,"T":11,"\/":11,".":14,"-":11," ":7}},"s":{"d":"147,-46v0,64,-120,65,-132,6r9,-1v8,27,35,35,60,35v23,0,53,-10,53,-40v0,-58,-116,-25,-116,-86v0,-56,97,-56,117,-13r-8,4v-12,-20,-30,-24,-52,-24v-18,0,-47,6,-47,33v0,51,116,19,116,86","w":160,"k":{"y":4,"v":4,"s":4,"\\":22,"Y":5,"V":5,"T":29,"'":29,"\"":11}},"t":{"d":"81,-163r-32,0r0,126v0,22,7,27,27,28v-1,3,2,10,-3,9v-24,0,-34,-15,-34,-37r0,-126r-28,0r0,-9r28,0r0,-53r10,0r0,53r32,0r0,9","w":97,"k":{"t":7,"c":7,"'":7,"\"":7}},"u":{"d":"156,0r-9,0r0,-27v-41,56,-125,33,-125,-45r0,-100r9,0v6,72,-25,169,59,166v23,0,57,-17,57,-46r0,-120r9,0r0,172","w":179,"k":{"u":5,"\\":7,"Y":7,"T":13,"'":18,"\"":11}},"v":{"d":"152,-172r-65,172r-13,0r-65,-172r10,0r62,163r61,-163r10,0","w":161,"k":{"o":5,"e":7,"c":7,"T":9,"\/":11}},"w":{"d":"254,-172r-53,172r-13,0r-57,-163r-57,163r-12,0r-53,-172r9,0r50,162r57,-162r13,0r56,162r51,-162r9,0","w":263,"k":{"o":7,"e":4,"c":7,"T":9,"G":-4,"\/":11}},"x":{"d":"145,0r-11,0r-56,-81r-55,81r-12,0r62,-89r-59,-83r12,0r52,75r52,-75r11,0r-57,83","w":156,"k":{"o":7,"c":7,"T":9,"-":7}},"y":{"d":"152,-172r-83,218v-8,22,-23,34,-48,33v1,-3,-2,-9,2,-9v39,0,39,-43,53,-69r-67,-173r10,0r62,160r61,-160r10,0","w":161,"k":{"z":7,"o":4,"e":4,"d":4,"c":4,"a":7,"T":9,".":4,",":4," ":7}},"z":{"d":"144,0r-130,0r0,-14r121,-149r-111,0r0,-9r120,0r0,13r-121,150r121,0r0,9","w":160,"k":{"c":7,"\\":4,"-":7,"'":7,"\"":11}},"{":{"d":"102,22v-60,4,-57,-55,-46,-100v0,-26,-11,-42,-38,-42r0,-11v46,1,39,-49,31,-83v0,-41,14,-59,53,-59r0,9v-90,-3,5,120,-67,138v71,13,-22,140,67,138r0,10","w":120,"k":{"O":11,"8":7,"6":14,"5":4,"4":18,"3":11,"2":7,"1":7,"0":11}},"|":{"d":"43,27r-9,0r0,-306r9,0r0,306","w":77},"}":{"d":"102,-120v-49,-2,-38,52,-30,86v0,37,-15,56,-54,56r0,-10v88,3,-5,-122,68,-138v-40,-7,-33,-55,-24,-88v0,-32,-7,-50,-44,-50r0,-9v57,-6,60,56,46,100v0,25,11,42,38,42r0,11","w":120},"~":{"d":"147,-109v-8,10,-19,19,-33,19v-35,0,-62,-48,-87,-10r-7,-7v8,-10,18,-19,32,-19v27,0,38,26,62,26v11,0,21,-7,27,-16","w":167},"\u2122":{"d":"153,-176r-7,0r0,-61r-24,61r-8,0r-24,-61r0,61r-6,0r0,-75r7,0r27,68r27,-68r8,0r0,75xm72,-244r-25,0r0,68r-7,0r0,-68r-25,0r0,-7r57,0r0,7","w":173},"\u2026":{"d":"147,-9v0,16,-24,15,-24,0v0,-16,24,-14,24,0xm99,-9v0,16,-24,15,-24,0v0,-17,24,-14,24,0xm51,-9v0,7,-5,12,-12,12v-6,0,-12,-5,-12,-12v0,-6,6,-12,12,-12v7,0,12,6,12,12","w":173},"\u2013":{"d":"162,-94r-142,0r0,-10r142,0r0,10","w":181},"\u2014":{"d":"269,-94r-249,0r0,-10r249,0r0,10","w":288},"\u201c":{"d":"102,-260v-4,21,8,60,-14,63v-15,2,-10,-17,-8,-27xm50,-260v-4,21,8,58,-13,63v-15,0,-15,-17,-9,-27","w":127,"k":{"A":22}},"\u201d":{"d":"91,-264v14,0,13,16,9,27r-23,37v5,-21,-6,-58,14,-64xm39,-264v14,0,15,17,9,27r-22,37v4,-22,-7,-58,13,-64","w":127},"\u2018":{"d":"56,-260v-4,21,8,63,-14,63v-14,0,-11,-15,-9,-27","w":81,"k":{"A":14}},"\u2019":{"d":"40,-264v14,0,11,17,8,27r-22,37v4,-22,-7,-59,14,-64","w":81,"k":{"t":7,"s":18}},"\u00a0":{"w":97,"k":{"v":7,"t":7}}}});

/*
* Linotype FONT
*/

Cufon.registerFont({"w":100,"face":{"font-family":"Linotype Didot","font-weight":400,"font-style":"italic","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":"-85.5069 -281 403 105","underline-thickness":"18","underline-position":"-36","slope":"-12","stemh":"5","stemv":"22","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86},"!":{"d":"42,-64r33,-180v4,-24,30,-22,33,-3v-18,63,-43,122,-63,183r-3,0xm12,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17","w":113},"\"":{"d":"89,-157r-7,0r-5,-90v0,-8,2,-14,9,-14v11,0,9,15,8,25xm136,-157r-6,0r-6,-90v0,-8,2,-14,9,-14v11,0,9,14,9,25","w":159},"#":{"d":"114,-85r-61,0r-31,85r-7,0r31,-85r-48,0r2,-7r48,0r26,-71r-48,0r3,-7r48,0r31,-86r8,0r-32,86r61,0r31,-86r8,0r-31,86r48,0r-3,7r-48,0r-26,71r48,0r-2,7r-48,0r-31,85r-8,0xm143,-163r-61,0r-26,71r61,0","w":200},"$":{"d":"118,-153r28,-103v-72,-2,-82,73,-28,103xm114,-118r-32,118v81,-3,101,-65,50,-104xm183,-71v0,45,-46,81,-102,76r-7,26r-5,0r7,-26v-41,-2,-52,-30,-71,-4r-5,-1r19,-71v9,-2,2,11,4,16v0,23,16,52,54,55r33,-122v-23,-16,-51,-46,-49,-71v3,-48,37,-68,87,-68v4,-6,0,-20,10,-20r-5,20v30,1,45,24,61,3r5,2r-17,65v-11,2,-2,-9,-4,-16v0,-20,-9,-45,-47,-49r-28,107v24,21,60,41,60,78","w":226},"%":{"d":"147,-40v0,-26,22,-76,68,-76v28,0,43,20,43,44v0,33,-25,77,-69,77v-24,0,-42,-15,-42,-45xm60,0r156,-260r6,4r-155,260xm167,-28v0,15,6,28,24,28v40,0,47,-75,47,-84v0,-17,-7,-27,-25,-27v-35,0,-46,51,-46,83xm42,-166v0,15,6,28,24,28v40,0,47,-74,47,-83v0,-17,-6,-27,-24,-27v-35,0,-47,50,-47,82xm22,-177v0,-26,22,-76,68,-76v28,0,44,19,44,43v0,33,-26,78,-70,78v-24,0,-42,-15,-42,-45","w":280},"&":{"d":"164,-60v7,24,11,60,44,60v37,0,53,-67,55,-77r5,1v-3,9,-14,81,-63,81v-27,0,-44,-18,-58,-37v-28,56,-127,51,-127,-37v0,-62,48,-97,100,-111v4,-28,20,-81,60,-81v19,0,29,12,29,27v0,27,-42,44,-62,51v0,32,6,81,15,115v24,-49,39,-87,75,-87v28,0,44,39,17,43v-27,4,4,-38,-21,-38v-26,0,-58,68,-69,90xm119,-175v-38,11,-66,39,-66,75v0,26,3,100,42,100v26,0,41,-24,49,-36v-29,-56,-29,-83,-25,-139xm181,-256v-32,0,-33,36,-34,68v17,-5,57,-23,57,-47v0,-12,-9,-21,-23,-21","w":306},"\u2019":{"d":"59,-186r-2,-5v12,-4,46,-24,35,-51v-9,6,-25,-1,-25,-13v0,-12,6,-19,19,-19v14,0,24,12,24,27v0,41,-42,58,-51,61"},"(":{"d":"137,-260r6,4v-77,63,-119,152,-119,252v0,56,19,101,21,105r-7,4v-14,-40,-21,-72,-21,-113v0,-75,28,-180,120,-252"},")":{"d":"-54,105r-6,-5v77,-63,118,-151,118,-251v0,-56,-18,-102,-20,-106r7,-3v14,40,21,71,21,112v0,75,-28,181,-120,253"},"*":{"d":"94,-189v-21,4,-35,23,-56,28v-8,0,-13,-6,-13,-14v1,-28,46,-7,68,-16v-14,-19,-47,-19,-53,-40v7,-26,27,-14,32,7v7,13,19,27,23,31v11,-26,-14,-65,16,-68v38,12,-17,49,-14,69v22,-4,37,-24,56,-29v21,2,14,32,-3,30v-15,-1,-39,-2,-52,1v16,22,45,16,53,40v0,9,-7,15,-15,15v-21,-7,-22,-39,-40,-53v-10,22,12,67,-15,67v-18,0,-19,-22,-6,-31v8,-9,15,-25,19,-37","w":159},"+":{"d":"95,0r-8,0r0,-83r-82,0r0,-7r82,0r0,-83r8,0r0,83r82,0r0,7r-82,0r0,83","w":213},",":{"d":"-6,58r-2,-5v13,-4,43,-23,35,-51v-9,7,-25,0,-25,-12v0,-12,6,-19,19,-19v14,0,24,11,24,26v0,41,-42,58,-51,61"},"-":{"d":"19,-66r5,-22r63,0r-6,22r-62,0","w":133},".":{"d":"2,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17"},"\/":{"d":"-28,3r156,-266r6,4r-155,266","w":106},"0":{"d":"91,-159v38,0,59,26,59,62v0,46,-38,102,-91,102v-43,0,-58,-37,-58,-60v0,-50,41,-104,90,-104xm90,-154v-49,0,-63,88,-63,119v0,24,12,35,35,35v53,0,62,-107,62,-119v0,-22,-10,-35,-34,-35","w":173},"1":{"d":"-13,0r1,-5r29,0r38,-144r-29,0r1,-5r84,0v-2,10,-20,3,-30,5r-39,144r29,0r-1,5r-83,0","w":120},"2":{"d":"134,-123v2,50,-94,74,-116,99r90,0v15,1,8,-13,19,-13r-9,37r-130,0v2,-15,25,-26,71,-60v42,-31,46,-58,46,-74v0,-18,-11,-27,-28,-27v-35,0,-34,19,-30,37v0,8,-7,11,-15,11v-8,0,-15,-4,-15,-13v0,-9,10,-40,61,-40v37,0,56,20,56,43","w":159},"3":{"d":"-4,-26v16,-2,19,36,41,30v38,0,72,-50,72,-91v0,-38,-36,-51,-67,-38r-1,-5v37,-5,89,-32,89,-83v0,-23,-11,-35,-30,-35v-23,0,-31,13,-31,30v5,22,-26,28,-27,7v0,-21,25,-42,59,-42v31,0,57,19,57,45v0,42,-60,66,-80,73v25,3,61,8,60,50v0,40,-56,94,-111,94v-33,0,-44,-15,-44,-24v0,-8,7,-11,13,-11","w":173},"4":{"d":"139,-121r-31,116r41,0r-2,5r-40,0r-20,73v-6,-3,-21,-2,-27,0r19,-73r-99,0v20,-46,97,-138,141,-188v18,-22,23,-24,35,-24v25,6,21,9,-5,30v-71,61,-122,105,-162,177r92,0r31,-116r27,0","w":173},"5":{"d":"-5,-24v25,3,9,28,39,28v36,0,77,-40,77,-91v0,-44,-37,-49,-68,-49r31,-114v30,1,80,8,90,-10r3,3v-6,14,-24,34,-60,34v-13,0,-24,-1,-34,-2r-18,64v59,2,84,28,84,63v0,52,-57,109,-115,109v-21,0,-42,-7,-42,-21v0,-8,6,-14,13,-14","w":173},"6":{"d":"6,-59v0,-82,73,-194,134,-194v26,0,40,14,40,27v0,20,-30,19,-30,4v3,-15,-1,-24,-18,-24v-36,0,-60,60,-75,104v34,-30,92,-5,92,49v0,46,-42,98,-88,98v-40,0,-55,-31,-55,-64xm59,0v46,0,61,-79,64,-114v5,-46,-54,-42,-70,-18v-12,29,-25,72,-25,97v0,20,9,35,31,35","w":173},"7":{"d":"11,-99r15,-55r125,0v-26,83,-74,159,-109,235v-7,15,-14,18,-24,18v-22,0,-18,-13,-8,-27v44,-65,93,-130,128,-201v-45,5,-120,-18,-122,30r-5,0","w":173},"8":{"d":"108,-140v18,16,42,34,42,63v0,28,-30,82,-84,82v-37,0,-66,-30,-66,-63v1,-39,40,-62,72,-76v-51,-29,-33,-119,37,-119v27,0,58,16,58,49v0,34,-35,50,-59,64xm127,-64v0,-31,-33,-48,-51,-67v-36,16,-53,59,-53,82v0,27,16,49,43,49v43,0,61,-36,61,-64xm63,-201v0,25,23,44,41,58v25,-14,41,-39,41,-70v0,-24,-12,-35,-36,-35v-28,0,-46,19,-46,47","w":173},"9":{"d":"22,92v31,9,61,-50,73,-104v-33,30,-92,5,-92,-49v0,-46,42,-98,88,-98v40,0,55,31,55,64v0,82,-67,194,-131,194v-32,0,-43,-14,-43,-27v0,-20,30,-19,30,-4v-4,16,3,26,20,24xm28,-45v0,51,52,49,72,23v10,-31,24,-64,24,-99v0,-21,-10,-33,-34,-33v-43,0,-62,72,-62,109","w":173},":":{"d":"4,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17xm39,-141v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,16,-17,16v-9,0,-17,-7,-17,-16"},";":{"d":"1,58r-1,-5v13,-4,43,-23,35,-51v-9,7,-25,0,-25,-12v0,-12,6,-19,19,-19v14,0,24,11,24,26v0,41,-43,58,-52,61xm46,-141v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,16,-17,16v-9,0,-17,-7,-17,-16"},"<":{"d":"178,-173r0,7r-193,80r193,79r0,7r-205,-85r0,-3","w":213},"=":{"d":"177,-114r-172,0r0,-7r172,0r0,7xm177,-52r-172,0r0,-7r172,0r0,7","w":213},">":{"d":"4,0r0,-7r193,-79r-193,-80r0,-7r204,85r0,3","w":213},"?":{"d":"47,-64v4,-36,27,-62,48,-85v25,-26,32,-55,32,-74v0,-24,-16,-33,-33,-33v-24,0,-31,14,-31,35v0,7,-4,14,-15,14v-9,0,-13,-9,-13,-14v0,-17,23,-40,58,-40v68,0,81,65,30,107v-30,24,-64,42,-72,90r-4,0xm18,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17","w":146},"@":{"d":"203,-190r22,0v-9,34,-28,67,-28,105v0,17,11,21,19,21v26,0,60,-45,60,-90v0,-52,-40,-99,-111,-99v-82,0,-138,66,-138,132v0,106,142,156,225,84r5,7v-16,12,-50,35,-106,35v-72,0,-138,-48,-138,-126v0,-76,68,-140,150,-140v73,0,120,48,120,107v0,50,-36,99,-72,99v-29,0,-31,-24,-32,-32v-19,53,-94,34,-94,-20v0,-46,42,-87,77,-87v4,0,30,0,35,27xm138,-64v41,-8,42,-50,52,-97v0,-10,-7,-24,-24,-24v-29,0,-55,51,-55,84v0,17,6,37,27,37","w":299},"A":{"d":"-32,0v2,-10,22,-3,33,-5r180,-257r9,0r6,257r39,0r-1,5r-111,0r1,-5r39,0r-2,-101r-83,0r-70,101r36,0r-1,5r-75,0xm161,-111r-2,-109r-77,109r79,0","w":259},"B":{"d":"6,-5r89,-246r-42,0r2,-5v69,-1,164,-8,164,55v0,51,-69,60,-87,64v13,3,61,17,61,61v0,83,-127,81,-225,76r1,-5r37,0xm160,-90v-3,-45,-29,-47,-74,-46r-47,131v74,14,125,-39,121,-85xm127,-251r-39,110v58,5,96,-11,97,-69v1,-30,-23,-45,-58,-41","w":233},"C":{"d":"252,-256r-24,69r-5,0v10,-40,-12,-69,-53,-69v-75,0,-122,141,-122,198v0,39,23,58,61,58v43,0,68,-34,79,-55r4,2v-6,11,-30,58,-84,58v-65,0,-87,-52,-87,-103v0,-87,86,-163,150,-163v41,0,57,29,76,4","w":233},"D":{"d":"9,-5r88,-246r-41,0r1,-5r109,0v68,0,98,46,98,98v-1,85,-81,171,-202,159r-92,-1r2,-5r37,0xm234,-188v0,-58,-42,-67,-104,-63r-88,246v126,20,192,-85,192,-183","w":286},"E":{"d":"7,-5r88,-246r-42,0r2,-5r200,0r-22,61r-5,0v6,-22,10,-56,-25,-56r-76,0r-40,111r34,0v31,0,47,-37,52,-46r5,0r-38,105r-5,0v10,-22,5,-57,-25,-54r-24,0r-47,130r84,0v39,0,67,-52,75,-66r5,0r-26,71r-209,0r1,-5r38,0","w":246},"F":{"d":"8,-5r88,-246r-41,0r2,-5r203,0r-22,61r-5,0v4,-22,12,-56,-25,-56r-79,0r-42,117r51,0v30,0,45,-36,50,-46r5,0r-37,105r-5,0v7,-23,7,-60,-30,-54r-36,0r-45,124r42,0r-1,5r-111,0r1,-5r37,0","w":240},"G":{"d":"211,-84r-31,84v-9,1,-4,-9,-15,-9v-10,0,-26,14,-57,14v-65,0,-87,-52,-87,-103v0,-87,86,-163,150,-163v41,0,57,29,76,4r5,1r-24,69r-5,0v10,-40,-12,-69,-53,-69v-75,0,-122,141,-122,198v0,68,94,74,112,24r18,-50r-41,0r1,-5r103,0v-2,10,-20,3,-30,5","w":259},"H":{"d":"-31,0r2,-5r37,0r88,-246r-41,0r2,-5r111,0r-2,5r-37,0r-42,117r116,0r42,-117r-41,0r1,-5r111,0r-1,5r-37,0r-89,246r41,0r-1,5r-112,0r2,-5r37,0r45,-124r-116,0r-45,124r42,0r-2,5r-111,0","w":286},"I":{"d":"-30,0r2,-5r37,0r88,-246r-41,0r1,-5r112,0r-2,5r-37,0r-89,246r41,0r-1,5r-111,0","w":140},"J":{"d":"47,-31r80,-220r-41,0r2,-5r110,0r-1,5r-37,0v-34,79,-46,170,-99,232v-14,15,-30,24,-47,24v-35,8,-52,-54,-16,-54v39,0,-13,45,17,49v6,0,21,1,32,-31","w":166},"K":{"d":"151,-5r-63,-127r-3,0r-45,127r41,0r-1,5r-111,0r1,-5r38,0r88,-246r-41,0r1,-5r111,0r-2,5r-37,0r-41,114v54,-34,99,-77,150,-114r-40,0r1,-5r75,0v-1,9,-17,4,-26,5r-134,103r75,143r34,0r-2,5r-109,0r1,-5r39,0","w":253},"L":{"d":"7,-5r88,-246r-41,0r1,-5r112,0r-1,5r-38,0r-88,246r84,0v38,0,66,-51,74,-66r5,0r-25,71r-210,0r2,-5r37,0","w":226},"M":{"d":"140,0r1,-5r38,0r88,-246r-174,251r4,-251r-87,246r41,0r-2,5r-84,0r2,-5r37,0r89,-246r-42,0r2,-5r77,0r-4,199r138,-199r74,0r-1,5r-37,0r-88,246r41,0r-2,5r-111,0","w":306},"N":{"d":"156,5r-63,-243r-83,233r41,0r-1,5r-84,0r2,-5r37,0r88,-246r-42,0r2,-5r68,0r52,203r70,-198r-41,0r1,-5r85,0r-2,5r-37,0r-91,256r-2,0","w":253},"O":{"d":"22,-98v0,-83,82,-163,154,-163v63,0,84,56,84,104v0,78,-76,162,-156,162v-48,0,-82,-36,-82,-103xm49,-57v0,30,12,57,57,57v85,0,125,-142,125,-197v0,-37,-18,-59,-56,-59v-81,0,-126,136,-126,199","w":280},"P":{"d":"7,-5r88,-246r-41,0r1,-5r87,0v55,0,86,30,86,66v0,64,-84,91,-150,79r-38,106r41,0r-2,5r-111,0r2,-5r37,0xm128,-251r-48,135v64,16,115,-32,115,-88v0,-37,-27,-50,-67,-47","w":226},"Q":{"d":"220,64v2,8,-9,4,-14,5v-40,3,-88,-16,-105,-48v-36,-33,-79,-28,-79,-119v0,-83,82,-163,154,-163v63,0,84,56,84,104v-1,83,-81,169,-170,162v33,29,67,9,91,43v12,17,24,16,39,16xm49,-57v0,30,12,57,57,57v85,0,125,-142,125,-197v0,-37,-18,-59,-56,-59v-81,0,-126,136,-126,199","w":280},"R":{"d":"143,-37v5,-52,32,-107,-56,-99r-47,131r41,0r-2,5r-111,0r2,-5r37,0r88,-246r-41,0r2,-5v71,2,159,-16,163,55v3,53,-76,60,-88,64v15,2,53,9,53,44v0,31,-29,97,20,88r2,5v-29,6,-65,-2,-63,-37xm88,-141v63,1,97,-7,97,-70v0,-33,-24,-43,-57,-40","w":233},"S":{"d":"-18,1r26,-72r5,0v-19,40,21,71,60,71v64,0,87,-68,45,-104v-25,-22,-63,-52,-63,-89v0,-41,41,-68,83,-68v37,0,55,27,73,4r5,1r-24,68r-5,0v12,-37,-13,-74,-49,-68v-65,-3,-74,69,-31,95v24,23,64,47,64,87v0,36,-33,79,-100,79v-35,0,-51,-15,-70,-15v-11,0,-10,14,-19,11","w":213},"T":{"d":"60,-5r88,-246r-35,0v-40,0,-65,52,-74,66r-5,0r25,-71r217,0r-25,71r-5,0v5,-29,9,-68,-30,-66r-36,0r-88,246r41,0r-1,5r-111,0r1,-5r38,0","w":246},"U":{"d":"51,-251r2,-5r111,0r-1,5r-38,0v-21,68,-66,129,-66,206v0,24,16,45,47,45v59,0,83,-47,96,-87r51,-164r-41,0r2,-5r84,0r-1,5r-38,0r-53,169v-19,59,-50,87,-103,87v-88,0,-80,-63,-58,-124r48,-132r-42,0","w":266},"V":{"d":"27,-256r111,0r-2,5r-38,0r0,213r149,-213r-36,0r2,-5r72,0r-1,5r-30,0r-179,256r-9,0r-2,-256r-39,0","w":253},"W":{"d":"66,5r2,-256r-39,0r1,-5r106,0r-1,5r-35,0r-2,212r94,-141r1,-71r-38,0r2,-5r109,0r-2,5r-40,0r-2,209r141,-209r-35,0r1,-5r74,0r-1,5r-32,0r-172,256r-8,0r1,-174r-116,174r-9,0","w":373},"X":{"d":"143,-5r-31,-117r-103,117r36,0r-1,5r-71,0v2,-10,19,-3,29,-5r107,-122r-32,-124r-39,0r2,-5r110,0r-2,5r-38,0r27,101r88,-101r-34,0r1,-5r70,0r-1,5r-29,0r-93,106r37,140r38,0r-2,5r-109,0r1,-5r39,0","w":246},"Y":{"d":"20,-5r40,0r40,-111r-25,-135r-40,0r2,-5r111,0r-2,5r-40,0r24,123r109,-123r-35,0r2,-5r70,0r-1,5r-28,0r-115,129r-42,117r41,0r-1,5r-111,0","w":233},"Z":{"d":"-18,0r217,-251r-76,0v-37,0,-65,49,-74,65r-5,0r25,-70r173,0r-218,251r98,0v37,0,65,-51,73,-66r6,0r-26,71r-193,0","w":233},"[":{"d":"-18,101r96,-357r44,0r-2,7r-36,0r-92,343r37,0r-2,7r-45,0"},"\\":{"d":"49,-263r16,266r-7,4r-17,-266","w":106},"]":{"d":"90,-256r-95,357r-45,0r2,-7r37,0r92,-343r-38,0r2,-7r45,0"},"^":{"d":"102,-243r-56,133r-8,0r62,-146r3,0r63,146r-8,0","w":213},"_":{"d":"180,27r0,11r-180,0r0,-11r180,0","w":180},"\u2018":{"d":"109,-274r1,5v-12,4,-45,24,-34,51v8,-6,24,0,24,12v0,12,-6,20,-19,20v-14,0,-24,-12,-24,-27v0,-41,43,-58,52,-61"},"a":{"d":"170,-154v-15,47,-47,90,-47,142v0,6,3,9,9,9v19,0,30,-25,33,-31r5,3v-5,11,-19,36,-46,36v-25,0,-28,-20,-20,-42v-16,34,-105,74,-105,-4v0,-58,76,-118,113,-118v15,-1,24,11,27,22r6,-17r25,0xm44,0v62,-14,75,-78,91,-132v0,-8,-4,-22,-21,-22v-48,0,-90,88,-90,128v0,15,6,26,20,26","w":193},"b":{"d":"55,-274r58,0r-55,157v12,-18,33,-42,59,-42v30,0,45,24,45,48v0,57,-69,116,-112,116v-31,0,-48,-39,-35,-76r71,-198r-32,0xm28,-24v0,15,7,24,22,24v44,0,90,-85,90,-131v0,-15,-9,-23,-24,-23v-40,0,-88,81,-88,130","w":186},"c":{"d":"119,-38r5,3v-12,18,-31,40,-65,40v-36,0,-55,-26,-55,-55v0,-49,50,-109,103,-109v16,0,33,7,33,29v0,23,-28,24,-30,10v4,-13,21,-34,-6,-34v-46,0,-75,76,-75,117v0,21,12,37,36,37v27,0,45,-23,54,-38","w":146},"d":{"d":"212,-274r-81,229v-4,16,-17,38,1,42v19,0,30,-25,33,-31r5,3v-5,11,-19,36,-46,36v-25,0,-28,-20,-20,-42v-16,34,-105,74,-105,-4v0,-58,76,-118,113,-118v15,-1,24,11,27,22r46,-132r-31,0r1,-5r57,0xm44,0v62,-14,75,-78,91,-132v0,-8,-4,-22,-21,-22v-48,0,-90,88,-90,128v0,15,6,26,20,26","w":193},"e":{"d":"116,-38r4,3v-5,7,-22,40,-63,40v-41,0,-56,-32,-56,-55v0,-48,51,-109,101,-109v19,0,40,8,40,27v-10,45,-74,52,-107,46v-14,31,-15,86,27,86v30,0,47,-28,54,-38xm120,-137v0,-9,-6,-17,-19,-17v-31,0,-55,38,-64,63v40,10,83,-16,83,-46","w":153},"f":{"d":"19,-149v3,-10,25,-3,36,-5v10,-62,58,-121,105,-120v24,0,35,16,35,28v0,8,-4,18,-16,18v-36,-1,12,-39,-20,-41v-55,9,-68,72,-79,115r44,0r-1,5r-45,0v-23,83,-46,235,-125,241v-12,0,-30,-5,-30,-24v0,-9,5,-17,17,-17v24,-2,-6,36,18,36v20,0,39,-26,56,-88r39,-148r-34,0","w":119},"g":{"d":"6,-32v0,21,54,16,79,18v28,2,48,13,48,41v0,32,-33,78,-90,78v-38,0,-70,-22,-70,-45v0,-30,30,-45,48,-54v-9,-3,-27,-6,-27,-28v0,-20,20,-35,39,-43v-34,-39,21,-94,62,-94v24,0,39,13,44,23v6,-22,51,-29,51,3v0,9,-4,15,-15,15v-27,-1,7,-28,-12,-32v-8,0,-16,8,-21,19v29,51,-61,103,-105,70v-15,5,-31,18,-31,29xm47,-85v0,23,11,30,29,30v32,0,46,-43,46,-71v0,-21,-12,-28,-28,-28v-30,0,-47,45,-47,69xm119,40v0,-35,-81,-41,-102,-25v-13,10,-20,23,-20,43v0,30,23,42,45,42v41,0,77,-30,77,-60","w":186},"h":{"d":"-1,0r97,-269r-33,0r2,-5r57,0r-60,163v15,-19,39,-46,66,-46v73,16,-2,97,-3,145v0,6,1,12,9,12v17,0,30,-22,35,-33r4,2v-5,9,-16,36,-44,36v-25,0,-33,-20,-24,-43v12,-33,26,-64,34,-100v0,-6,-4,-14,-14,-14v-21,0,-59,34,-74,77r-27,75r-25,0","w":193},"i":{"d":"5,-17v10,-47,30,-88,44,-132r-32,0r1,-5r57,0r-48,143v0,6,3,11,10,11v16,0,31,-25,35,-33r4,2v-4,8,-16,36,-45,36v-16,0,-26,-7,-26,-22xm71,-239v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17"},"j":{"d":"23,-154r58,0r-57,159v-8,23,-39,87,-80,87v-22,6,-46,-39,-14,-42v27,-2,-7,37,20,37v13,0,25,-16,36,-47r68,-189r-32,0xm77,-239v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17"},"k":{"d":"60,-100v42,7,56,-61,90,-59v10,0,18,6,18,20v0,19,-28,23,-28,7v0,-7,7,-15,-3,-16v-15,4,-40,45,-54,51v10,1,24,4,30,29v6,21,3,57,22,65v13,0,24,-24,27,-32r5,2v-5,27,-58,64,-69,12v-12,-26,1,-76,-40,-74r-34,95r-25,0r96,-269r-32,0r1,-5r58,0","w":186},"l":{"d":"61,-274r57,0r-91,263v0,6,3,11,10,11v16,0,31,-25,35,-33r4,2v-4,8,-16,36,-45,36v-30,0,-27,-28,-19,-49r80,-225r-32,0"},"m":{"d":"-3,0r53,-149r-33,0r1,-5r57,0r-13,41v12,-17,37,-44,63,-44v25,0,30,23,27,42v10,-14,33,-42,58,-42v74,16,-4,98,-3,147v0,4,1,10,9,10v17,0,29,-22,35,-33r4,2v-5,9,-16,36,-44,36v-25,1,-33,-19,-23,-43v13,-32,25,-64,33,-100v0,-8,-3,-14,-14,-14v-43,3,-81,100,-96,152r-25,0v15,-46,35,-88,47,-137v0,-9,-3,-15,-12,-15v-18,0,-53,26,-71,77r-27,75r-26,0","w":273},"n":{"d":"-1,0r52,-149r-33,0r1,-5r57,0r-14,44v23,-31,46,-47,66,-47v73,16,-2,97,-3,145v0,6,1,12,9,12v17,0,30,-22,35,-33r4,2v-5,9,-16,36,-44,36v-25,0,-33,-20,-24,-43v12,-33,26,-64,34,-100v0,-6,-4,-14,-14,-14v-21,0,-59,34,-74,77r-27,75r-25,0","w":193},"o":{"d":"0,-57v0,-58,53,-102,95,-102v38,0,55,34,55,61v0,55,-53,103,-94,103v-34,0,-56,-30,-56,-62xm24,-36v0,24,13,36,31,36v45,0,71,-87,71,-117v0,-23,-9,-37,-33,-37v-42,0,-69,80,-69,118","w":173},"p":{"d":"-36,96r86,-245r-33,0r1,-5r57,0v-2,7,-8,17,-7,23v7,-10,24,-28,47,-28v36,0,53,29,53,63v0,40,-40,101,-97,101v-20,1,-33,-16,-38,-35r-44,126r30,0r-1,5r-82,0v2,-9,19,-3,28,-5xm114,-154v-59,0,-57,71,-78,116v4,18,11,38,35,38v40,0,72,-77,72,-116v0,-21,-8,-38,-29,-38","w":193},"q":{"d":"57,96r46,-131v-9,12,-33,40,-61,40v-21,0,-42,-14,-42,-42v0,-59,73,-122,113,-122v20,-1,23,17,27,25r7,-20r25,0r-90,250r30,0r-2,5r-86,0v2,-10,22,-3,33,-5xm45,0v58,-15,76,-73,89,-129v0,-16,-8,-25,-21,-25v-44,0,-88,94,-88,130v0,13,6,24,20,24","w":193},"r":{"d":"2,0r51,-149r-32,0r2,-5r55,0r-12,42v10,-14,28,-45,54,-45v33,0,34,46,8,43v-30,-2,15,-35,-12,-38v-40,7,-73,103,-89,152r-25,0","w":146},"s":{"d":"28,0v60,-5,33,-58,9,-80v-31,-30,-5,-78,43,-79v20,0,34,10,34,24v0,18,-27,20,-28,4v3,-10,11,-23,-7,-23v-38,0,-43,35,-20,58v9,15,28,29,29,51v0,32,-36,50,-61,50v-22,0,-43,-10,-43,-28v0,-15,24,-25,27,-9v-5,16,-4,34,17,32","w":126},"t":{"d":"50,-154r13,-36r25,0r-13,36r39,0r-1,5r-39,0r-41,114v-5,11,-13,34,6,35v17,0,31,-25,35,-33r4,2v-4,8,-16,36,-46,36v-35,0,-28,-32,-19,-56r36,-98r-33,0v3,-10,23,-3,34,-5","w":106},"u":{"d":"15,-149r2,-5r58,0r-48,141v0,7,3,13,12,13v52,0,86,-98,103,-154r25,0r-48,143v0,6,3,11,10,11v16,0,30,-25,34,-33r5,2v-4,8,-16,36,-45,36v-30,0,-28,-28,-21,-47v-13,18,-38,47,-63,47v-34,1,-37,-28,-27,-55r35,-99r-32,0","w":186},"v":{"d":"54,-15v-10,8,-13,24,-21,17v13,-31,-16,-60,-17,-91v-1,-24,26,-53,50,-73v8,12,-26,27,-26,57v0,26,18,54,19,78v22,-17,65,-49,65,-82v0,-22,-12,-26,-12,-39v0,-8,8,-11,17,-11v11,0,17,9,17,26v-2,54,-59,90,-92,118","w":166},"w":{"d":"143,-140v9,-6,20,-28,26,-18v-6,7,-29,27,-29,53v-1,26,18,54,19,78v22,-17,65,-49,65,-82v0,-22,-12,-26,-12,-39v0,-8,8,-11,17,-11v11,0,17,9,17,26v-3,66,-80,94,-108,138v-9,-4,5,-29,-6,-40r-13,-40v-27,26,-64,49,-84,80v-7,-5,5,-29,-5,-40v-27,-51,-14,-96,34,-127v8,11,-26,25,-26,56v0,26,18,54,19,78v22,-17,65,-49,65,-82v0,-22,-12,-25,-12,-38v0,-8,7,-11,16,-11v10,0,17,11,17,19","w":266},"x":{"d":"23,0v29,8,66,-93,67,-129v0,-14,-5,-25,-19,-25v-23,0,-40,30,-45,40r-5,-3v4,-9,21,-42,52,-42v25,0,32,21,35,31v6,-9,27,-31,51,-31v21,0,31,14,31,28v5,15,-26,30,-30,11v3,-11,20,-34,-3,-34v-37,0,-66,104,-66,126v0,16,6,28,19,28v24,0,40,-28,46,-40r5,3v-5,9,-22,42,-53,42v-23,0,-31,-21,-34,-31v-13,15,-29,31,-54,31v-39,0,-43,-45,-14,-48v29,4,-21,43,17,43","w":200},"y":{"d":"6,-112r-5,-1v4,-15,10,-46,36,-46v57,2,37,96,33,129r55,-99v8,-14,15,-30,34,-30v12,0,16,7,16,14v0,12,-19,22,-23,9v1,-6,9,-16,-1,-16v-6,0,-12,7,-22,26r-87,158v-17,31,-35,60,-60,60v-30,0,-44,-40,-14,-40v23,0,-7,35,19,35v27,0,63,-75,63,-151v0,-75,-9,-90,-17,-90v-17,0,-24,30,-27,42","w":166},"z":{"d":"119,-5v27,-9,-7,-22,-7,-39v6,-20,32,-13,30,9v-6,84,-108,-2,-147,40r-4,-4r116,-131v-35,3,-79,-16,-83,14r-5,-1v7,-14,2,-38,18,-39v21,-3,87,10,98,-2r3,3r-111,124v30,-2,65,20,92,26","w":166},"{":{"d":"17,-78v29,0,42,33,30,64v-13,34,-39,107,22,108r-1,7v-14,-2,-46,-7,-46,-41v0,-38,20,-63,22,-101v2,-29,-28,-30,-38,-38v73,-10,61,-53,77,-104v17,-53,27,-73,80,-73r-1,6v-104,-14,-46,171,-145,172","w":146},"|":{"d":"36,90r0,-360r8,0r0,360r-8,0","w":79},"}":{"d":"106,-78v-29,-2,-46,-32,-29,-64v10,-37,38,-107,-22,-108r2,-6v15,2,45,7,45,40v-1,27,-23,68,-23,102v0,27,23,32,38,35v-67,13,-62,54,-78,106v-16,56,-32,74,-81,74r1,-7v60,10,71,-60,85,-116v10,-38,24,-53,62,-56","w":146},"~":{"d":"40,-107v40,0,70,33,105,33v21,0,33,-18,41,-41r6,0v-6,25,-33,67,-79,40v-25,-8,-46,-24,-76,-24v-28,0,-36,27,-40,41r-7,0v5,-16,15,-49,50,-49","w":213},"'":{"d":"83,-157r-7,0r-5,-90v0,-8,2,-14,9,-14v11,0,9,15,8,25"},"\u201c":{"d":"171,-274r2,5v-12,4,-46,24,-35,51v9,-5,25,0,25,12v0,12,-6,20,-19,20v-14,0,-24,-12,-24,-27v0,-41,42,-58,51,-61xm115,-274r1,5v-12,4,-45,24,-34,51v8,-6,24,0,24,12v0,12,-6,20,-19,20v-14,0,-24,-12,-24,-27v0,-41,43,-58,52,-61","w":159},"\u2013":{"d":"-10,-76r2,-5r180,0r-2,5r-180,0","w":180},"\u201d":{"d":"121,-186r-1,-5v12,-4,45,-24,34,-51v-9,6,-24,-1,-24,-13v0,-12,6,-19,19,-19v14,0,24,12,24,27v0,41,-43,58,-52,61xm65,-186r-2,-5v12,-4,46,-24,35,-51v-9,6,-25,-1,-25,-13v0,-12,7,-19,20,-19v14,0,23,12,23,27v0,41,-42,58,-51,61","w":159},"\u2026":{"d":"43,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17xm163,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17xm283,-12v0,-9,8,-17,17,-17v9,0,17,8,17,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17","w":360},"`":{"d":"90,-199v-24,-6,-35,-27,-54,-38v-12,-7,-10,-22,5,-23v7,0,10,5,13,10"},"\u2014":{"d":"37,-76r2,-5r266,0r-2,5r-266,0","w":360},"\u00d7":{"d":"166,-7r-75,-75r-75,75r-4,-5r74,-74r-74,-75r4,-5r75,75r75,-75r5,5r-75,75r75,74","w":213},"\u2122":{"d":"143,-120r0,4r-62,0r0,-4r21,0r0,-132v-24,1,-32,-5,-47,33r-3,0r0,-37r120,0r0,37r-3,0v-14,-37,-23,-33,-47,-33r0,132r21,0xm183,-116r0,-4r20,0r0,-132r-20,0r0,-4r44,0r36,104r36,-104r43,0r0,4r-21,0r0,132r21,0r0,4r-62,0r0,-4r20,0r0,-128r-46,134r-46,-133r0,127r20,0r0,4r-45,0","w":353},"\u00a0":{"w":86}}});
