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


(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);


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


Cufon.registerFont({"w":426,"face":{"font-family":"Helvetica Neue LT","font-weight":100,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 2 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-38 -891 1000 289","underline-thickness":"50","underline-position":"-100","stemh":" 34 ","stemv":" 38 ","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":240},"!":{"d":"90,-714r42,0r0,230r-6,298r-30,0r-6,-298r0,-230xm90,0r0,-96r42,0r0,96r-42,0","w":222},"\"":{"d":"75,-486r0,-228r34,0r0,228r-34,0xm187,-486r0,-228r34,0r0,228r-34,0","w":296},"#":{"d":"292,-225r-137,0r-31,225r-34,0r31,-225r-108,0r0,-34r112,0r25,-178r-109,0r0,-34r113,0r31,-225r34,0r-31,225r137,0r31,-225r34,0r-31,225r108,0r0,34r-112,0r-25,178r109,0r0,34r-113,0r-31,225r-34,0xm296,-259r25,-178r-137,0r-25,178r137,0","w":480},"$":{"d":"255,-338r0,316v86,-7,149,-68,149,-158v0,-104,-64,-134,-149,-158xm225,-390r0,-284v-73,4,-135,45,-135,143v0,85,52,120,135,141xm225,96r0,-84v-162,-9,-194,-109,-191,-220r42,0v-5,112,33,177,149,186r0,-326v-93,-28,-177,-72,-177,-179v0,-109,72,-178,177,-181r0,-70r30,0r0,70v124,7,175,78,175,187r-42,0v0,-88,-38,-147,-133,-153r0,294v105,31,191,72,191,197v0,121,-82,190,-191,195r0,84r-30,0","w":480},"%":{"d":"420,-165v0,117,34,147,88,147v52,0,88,-30,88,-147v0,-117,-34,-147,-88,-147v-46,0,-88,30,-88,147xm172,12r303,-720r34,0r-303,720r-34,0xm89,-531v0,117,34,147,88,147v52,0,88,-30,88,-147v0,-117,-34,-147,-88,-147v-46,0,-88,30,-88,147xm386,-165v0,-114,37,-177,122,-177v95,0,122,63,122,177v0,118,-39,177,-122,177v-97,0,-122,-63,-122,-177xm55,-531v0,-114,37,-177,122,-177v95,0,122,63,122,177v0,118,-39,177,-122,177v-97,0,-122,-63,-122,-177","w":685},"&":{"d":"481,0r-72,-100v-44,64,-104,112,-200,112v-135,0,-189,-100,-189,-182v0,-115,91,-174,170,-235v-36,-49,-89,-119,-89,-183v0,-74,59,-126,134,-126v92,0,132,65,132,124v1,86,-70,146,-129,193r165,230v18,-39,27,-89,27,-132r38,0v0,54,-14,116,-41,165r96,134r-42,0xm218,-427v54,-38,111,-90,111,-162v0,-56,-40,-91,-93,-91v-64,0,-97,42,-97,98v1,50,49,118,79,155xm387,-130r-177,-247v-64,50,-148,116,-148,201v0,90,64,154,152,154v81,0,140,-56,173,-108","w":537},"\u2019":{"d":"117,-714r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0r0,-102r42,0","w":184},"(":{"d":"220,184r-30,0v-63,-105,-124,-256,-124,-449v0,-193,61,-344,124,-449r30,0v-66,109,-120,273,-120,449v0,176,54,340,120,449","w":222},")":{"d":"2,-714r30,0v63,105,124,256,124,449v0,193,-61,344,-124,449r-30,0v66,-109,120,-273,120,-449v0,-176,-54,-340,-120,-449","w":222},"*":{"d":"30,-617r12,-30r92,44r0,-111r30,0r0,111r90,-44r12,28r-87,42r59,80r-26,19r-63,-88r-66,88r-26,-19r62,-80","w":296},"+":{"d":"283,0r0,-236r-236,0r0,-34r236,0r0,-236r34,0r0,236r236,0r0,34r-236,0r0,236r-34,0","w":600},",":{"d":"99,0r0,-102r42,0r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0","w":240},"-":{"d":"63,-255r0,-34r189,0r0,34r-189,0","w":315},".":{"d":"99,0r0,-102r42,0r0,102r-42,0","w":240},"\/":{"d":"-9,12r256,-738r40,0r-256,738r-40,0","w":278},"0":{"d":"84,-348v0,269,58,326,156,326v98,0,156,-61,156,-326v0,-133,0,-326,-156,-326v-156,0,-156,217,-156,326xm42,-348v0,-247,62,-360,198,-360v147,0,198,109,198,360v0,261,-64,360,-198,360v-144,0,-198,-111,-198,-360","w":480},"1":{"d":"244,0r0,-636v-34,39,-108,78,-169,84r0,-34v71,-7,151,-60,173,-122r34,0r0,708r-38,0","w":480},"2":{"d":"434,0r-388,0v0,-101,46,-182,123,-247v84,-71,217,-135,217,-272v0,-91,-51,-155,-144,-155v-108,0,-149,91,-149,181r-42,0v0,-121,67,-215,195,-215v73,0,182,39,182,190v0,150,-134,216,-224,293v-60,52,-116,125,-116,187r346,0r0,38","w":480},"3":{"d":"199,-353r0,-34v110,7,174,-34,174,-144v0,-89,-48,-143,-136,-143v-103,0,-138,79,-140,157r-42,0v0,-111,69,-191,184,-191v103,0,176,63,176,176v0,81,-43,144,-120,164v89,8,143,80,143,169v0,122,-73,211,-207,211v-122,0,-184,-82,-189,-196r42,0v0,86,48,162,149,162v85,0,163,-50,163,-176v0,-101,-69,-165,-197,-155","w":480},"4":{"d":"322,-225r0,-418r-2,0r-249,418r251,0xm322,0r0,-191r-289,0r0,-38r285,-479r42,0r0,483r87,0r0,34r-87,0r0,191r-38,0","w":480},"5":{"d":"55,-331r42,-365r305,0r0,38r-273,0r-34,281r2,0v28,-50,85,-82,147,-82v131,0,192,101,192,225v0,129,-60,246,-203,246v-140,0,-191,-94,-189,-189r42,0v1,93,55,155,143,155v118,0,165,-96,165,-209v0,-110,-53,-194,-154,-194v-88,0,-128,61,-143,94r-42,0","w":480},"6":{"d":"419,-547r-42,0v0,-56,-36,-127,-128,-127v-129,0,-176,163,-167,357v17,-60,61,-135,168,-135v114,0,188,81,188,224v0,139,-63,240,-199,240v-171,0,-197,-169,-197,-331v0,-208,32,-389,211,-389v135,0,166,114,166,161xm92,-217v0,89,39,195,149,195v96,0,155,-69,155,-206v0,-106,-47,-190,-151,-190v-106,0,-153,88,-153,201","w":480},"7":{"d":"437,-696r0,38v-184,210,-268,537,-268,658r-46,0v0,-141,110,-468,276,-658r-356,0r0,-38r394,0","w":480},"8":{"d":"374,-535v0,-81,-48,-139,-134,-139v-86,0,-134,58,-134,139v0,88,55,138,134,138v82,0,134,-50,134,-138xm84,-191v0,105,59,169,156,169v93,0,156,-64,156,-169v0,-118,-60,-172,-156,-172v-87,0,-156,54,-156,172xm42,-191v0,-110,63,-172,139,-189v-77,-15,-117,-80,-117,-155v0,-104,66,-173,176,-173v111,0,176,69,176,173v0,75,-40,134,-114,157v84,12,136,80,136,187v0,124,-76,203,-199,203v-122,0,-197,-79,-197,-203","w":480},"9":{"d":"61,-149r42,0v0,56,36,127,128,127v129,0,176,-163,167,-358v-17,61,-61,136,-168,136v-114,0,-188,-81,-188,-224v0,-139,63,-240,199,-240v171,0,197,169,197,331v0,209,-32,389,-211,389v-135,0,-166,-114,-166,-161xm388,-479v0,-89,-39,-195,-149,-195v-96,0,-155,69,-155,206v0,106,47,190,151,190v106,0,153,-88,153,-201","w":480},":":{"d":"99,0r0,-102r42,0r0,102r-42,0xm99,-395r0,-102r42,0r0,102r-42,0","w":240},";":{"d":"99,0r0,-102r42,0r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0xm99,-395r0,-102r42,0r0,102r-42,0","w":240},"<":{"d":"47,-236r0,-34r506,-242r0,30r-476,229r476,229r0,30","w":600},"=":{"d":"47,-334r0,-34r506,0r0,34r-506,0xm47,-138r0,-34r506,0r0,34r-506,0","w":600},">":{"d":"553,-270r0,34r-506,242r0,-30r476,-229r-476,-229r0,-30","w":600},"?":{"d":"183,-183r0,-50v0,-169,166,-171,166,-327v0,-83,-52,-132,-131,-132v-113,0,-143,90,-141,183r-42,0v-3,-105,39,-217,182,-217v132,0,174,91,174,164v0,179,-166,173,-166,327r0,52r-42,0xm183,0r0,-96r42,0r0,96r-42,0"},"@":{"d":"228,-288v0,75,42,117,105,117v108,0,187,-168,187,-257v0,-46,-8,-115,-95,-115v-121,0,-197,148,-197,255xm572,-557r42,0r-95,292v-18,41,-28,94,24,94v94,0,184,-126,184,-251v0,-170,-154,-270,-310,-270v-190,0,-344,155,-344,339v0,194,172,331,346,331v114,0,221,-57,286,-148r42,0v-63,112,-195,182,-328,182v-223,0,-388,-158,-388,-372v0,-208,174,-366,384,-366v199,0,354,122,354,305v0,149,-129,284,-240,284v-40,0,-65,-28,-70,-70v-34,45,-83,70,-139,70v-81,0,-134,-68,-134,-148v0,-135,101,-292,245,-292v69,0,104,48,117,90","w":800},"A":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0","w":481},"B":{"d":"61,0r0,-714r192,0v140,0,187,72,187,178v0,99,-57,147,-132,162v103,7,155,82,155,180v0,120,-78,194,-204,194r-198,0xm103,-391r137,0v92,0,158,-44,158,-145v0,-97,-48,-144,-140,-144r-155,0r0,289xm103,-34r141,0v116,0,177,-43,177,-161v1,-183,-152,-163,-318,-162r0,323","w":500},"C":{"d":"467,-509r-42,0v0,-96,-51,-183,-156,-183v-142,0,-189,133,-189,334v0,192,39,336,183,336v138,0,171,-162,171,-218r42,0v0,84,-42,252,-220,252v-155,0,-218,-137,-218,-368v0,-224,63,-370,229,-370v167,0,200,147,200,217","w":500},"D":{"d":"103,-34r121,0v152,0,215,-104,215,-323v0,-219,-51,-323,-215,-323r-121,0r0,646xm61,0r0,-714v279,-5,420,-19,420,357v0,293,-122,357,-257,357r-163,0","w":519},"E":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0"},"F":{"d":"61,0r0,-714r342,0r0,38r-300,0r0,285r279,0r0,38r-279,0r0,353r-42,0","w":407},"G":{"d":"447,0v-2,-46,4,-102,-2,-144v-23,97,-87,156,-188,156v-156,0,-219,-137,-219,-368v0,-224,63,-370,229,-370v167,0,200,147,200,217r-42,0v0,-96,-51,-183,-156,-183v-142,0,-189,133,-189,334v0,192,39,336,183,336v150,0,182,-151,176,-301r-196,0r0,-34r238,0r0,357r-34,0","w":519},"H":{"d":"61,0r0,-714r42,0r0,313r313,0r0,-313r42,0r0,714r-42,0r0,-363r-313,0r0,363r-42,0","w":519},"I":{"d":"61,0r0,-714r42,0r0,714r-42,0","w":164},"J":{"d":"66,-209v-5,116,34,187,116,187v62,0,122,-31,122,-141r0,-551r42,0r0,551v0,119,-66,175,-161,175v-133,0,-163,-93,-161,-221r42,0","w":407},"K":{"d":"61,0r0,-714r42,0r0,397r2,0r295,-397r46,0r-224,301r246,413r-48,0r-225,-378r-92,122r0,256r-42,0","w":463},"L":{"d":"61,0r0,-714r42,0r0,676r299,0r0,38r-341,0"},"M":{"d":"552,0r0,-660r-2,0r-205,660r-42,0r-205,-660r-2,0r0,660r-42,0r0,-714r68,0r203,642r2,0r198,-642r69,0r0,714r-42,0","w":648},"N":{"d":"54,-714r56,0r311,648r2,0r0,-648r42,0r0,714r-55,0r-312,-648r-2,0r0,648r-42,0r0,-714","w":519},"O":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335","w":537},"P":{"d":"61,0r0,-714r185,0v167,3,194,121,194,198v0,121,-75,198,-203,198r-134,0r0,318r-42,0xm103,-352r138,0v85,0,157,-46,157,-164v0,-102,-54,-164,-151,-164r-144,0r0,328","w":463},"Q":{"d":"319,-177r85,85v40,-62,53,-155,53,-265v0,-193,-43,-335,-188,-335v-140,0,-189,139,-189,335v0,196,40,335,189,335v46,0,82,-14,113,-41r-88,-89xm481,37r-75,-76v-38,36,-86,51,-137,51v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369v142,0,230,92,230,369v0,143,-27,236,-69,291r76,78","w":537},"R":{"d":"61,0r0,-714r209,0v99,0,177,57,177,187v0,97,-55,164,-143,179v146,9,140,117,138,252v0,41,6,67,24,96r-48,0v-20,-33,-19,-110,-18,-170v0,-102,-28,-161,-143,-161r-154,0r0,331r-42,0xm103,-365v160,-3,302,32,302,-162v0,-96,-54,-153,-141,-153r-161,0r0,315","w":500},"S":{"d":"77,-220v-9,118,45,198,162,198v99,0,165,-71,165,-162v0,-127,-115,-147,-211,-181v-94,-33,-145,-78,-145,-175v0,-115,79,-186,191,-186v132,0,191,75,191,194r-42,0v0,-96,-44,-160,-145,-160v-80,0,-153,37,-153,148v0,128,119,141,211,175v91,34,145,77,145,182v0,127,-94,199,-207,199v-165,0,-204,-116,-204,-185r0,-47r42,0","w":481},"T":{"d":"192,0r0,-676r-190,0r0,-38r422,0r0,38r-190,0r0,676r-42,0"},"U":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0","w":500},"V":{"d":"196,0r-195,-714r42,0r178,666r2,0r178,-666r42,0r-195,714r-52,0","w":444},"W":{"d":"485,0r-132,-654r-2,0r-135,654r-50,0r-155,-714r42,0r137,654r2,0r134,-654r51,0r135,654r2,0r137,-654r42,0r-156,714r-52,0","w":704},"X":{"d":"409,0r-178,-324r-178,324r-45,0r202,-363r-185,-351r42,0r166,309r168,-309r42,0r-188,351r200,363r-46,0","w":463},"Y":{"d":"201,0r0,-294r-195,-420r46,0r170,376r174,-376r42,0r-195,420r0,294r-42,0","w":444},"Z":{"d":"17,0r0,-42r363,-634r-342,0r0,-38r384,0r0,42r-363,634r367,0r0,38r-409,0","w":443},"[":{"d":"82,184r0,-898r134,0r0,30r-100,0r0,838r100,0r0,30r-134,0","w":222},"\\":{"d":"31,-726r256,738r-40,0r-256,-738r40,0","w":278},"]":{"d":"140,-714r0,898r-134,0r0,-30r100,0r0,-838r-100,0r0,-30r134,0","w":222},"^":{"d":"47,-243r236,-453r34,0r236,453r-30,0r-223,-427r-223,427r-30,0","w":600},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"\u2018":{"d":"67,-484r0,-100v0,-78,17,-107,58,-130r0,34v-25,18,-28,50,-28,94r12,0r0,102r-42,0","w":184},"a":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175","w":389},"b":{"d":"53,0r0,-714r38,0r0,283r2,0v19,-56,53,-104,134,-104v131,0,161,119,161,272v0,162,-41,275,-163,275v-76,0,-116,-47,-134,-113r0,101r-38,0xm226,-501v-96,0,-135,77,-135,238v0,153,35,241,128,241v103,0,127,-108,127,-241v0,-163,-32,-238,-120,-238"},"c":{"d":"327,-171r42,0v0,49,-27,183,-162,183v-135,0,-169,-119,-169,-276v0,-173,53,-271,176,-271v127,0,152,124,152,162r-42,0v0,-32,-21,-128,-111,-128v-97,0,-133,89,-133,239v0,163,36,240,133,240v96,0,114,-110,114,-149","w":389},"d":{"d":"335,0v-2,-32,4,-73,-2,-101v-13,71,-59,113,-132,113v-122,0,-163,-113,-163,-275v0,-160,36,-272,165,-272v74,0,108,52,132,104r0,-283r38,0r0,714r-38,0xm80,-263v0,133,24,241,127,241v93,0,128,-88,128,-241v1,-172,-51,-238,-130,-238v-90,0,-125,79,-125,238"},"e":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271","w":407},"f":{"d":"79,0r0,-489r-71,0r0,-34r71,0v-1,-97,-13,-192,92,-191v12,0,26,0,39,3r0,34v-50,-8,-93,-3,-93,65r0,89r87,0r0,34r-87,0r0,489r-38,0","w":204},"g":{"d":"80,-264v0,134,28,230,127,230v95,0,128,-96,128,-238v0,-152,-41,-229,-123,-229v-84,0,-132,59,-132,237xm373,-523r0,494v0,129,-38,213,-168,213v-133,0,-142,-103,-142,-130r38,0v0,54,34,96,108,96v89,0,126,-51,126,-160r0,-96r-3,0v-15,46,-45,106,-137,106v-123,0,-157,-121,-157,-264v0,-143,27,-271,165,-271v70,0,107,42,132,99r0,-87r38,0"},"h":{"d":"51,0r0,-714r38,0r0,270r2,0v18,-46,62,-91,133,-91v74,0,132,42,132,141r0,394r-38,0r0,-376v0,-93,-39,-125,-104,-125v-80,0,-125,75,-125,166r0,335r-38,0","w":407},"i":{"d":"55,0r0,-523r38,0r0,523r-38,0xm55,-612r0,-102r38,0r0,102r-38,0","w":148},"j":{"d":"-38,176r0,-34v53,5,93,8,93,-72r0,-593r38,0r0,589v-2,102,-52,119,-131,110xm55,-612r0,-102r38,0r0,102r-38,0","w":148},"k":{"d":"51,0r0,-714r38,0r0,469r2,0r226,-278r48,0r-162,194r191,329r-48,0r-170,-295r-87,103r0,192r-38,0","w":389},"l":{"d":"55,0r0,-714r38,0r0,714r-38,0","w":148},"m":{"d":"57,0r0,-523r38,0v2,25,-4,57,2,78v15,-54,61,-90,126,-90v84,0,103,54,115,98v7,-38,46,-98,128,-98v83,0,125,50,125,133r0,402r-38,0r0,-393v0,-70,-36,-108,-90,-108v-78,0,-120,64,-120,154r0,347r-38,0r0,-375v0,-78,-26,-126,-92,-126v-82,0,-118,72,-118,154r0,347r-38,0","w":648},"n":{"d":"51,0r0,-523r38,0v2,25,-4,58,2,79v18,-46,62,-91,133,-91v74,0,132,42,132,141r0,394r-38,0r0,-376v0,-93,-39,-125,-104,-125v-80,0,-125,75,-125,166r0,335r-38,0","w":407},"o":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239"},"p":{"d":"53,176r0,-699r38,0v2,29,-4,67,2,92v19,-56,53,-104,134,-104v124,0,161,119,161,272v0,162,-41,275,-163,275v-76,0,-116,-47,-134,-113r0,277r-38,0xm91,-263v0,153,35,241,128,241v103,0,127,-108,127,-241v0,-168,-49,-238,-120,-238v-96,0,-135,77,-135,238"},"q":{"d":"335,176r0,-277r-2,0v-13,71,-59,113,-132,113v-122,0,-163,-113,-163,-275v0,-153,35,-272,165,-272v79,0,108,52,132,104r0,-92r38,0r0,699r-38,0xm80,-263v0,133,24,241,127,241v93,0,128,-88,128,-241v0,-161,-44,-238,-130,-238v-81,0,-125,75,-125,238"},"r":{"d":"51,0r0,-523r38,0v2,29,-4,66,2,91v22,-66,68,-109,153,-103r0,34v-107,-10,-155,75,-155,169r0,332r-38,0","w":241},"s":{"d":"313,-376r-38,0v1,-62,-6,-125,-98,-125v-55,0,-101,28,-101,97v0,89,91,107,158,133v63,25,95,68,95,139v0,88,-68,144,-151,144v-151,0,-156,-102,-155,-179r38,0v-3,86,24,144,117,145v77,0,109,-51,109,-109v0,-50,-20,-84,-78,-107v-78,-30,-175,-62,-175,-162v0,-87,60,-135,143,-135v123,0,138,80,136,159","w":352},"t":{"d":"8,-489r0,-34r71,0r0,-155r38,0r0,155r87,0r0,34r-87,0r0,403v3,73,44,60,93,52r0,34v-74,18,-131,-1,-131,-82r0,-407r-71,0","w":204},"u":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0","w":407},"v":{"d":"201,0r-45,0r-147,-523r42,0r127,475r2,0r121,-475r42,0","w":352},"w":{"d":"370,0r-99,-469r-2,0r-103,469r-48,0r-112,-523r42,0r93,469r2,0r103,-469r48,0r99,469r2,0r94,-469r42,0r-113,523r-48,0","w":537},"x":{"d":"13,0r141,-269r-134,-254r47,0r110,222r113,-222r42,0r-133,254r140,269r-47,0r-117,-236r-120,236r-42,0","w":352},"y":{"d":"185,-54r116,-469r42,0r-162,601v-24,86,-68,105,-155,96r0,-34v72,6,99,2,121,-80r16,-55r-154,-528r42,0r132,469r2,0","w":352},"z":{"d":"15,0r0,-34r259,-455r-245,0r0,-34r287,0r0,34r-259,455r262,0r0,34r-304,0","w":334},"{":{"d":"29,-250r0,-30v56,0,71,-77,71,-148r0,-168v1,-115,44,-122,136,-118r0,30r-51,0v-39,0,-51,30,-51,88r0,166v1,142,-54,156,-71,166v19,4,71,24,71,163r0,167v-3,84,29,94,102,88r0,30v-92,4,-135,-3,-136,-118r0,-168v0,-71,-15,-148,-71,-148","w":222},"|":{"d":"92,12r0,-738r38,0r0,738r-38,0","w":222},"}":{"d":"193,-280r0,30v-56,0,-71,77,-71,148r0,168v-1,115,-44,122,-136,118r0,-30r51,0v39,0,51,-30,51,-88r0,-166v-1,-142,54,-156,71,-166v-19,-4,-71,-24,-71,-163r0,-167v3,-84,-29,-94,-102,-88r0,-30v92,-4,135,3,136,118r0,168v0,71,15,148,71,148","w":222},"~":{"d":"406,-202v-79,0,-139,-68,-218,-68v-48,0,-75,44,-93,71r-23,-22v29,-45,56,-83,122,-83v79,0,139,68,218,68v48,0,75,-44,93,-71r23,22v-29,45,-56,83,-122,83","w":600},"'":{"d":"75,-486r0,-228r34,0r0,228r-34,0","w":184},"\u201c":{"d":"179,-484r0,-100v0,-78,17,-107,58,-130r0,34v-25,18,-28,50,-28,94r12,0r0,102r-42,0xm67,-484r0,-100v0,-78,17,-107,58,-130r0,34v-25,18,-28,50,-28,94r12,0r0,102r-42,0","w":296},"\u2013":{"d":"0,-255r0,-34r500,0r0,34r-500,0","w":500},"\u201d":{"d":"117,-714r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0r0,-102r42,0xm229,-714r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0r0,-102r42,0","w":296},"\u2026":{"d":"146,0r0,-102r42,0r0,102r-42,0xm479,0r0,-102r42,0r0,102r-42,0xm812,0r0,-102r42,0r0,102r-42,0","w":1000},"\u00bf":{"d":"243,-359r0,50v0,169,-166,171,-166,327v0,83,52,132,131,132v113,0,143,-90,141,-183r42,0v3,105,-39,217,-182,217v-132,0,-174,-91,-174,-164v0,-179,166,-173,166,-327r0,-52r42,0xm201,-542r42,0r0,96r-42,0r0,-96"},"`":{"d":"38,-736r78,140r-33,0r-93,-140r48,0","w":148},"\u2014":{"d":"0,-255r0,-34r1000,0r0,34r-1000,0","w":1000},"\u00d7":{"d":"300,-232r-197,197r-21,-22r197,-196r-197,-197r21,-21r197,197r197,-197r21,21r-197,197r197,196r-21,22","w":600},"\u2122":{"d":"204,-302r0,-378r-142,0r0,-34r318,0r0,34r-142,0r0,378r-34,0xm848,-302r0,-378r-2,0r-165,378r-18,0r-165,-378r-2,0r0,378r-34,0r0,-412r58,0r152,348r154,-348r56,0r0,412r-34,0","w":1000},"\u00c1":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm201,-751r78,-140r48,0r-93,140r-33,0","w":481},"\u00c9":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0xm190,-751r78,-140r48,0r-93,140r-33,0"},"\u00cd":{"d":"61,0r0,-714r42,0r0,714r-42,0xm42,-751r78,-140r48,0r-93,140r-33,0","w":164},"\u00d1":{"d":"54,-714r56,0r311,648r2,0r0,-648r42,0r0,714r-55,0r-312,-648r-2,0r0,648r-42,0r0,-714xm206,-864v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":519},"\u00d3":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335xm229,-751r78,-140r48,0r-93,140r-33,0","w":537},"\u00da":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0xm210,-751r78,-140r48,0r-93,140r-33,0","w":500},"\u00e1":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm155,-596r78,-140r48,0r-93,140r-33,0","w":389},"\u00e9":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271xm171,-596r78,-140r48,0r-93,140r-33,0","w":407},"\u00ed":{"d":"55,0r0,-523r38,0r0,523r-38,0xm34,-596r78,-140r48,0r-93,140r-33,0","w":148},"\u00f1":{"d":"51,0r0,-523r38,0v2,25,-4,58,2,79v18,-46,62,-91,133,-91v74,0,132,42,132,141r0,394r-38,0r0,-376v0,-93,-39,-125,-104,-125v-80,0,-125,75,-125,166r0,335r-38,0xm150,-709v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":407},"\u00f3":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239xm173,-596r78,-140r48,0r-93,140r-33,0"},"\u00fa":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0xm164,-596r78,-140r48,0r-93,140r-33,0","w":407},"\u00a0":{"w":240}}});Cufon.registerFont({"w":481,"face":{"font-family":"Helvetica Neue LT","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"14","bbox":"-24 -898 1000 340","underline-thickness":"50","underline-position":"-100","stemh":" 86 ","stemv":" 108 ","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":240},"!":{"d":"99,-192r-17,-296r0,-226r114,0v3,183,-6,353,-17,522r-80,0xm82,0r0,-114r114,0r0,114r-114,0","w":278},"\"":{"d":"264,-428r0,-286r86,0r0,286r-86,0xm76,-428r0,-286r86,0r0,286r-86,0","w":426},"#":{"d":"177,-274r106,0r20,-146r-106,0xm-3,-200r0,-74r97,0r20,-146r-88,0r0,-74r98,0r28,-200r83,0r-28,200r106,0r28,-200r83,0r-28,200r87,0r0,74r-97,0r-20,146r88,0r0,74r-98,0r-28,200r-83,0r28,-200r-106,0r-28,200r-83,0r28,-200r-87,0","w":480},"$":{"d":"260,-287r0,215v60,-9,90,-55,90,-100v0,-66,-29,-97,-90,-115xm216,-418r0,-204v-42,4,-76,37,-76,100v0,47,22,80,76,104xm216,100r0,-86v-177,-14,-202,-117,-200,-228r114,0v-3,81,18,131,86,142r0,-232v-109,-34,-190,-91,-190,-208v0,-115,83,-196,190,-196r0,-70r44,0r0,70v158,6,192,110,190,198r-114,0v2,-62,-13,-105,-76,-112r0,221r63,22v97,35,141,89,141,184v0,138,-80,202,-204,209r0,86r-44,0","w":480},"%":{"d":"173,-646v-41,0,-51,37,-51,130v0,93,10,130,51,130v41,0,51,-37,51,-130v0,-93,-10,-130,-51,-130xm497,-708r77,0r-319,722r-75,0xm586,-308v-41,0,-51,37,-51,130v0,93,10,130,51,130v41,0,51,-37,51,-130v0,-93,-10,-130,-51,-130xm173,-708v79,0,137,43,137,192v0,149,-58,192,-137,192v-79,0,-137,-43,-137,-192v0,-149,58,-192,137,-192xm586,-370v79,0,137,43,137,192v0,149,-58,192,-137,192v-79,0,-137,-43,-137,-192v0,-149,58,-192,137,-192","w":759},"&":{"d":"296,-392r125,176v19,-32,30,-76,28,-123r90,0v1,52,-10,126,-61,203r97,136r-121,0r-43,-61v-46,42,-99,75,-180,75v-165,0,-210,-122,-210,-197v0,-100,73,-174,145,-221v-29,-42,-74,-104,-73,-157v0,-102,75,-153,170,-153v53,0,157,26,157,145v0,83,-65,137,-124,177xm247,-458v31,-30,76,-63,77,-115v0,-42,-26,-67,-68,-67v-29,0,-67,15,-67,62v0,46,34,89,58,120xm216,-336v-44,34,-87,82,-87,145v0,64,55,114,121,114v48,0,84,-26,111,-55","w":574},"\u2019":{"d":"63,-582r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0","w":240},"(":{"d":"184,-714r75,0v-154,256,-154,636,0,898r-77,0v-79,-104,-145,-266,-145,-449v0,-183,68,-345,147,-449","w":259},")":{"d":"75,184r-75,0v154,-256,154,-636,0,-898r77,0v79,104,145,266,145,449v0,183,-68,345,-147,449","w":259},"*":{"d":"152,-714r68,0r0,124r111,-43r23,66r-114,33r78,103r-56,43r-76,-105r-74,105r-56,-43r76,-103r-116,-33r23,-66r113,44r0,-125","w":370},"+":{"d":"257,-296r0,-210r86,0r0,210r210,0r0,86r-210,0r0,210r-86,0r0,-210r-210,0r0,-86r210,0","w":600},",":{"d":"63,0r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0","w":240},"-":{"d":"45,-238r0,-102r262,0r0,102r-262,0","w":352},".":{"d":"63,0r0,-132r114,0r0,132r-114,0","w":240},"\/":{"d":"-10,14r227,-742r89,0r-227,742r-89,0","w":296},"0":{"d":"142,-347v0,206,20,281,98,281v78,0,98,-75,98,-281v0,-206,-20,-281,-98,-281v-78,0,-98,75,-98,281xm28,-347v0,-275,76,-361,212,-361v136,0,212,86,212,361v0,275,-76,361,-212,361v-136,0,-212,-86,-212,-361","w":480},"1":{"d":"321,0r-114,0r0,-514r-147,0r0,-74v80,1,167,-14,178,-120r83,0r0,708","w":480},"2":{"d":"447,-96r0,96r-414,0v0,-308,297,-301,297,-521v0,-58,-25,-107,-88,-107v-85,0,-99,76,-99,148r-108,0v0,-141,58,-228,209,-228v145,0,200,86,200,189v0,235,-230,250,-284,423r287,0","w":480},"3":{"d":"31,-197r108,0v0,62,20,131,97,131v71,0,99,-57,99,-127v0,-105,-50,-141,-159,-132r0,-80v98,11,143,-36,143,-121v0,-51,-23,-102,-82,-102v-70,0,-90,60,-90,124r-108,0v0,-132,69,-204,204,-204v85,0,190,39,190,181v0,73,-43,144,-113,155r0,3v73,6,129,65,129,164v0,140,-70,219,-216,219v-128,0,-202,-63,-202,-211","w":480},"4":{"d":"21,-159r0,-98r245,-451r116,0r0,458r77,0r0,91r-77,0r0,159r-108,0r0,-159r-253,0xm274,-250r0,-292r-2,0r-159,292r161,0","w":480},"5":{"d":"230,14v-131,0,-203,-70,-198,-205r108,0v-4,67,22,119,93,119v79,0,101,-78,101,-161v0,-82,-22,-151,-95,-151v-48,0,-83,26,-93,65r-101,-4r35,-371r341,0r0,91r-256,0r-23,186r2,2v30,-34,73,-55,119,-55v148,0,185,125,185,234v0,142,-65,250,-218,250","w":480},"6":{"d":"442,-536r-114,0v0,-41,-19,-92,-76,-92v-107,0,-113,141,-113,244r3,2v28,-51,76,-75,138,-75v97,0,175,70,175,211v0,163,-67,260,-217,260v-179,0,-213,-136,-213,-339v0,-212,39,-383,226,-383v124,0,191,56,191,172xm149,-213v0,82,31,147,98,147v70,0,94,-69,94,-152v0,-98,-29,-153,-94,-153v-83,0,-98,73,-98,158","w":480},"7":{"d":"30,-592r0,-102r420,0r0,90v-111,145,-207,391,-223,604r-120,0v16,-211,120,-447,233,-592r-310,0","w":480},"8":{"d":"151,-522v0,57,18,108,89,108v71,0,89,-51,89,-108v0,-56,-18,-106,-89,-106v-71,0,-89,50,-89,106xm140,-200v0,74,20,134,100,134v80,0,100,-60,100,-134v0,-75,-20,-134,-100,-134v-80,0,-100,59,-100,134xm240,14v-145,0,-214,-73,-214,-212v0,-108,55,-160,121,-179v-61,-21,-98,-68,-98,-153v0,-110,73,-178,191,-178v118,0,191,68,191,178v0,87,-41,129,-98,155v70,14,121,72,121,177v0,139,-69,212,-214,212","w":480},"9":{"d":"38,-158r114,0v0,41,19,92,76,92v107,0,113,-141,113,-244r-3,-2v-28,51,-76,75,-138,75v-97,0,-175,-70,-175,-211v0,-163,67,-260,217,-260v179,0,213,136,213,339v0,212,-39,383,-226,383v-124,0,-191,-56,-191,-172xm331,-481v0,-82,-31,-147,-98,-147v-70,0,-94,69,-94,152v0,98,29,153,94,153v83,0,98,-73,98,-158","w":480},":":{"d":"63,-380r0,-132r114,0r0,132r-114,0xm63,0r0,-132r114,0r0,132r-114,0","w":240},";":{"d":"63,0r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0xm63,-380r0,-132r114,0r0,132r-114,0","w":240},"<":{"d":"47,-216r0,-74r506,-226r0,86r-404,177r404,177r0,86","w":600},"=":{"d":"47,-314r0,-86r506,0r0,86r-506,0xm47,-106r0,-86r506,0r0,86r-506,0","w":600},">":{"d":"553,-290r0,74r-506,226r0,-86r404,-177r-404,-177r0,-86","w":600},"?":{"d":"169,-192r0,-60v0,-144,145,-140,145,-284v0,-56,-19,-106,-81,-106v-68,0,-90,57,-90,141r-108,0v0,-126,53,-227,197,-227v124,0,196,69,196,192v0,170,-157,198,-157,302r0,42r-102,0xm162,0r0,-114r114,0r0,114r-114,0","w":463},"@":{"d":"490,-397v0,-68,-31,-96,-81,-96v-83,0,-141,101,-141,181v0,61,29,101,93,101v69,0,129,-113,129,-186xm539,-549r71,0r-75,270v-6,31,-31,71,22,71v56,0,123,-91,123,-202v0,-142,-125,-238,-264,-238v-174,0,-296,138,-296,294v0,175,135,288,288,288v106,0,192,-34,247,-88r84,0v-53,97,-168,168,-331,168v-212,0,-379,-138,-379,-372v0,-208,155,-370,387,-370v202,0,355,124,355,305v0,200,-157,286,-254,286v-53,0,-67,-29,-72,-59v-28,31,-71,59,-124,59v-77,0,-139,-63,-139,-162v0,-142,107,-268,223,-268v49,0,89,24,115,77","w":800},"A":{"d":"177,-266r169,0r-82,-352r-2,0xm-9,0r203,-714r146,0r188,714r-119,0r-44,-175r-209,0r-46,175r-119,0","w":519},"B":{"d":"173,-413r90,0v69,0,105,-46,105,-113v-1,-118,-92,-101,-195,-102r0,215xm173,-86r113,0v68,0,105,-44,105,-126v0,-77,-46,-121,-112,-121r-106,0r0,247xm59,0r0,-714r231,0v106,0,192,47,192,173v0,89,-38,137,-105,164v78,14,128,61,128,182v0,119,-86,195,-220,195r-226,0","w":537},"C":{"d":"384,-256r114,0v3,142,-46,270,-220,270v-180,0,-236,-116,-236,-371v0,-255,56,-371,237,-371v209,0,215,146,215,237r-114,0v2,-75,-16,-152,-102,-151v-84,0,-122,52,-122,282v0,230,38,288,122,288v99,0,107,-109,106,-184","w":519},"D":{"d":"173,-628r0,542v184,9,227,-8,227,-271v0,-201,-34,-271,-133,-271r-94,0xm59,0r0,-714r203,0v224,0,252,146,252,357v0,211,-28,357,-252,357r-203,0","w":556},"E":{"d":"59,0r0,-714r386,0r0,96r-272,0r0,198r256,0r0,96r-256,0r0,228r280,0r0,96r-394,0"},"F":{"d":"59,0r0,-714r381,0r0,96r-267,0r0,198r251,0r0,96r-251,0r0,324r-114,0","w":463},"G":{"d":"412,0v-2,-26,4,-61,-2,-83v-31,66,-72,97,-156,97v-156,0,-212,-116,-212,-371v0,-255,72,-371,237,-371v185,0,211,136,209,219r-108,0v2,-68,-15,-133,-100,-133v-81,0,-124,54,-124,282v0,230,38,288,115,288v87,1,119,-62,119,-218r-120,0r0,-86r228,0r0,376r-86,0","w":537},"H":{"d":"59,0r0,-714r114,0r0,286r210,0r0,-286r114,0r0,714r-114,0r0,-332r-210,0r0,332r-114,0","w":556},"I":{"d":"54,0r0,-714r114,0r0,714r-114,0","w":222},"J":{"d":"16,-215r108,0v-1,74,-1,143,76,143v76,0,76,-70,76,-142r0,-500r114,0r0,517v0,157,-78,214,-192,211v-165,-5,-186,-99,-182,-229","w":444},"K":{"d":"59,0r0,-714r114,0r0,311r2,0r216,-311r125,0r-206,301r228,413r-129,0r-173,-321r-63,90r0,231r-114,0","w":519},"L":{"d":"46,0r0,-714r114,0r0,618r276,0r0,96r-390,0","w":444},"M":{"d":"59,0r0,-714r178,0r126,529r2,0r124,-529r174,0r0,714r-108,0r0,-594r-2,0r-144,594r-96,0r-144,-594r-2,0r0,594r-108,0","w":722},"N":{"d":"59,0r0,-714r139,0r207,532r2,0r0,-532r108,0r0,714r-139,0r-207,-546r-2,0r0,546r-108,0","w":574},"O":{"d":"278,14v-164,0,-236,-116,-236,-371v0,-255,72,-371,236,-371v164,0,236,116,236,371v0,255,-72,371,-236,371xm278,-72v68,0,122,-42,122,-288v0,-240,-54,-282,-122,-282v-68,0,-122,42,-122,282v0,246,54,288,122,288","w":556},"P":{"d":"173,-628r0,247v112,4,195,3,195,-123v0,-77,-31,-124,-122,-124r-73,0xm59,0r0,-714r226,0v137,0,197,86,197,208v0,128,-75,211,-209,211r-100,0r0,295r-114,0","w":500},"Q":{"d":"463,64r-73,-74v-29,17,-67,24,-112,24v-164,0,-236,-116,-236,-371v0,-255,72,-371,236,-371v164,0,236,116,236,371v0,132,-24,231,-56,283r73,77xm265,-132r65,-65r47,47v16,-43,23,-110,23,-210v0,-240,-54,-282,-122,-282v-68,0,-122,42,-122,282v0,246,54,288,122,288v15,0,28,-2,41,-7","w":556},"R":{"d":"59,0r0,-714r252,0v100,0,181,50,181,184v0,95,-45,160,-119,177v71,7,107,46,112,146v4,73,-11,184,38,207r-129,0v-29,-44,-21,-124,-24,-198v-3,-78,-26,-112,-104,-112r-93,0r0,310r-114,0xm173,-396r91,0v73,0,114,-44,114,-116v0,-76,-33,-116,-108,-116r-97,0r0,232","w":537},"S":{"d":"33,-221r114,0v-4,95,32,149,117,149v72,0,108,-51,108,-104v0,-111,-99,-123,-180,-154v-104,-39,-149,-94,-149,-196v0,-130,88,-202,222,-202v191,0,203,111,202,204r-114,0v3,-74,-23,-118,-100,-118v-49,0,-96,27,-96,103v0,88,106,122,184,149v101,36,145,91,145,189v0,152,-92,215,-236,215v-184,0,-220,-117,-217,-235","w":519},"T":{"d":"176,0r0,-618r-170,0r0,-96r451,0r0,96r-167,0r0,618r-114,0","w":463},"U":{"d":"50,-714r114,0r0,512v0,90,36,130,105,130v68,0,104,-40,104,-130r0,-512r114,0r0,503v0,165,-82,225,-218,225v-137,0,-219,-60,-219,-225r0,-503","w":537},"V":{"d":"162,0r-168,-714r121,0r121,570r2,0r128,-570r121,0r-180,714r-145,0"},"W":{"d":"144,0r-138,-714r115,0r94,555r2,0r94,-555r120,0r96,558r2,0r93,-558r113,0r-142,714r-132,0r-92,-538r-2,0r-91,538r-132,0","w":741},"X":{"d":"0,0r188,-363r-172,-351r126,0r114,237r112,-237r123,0r-173,351r182,363r-126,0r-124,-258r-127,258r-123,0","w":500},"Y":{"d":"180,0r0,-279r-184,-435r127,0r120,308r123,-308r119,0r-191,435r0,279r-114,0"},"Z":{"d":"18,0r0,-90r299,-528r-281,0r0,-96r406,0r0,96r-299,522r302,0r0,96r-427,0","w":463},"[":{"d":"77,184r0,-898r203,0r0,80r-101,0r0,738r101,0r0,80r-203,0","w":278},"\\":{"d":"217,14r-227,-742r89,0r227,742r-89,0","w":296},"]":{"d":"-2,184r0,-80r101,0r0,-738r-101,0r0,-80r203,0r0,898r-203,0","w":278},"^":{"d":"457,-280r-157,-328r-157,328r-86,0r204,-414r76,0r206,414r-86,0","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"\u2018":{"d":"63,-428v1,-139,-21,-264,114,-286r0,58v-35,9,-53,45,-50,96r50,0r0,132r-114,0","w":240},"a":{"d":"405,-420r0,308v-1,28,21,46,46,35r0,70v-52,26,-144,14,-144,-58r-2,0v-29,53,-71,79,-134,79v-86,0,-140,-48,-140,-151v0,-161,100,-158,209,-192v39,-12,63,-22,63,-69v0,-49,-17,-80,-74,-80v-72,0,-82,51,-82,103r-102,0v0,-114,47,-177,189,-177v95,0,171,37,171,132xm303,-194r0,-90v-28,22,-88,36,-120,50v-63,27,-62,168,23,168v65,0,97,-49,97,-128","w":463},"b":{"d":"52,0r0,-714r108,0r0,239r2,0v20,-48,64,-77,122,-77v82,0,166,37,166,276v0,185,-50,290,-176,290v-80,0,-101,-48,-120,-80r0,66r-102,0xm154,-263v0,115,17,191,91,191v75,0,91,-77,91,-199v0,-145,-22,-195,-84,-195v-83,0,-98,74,-98,203"},"c":{"d":"313,-196r102,0v-7,129,-51,210,-184,210v-156,0,-200,-116,-200,-283v0,-167,44,-283,200,-283v161,0,185,126,185,193r-108,0v0,-50,-14,-113,-77,-113v-78,0,-92,84,-92,203v0,119,14,203,92,203v60,0,82,-49,82,-130","w":444},"d":{"d":"327,0v-2,-21,4,-49,-2,-66v-14,35,-41,80,-118,80v-126,0,-176,-105,-176,-290v0,-239,84,-276,166,-276v60,0,100,33,124,77r0,-239r108,0r0,714r-102,0xm327,-263v0,-129,-15,-203,-98,-203v-62,0,-84,50,-84,195v0,122,16,199,91,199v74,0,91,-76,91,-191"},"e":{"d":"426,-255r-281,0v-1,87,-1,195,90,195v77,0,86,-88,86,-120r102,0v0,119,-72,194,-189,194v-88,0,-197,-26,-197,-275v0,-141,30,-291,199,-291v171,0,196,123,190,297xm145,-329r173,0v4,-80,-12,-150,-83,-149v-72,1,-92,73,-90,149","w":463},"f":{"d":"85,0r0,-458r-75,0r0,-80r75,0r0,-50v-5,-126,85,-143,196,-131r0,83v-50,-3,-92,3,-88,51r0,47r88,0r0,80r-88,0r0,458r-108,0","w":278},"g":{"d":"58,46r102,0v0,33,30,64,78,64v56,0,91,-39,91,-101v0,-28,4,-63,-2,-87v-20,47,-70,74,-122,74v-126,0,-161,-124,-161,-271v0,-118,18,-277,171,-277v66,0,105,44,120,80r0,-66r102,0r0,512v0,131,-56,210,-201,210v-160,0,-178,-94,-178,-138xm152,-286v0,92,4,196,84,196v84,0,93,-106,93,-191v0,-88,-11,-185,-86,-185v-78,0,-91,80,-91,180"},"h":{"d":"52,0r0,-714r108,0r0,234r3,2v64,-108,266,-112,266,72r0,406r-108,0r0,-369v0,-70,-21,-97,-75,-97v-44,0,-86,35,-86,105r0,361r-108,0"},"i":{"d":"57,0r0,-538r108,0r0,538r-108,0xm57,-614r0,-108r108,0r0,108r-108,0","w":222},"j":{"d":"57,-538r108,0r0,573v3,131,-72,159,-189,146r0,-83v57,2,81,-4,81,-73r0,-563xm57,-722r108,0r0,108r-108,0r0,-108","w":222},"k":{"d":"52,0r0,-714r108,0r0,401r2,0r163,-225r125,-1r-162,208r183,331r-118,0r-132,-245r-61,74r0,171r-108,0","w":463},"l":{"d":"57,0r0,-714r108,0r0,714r-108,0","w":222},"m":{"d":"57,0r0,-538r102,0r0,63r3,0v27,-48,78,-77,129,-77v77,0,109,37,125,82v54,-116,267,-122,267,61r0,409r-108,0r0,-369v0,-70,-21,-97,-65,-97v-44,0,-86,35,-86,105r0,361r-108,0r0,-369v0,-70,-21,-97,-66,-97v-43,0,-85,35,-85,105r0,361r-108,0","w":740},"n":{"d":"52,0r0,-538r102,0r0,63r3,0v27,-48,78,-77,138,-77v82,0,134,37,134,146r0,406r-108,0r0,-369v0,-70,-21,-97,-75,-97v-44,0,-86,35,-86,105r0,361r-108,0"},"o":{"d":"31,-269v0,-167,44,-283,200,-283v157,0,201,116,201,283v0,167,-51,283,-201,283v-149,0,-200,-116,-200,-283xm139,-269v0,137,14,203,92,203v79,0,93,-66,93,-203v0,-119,-14,-203,-93,-203v-78,0,-92,84,-92,203","w":463},"p":{"d":"52,176r0,-714r102,0v2,21,-4,49,2,66v22,-48,62,-80,121,-80v123,0,173,105,173,290v0,226,-92,276,-166,276v-60,0,-100,-33,-124,-77r0,239r-108,0xm154,-275v0,129,16,203,92,203v62,0,90,-46,90,-195v0,-122,-16,-199,-91,-199v-74,0,-91,76,-91,191"},"q":{"d":"321,176r0,-239r-2,0v-20,48,-64,77,-123,77v-84,0,-165,-58,-165,-276v0,-185,50,-290,176,-290v80,0,101,48,120,80r0,-66r102,0r0,714r-108,0xm327,-275v0,-115,-17,-191,-91,-191v-75,0,-91,77,-91,199v0,145,29,195,84,195v83,0,98,-74,98,-203"},"r":{"d":"52,0r0,-538r108,0v2,27,-4,61,2,84v27,-67,75,-110,151,-94r0,110v-76,-16,-153,-5,-153,116r0,322r-108,0","w":315},"s":{"d":"386,-381r-102,0v2,-53,-10,-97,-71,-97v-43,0,-77,20,-77,70v0,65,90,83,145,103v79,29,117,70,117,155v0,115,-84,164,-193,164v-144,-1,-181,-68,-177,-187r96,0v-3,70,16,113,84,113v109,0,112,-129,29,-158r-88,-31v-81,-28,-115,-69,-115,-155v0,-101,73,-148,184,-148v148,0,171,79,168,171","w":426},"t":{"d":"4,-458r0,-80r74,0r0,-153r108,0r0,153r88,0r0,80r-88,0r0,321v-7,60,42,62,88,54r0,80v-23,6,-53,9,-87,9v-73,0,-109,-20,-109,-130r0,-334r-74,0","w":278},"u":{"d":"327,0r0,-63r-3,0v-27,48,-78,77,-138,77v-80,0,-134,-37,-134,-176r0,-376r108,0r0,386v0,60,27,80,73,80v46,0,88,-30,88,-90r0,-376r108,0r0,538r-102,0"},"v":{"d":"151,0r-144,-538r116,0r94,424r2,0r85,-424r115,0r-142,538r-126,0","w":426},"w":{"d":"137,0r-122,-538r112,0r75,424r2,0r80,-424r122,0r80,424r2,0r74,-424r108,0r-123,538r-121,0r-84,-418r-2,0r-77,418r-126,0","w":685},"x":{"d":"3,0r147,-279r-139,-259r118,0r84,178r88,-178r116,0r-140,259r146,279r-117,0r-94,-199r-94,199r-115,0","w":426},"y":{"d":"8,-538r116,0r93,404r2,0r86,-404r113,0r-148,558v-45,165,-93,172,-231,160r0,-86v47,8,95,7,108,-38r14,-44","w":426},"z":{"d":"25,0r0,-84r235,-363r-221,0r0,-91r343,0r0,89r-226,358r226,0r0,91r-357,0","w":407},"{":{"d":"7,-232r0,-66v43,-2,81,-48,81,-102r0,-183v6,-116,73,-141,183,-131r0,62v-57,-6,-81,13,-81,69r0,183v1,97,-70,125,-92,136v25,6,92,40,92,134r0,183v-3,56,23,76,81,69r0,62v-110,9,-183,-14,-183,-131r0,-183v0,-54,-38,-100,-81,-102","w":278},"|":{"d":"68,14r0,-742r86,0r0,742r-86,0","w":222},"}":{"d":"271,-298r0,66v-43,2,-81,48,-81,102r0,183v-6,116,-73,141,-183,131r0,-62v57,6,81,-13,81,-69r0,-183v-1,-97,70,-125,92,-136v-25,-6,-92,-40,-92,-134r0,-183v3,-56,-23,-76,-81,-69r0,-62v110,-9,183,14,183,131r0,183v0,54,38,100,81,102","w":278},"~":{"d":"406,-174v-68,0,-155,-72,-213,-72v-31,0,-59,25,-88,77r-36,-76v29,-57,77,-87,125,-87v68,0,155,72,213,72v31,0,59,-25,88,-77r36,76v-31,53,-77,87,-125,87","w":600},"'":{"d":"77,-428r0,-286r86,0r0,286r-86,0","w":240},"\u201c":{"d":"67,-428v1,-139,-21,-264,114,-286r0,58v-35,9,-53,45,-50,96r50,0r0,132r-114,0xm245,-428v1,-139,-21,-264,114,-286r0,58v-35,9,-53,45,-50,96r50,0r0,132r-114,0","w":426},"\u2013":{"d":"0,-241r0,-96r500,0r0,96r-500,0","w":500},"\u201d":{"d":"245,-582r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0xm67,-582r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0","w":426},"\u2026":{"d":"110,0r0,-132r114,0r0,132r-114,0xm443,0r0,-132r114,0r0,132r-114,0xm776,0r0,-132r114,0r0,132r-114,0","w":1000},"\u00bf":{"d":"294,-346r0,60v0,144,-145,140,-145,284v0,56,19,106,81,106v68,0,90,-57,90,-141r108,0v0,126,-53,227,-197,227v-124,0,-196,-69,-196,-192v0,-170,157,-198,157,-302r0,-42r102,0xm301,-538r0,114r-114,0r0,-114r114,0","w":463},"`":{"d":"92,-608r-106,-144r120,0r60,144r-74,0","w":222},"\u2014":{"d":"0,-241r0,-96r1000,0r0,96r-1000,0","w":1000},"\u00d7":{"d":"244,-253r-174,-174r56,-56r173,174r175,-174r56,56r-175,174r175,174r-56,56r-175,-175r-173,175r-56,-56","w":600},"\u2122":{"d":"155,-302r0,-344r-123,0r0,-68r332,0r0,68r-123,0r0,344r-86,0xm828,-302r0,-326r-2,0r-121,326r-56,0r-121,-326r-2,0r0,326r-80,0r0,-412r119,0r112,292r112,-292r119,0r0,412r-80,0","w":1000},"\u00c1":{"d":"177,-266r169,0r-82,-352r-2,0xm-9,0r203,-714r146,0r188,714r-119,0r-44,-175r-209,0r-46,175r-119,0xm212,-754r60,-144r120,0r-106,144r-74,0","w":519},"\u00c9":{"d":"59,0r0,-714r386,0r0,96r-272,0r0,198r256,0r0,96r-256,0r0,228r280,0r0,96r-394,0xm198,-754r60,-144r120,0r-106,144r-74,0"},"\u00cd":{"d":"54,0r0,-714r114,0r0,714r-114,0xm56,-754r60,-144r120,0r-106,144r-74,0","w":222},"\u00d1":{"d":"59,0r0,-714r139,0r207,532r2,0r0,-532r108,0r0,714r-139,0r-207,-546r-2,0r0,546r-108,0xm237,-881v33,1,76,35,109,35v23,0,30,-20,30,-38r62,0v0,44,-29,118,-86,118v-45,0,-89,-35,-120,-35v-22,0,-34,20,-34,40r-62,0v0,-43,27,-120,101,-120","w":574},"\u00d3":{"d":"278,14v-164,0,-236,-116,-236,-371v0,-255,72,-371,236,-371v164,0,236,116,236,371v0,255,-72,371,-236,371xm278,-72v68,0,122,-42,122,-288v0,-240,-54,-282,-122,-282v-68,0,-122,42,-122,282v0,246,54,288,122,288xm223,-754r60,-144r120,0r-106,144r-74,0","w":556},"\u00da":{"d":"50,-714r114,0r0,512v0,90,36,130,105,130v68,0,104,-40,104,-130r0,-512r114,0r0,503v0,165,-82,225,-218,225v-137,0,-219,-60,-219,-225r0,-503xm214,-754r60,-144r120,0r-106,144r-74,0","w":537},"\u00e1":{"d":"405,-420r0,308v-1,28,21,46,46,35r0,70v-52,26,-144,14,-144,-58r-2,0v-29,53,-71,79,-134,79v-86,0,-140,-48,-140,-151v0,-161,100,-158,209,-192v39,-12,63,-22,63,-69v0,-49,-17,-80,-74,-80v-72,0,-82,51,-82,103r-102,0v0,-114,47,-177,189,-177v95,0,171,37,171,132xm303,-194r0,-90v-28,22,-88,36,-120,50v-63,27,-62,168,23,168v65,0,97,-49,97,-128xm177,-608r60,-144r120,0r-106,144r-74,0","w":463},"\u00e9":{"d":"426,-255r-281,0v-1,87,-1,195,90,195v77,0,86,-88,86,-120r102,0v0,119,-72,194,-189,194v-88,0,-197,-26,-197,-275v0,-141,30,-291,199,-291v171,0,196,123,190,297xm145,-329r173,0v4,-80,-12,-150,-83,-149v-72,1,-92,73,-90,149xm189,-608r60,-144r120,0r-106,144r-74,0","w":463},"\u00ed":{"d":"57,0r0,-538r108,0r0,538r-108,0xm56,-608r60,-144r120,0r-106,144r-74,0","w":222},"\u00f1":{"d":"52,0r0,-538r102,0r0,63r3,0v27,-48,78,-77,138,-77v82,0,134,37,134,146r0,406r-108,0r0,-369v0,-70,-21,-97,-75,-97v-44,0,-86,35,-86,105r0,361r-108,0xm191,-735v33,1,76,35,109,35v23,0,30,-20,30,-38r62,0v0,44,-29,118,-86,118v-45,0,-89,-35,-120,-35v-22,0,-34,20,-34,40r-62,0v0,-43,27,-120,101,-120"},"\u00f3":{"d":"31,-269v0,-167,44,-283,200,-283v157,0,201,116,201,283v0,167,-51,283,-201,283v-149,0,-200,-116,-200,-283xm139,-269v0,137,14,203,92,203v79,0,93,-66,93,-203v0,-119,-14,-203,-93,-203v-78,0,-92,84,-92,203xm177,-608r60,-144r120,0r-106,144r-74,0","w":463},"\u00fa":{"d":"327,0r0,-63r-3,0v-27,48,-78,77,-138,77v-80,0,-134,-37,-134,-176r0,-376r108,0r0,386v0,60,27,80,73,80v46,0,88,-30,88,-90r0,-376r108,0r0,538r-102,0xm186,-608r60,-144r120,0r-106,144r-74,0"},"\u00a0":{"w":240}}});


Cufon.registerFont({"w":173,"face":{"font-family":"Helvetica","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-9 -323 360 68.04","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86,"k":{"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"36,-69r-6,-107r0,-81r41,0v1,66,-3,127,-7,188r-28,0xm30,0r0,-41r41,0r0,41r-41,0","w":100},"\"":{"d":"95,-154r0,-103r31,0r0,103r-31,0xm27,-154r0,-103r31,0r0,103r-31,0","w":153},"#":{"d":"64,-99r38,0r7,-52r-38,0xm-1,-72r0,-27r35,0r7,-52r-32,0r0,-27r36,0r10,-72r30,0r-10,72r38,0r10,-72r30,0r-10,72r31,0r0,27r-35,0r-7,52r31,0r0,27r-35,0r-10,72r-30,0r10,-72r-38,0r-10,72r-30,0r10,-72r-31,0","w":172},"$":{"d":"94,-26v41,-3,43,-71,0,-77r0,77xm78,-224v-37,5,-37,64,0,74r0,-74xm94,-255v42,0,69,28,68,71r-41,0v1,-24,-7,-38,-27,-40r0,80v38,11,73,33,73,74v0,47,-24,72,-73,75r0,31r-16,0r0,-31v-50,-3,-74,-30,-72,-82r41,0v-1,30,8,47,31,51r0,-83v-38,-14,-69,-27,-69,-75v0,-39,30,-72,69,-71r0,-25r16,0r0,25","w":172},"%":{"d":"62,-139v25,2,19,-54,17,-75v-2,-12,-8,-19,-17,-19v-18,0,-18,20,-18,47v0,27,0,45,18,47xm179,-255r28,0r-115,260r-27,0xm211,-17v25,3,19,-53,17,-76v-1,-12,-8,-18,-17,-18v-18,2,-18,20,-18,47v0,27,0,45,18,47xm62,-255v33,0,50,23,50,69v0,46,-17,69,-50,69v-33,0,-49,-23,-49,-69v0,-46,16,-69,49,-69xm211,-133v33,0,49,23,49,69v0,46,-16,69,-49,69v-33,0,-49,-23,-49,-69v0,-46,16,-69,49,-69","w":273},"&":{"d":"95,-257v61,-2,75,78,25,106r-13,10r45,63v8,-12,10,-26,10,-44r32,0v0,28,-6,51,-22,73r35,49r-44,0r-15,-22v-45,48,-140,30,-140,-44v0,-34,26,-62,52,-79v-10,-15,-27,-41,-27,-57v0,-35,26,-54,62,-55xm92,-230v-39,0,-22,49,-3,65v12,-10,28,-28,28,-41v0,-16,-9,-24,-25,-24xm78,-121v-40,20,-45,92,12,93v14,0,28,-7,40,-20","w":206},"'":{"d":"28,-154r0,-103r31,0r0,103r-31,0","w":86},"(":{"d":"13,-95v0,-63,24,-124,53,-162r27,0v-54,85,-55,241,0,323r-27,0v-30,-38,-52,-98,-53,-161","w":93},")":{"d":"80,-95v0,63,-24,123,-53,161r-27,0v55,-85,54,-241,0,-323r28,0v29,38,51,100,52,162","w":93},"*":{"d":"55,-257r24,0r0,45r40,-16r8,24r-41,12r28,37r-20,15r-27,-37r-27,37r-20,-15r28,-37r-42,-12r8,-24r41,16r0,-45","w":133},"+":{"d":"93,-107r0,-75r30,0r0,75r76,0r0,31r-76,0r0,76r-30,0r0,-76r-76,0r0,-31r76,0","w":216},",":{"d":"23,0r0,-48r41,0v1,49,3,99,-41,103r0,-20v13,-3,19,-17,18,-35r-18,0","w":86,"k":{"\u201d":27,"\u2019":27," ":13}},"-":{"d":"16,-86r0,-36r95,0r0,36r-95,0","w":126},".":{"d":"23,0r0,-48r41,0r0,48r-41,0","w":86,"k":{"\u201d":27,"\u2019":27}},"\/":{"d":"-4,5r82,-267r32,0r-82,267r-32,0","w":106},"0":{"d":"86,-226v-39,7,-35,44,-35,101v0,58,-4,94,35,101v39,-7,36,-44,36,-101v0,-57,3,-93,-36,-101xm86,5v-66,0,-76,-52,-76,-130v0,-78,10,-130,76,-130v66,0,77,52,77,130v0,79,-11,130,-77,130","w":172},"1":{"d":"116,0r-41,0r0,-185r-53,0r0,-27v37,0,61,-11,64,-43r30,0r0,255","w":172},"2":{"d":"160,-187v5,74,-81,93,-102,152r103,0r0,35r-149,0v-5,-93,107,-108,107,-188v0,-26,-11,-38,-32,-38v-24,0,-36,17,-36,53r-38,0v0,-55,25,-82,75,-82v46,0,69,25,72,68","w":172},"3":{"d":"115,-134v27,5,47,27,47,60v0,53,-26,79,-78,79v-48,0,-73,-25,-73,-76r39,0v0,31,12,47,35,47v24,0,36,-15,36,-45v0,-37,-18,-51,-58,-48r0,-29v34,3,52,-8,52,-43v0,-21,-10,-38,-30,-37v-22,0,-32,15,-32,45r-39,0v0,-49,24,-74,73,-74v76,0,94,108,28,121","w":172},"4":{"d":"8,-57r0,-36r88,-162r42,0r0,165r27,0r0,33r-27,0r0,57r-39,0r0,-57r-91,0xm99,-90r-1,-105r-57,105r58,0","w":172},"5":{"d":"83,5v-48,1,-73,-25,-71,-74r38,0v-2,25,11,42,34,43v24,0,36,-19,36,-58v0,-59,-53,-71,-67,-31r-37,-1r13,-134r123,0r0,33r-93,0v-2,22,-8,47,-7,68v43,-46,109,-7,109,64v0,54,-26,90,-78,90","w":172},"6":{"d":"9,-117v0,-80,14,-138,81,-138v46,0,69,21,69,62r-41,0v2,-43,-55,-43,-62,-3v-2,12,-8,35,-5,58v32,-54,113,-20,113,49v0,62,-26,94,-78,94v-65,0,-77,-45,-77,-122xm89,-134v-29,1,-35,23,-35,57v-1,29,9,53,35,53v23,0,34,-18,34,-54v0,-37,-11,-56,-34,-56","w":172},"7":{"d":"39,0v6,-75,43,-166,83,-213r-111,0r0,-37r151,0r0,33v-38,48,-75,139,-80,217r-43,0","w":172},"8":{"d":"54,-188v0,26,11,39,32,39v21,0,32,-13,32,-39v0,-25,-11,-38,-32,-38v-21,0,-32,13,-32,38xm50,-72v0,32,12,48,36,48v24,0,36,-16,36,-48v0,-32,-12,-48,-36,-48v-24,0,-36,16,-36,48xm120,-136v68,19,54,141,-34,141v-51,0,-77,-25,-77,-76v-1,-35,18,-57,44,-65v-24,-8,-35,-26,-35,-55v0,-40,27,-64,68,-64v72,0,95,99,34,119","w":172},"9":{"d":"164,-133v-1,79,-14,138,-82,138v-46,0,-68,-21,-68,-62r41,0v-2,43,55,43,62,3v2,-12,8,-35,5,-58v-31,54,-113,22,-113,-49v0,-62,26,-94,78,-94v65,0,77,45,77,122xm84,-116v29,-1,35,-23,35,-57v1,-29,-9,-53,-35,-53v-23,0,-34,19,-34,55v0,37,11,55,34,55","w":172},":":{"d":"23,-137r0,-47r41,0r0,47r-41,0xm23,0r0,-48r41,0r0,48r-41,0","w":86,"k":{" ":13}},";":{"d":"23,0r0,-48r41,0v1,49,3,99,-41,103r0,-20v13,-3,19,-17,18,-35r-18,0xm23,-137r0,-47r41,0r0,47r-41,0","w":86},"<":{"d":"17,-78r0,-26r182,-82r0,31r-145,64r145,64r0,31","w":216},"=":{"d":"17,-113r0,-31r182,0r0,31r-182,0xm17,-38r0,-31r182,0r0,31r-182,0","w":216},">":{"d":"199,-104r0,26r-182,82r0,-31r145,-64r-145,-64r0,-31","w":216},"?":{"d":"84,-262v65,0,88,70,55,116v-16,21,-47,38,-41,77r-37,0r0,-22r52,-102v0,-25,-10,-38,-29,-38v-22,0,-33,17,-33,51r-38,0v-1,-49,24,-82,71,-82xm58,0r0,-41r41,0r0,41r-41,0","w":166},"@":{"d":"130,-76v23,1,47,-43,46,-67v0,-23,-10,-34,-29,-34v-45,0,-79,99,-17,101xm66,-108v0,-64,83,-137,121,-68r7,-22r26,0r-31,115v0,5,4,8,12,8v26,-1,44,-43,44,-73v0,-49,-44,-85,-95,-85v-60,0,-107,48,-107,106v0,57,46,104,104,103v38,0,67,-10,89,-31r30,0v-20,36,-64,60,-119,60v-80,0,-137,-55,-137,-134v0,-77,61,-133,140,-133v69,0,126,45,128,110v1,55,-42,101,-92,103v-18,1,-23,-10,-26,-22v-31,42,-94,19,-94,-37","w":288},"A":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0","w":186,"k":{"\u201d":20,"\u2019":20,"y":6,"w":6,"v":6,"Y":20,"W":11,"V":11,"T":20}},"B":{"d":"132,-189v0,-39,-32,-38,-70,-37r0,77v39,3,70,-1,70,-40xm141,-76v0,-42,-35,-48,-79,-44r0,89v44,1,79,4,79,-45xm182,-70v0,43,-33,70,-79,70r-82,0r0,-257v71,-1,153,-10,153,62v0,31,-13,51,-38,59v31,6,46,28,46,66","w":193,"k":{".":11,",":11}},"C":{"d":"56,-130v0,61,-1,99,44,104v26,3,39,-25,38,-66r41,0v1,58,-23,98,-79,97v-74,-2,-85,-50,-85,-134v0,-84,12,-131,85,-133v53,-1,79,29,78,85r-41,0v1,-35,-12,-56,-37,-54v-45,4,-44,41,-44,101","w":186,"k":{".":6,",":6}},"D":{"d":"144,-129v2,-73,-10,-104,-82,-97r0,195r34,0v47,-3,47,-40,48,-98xm185,-129v0,87,-14,126,-91,129r-73,0r0,-257r73,0v76,3,91,41,91,128","w":200,"k":{"Y":6,".":14,",":14}},"E":{"d":"21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0"},"F":{"d":"21,0r0,-257r137,0r0,35r-96,0r0,71r91,0r0,34r-91,0r0,117r-41,0","w":166,"k":{"A":13,".":46,",":46}},"G":{"d":"56,-130v0,60,-1,97,42,104v39,-2,41,-31,42,-78r-43,0r0,-31r82,0r0,135r-31,0r0,-30v-12,23,-25,35,-57,35v-67,0,-76,-55,-76,-134v0,-80,16,-130,85,-133v48,-2,77,30,76,79r-39,0v1,-28,-10,-48,-36,-48v-45,0,-45,42,-45,101","w":193,"k":{".":6,",":6}},"H":{"d":"21,0r0,-257r41,0r0,103r76,0r0,-103r41,0r0,257r-41,0r0,-120r-76,0r0,120r-41,0","w":200},"I":{"d":"19,0r0,-257r41,0r0,257r-41,0","w":79},"J":{"d":"72,-26v25,-2,27,-18,27,-51r0,-180r41,0r0,186v0,51,-23,76,-69,76v-50,1,-69,-29,-65,-82r39,0v-2,28,5,53,27,51","w":159,"k":{".":14,",":14}},"K":{"d":"21,0r0,-257r41,0r1,112r78,-112r45,0r-74,108r82,149r-47,0r-62,-116r-23,33r0,83r-41,0","w":186},"L":{"d":"17,0r0,-257r41,0r0,222r99,0r0,35r-140,0","w":159,"k":{"\u201d":40,"\u2019":40,"y":13,"Y":33,"W":27,"V":27,"T":33}},"M":{"d":"21,0r0,-257r64,0r46,190r45,-190r63,0r0,257r-39,0r-1,-214r-52,214r-34,0r-53,-214r0,214r-39,0","w":259},"N":{"d":"21,0r0,-257r50,0r76,191r0,-191r38,0r0,257r-50,0r-75,-197r0,197r-39,0","w":206,"k":{".":6,",":6}},"O":{"d":"185,-129v0,81,-15,134,-85,134v-70,0,-85,-53,-85,-134v0,-81,15,-133,85,-133v69,0,85,53,85,133xm100,-231v-43,6,-44,43,-44,101v0,60,1,97,44,104v43,-7,44,-44,44,-104v0,-58,-1,-95,-44,-101","w":200,"k":{"Y":14,"X":6,"V":6,"T":11,"A":6,".":14,",":14}},"P":{"d":"62,-226r0,89v41,2,70,-2,70,-44v0,-41,-28,-48,-70,-45xm174,-182v0,60,-45,83,-112,76r0,106r-41,0r0,-257r82,0v47,0,71,28,71,75","w":180,"k":{"A":13,".":54,",":54}},"Q":{"d":"100,-262v69,0,85,53,85,133v0,46,-7,80,-20,102r26,28r-24,22r-27,-27v-10,6,-23,9,-40,9v-70,-3,-85,-53,-85,-134v0,-81,15,-133,85,-133xm56,-130v0,65,2,109,59,102r-20,-20r24,-23r17,17v10,-45,24,-182,-36,-177v-44,4,-44,43,-44,101","w":200,"k":{".":6,",":6}},"R":{"d":"133,-71v0,-42,-30,-43,-71,-41r0,112r-41,0r0,-257v74,0,156,-13,156,66v0,34,-18,58,-43,64v45,5,42,49,42,105v0,10,4,17,12,22r-46,0v-10,-21,-9,-24,-9,-71xm62,-143v40,3,74,-2,74,-41v0,-43,-33,-44,-74,-42r0,83","w":193,"k":{"Y":6,"T":6}},"S":{"d":"90,5v-53,0,-80,-30,-78,-85r41,0v-2,34,12,54,42,54v36,0,51,-46,29,-67v-34,-32,-112,-26,-109,-96v2,-46,32,-74,80,-73v50,0,75,24,73,73r-41,0v1,-28,-10,-42,-36,-42v-34,0,-45,43,-26,63v31,34,110,26,110,96v0,52,-28,77,-85,77","w":186,"k":{".":11,",":11}},"T":{"d":"63,0r0,-222r-61,0r0,-35r163,0r0,35r-61,0r0,222r-41,0","w":166,"k":{"y":27,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"O":11,"A":20,";":27,":":27,".":33,",":33}},"U":{"d":"18,-257r41,0r0,184v0,31,13,47,38,47v25,0,37,-16,37,-47r0,-184r41,0r0,181v0,54,-26,81,-78,81v-53,0,-79,-27,-79,-81r0,-181","w":193,"k":{".":11,",":11}},"V":{"d":"58,0r-60,-257r43,0r45,205r46,-205r43,0r-64,257r-53,0","k":{"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,",":33}},"W":{"d":"52,0r-50,-257r42,0r34,200r34,-200r43,0r35,201r34,-201r41,0r-52,257r-47,0r-34,-194r-33,194r-47,0","w":266,"k":{"y":6,"o":6,"e":6,"a":6,"A":11,".":27,",":27}},"X":{"d":"0,0r68,-131r-62,-126r45,0r41,85r40,-85r45,0r-63,126r66,131r-45,0r-45,-93r-46,93r-44,0","w":180},"Y":{"d":"65,0r0,-100r-66,-157r45,0r43,111r45,-111r43,0r-69,157r0,100r-41,0","k":{"u":18,"o":20,"i":6,"e":20,"a":20,"S":6,"O":14,"A":20,";":13,":":13,".":40,",":40}},"Z":{"d":"6,0r0,-32r108,-190r-101,0r0,-35r146,0r0,35r-108,187r109,0r0,35r-154,0","w":166},"[":{"d":"28,66r0,-323r73,0r0,29r-37,0r0,265r37,0r0,29r-73,0","w":100},"\\":{"d":"78,5r-82,-267r32,0r82,267r-32,0","w":106},"]":{"d":"-1,66r0,-29r37,0r0,-265r-37,0r0,-29r73,0r0,323r-73,0","w":100},"^":{"d":"165,-101r-57,-118r-57,118r-30,0r73,-149r27,0r74,149r-30,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"33,-219r-38,-52r43,0r22,52r-27,0","w":79},"a":{"d":"84,-199v35,0,62,15,62,48r0,111v-1,12,8,15,16,12r0,25v-22,12,-51,2,-52,-20v-20,45,-107,36,-99,-26v-5,-63,54,-57,92,-77v13,-15,4,-46,-21,-46v-20,0,-29,12,-29,37r-37,0v1,-45,21,-63,68,-64xm50,-53v0,17,8,29,24,29v34,0,37,-40,35,-78v-20,15,-59,11,-59,49","w":166,"k":{"v":2}},"b":{"d":"102,-199v51,0,60,40,60,100v0,70,-21,104,-63,104v-22,1,-34,-12,-44,-29r0,24r-36,0r0,-257r39,0r0,86v8,-18,22,-28,44,-28xm91,-168v-34,2,-36,31,-36,73v0,38,4,69,33,69v32,0,33,-32,33,-72v0,-41,0,-65,-30,-70","k":{"y":4,".":13,",":13}},"c":{"d":"50,-97v0,41,2,73,33,73v20,0,30,-16,30,-47r36,0v-2,49,-19,76,-66,76v-55,-1,-73,-39,-72,-102v0,-63,18,-101,72,-102v42,-1,67,27,67,70r-39,0v0,-27,-10,-41,-28,-41v-31,0,-33,32,-33,73","w":159,"k":{"y":6,"k":2,"h":2,".":13,",":13}},"d":{"d":"11,-99v0,-60,9,-96,60,-100v23,-1,35,12,45,28r0,-86r38,0r0,257r-36,0v-1,-7,2,-18,-1,-24v-8,19,-21,29,-42,29v-42,0,-64,-34,-64,-104xm85,-26v29,0,33,-31,33,-69v0,-42,-2,-70,-36,-73v-30,4,-30,29,-30,70v0,41,1,72,33,72","k":{"y":2}},"e":{"d":"85,-199v60,0,70,42,68,107r-101,0v-2,39,8,70,33,70v21,0,31,-20,31,-43r36,0v1,41,-26,71,-68,70v-57,-2,-71,-37,-71,-99v0,-70,24,-105,72,-105xm52,-118r62,0v2,-31,-5,-54,-29,-54v-23,0,-34,20,-33,54","w":166,"k":{"x":2,".":13,",":13}},"f":{"d":"31,-194v-6,-52,19,-73,70,-65r0,30v-26,-3,-36,8,-32,35r32,0r0,29r-32,0r0,165r-38,0r0,-165r-27,0r0,-29r27,0","w":100,"k":{"\u201d":-6,"\u2019":-6,".":13,",":13}},"g":{"d":"77,-199v22,0,38,15,44,29r0,-24r36,0r0,185v11,74,-85,94,-126,57v-8,-7,-10,-19,-10,-31r37,0v-1,13,13,23,28,23v32,0,34,-33,32,-68v-7,14,-24,26,-44,27v-39,0,-58,-33,-58,-98v0,-66,20,-100,61,-100xm87,-168v-29,0,-33,28,-32,65v0,39,2,71,30,71v22,0,33,-23,33,-69v0,-44,-10,-67,-31,-67","k":{"r":-2,".":6,",":6}},"h":{"d":"89,-168v-18,0,-31,17,-31,38r0,130r-39,0r0,-257r39,0r1,85v23,-43,95,-35,95,26r0,146r-38,0r0,-133v-1,-22,-5,-35,-27,-35","k":{"y":2}},"i":{"d":"21,0r0,-194r38,0r0,194r-38,0xm21,-221r0,-39r38,0r0,39r-38,0","w":79},"j":{"d":"-9,35v22,2,31,-4,30,-26r0,-203r38,0r0,207v2,45,-25,56,-68,52r0,-30xm21,-260r38,0r0,39r-38,0r0,-39","w":79},"k":{"d":"19,0r0,-257r39,0r0,144r59,-81r45,0r-58,75r66,119r-43,0r-47,-88r-22,26r0,62r-39,0","w":166,"k":{"y":2,"o":2,"e":2}},"l":{"d":"21,0r0,-257r38,0r0,257r-38,0","w":79},"m":{"d":"90,-168v-56,0,-23,111,-31,168r-38,0r0,-194r36,0v1,7,-2,18,1,23v16,-36,81,-39,92,2v21,-45,96,-40,96,22r0,147r-39,0r0,-133v0,-23,-7,-35,-23,-35v-18,1,-31,17,-31,38r0,130r-39,0r0,-133v0,-23,-8,-35,-24,-35","w":266},"n":{"d":"89,-168v-18,0,-31,17,-31,38r0,130r-39,0r0,-194r36,0v1,7,-3,20,2,23v19,-43,97,-38,97,25r0,146r-38,0r0,-133v-1,-22,-5,-35,-27,-35"},"o":{"d":"83,-199v56,0,72,40,73,102v0,68,-25,102,-73,102v-48,0,-72,-34,-72,-102v0,-63,18,-102,72,-102xm83,-170v-30,3,-33,33,-33,73v0,44,0,69,33,73v33,-3,33,-29,34,-73v0,-41,-3,-70,-34,-73","w":166,"k":{"y":2,"w":2,"v":2,".":6,",":6}},"p":{"d":"162,-94v0,56,-13,99,-60,99v-22,0,-36,-10,-44,-28r0,86r-39,0r0,-257r36,0v1,7,-2,18,1,24v9,-19,24,-29,44,-29v42,0,62,35,62,105xm88,-168v-29,3,-33,31,-33,69v0,41,2,70,34,73v31,-3,32,-29,32,-70v0,-41,-2,-69,-33,-72","k":{"y":2,".":6,",":6}},"q":{"d":"116,63r-1,-86v-8,18,-22,28,-44,28v-40,0,-60,-33,-60,-99v0,-70,22,-105,64,-105v22,-1,33,12,43,29r0,-24r36,0r0,257r-38,0xm82,-26v34,-2,36,-31,36,-73v0,-38,-4,-65,-33,-69v-31,3,-33,32,-33,72v0,38,3,66,30,70"},"r":{"d":"19,0r0,-194r39,0r0,31v10,-27,28,-41,55,-34r0,39v-33,-7,-55,6,-55,42r0,116r-39,0","w":113,"k":{"\u2019":-4,"y":-6,"v":-6,"q":4,"n":-4,"m":-4,"g":2,"e":2,"d":2,"c":2,"a":2,".":33,",":33}},"s":{"d":"54,-90v-67,-15,-48,-116,24,-109v43,4,64,20,61,62r-37,0v1,-22,-6,-35,-25,-35v-26,0,-35,26,-22,42v28,23,92,19,88,76v-3,40,-28,59,-69,59v-46,0,-65,-20,-64,-67r35,0v-1,26,8,40,30,40v39,0,40,-44,10,-56","w":153},"t":{"d":"99,-1v-37,8,-71,5,-71,-44r0,-120r-27,0r0,-29r27,0r0,-55r39,0r0,55r32,0r0,29r-32,0r0,116v-3,21,16,22,32,19r0,29","w":100},"u":{"d":"84,-26v19,1,32,-14,32,-32r0,-136r38,0r0,194r-36,0v-1,-7,2,-18,-1,-23v-10,18,-27,28,-50,28v-37,-1,-48,-22,-48,-63r0,-136r39,0r0,139v0,19,8,29,26,29"},"v":{"d":"54,0r-51,-194r41,0r35,153r30,-153r42,0r-51,194r-46,0","w":153,"k":{"a":4,".":27,",":27}},"w":{"d":"49,0r-44,-194r41,0r27,153r29,-153r44,0r30,153r26,-153r39,0r-44,194r-44,0r-31,-150r-27,150r-46,0","w":246,"k":{"o":2,"a":4,".":20,",":20}},"x":{"d":"1,0r53,-100r-50,-94r42,0r31,64r31,-64r42,0r-50,94r52,100r-42,0r-34,-72r-34,72r-41,0","w":153},"y":{"d":"3,-194r42,0r34,146r31,-146r40,0r-53,201v-13,51,-25,62,-83,58r0,-31v28,6,41,-8,44,-30","w":153,"k":{"e":2,".":27,",":27}},"z":{"d":"9,0r0,-30r85,-131r-80,0r0,-33r124,0r0,32r-82,129r82,0r0,33r-129,0","w":146},"{":{"d":"98,66v-117,20,-27,-139,-95,-150r0,-23v69,-10,-23,-172,95,-150r0,22v-66,-7,5,126,-63,140v40,8,33,65,33,114v0,23,10,27,30,25r0,22","w":100},"|":{"d":"24,5r0,-267r31,0r0,267r-31,0","w":79},"}":{"d":"68,-210v0,43,-9,99,30,103r0,23v-70,9,23,172,-95,150r0,-22v65,6,-6,-127,62,-140v-40,-8,-33,-65,-33,-114v0,-22,-9,-27,-29,-25r0,-22v40,-4,65,9,65,47","w":100},"~":{"d":"146,-63v-14,3,-66,-26,-77,-26v-11,0,-21,10,-31,28r-13,-27v11,-21,26,-32,45,-32v13,-3,65,26,77,26v11,0,21,-9,31,-27r13,27v-12,21,-27,31,-45,31","w":216},"\u2026":{"d":"40,0r0,-48r41,0r0,48r-41,0xm159,0r0,-48r42,0r0,48r-42,0xm279,0r0,-48r41,0r0,48r-41,0","w":360},"\u2018":{"d":"23,-154v-1,-49,-3,-99,41,-103r0,21v-13,3,-19,16,-18,34r18,0r0,48r-41,0","w":86,"k":{"\u2018":22,"A":20}},"\u2019":{"d":"23,-210r0,-47r41,0v2,49,2,99,-41,103r0,-21v14,-3,19,-16,18,-35r-18,0","w":86,"k":{"\u2019":22,"s":13,"r":6,"d":13}},"\u201c":{"d":"24,-154v-1,-49,-3,-99,41,-103r0,21v-13,3,-19,16,-18,34r18,0r0,48r-41,0xm88,-154v-1,-49,-3,-99,41,-103r0,21v-13,3,-19,16,-18,34r18,0r0,48r-41,0","w":153,"k":{"A":20}},"\u201d":{"d":"88,-210r0,-47r41,0v2,49,2,99,-41,103r0,-21v14,-3,19,-16,18,-35r-18,0xm24,-210r0,-47r41,0v2,49,2,99,-41,103r0,-21v14,-3,19,-16,18,-35r-18,0","w":153,"k":{" ":13}},"\u2013":{"d":"0,-87r0,-34r180,0r0,34r-180,0","w":180},"\u2014":{"d":"0,-87r0,-34r360,0r0,34r-360,0","w":360},"\u2122":{"d":"56,-109r0,-124r-44,0r0,-24r119,0r0,24r-44,0r0,124r-31,0xm298,-109r-1,-117r-43,117r-20,0r-45,-117r0,117r-28,0r0,-148r42,0r41,105r40,-105r43,0r0,148r-29,0","w":360},"\u00a1":{"d":"64,-125r7,107r0,81r-41,0v-1,-66,2,-127,6,-188r28,0xm71,-194r0,41r-41,0r0,-41r41,0","w":100},"\u00aa":{"d":"9,-217v1,-30,16,-37,49,-38v57,-3,40,46,42,92v0,9,4,10,11,8r0,20v-20,8,-34,0,-38,-14v-13,26,-70,24,-70,-16v0,-33,25,-36,52,-42v21,-5,22,-29,-1,-28v-13,0,-19,6,-19,18r-26,0xm49,-154v20,0,25,-20,22,-43v-12,8,-37,7,-37,30v0,9,5,13,15,13","w":113},"\u00ba":{"d":"57,-255v38,0,52,22,52,62v0,41,-17,61,-52,61v-35,0,-52,-20,-52,-61v0,-40,14,-62,52,-62xm57,-154v14,0,21,-13,21,-39v0,-26,-7,-40,-21,-40v-14,0,-21,14,-21,40v0,26,7,39,21,39","w":113},"\u00bf":{"d":"83,68v-64,0,-88,-69,-56,-116v16,-22,48,-38,42,-77r37,0r0,22r-52,102v0,25,10,38,29,38v22,0,32,-16,32,-50r39,0v1,49,-23,81,-71,81xm108,-194r0,41r-41,0r0,-41r41,0","w":166},"\u00c1":{"d":"76,-271r22,-52r43,0r-38,52r-27,0xm64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0","w":186},"\u00c9":{"d":"71,-271r22,-52r43,0r-38,52r-27,0xm21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0"},"\u00cd":{"d":"20,-271r22,-52r43,0r-38,52r-27,0xm19,0r0,-257r41,0r0,257r-41,0","w":79},"\u00d1":{"d":"85,-317v13,-2,49,29,50,-1r23,0v0,18,-14,43,-31,42v-16,3,-54,-30,-56,2r-22,0v-1,-22,15,-44,36,-43xm21,0r0,-257r50,0r76,191r0,-191r38,0r0,257r-50,0r-75,-197r0,197r-39,0","w":206},"\u00d3":{"d":"80,-271r22,-52r43,0r-38,52r-27,0xm185,-129v0,81,-15,134,-85,134v-70,0,-85,-53,-85,-134v0,-81,15,-133,85,-133v69,0,85,53,85,133xm100,-231v-43,6,-44,43,-44,101v0,60,1,97,44,104v43,-7,44,-44,44,-104v0,-58,-1,-95,-44,-101","w":200},"\u00d7":{"d":"88,-91r-63,-63r20,-20r63,63r63,-63r20,20r-63,63r63,63r-20,20r-63,-63r-63,63r-20,-20","w":216},"\u00da":{"d":"77,-271r22,-52r43,0r-38,52r-27,0xm18,-257r41,0r0,184v0,31,13,47,38,47v25,0,37,-16,37,-47r0,-184r41,0r0,181v0,54,-26,81,-78,81v-53,0,-79,-27,-79,-81r0,-181","w":193},"\u00dc":{"d":"109,-279r0,-39r35,0r0,39r-35,0xm50,-279r0,-39r34,0r0,39r-34,0xm18,-257r41,0r0,184v0,31,13,47,38,47v25,0,37,-16,37,-47r0,-184r41,0r0,181v0,54,-26,81,-78,81v-53,0,-79,-27,-79,-81r0,-181","w":193},"\u00e1":{"d":"64,-219r21,-52r44,0r-39,52r-26,0xm84,-199v35,0,62,15,62,48r0,111v-1,12,8,15,16,12r0,25v-22,12,-51,2,-52,-20v-20,45,-107,36,-99,-26v-5,-63,54,-57,92,-77v13,-15,4,-46,-21,-46v-20,0,-29,12,-29,37r-37,0v1,-45,21,-63,68,-64xm50,-53v0,17,8,29,24,29v34,0,37,-40,35,-78v-20,15,-59,11,-59,49","w":166},"\u00e9":{"d":"68,-219r22,-52r43,0r-38,52r-27,0xm85,-199v60,0,70,42,68,107r-101,0v-2,39,8,70,33,70v21,0,31,-20,31,-43r36,0v1,41,-26,71,-68,70v-57,-2,-71,-37,-71,-99v0,-70,24,-105,72,-105xm52,-118r62,0v2,-31,-5,-54,-29,-54v-23,0,-34,20,-33,54","w":166},"\u00ed":{"d":"21,0r0,-194r38,0r0,194r-38,0xm20,-219r22,-52r43,0r-38,52r-27,0","w":79},"\u00f1":{"d":"69,-265v12,0,49,30,50,-1r22,0v0,18,-14,43,-31,43v-15,0,-54,-31,-55,2r-23,0v0,-21,16,-45,37,-44xm89,-168v-18,0,-31,17,-31,38r0,130r-39,0r0,-194r36,0v1,7,-3,20,2,23v19,-43,97,-38,97,25r0,146r-38,0r0,-133v-1,-22,-5,-35,-27,-35"},"\u00f3":{"d":"64,-219r21,-52r44,0r-39,52r-26,0xm83,-199v56,0,72,40,73,102v0,68,-25,102,-73,102v-48,0,-72,-34,-72,-102v0,-63,18,-102,72,-102xm83,-170v-30,3,-33,33,-33,73v0,44,0,69,33,73v33,-3,33,-29,34,-73v0,-41,-3,-70,-34,-73","w":166},"\u00fa":{"d":"67,-219r22,-52r43,0r-38,52r-27,0xm84,-26v19,1,32,-14,32,-32r0,-136r38,0r0,194r-36,0v-1,-7,2,-18,-1,-23v-10,18,-27,28,-50,28v-37,-1,-48,-22,-48,-63r0,-136r39,0r0,139v0,19,8,29,26,29"},"\u00fc":{"d":"99,-226r0,-39r35,0r0,39r-35,0xm40,-226r0,-39r34,0r0,39r-34,0xm84,-26v19,1,32,-14,32,-32r0,-136r38,0r0,194r-36,0v-1,-7,2,-18,-1,-23v-10,18,-27,28,-50,28v-37,-1,-48,-22,-48,-63r0,-136r39,0r0,139v0,19,8,29,26,29"},"\u00a0":{"w":86,"k":{"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}}}});


/*
 * Site.js
 */
Site = {
	cufon: function(){
		$(document.body).addClass('cufon-start');
		
		Cufon.replace('#nav-cont > li > a', { fontFamily: 'Helvetica', separate: 'none' });
		Cufon.replace('.cufon-ready', { fontFamily: 'Helvetica', hover: true });
		Cufon.replace('#languaje-box a, #find-home h3, #sidebar h3, #agent p, #real-state h3, .cnn-news h3, #more-articles h3, .post-title, .post-header h3, #respond h3, #comments h3, #subscribe label', 
				{ fontFamily: 'Helvetica Neue LT', textShadow: '#999999 1px 1px, #cccccc 2px 2px' });
		
	},
	ddpng: function(){
		if (document.ie) {
			if (document.ie.version == 6) {
				DD_belatedPNG.fix('#head-logo, #slideshow, #call-us');
				DD_belatedPNG.fix('#carousel-cont, .prev, .next, input');
				DD_belatedPNG.fix('#question, #subscribe, #featured-house');
				DD_belatedPNG.fix('h3, .l, .r, .cont, .b, #sidebar-personal div');
				DD_belatedPNG.fix('.t, #content .deco, .shadow, .golf');
				
				
				//DD_belatedPNG.fix('.info-box .t .l');

				$(document.body).addClass('ddpng-ready');
			}
		}
	},	
	nav: function(){
		if (document.ie) {
			if (document.ie.version == 6) {
				$('#nav li')
					.bind('mouseenter', function(){
						$(this).addClass('hover');
					})
					.bind('mouseleave', function(){
						$(this).removeClass('hover');
					});
			}
		}
	},
	orientation: function(){
		var toggle = function() {
			var x = screen.width == 320 ? 'portrait' : 'landscape';
			var y = screen.width !== 320 ? 'portrait' : 'landscape';
			$(document.body).addClass(x).removeClass(y);
		}
		$(window).bind('resize', toggle);
		toggle();
	},
	carousel: function(){
		$('#carousel').jCarouselLite({
			btnNext: '.next',
			btnPrev: '.prev',
			speed: 500,
			auto: 4000,
			circular: true
		});
	},
	map: function() {
		var map = null;
		var geocoder = null;
	
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("map"));
			//map.setCenter(new GLatLng(37.4419, -122.1419), 13);
			geocoder = new GClientGeocoder();
			geocoder.getLatLng(
				'28756 Bridger Court, Santa Clarita, CA 91390',
				function(point) {
					map.setCenter(point);
					map.setZoom(16);
					map.setMapType(G_HYBRID_MAP);
					map.addControl(new GSmallMapControl());
	
					var blueIcon = new GIcon(G_DEFAULT_ICON);
					blueIcon.iconSize = new GSize(109, 49);
	
					blueIcon.image = "http://mycapitalcenter.com/web/wp-content/themes/mycapitalcenter/images/logo-marker.png";
					markerOptions = { icon:blueIcon };
	
					var marker = new GMarker(point, markerOptions);
					map.addOverlay(marker);
				}
			);
		}
	},
	mortgage: function(width, height){
		$("#mortgage-tools .tools a").click(function(){
			$('#nav').css("z-index",'0'); 
			$('#calculator').fadeIn('slow');
			return false;
		});
		$('.shadow, .close a').click(function(){
			$('#calculator').hide();
			$('#nav').css("z-index",'10');
			return false;
		});
	},
	init: function(){
		var body = $(document.body);
		Site.ddpng();		
		Site.cufon();
		Site.nav();
		//Site.mortgage($(this).width(), $(this).height());
		
		if (body.is('.home'))
			Site.carousel();
		
		if (body.is('.page-id-6'))
			Site.map();
		
		$(document.body).addClass('hasJS');
	}
};

$(document).ready(Site.init);
