function PreOwnedAjaxRequest(querystring){var url=siteUrl+"/Ajax/PreOwned.ashx"+querystring;$.ajax({url:url,cache:false,success:function(data,textStatus){},error:function(XMLHttpRequest,textStatus,errorThrown){alert("Something went wrong with the AJAX request: "+textStatus);}});}function PreOwnedAjaxShortlistRequest(querystring){var url=siteUrl+"/Ajax/PreOwned.ashx"+querystring;$.ajax({url:url,cache:false,success:function(data,textStatus){var _disabledOpacity=0.4;var _normalOpacity=1;var _disabledClass="disabled";var _btnList=$("#btn-shortlist");if(_btnList){if(data>0){_btnList.css({opacity:_normalOpacity}).removeClass(_disabledClass);}else{_btnList.css({opacity:_disabledOpacity}).addClass(_disabledClass);}}},error:function(XMLHttpRequest,textStatus,errorThrown){alert("Something went wrong with the AJAX request: "+textStatus);}});}function PreOwnedAjaxCompareRequest(querystring){var url=siteUrl+"/Ajax/PreOwned.ashx"+querystring;$.ajax({url:url,cache:false,success:function(data,textStatus){var _disabledOpacity=0.4;var _normalOpacity=1;var _disabledClass="disabled";var _btnList=$("#btn-compare");if(_btnList){if(data>1){_btnList.css({opacity:_normalOpacity}).removeClass(_disabledClass);}else{_btnList.css({opacity:_disabledOpacity}).addClass(_disabledClass);}}},error:function(XMLHttpRequest,textStatus,errorThrown){alert("Something went wrong with the AJAX request: "+textStatus);}});}shortList={setTarget:function(obj){var selected=this.getSelected();if(selected.length>0){obj.href+=(obj.href.indexOf("?")>-1?"&":"?")+"vehicleIds="+selected;}return true;},email:function(){var qs=new String("?mode=emailshortlist");$("#EmailStatus").text("Sending email ...");qs+="&vehicleIds="+$("#txtVehicleIds")[0].value;qs+="&rcpName="+escape($("#txt-sent-recipients-name")[0].value);qs+="&rcpEmail="+escape($("#txt-sent-recipients-email")[0].value);qs+="&yourName="+escape($("#txt-sent-you-name")[0].value);qs+="&yourEmail="+escape($("#txt-sent-you-email")[0].value);qs+="&comments="+escape($("#area-comments")[0].value);var url=siteUrl+"/Ajax/PreOwned.ashx"+qs;$.ajax({url:url,cache:false,success:shortList.emailReturn});return false;},emailReturn:function(data,text){var email=eval("({"+data+"})");$("#EmailStatus").text(email.msg);if(email.success=="1"){$("#txt-sent-recipients-email")[0].value="";$("#txt-sent-recipients-name")[0].value="";}},getSelected:function(){var selected=new String("");$(".main-column li input[type=checkbox]:checked").each(function(){selected+=this.value+",";});return(selected.length==0?selected:escape(selected.substr(0,selected.length-1)));}};ExperienceForm={details:{NameOfParty:"",OrganisersName:"",TelephoneDay:"",Email:"",ReasonForInterest:"",ReferrerInfo:"",SpecialRequirements:"",DatePreferences:"",validate:function(){if(this.NameOfParty.length==0){throw"Name of party is required";}if(this.OrganisersName.length==0){throw"Organiser's name is required";}if(this.Email.length==0){throw"Email is required";}},serialise:function(){var s=new String("");for(var att in this){if(att!="serialise"){s+="&"+att+"="+escape(this[att]);}}return s;}},book:function(ajax){var qs=new String("?mode=experienceBookingForm");$("#Status").text("Booking ...");var details=this.details;details.NameOfParty=$("#NameOfParty")[0].value;details.OrganisersName=$("#OrganisersName")[0].value;details.TelephoneDay=$("#TelephoneDay")[0].value;details.Email=$("#Email")[0].value;details.ReasonForInterest=$("#ReasonForInterest")[0].value;details.ReferrerInfo=$("#ReferrerInfo")[0].value;details.SpecialRequirements=$("#SpecialRequirements")[0].value;details.DatePreferences=$("#DatePreferences")[0].value;try{details.validate();}catch(ex){$("#Status").text(ex);return false;}if(ajax){qs+=details.serialise();var url=siteUrl+"/Ajax/PreOwned.ashx"+qs;$.ajax({url:url,cache:false,success:shortList.emailReturn});}else{$("#submit").click();}return false;}};function ShowDealerMapRequest(){$(".find-box").each(function(){var _holder=$(this);var postcode=_holder.find(".postcodeTextbox");var postCodeValue="Enter post code";var region=$("input[@name='find-dealer']:checked").val();var market="1446";if(region=="1117"){market="1447";}postCodeValue=postcode[0].value;if(postCodeValue!="Enter post code"&&postCodeValue!="Enter zipcode"){var url=siteUrl+"/Ajax/ConsoleMap.aspx?postcode="+postCodeValue+"&market="+market+"&region="+region;$.ajax({url:url,cache:false,success:function(data,textStatus){var _fadeSpeed=400;var _slideSpeed=300;var _step2=_holder.find(".full-open");_step2.css({display:"none"});_step2.slideDown(_slideSpeed,function(){_submitFlag=true;});var _consoleMap=_holder.find(".consoleMap");_consoleMap.html(data);},error:function(XMLHttpRequest,textStatus,errorThrown){alert("Something went wrong with the AJAX request: "+textStatus);}});}else{}});}function ChangePostcodeText(text){$(".find-box").each(function(){var _holder=$(this);var postcode=_holder.find(".postcodeTextbox");postcode[0].value=text;});}function ShowMap(lat,lon,isLatLon,postalcodeVar,countryCodeVar){var dealerAddress=new MMLocation(new MMLatLon(lat,lon));if(!isLatLon){dealerAddress=new MMLocation(new MMAddress({postal_code:postalcodeVar,country_code:countryCodeVar}));}var mapviewer,geocoder;var icon=new MMIcon("/i/map_icon.gif");icon.iconSize=new MMDimensions(78,25);icon.iconAnchor=new MMPoint(16,16);$(".find-box").each(function(){var _holder=$(this);var map=_holder.find(".mapviewer");if(map[0]){mapviewer=new MultimapViewer(map[0]);if(!isLatLon){mapviewer.addEventHandler("endGeocode",function(){mapviewer.createMarker(dealerAddress,{"label":"Dealer","icon":icon});});}else{mapviewer.createMarker(dealerAddress,{"label":"Dealer","icon":icon});}mapviewer.goToPosition(dealerAddress);}});}function callGeocoder(){if(postal_code.value==""&&(street.value==""||city.value=="")){error_message.innerHTML="<h2></h2>";return false;}error_message.innerHTML="";userAddress=new MMAddress();userAddress.street=street.value;userAddress.city=city.value;userAddress.postal_code=postal_code.value;userAddress.country_code="US";cleanUp();geocoder.count=max_results;geocoder.geocode(userAddress);}function processResults(){if(geocoder.error_code&&geocoder.error_code!="MM_GEOCODE_MULTIPLE_MATCHES"){error_message.innerHTML="We are sorry - the following error occurred: <br></br><em>"+geocoder.error_code+"</em>";return false;}error_message.innerHTML="";results=geocoder.result_set;if(results.length==1){moveToResult(0);}else{if(results.length>1){var ol=document.createElement("ol");for(var count=0;count<results.length;count++){var address=results[count].address;var li=document.createElement("li");var anchor=document.createElement("a");anchor.href="#";anchor.result_count=count;anchor.onclick=function(){moveToResult(this.result_count);return false;};anchor.appendChild(document.createTextNode(address.display_name));li.appendChild(anchor);ol.appendChild(li);var marker=mapviewer.createMarker(results[count],{"label":address.display_name,"text":(count+1)});marker.setInfoBoxContent("<p>"+address.display_name+"</p>");markers.push(marker);}message.appendChild(ol);message.style.display="block";var location=mapviewer.getAutoScaleLocation(markers);if(location.zoom_factor>17){location.zoom_factor=17;}mapviewer.goToPosition(location);}}}function moveToResult(count){userAddress=results[count];callRoute();}(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F);},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this;}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H);}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E);}var F=o(I||[]);F.context=document;F.selector=E;return F;}}else{return o(H).find(E);}}else{if(o.isFunction(E)){return o(document).ready(E);}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context;}return this.setArray(o.isArray(E)?E:o.makeArray(E));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(E){return E===g?Array.prototype.slice.call(this):this[E];},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E;}else{if(H){G.selector=this.selector+"."+H+"("+E+")";}}return G;},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this;},each:function(F,E){return o.each(this,F,E);},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this);},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F);}else{E={};E[F]=H;}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F));}});},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g;}return this.attr(E,F,"curCSS");},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F));}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this]);}});});return E;},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0]);}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild;}return G;}).append(this);}return this;},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E);});},wrap:function(E){return this.each(function(){o(this).wrapAll(E);});},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E);}});},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild);}});},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this);});},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling);});},end:function(){return this.prevObject||o([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F;}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G);})),"find",E);}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML;}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else{return this.cloneNode(true);}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return;}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data);}}F++;});}return E;},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F);})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1;})),"filter",E);},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H;}H=H.parentNode;F++;}});},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E);}else{E=o.multiFilter(E,this);}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E;});},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))));},is:function(E){return !!E&&o.multiFilter(E,this).length>0;},hasClass:function(E){return !!E&&this.is("."+E);},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text;}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null;}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K;}L.push(K);}}return L;}return(E.value||"").replace(/\r/g,"");}return g;}if(typeof K==="number"){K+="";}return this.each(function(){if(this.nodeType!=1){return;}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0);}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0);});if(!N.length){this.selectedIndex=-1;}}else{this.value=K;}}});},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E);},replaceWith:function(E){return this.after(E).remove();},eq:function(E){return this.slice(E,+E+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I);}}if(F){o.each(F,z);}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N;}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"});}else{o.globalEval(F.text||F.textContent||F.innerHTML||"");}if(F.parentNode){F.parentNode.removeChild(F);}}function e(){return +new Date;}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2;}if(typeof J!=="object"&&!o.isFunction(J)){J={};}if(I==H){J=this;--H;}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue;}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L);}else{if(L!==g){J[F]=L;}}}}}return J;};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y;}return o;},isFunction:function(E){return s.call(E)==="[object Function]";},isArray:function(E){return s.call(E)==="[object Array]";},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument);},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G));}else{E.text=G;}F.insertBefore(E,F.firstChild);F.removeChild(E);}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase();},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break;}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break;}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break;}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G;},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F);}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I;},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H;}});},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G);}).join(" "):"";}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1;}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F];}I.call(H);for(var F in G){H.style[F]=E[F];}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return;}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0;}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0;}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0;}});}if(H.offsetWidth!==0){I();}else{o.swap(H,G,I);}return Math.max(0,Math.round(L));}return o.curCSS(H,F,J);},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L;}if(F.match(/float/i)){F=w;}if(!G&&E&&E[F]){L=E[F];}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float";}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F);}if(F=="opacity"&&L==""){L="1";}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase();});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K;}}}}return L;},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document;}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])];}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+="";}if(!S){return;}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">";});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild;}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M]);}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild);}S=o.makeArray(L.childNodes);}if(S.nodeType){G.push(S);}else{G=o.merge(G,S);}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J]);}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))));}I.appendChild(G[J]);}}return E;}return G;},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g;}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex;}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed";}J[G]=K;}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue;}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g;}return J[G];}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K);}if(L){J.setAttribute(G,""+K);}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E;}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")");}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":"";}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase();});if(L){J[G]=K;}return J[G];},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"");},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G;}else{while(F){E[--F]=G[F];}}}return E;},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E;}}return -1;},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G;}}}else{while((G=E[F++])!=null){H[I++]=G;}}return H;},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G]);}}}catch(I){F=K;}return F;},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H]);}}return G;},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I;}}return F.concat.apply([],F);}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode;},parents:function(E){return o.dir(E,"parentNode");},next:function(E){return o.nth(E,2,"nextSibling");},prev:function(E){return o.nth(E,2,"previousSibling");},nextAll:function(E){return o.dir(E,"nextSibling");},prevAll:function(E){return o.dir(E,"previousSibling");},siblings:function(E){return o.sibling(E.parentNode.firstChild,E);},children:function(E){return o.sibling(E.firstChild);},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes);}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H);}return this.pushStack(o.unique(H),E,G);};});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I);}return this.pushStack(J,E,G);};});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E);}},addClass:function(E){o.className.add(this,E);},removeClass:function(E){o.className.remove(this,E);},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F);}o.className[E?"add":"remove"](this,F);},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this);});if(this.parentNode){this.parentNode.removeChild(this);}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild);}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments);};});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0;}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v;}if(E&&!o.cache[H]){o.cache[H]={};}if(G!==g){o.cache[H][E]=G;}return E?o.cache[H][E]:H;},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break;}if(!E){o.removeData(F);}}}else{try{delete F[h];}catch(G){if(F.removeAttribute){F.removeAttribute(h);}}delete o.cache[H];}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H));}else{if(H){G.push(H);}}}return G;},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0];}if(F!==g){F.call(H);}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E);}return F===g&&H[1]?this.data(H[0]):F;}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G);});}},removeData:function(E){return this.each(function(){o.removeData(this,E);});},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx";}if(F===g){return o.queue(this[0],E);}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this);}});},dequeue:function(E){return this.each(function(){o.dequeue(this,E);});}});(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[];}if(!Y||typeof Y!=="string"){return ab;}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break;}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U);}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift();}af=J(Y,af);}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af);}else{X=false;}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah="";}else{ag=Z.pop();}if(ag==null){ag=U;}I.relative[ah](ai,ag,Q(U));}}if(!ai){ai=af;}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y);}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai);}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa]);}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa]);}}}}}else{E(ai,ab);}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1);}}}}}return ab;};F.matches=function(T,U){return F(T,null,null,U);};F.find=function(aa,T,ab){var Z,X;if(!aa){return[];}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break;}}}}if(!Z){Z=T.getElementsByTagName("*");}return{set:Z,expr:aa};};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[];}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true;}else{if(Y===true){continue;}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true;}else{aa[X]=false;}}else{if(ae){ai.push(af);T=true;}}}}}if(ah!==g){if(!ag){aa=ai;}ad=ad.replace(I.match[ab],"");if(!T){return[];}break;}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad;}else{break;}}V=ad;}return aa;};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href");}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase();}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T;}}if(Y){F.filter(T,aa,true);}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false;}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U;}}if(X){F.filter(U,Z,true);}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P;}T("parentNode",U,V,W,X,Y);},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P;}T("previousSibling",U,V,W,X,Y);}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[];}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W]);}}return U.length===0?null:U;}},TAG:function(T,U){return U.getElementsByTagName(T[1]);}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W;}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y);}}else{if(V){U[X]=false;}}}}return false;},ID:function(T){return T[1].replace(/\\/g,"");},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase();},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0;}T[0]=L++;return T;},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W];}if(X[2]==="~="){X[4]=" "+X[4]+" ";}return X;},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U);}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W);}return false;}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true;}}return X;},POS:function(T){T.unshift(true);return T;}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden";},disabled:function(T){return T.disabled===true;},checked:function(T){return T.checked===true;},selected:function(T){T.parentNode.selectedIndex;return T.selected===true;},parent:function(T){return !!T.firstChild;},empty:function(T){return !T.firstChild;},has:function(V,U,T){return !!F(T[3],V).length;},header:function(T){return/h\d/i.test(T.nodeName);},text:function(T){return"text"===T.type;},radio:function(T){return"radio"===T.type;},checkbox:function(T){return"checkbox"===T.type;},file:function(T){return"file"===T.type;},password:function(T){return"password"===T.type;},submit:function(T){return"submit"===T.type;},image:function(T){return"image"===T.type;},reset:function(T){return"reset"===T.type;},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON";},input:function(T){return/input|select|textarea|button/i.test(T.nodeName);}},setFilters:{first:function(U,T){return T===0;},last:function(V,U,T,W){return U===W.length-1;},even:function(U,T){return T%2===0;},odd:function(U,T){return T%2===1;},lt:function(V,U,T){return U<T[3]-0;},gt:function(V,U,T){return U>T[3]-0;},nth:function(V,U,T){return T[3]-0==U;},eq:function(V,U,T){return T[3]-0==U;}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa);}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0;}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false;}}return true;}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false;}}if(Z=="first"){return true;}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false;}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true;}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X;}}ab.sizcache=Y;}var aa=T.nodeIndex-ac;if(V==0){return aa==0;}else{return(aa%V==0&&aa/V>=0);}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T;},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T;},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1;},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false;},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y);}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source);}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T;}return U;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X);}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V]);}}else{for(var V=0;X[V];V++){U.push(X[V]);}}}return U;};}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true;}return V;};}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true;}return V;};}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true;}return X;};}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[];}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W;};}T.removeChild(U);})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V]);}}X=W;}return X;};}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2);};}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return;}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V);}catch(Z){}}return T(Y,X,V,W);};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches;})();}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return;}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return;}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1]);}};})();}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W;}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break;}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W;}if(T.nodeName===Z){X=T;break;}T=T[U];}ad[W]=X;}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W;}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break;}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W;}if(typeof Z!=="string"){if(T===Z){X=true;break;}}else{if(F.filter(Z,[T]).length>0){X=T;break;}}}T=T[U];}ad[W]=X;}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16;}:function(U,T){return U!==T&&(U.contains?U.contains(T):true);};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument);};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"");}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W);}return F.filter(X,W);};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0;};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0;};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem;}).length;};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")";}return F.matches(V,T);};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W);}W=W[U];}return T;};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break;}}return X;};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V);}}return T;};return;l.Sizzle=F;})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return;}if(I.setInterval&&I!=l){I=l;}if(!H.guid){H.guid=this.guid++;}if(K!==g){var G=H;H=this.proxy(G);H.data=K;}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g;});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O);}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false);}else{if(I.attachEvent){I.attachEvent("on"+N,J);}}}}L[H.guid]=H;o.event.global[N]=true;});I=null;},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return;}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""));}}else{if(H.type){J=H.handler;H=H.type;}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid];}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P];}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q);}for(F in G[O]){break;}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false);}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"));}}}F=null;delete G[O];}}});}for(F in G){break;}if(!F){var L=o.data(K,"handle");if(L){L.elem=null;}o.removeData(K,"events");o.removeData(K,"handle");}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true;}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem);}});}}if(!H||H.nodeType==3||H.nodeType==8){return g;}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I);}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K);}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false;}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]();}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true);}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation();}}if(K.isImmediatePropagationStopped()){break;}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H;}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J];}if(!H.target){H.target=H.srcElement||document;}if(H.target.nodeType==3){H.target=H.target.parentNode;}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement;}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0);}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode;}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey;}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)));}return H;},proxy:function(F,E){E=E||function(){return F.apply(this,arguments);};E.guid=F.guid=F.guid||E.guid||this.guid++;return E;},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c);},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++;}});if(E<1){o.event.remove(this,G[0],c);}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E);}if(E&&E.type){this.originalEvent=E;this.type=E.type;}else{this.type=E;}this.timeStamp=e();this[h]=true;};function k(){return false;}function u(){return true;}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return;}if(E.preventDefault){E.preventDefault();}E.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return;}if(E.stopPropagation){E.stopPropagation();}E.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation();},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode;}catch(G){E=this;}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments);}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E);},teardown:function(){o.event.remove(this,F,a);}};});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G);});},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments);});return this.each(function(){o.event.add(this,G,E,F&&H);});},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E);});},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this);});},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result;}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++]);}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(E,F){return this.mouseenter(E).mouseleave(F);},ready:function(E){B();if(o.isReady){E.call(document,o);}else{o.readyList.push(E);}return this;},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this;},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this;}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J});}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest");});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false);}});return G;}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".");}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o);});o.readyList=null;}o(document).triggerHandler("ready");}}});var x=false;function B(){if(x){return;}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready();},false);}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready();}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return;}try{document.documentElement.doScroll("left");}catch(E){setTimeout(arguments.callee,0);return;}o.ready();})();}}}o.event.add(l,"load",o.ready);}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E);};});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem);}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return;}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"));}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J];}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee);});K.cloneNode(true).fireEvent("onclick");}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none";});})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G);}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I);}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null;}else{if(typeof J==="object"){J=o.param(J);H="POST";}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText);}if(K){F.each(K,[M.responseText,L,M]);}}});return this;},serialize:function(){return o.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I};}):{name:F.name,value:G};}).get();}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G);};});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null;}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F});},getScript:function(E,F){return o.get(E,null,F,"script");},getJSON:function(E,F,G){return o.get(E,F,G,"json");},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={};}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F});},ajaxSetup:function(E){o.extend(o.ajaxSettings,E);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data);}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?";}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?";}}M.dataType="json";}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1");}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W];}catch(Y){}if(H){H.removeChild(T);}};}if(M.dataType=="script"&&M.cache==null){M.cache=false;}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"");}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null;}if(M.global&&!o.active++){o.event.trigger("ajaxStart");}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset;}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T);}};}H.appendChild(T);return g;}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password);}else{J.open(G,M.url,M.async);}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType);}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT");}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default);}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop");}J.abort();return false;}if(M.global){o.event.trigger("ajaxSend",[J,M]);}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop");}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null;}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M);}catch(Z){R="parsererror";}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified");}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y;}if(!W){I();}}else{o.handleError(M,J,R);}L();if(X){J.abort();}if(M.async){J=null;}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout");}},M.timeout);}}try{J.send(M.data);}catch(S){o.handleError(M,J,null,S);}if(!M.async){N();}function I(){if(M.success){M.success(V,R);}if(M.global){o.event.trigger("ajaxSuccess",[J,M]);}}function L(){if(M.complete){M.complete(J,R);}if(M.global){o.event.trigger("ajaxComplete",[J,M]);}if(M.global&&!--o.active){o.event.trigger("ajaxStop");}}return J;},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G);}if(F.global){o.event.trigger("ajaxError",[H,F,G]);}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223;}catch(E){}return false;},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E];}catch(F){}return false;},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror";}if(G&&G.dataFilter){I=G.dataFilter(I,H);}if(typeof I==="string"){if(H=="script"){o.globalEval(I);}if(H=="json"){I=l["eval"]("("+I+")");}}return I;},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J);}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value);});}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this);});}else{H(F,o.isFunction(E[F])?E[F]():E[F]);}}}return G.join("&").replace(/%20/g,"+");}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F;});return G;}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L);}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G];}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block";}I.remove();m[G]=K;}o.data(this[H],"olddisplay",K);}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||"";}return this;}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I);}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"));}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none";}return this;}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]();}):this.animate(t("toggle",3),G,F);},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F);},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this);}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow;}}if(K.overflow!=null){this.style.overflow="hidden";}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I);}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P;}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T;}R.custom(T,N,P);}else{R.custom(T,S,"");}}});return true;});},stop:function(F,E){var G=o.timers;if(F){this.queue([]);}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true);}G.splice(H,1);}}});if(!E){this.dequeue();}return this;}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H);};});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue();}if(o.isFunction(E.old)){E.old.call(this);}};return E;},easing:{linear:function(G,H,E,F){return E+F*G;},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E;}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={};}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block";}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0;},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J);}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1);}}if(!K.length){clearInterval(n);n=g;}},13);}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show();},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false;}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block";}}if(this.options.hide){o(this.elem).hide();}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I]);}}this.options.complete.call(this.elem);}return false;}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now);},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit;}else{E.elem[E.prop]=E.now;}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0};}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0]);}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H};};}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0};}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0]);}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0;}F=G,G=J.offsetParent;}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0;}E=M;}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft;}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft);}return{top:N,left:I};};}o.offset={initialize:function(){if(this.initialized){return;}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E];}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true;},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0;}return{top:G,left:F};}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left};}return F;},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent;}return o(E);}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null;}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H;}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G];};});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null;};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null;};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px");};});})();jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]]);}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return;}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k);}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j);},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false;}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true;}m[j]=1;l=(m[j]>0);m[j]=0;return l;},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l));},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l);},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)));};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""));}):e.call(this,j));};}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove");});return i.apply(this,arguments);},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui");},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false;});},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1));}).eq(0);}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1));}).eq(0);}return(/fixed/).test(this.css("position"))||!j.length?c(document):j;}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3]);},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length;},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable");}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p);}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"));}return(c.inArray(o,j)!=-1);}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this;}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined);}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o));});};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r);}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p);}}).bind("remove",function(){return m.destroy();});};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option";};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled");},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l);}k={};k[l]=m;}c.each(k,function(n,o){j._setData(n,o);});},_getData:function(j){return this.options[j];},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k);}},enable:function(){this._setData("disabled",false);},disable:function(){this._setData("disabled",true);},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o];}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented());}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k);}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false;}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on");}this.started=false;},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable));},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return;}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true;}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true;},this.options.delay);}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true;}}this._mouseMoveDelegate=function(n){return k._mouseMove(n);};this._mouseUpDelegate=function(n){return k._mouseUp(n);};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true;},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j);}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault();}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j));}return !this._mouseStarted;},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j);}return false;},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance);},_mouseDelayMet:function(j){return this.mouseDelayMet;},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true;}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);(function(a){a.widget("ui.slider",a.extend({},a.ui.mouse,{_init:function(){var b=this,c=this.options;this._keySliding=false;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");this.range=a([]);if(c.range){if(c.range===true){this.range=a("<div></div>");if(!c.values){c.values=[this._valueMin(),this._valueMin()];}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]];}}else{this.range=a("<div></div>");}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range);}this.range.addClass("ui-widget-header");}if(a(".ui-slider-handle",this.element).length==0){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle");}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length<c.values.length){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle");}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault();}).hover(function(){if(!c.disabled){a(this).addClass("ui-state-hover");}},function(){a(this).removeClass("ui-state-hover");}).focus(function(){if(!c.disabled){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus");}else{a(this).blur();}}).blur(function(){a(this).removeClass("ui-state-focus");});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d);});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return;}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e);}break;}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e);}else{g=d=b.value();}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return;}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return;}d=g-h;break;}b._slide(i,e,d);return f;}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active");}});this._refreshValue();},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy();},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false;}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()-this._valueMin()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l;}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i]);}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true;},_mouseStart:function(b){return true;},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false;},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false;},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal";},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0);}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0);}var f=(h/c);if(f>1){f=1;}if(f<0){f=0;}if("vertical"==this.orientation){f=1-f;}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step;}return parseFloat(g.toFixed(5));},_start:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values();}this._trigger("start",d,b);},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((this.options.values.length==2&&this.options.range===true)&&((e==0&&d>b)||(e==1&&d<b))){d=b;}if(d!=this.values(e)){var c=this.values();c[e]=d;var h=this._trigger("slide",f,{handle:this.handles[e],value:d,values:c});var b=this.values(e?0:1);if(h!==false){this.values(e,d,(f.type=="mousedown"&&this.options.animate),true);}}}else{if(d!=this.value()){var h=this._trigger("slide",f,{handle:this.handles[e],value:d});if(h!==false){this._setData("value",d,(f.type=="mousedown"&&this.options.animate));}}}},_stop:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values();}this._trigger("stop",d,b);},_change:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values();}this._trigger("change",d,b);},value:function(b){if(arguments.length){this._setData("value",b);this._change(null,0);}return this._value();},values:function(b,e,c,d){if(arguments.length>1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b);}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b);}else{return this.value();}}else{return this._values();}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"disabled":if(d){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled");}else{this.handles.removeAttr("disabled");}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break;}},_step:function(){var b=this.options.step;return b;},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin();}if(b>this._valueMax()){b=this._valueMax();}return b;},_values:function(b){if(arguments.length){var c=this.options.values[b];if(c<this._valueMin()){c=this._valueMin();}if(c>this._valueMax()){c=this._valueMax();}return c;}else{return this.options.values;}},_valueMin:function(){var b=this.options.min;return b;},_valueMax:function(){var b=this.options.max;return b;},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate});}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate});}}lastValPercent=o;});}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate});}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7.2",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}});})(jQuery);jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g);},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a;},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a;},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a;}return -h/2*((--f)*(f-2)-1)+a;},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a;},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a;},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a;}return h/2*((f-=2)*f*f+2)+a;},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a;},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a;},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a;}return -h/2*((f-=2)*f*f*f-2)+a;},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a;},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a;},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a;}return h/2*((f-=2)*f*f*f*f+2)+a;},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a;},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a;},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a;},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a;},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a;},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a;}if(f==g){return a+h;}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a;}return h/2*(-Math.pow(2,-10*--f)+2)+a;},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a;},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a;},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a;}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a;},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e;}if((h/=k)==1){return e+l;}if(!j){j=k*0.3;}if(g<Math.abs(l)){g=l;var i=j/4;}else{var i=j/(2*Math.PI)*Math.asin(l/g);}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e;},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e;}if((h/=k)==1){return e+l;}if(!j){j=k*0.3;}if(g<Math.abs(l)){g=l;var i=j/4;}else{var i=j/(2*Math.PI)*Math.asin(l/g);}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e;},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e;}if((h/=k/2)==2){return e+l;}if(!j){j=k*(0.3*1.5);}if(g<Math.abs(l)){g=l;var i=j/4;}else{var i=j/(2*Math.PI)*Math.asin(l/g);}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e;}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e;},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158;}return i*(f/=h)*f*((g+1)*f-g)+a;},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158;}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a;},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158;}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a;}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a;},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a;},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a;}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a;}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a;}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a;}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a;}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a;}});jQuery.fn.slideNews=function(_options){var _options=jQuery.extend({btPrev:"a.link-prev",btNext:"a.link-next",tabsNews:"ul.tabset li a",holderList:"div",scrollElParent:"ul",scrollEl:"li",duration:1000,autoSlide:false},_options);return this.each(function(){var _this=$(this);var _lenghtSlide=$(_options.scrollEl,$(_options.holderList,_this)).length;var _gWidth=$(_options.holderList,_this).innerWidth();var _liWidth=$(_options.scrollEl,$(_options.holderList,_this)).outerWidth();var _liSum=$(_options.scrollEl,$(_options.holderList,_this)).length*_liWidth;var _rightArrow=$(_options.btNext,_this);var _leftArrow=$(_options.btPrev,_this);var _tabs=$(_options.tabsNews,_this);var _scrollEl=$(_options.scrollElParent,$(_options.holderList,_this));var _margin=0;var _duration=_options.duration;var f=0;var _step=_gWidth;var _slideTimer=false;_this.hover(function(){if(_slideTimer){clearTimeout(_slideTimer);}},function(){if(_options.autoSlide){_slideTimer=setTimeout(function(){_this.autoSlide();},_options.autoSlide);}});_this.bind("mousemove",function(){if(_slideTimer){clearTimeout(_slideTimer);}});_this.nextSlide=function(){if(_slideTimer){clearTimeout(_slideTimer);}if(_liSum-_gWidth<=_margin+_step){if(f==0){_margin=_liSum-_gWidth;f=1;}else{_margin=0;f=0;}}else{_margin=_margin+_step;}$(_scrollEl).animate({marginLeft:-_margin+"px"},{queue:false,duration:_duration,easing:"easeOutCubic"});$(_tabs).removeClass("active");$(_tabs).eq(_lenghtSlide-(_liSum-_margin)/_liWidth).addClass("active");if(_options.autoSlide){_slideTimer=setTimeout(function(){_this.autoSlide();},_options.autoSlide);}return false;};if(_options.btNext){$(_rightArrow).click(_this.nextSlide);}if(_options.btPrev){$(_leftArrow).click(function(){if(_slideTimer){clearTimeout(_slideTimer);}_margin=_margin-_step;if(_margin<0){_margin=_liSum-_liWidth;}$(_scrollEl).animate({marginLeft:-_margin+"px"},{queue:false,duration:_duration,easing:"easeOutCubic"});$(_tabs).removeClass("active");$(_tabs).eq(_lenghtSlide-(_liSum-_margin)/_liWidth).addClass("active");if(_options.autoSlide){_slideTimer=setTimeout(function(){_this.autoSlide();},_options.autoSlide);}return false;});}if(_options.tabsNews){$(_tabs).click(function(){if(_slideTimer){clearTimeout(_slideTimer);}$(_tabs).removeClass("active");var _gn=$(_tabs).index($(this));_margin=_step*_gn;$(_scrollEl).animate({marginLeft:-_margin+"px"},{queue:false,duration:_duration,easing:"easeOutExpo"});$(this).addClass("active");if(_options.autoSlide){_slideTimer=setTimeout(function(){_this.autoSlide();},_options.autoSlide);}return false;});}if(_options.autoSlide){_this.autoSlide=function(){_this.nextSlide();};_slideTimer=setTimeout(function(){_this.autoSlide();},_options.autoSlide);}});};jQuery.fn.slideShow=function(_options){var _options=jQuery.extend({slideEl:"div.img-hold img",linkNext:"a.next",linkPrev:"a.prev",linkPause:"a.pause",numElementLink:"div.nav li a",duration:500,autoSlideShow:false,switchTime:3000,event:"click",currentEl:"#footer span.cur",allEl:"#footer span.all"},_options);return this.each(function(){var _THIS=jQuery(this);var _slideEl=$(_options.slideEl,_THIS);var _elTagName=_options.slideEl;var _linkNext=$(_options.linkNext,_THIS).length?$(_options.linkNext,_THIS):false;var _linkPrev=$(_options.linkPrev,_THIS).length?$(_options.linkPrev,_THIS):false;var _linkPause=$(_options.linkPause,_THIS).length?$(_options.linkPause,_THIS):false;var _numElementLink=$(_options.numElementLink,_THIS).length?$(_options.numElementLink,_THIS):false;var _numElement=$(_options.numElementLink,_THIS).length?_numElementLink.parent():false;var _duration=_options.duration;var _switchTime=_options.switchTime;var _numElActive,_n,_timer=false,_hover=false;if(!_slideEl.filter(".active").length){_slideEl.eq(0).addClass("active");}$(_slideEl).not(".active").css("display","none");if($(_numElement).length){activeNumEl();}if(_options.autoSlideShow){_timer=setTimeout(function(){nextEl();},_switchTime);contentHover();}if(_linkNext){$(_linkNext).click(function(){if(_timer){clearTimeout(_timer);_timer=setTimeout(function(){nextEl();},_switchTime);}if($(_slideEl).filter(".active").next().is(_elTagName)){$(_slideEl).filter(".active").next().addClass("next");}else{$(_slideEl).eq(0).addClass("next");}fadeElement();activeNumEl();return false;});}if(_linkPrev){$(_linkPrev).click(function(){if(_timer){clearTimeout(_timer);_timer=setTimeout(function(){nextEl();},_switchTime);}if($(_slideEl).filter(".active").prev().is(_elTagName)){$(_slideEl).filter(".active").prev().addClass("next");}else{$(_slideEl).filter(":last-child").addClass("next");}fadeElement();activeNumEl();return false;});}if(_linkPause){if(!_options.autoSlideShow){_linkPause.addClass("play");_options.autoSlideShow=true;if(!_hover){contentHover();}}$(_linkPause).click(function(){if(!_linkPause.is(".play")){clearTimeout(_timer);_linkPause.addClass("play");}else{_linkPause.removeClass("play");_timer=setTimeout(function(){nextEl();},_switchTime);}return false;});}if(_numElementLink){$(_numElementLink).bind(_options.event,function(){if(_timer){clearTimeout(_timer);_timer=setTimeout(function(){nextEl();},_switchTime);}_n=_numElement.index($(this).parent());if(!$(_slideEl).eq(_n).hasClass("active")){$(_slideEl).eq(_n).addClass("next");fadeElement();activeNumEl();}return false;});}if(_options.currentEl||_options.allEl){_THIS.all=_slideEl.length;$(_options.allEl,_THIS).html(_THIS.all);function currentNum(){var _index=_slideEl.index(_slideEl.filter(".active"))+1;$(_options.currentEl,_THIS).html(_index);}currentNum();}function contentHover(){_hover=true;_slideEl.hover(function(){if(_timer){clearTimeout(_timer);}},function(){if(_linkPause&&!_linkPause.is(".play")){_timer=setTimeout(function(){nextEl();},_switchTime);}else{if(!_linkPause){_timer=setTimeout(function(){nextEl();},_switchTime);}}});}function nextEl(){if($(_slideEl).filter(".active").next().is(_elTagName)){$(_slideEl).filter(".active").next().addClass("next");}else{$(_slideEl).eq(0).addClass("next");}fadeElement();activeNumEl();_timer=setTimeout(function(){nextEl();},_switchTime);}function activeNumEl(){$(_numElement).removeClass("active");_numElActive=$(_slideEl).index($(_slideEl).filter(".active")[0]);$(_numElement).eq(_numElActive).addClass("active");}function fadeElement(){$(_slideEl).filter(".active").fadeOut(_duration).removeClass("active");$(_slideEl).filter(".next").fadeIn(_duration).addClass("active").removeClass("next");if(_options.currentEl||_options.allEl){currentNum();}}});};var _selectHeight=18;var _forms=document.getElementsByTagName("form");var inputs=new Array();var selects=new Array();var labels=new Array();var radios=new Array();var radioLabels=new Array();var checkboxes=new Array();var checkboxLabels=new Array();var buttons=new Array();var selects=new Array();var all_selects=false;var active_select=null;var agt=navigator.userAgent.toLowerCase();var isMac=is_mac();var selectText="please select";var IN_CFORMS=true;function is_mac(){if(navigator.appVersion.indexOf("Safari")!=-1){if(!window.getComputedStyle){return true;}}return false;}function initCastomForms(){if(!document.getElementById){return false;}getElements();separateElements();replaceRadios();replaceCheckboxes();replaceSelects();indentCountrySelectList();var _selects=document.getElementsByTagName("select");var _SelctClassName=[];if(_selects){for(var i=0;i<_selects.length;i++){if(_selects[i].className!=""&&_selects[i].className!="outtaHere"){_SelctClassName[i]=" drop-"+_selects[i].className;}}for(var i=0;i<_SelctClassName.length;i++){var _selectDrop=document.getElementById("optionsDiv"+i);if(_selectDrop){if(_SelctClassName[i]){_selectDrop.className+=_SelctClassName[i];}}}}}function getElements(){for(var nf=0;nf<document.getElementsByTagName("form").length;nf++){for(var nfi=0;nfi<document.forms[nf].getElementsByTagName("input").length;nfi++){if(document.forms[nf].getElementsByTagName("input")[nfi].className.indexOf("outtaHere")==-1){inputs.push(document.forms[nf].getElementsByTagName("input")[nfi]);}}for(var nfl=0;nfl<document.forms[nf].getElementsByTagName("label").length;nfl++){labels.push(document.forms[nf].getElementsByTagName("label")[nfl]);}for(var nfs=0;nfs<document.forms[nf].getElementsByTagName("select").length;nfs++){if(document.forms[nf].getElementsByTagName("select")[nfs].className.indexOf("outtaHere")==-1){selects.push(document.forms[nf].getElementsByTagName("select")[nfs]);}}}}function separateElements(){radios=[];radioLabels=[];checkboxes=[];checkboxLabels=[];buttons=[];var r=0;var c=0;var t=0;var rl=0;var cl=0;var tl=0;var b=0;for(var q=0;q<inputs.length;q++){if(inputs[q].type=="radio"){radios[r]=inputs[q];++r;for(var w=0;w<labels.length;w++){if((inputs[q].id)&&labels[w].htmlFor==inputs[q].id){radioLabels[rl]=labels[w];++rl;}}}if(inputs[q].type=="checkbox"){checkboxes[c]=inputs[q];++c;for(var w=0;w<labels.length;w++){if((inputs[q].id)&&(labels[w].htmlFor==inputs[q].id)){checkboxLabels[cl]=labels[w];++cl;}}}if((inputs[q].type=="submit")||(inputs[q].type=="button")){buttons[b]=inputs[q];++b;}}}function replaceRadios(){for(var q=0;q<radios.length;q++){if(radios[q].className.indexOf("outtaHere")<0){radios[q].className+=" outtaHere";var radioArea=document.createElement("div");if(radios[q].checked){radioArea.className="radioAreaChecked";}else{radioArea.className="radioArea";}radioArea.id="myRadio"+q;radios[q].parentNode.insertBefore(radioArea,radios[q]);radios[q]._ra=radioArea;radioArea.onclick=new Function("rechangeRadios("+q+")");if(radioLabels[q]){radioLabels[q].onclick=new Function("rechangeRadios("+q+")");}}}return true;}function checkRadios(who){var what=radios[who]._ra;for(var q=0;q<radios.length;q++){if((radios[q]._ra.className=="radioAreaChecked")&&(radios[q]._ra.nextSibling.name==radios[who].name)){radios[q]._ra.className="radioArea";}}what.className="radioAreaChecked";}function changeRadios(who){if(radios[who].checked){for(var q=0;q<radios.length;q++){if(radios[q].name==radios[who].name){radios[q].checked=false;}radios[who].checked=true;checkRadios(who);}}}function rechangeRadios(who){if(!radios[who].checked){for(var q=0;q<radios.length;q++){if(radios[q].name==radios[who].name){radios[q].checked=false;}checkRadios(who);}try{radios[who].checked=true;fireEvent(radios[who],"click");}catch(e){}}}function replaceCheckboxes(){for(var q=0;q<checkboxes.length;q++){if(checkboxes[q].className.indexOf("outtaHere")<0){checkboxes[q].className+=" outtaHere";var checkboxArea=document.createElement("div");if(checkboxes[q].checked){checkboxArea.className="checkboxAreaChecked";}else{checkboxArea.className="checkboxArea";}var nextElem=checkboxes[q].nextSibling;if(nextElem){var vehicleId=0;var ajaxType="shortlist";if(nextElem.className=="vehicle-id"){vehicleId=nextElem.value;}else{if(nextElem.className=="vehicle-id-comp"){vehicleId=nextElem.value;var ajaxType="compare";}}}checkboxArea.id="myCheckbox"+q;checkboxes[q].parentNode.insertBefore(checkboxArea,checkboxes[q]);checkboxes[q]._ca=checkboxArea;checkboxArea.onclick=checkboxArea.onclick2=new Function("rechangeCheckboxes("+q+","+vehicleId+',"'+ajaxType+'")');if(checkboxLabels[q]){checkboxLabels[q].onclick=new Function("changeCheckboxes("+q+","+vehicleId+',"'+ajaxType+'")');}checkboxes[q].onkeydown=checkEvent;}}return true;}function checkCheckboxes(who,action,vehicleId,ajaxType){var what=checkboxes[who]._ca;if(action==true){what.className="checkboxAreaChecked";what.checked=true;}if(action==false){what.className="checkboxArea";what.checked=false;}if(vehicleId>0){var queryString="?mode="+ajaxType+"&type="+action+"&vehicleId="+vehicleId;if(ajaxType=="shortlist"){PreOwnedAjaxShortlistRequest(queryString);}else{PreOwnedAjaxCompareRequest(queryString);}}try{fireEvent(checkboxes[who],"click");}catch(e){}}function refreshCheckboxes(){for(var q=0;q<checkboxes.length;q++){if(checkboxes[q].checked){checkboxes[q]._ca.className="checkboxAreaChecked";}else{checkboxes[q]._ca.className="checkboxArea";}}}function changeCheckboxes(who,vehicleId,ajaxType){if(checkboxes[who].checked){checkCheckboxes(who,false,vehicleId,ajaxType);}else{checkCheckboxes(who,true,vehicleId,ajaxType);}}function rechangeCheckboxes(who,vehicleId,ajaxType){var tester=false;if(checkboxes[who].checked==true){tester=false;}else{tester=true;}checkboxes[who].checked=tester;checkCheckboxes(who,tester,vehicleId,ajaxType);}function checkEvent(e){if(!e){var e=window.event;}if(e.keyCode==32){for(var q=0;q<checkboxes.length;q++){if(this==checkboxes[q]){changeCheckboxes(q);}}}}function replaceSelects(){for(var q=0;q<selects.length;q++){if(!selects[q].replaced&&selects[q].offsetWidth){selects[q]._number=q;var selectArea=document.createElement("div");var left=document.createElement("span");left.className="left";selectArea.appendChild(left);var disabled=document.createElement("span");disabled.className="disabled";selectArea.appendChild(disabled);selects[q]._disabled=disabled;var center=document.createElement("span");var button=document.createElement("a");var text=document.createTextNode(selectText);center.id="mySelectText"+q;var stWidth=selects[q].offsetWidth;selectArea.style.width=stWidth+"px";if(selects[q].parentNode.className.indexOf("type2")!=-1){button.href="javascript:showOptions("+q+",true)";}else{button.href="javascript:showOptions("+q+",false)";}button.className="selectButton";selectArea.className="selectArea";selectArea.className+=" "+selects[q].className;selectArea.id="sarea"+q;center.className="center";center.appendChild(text);selectArea.appendChild(center);selectArea.appendChild(button);selects[q].className+=" outtaHere";selects[q].parentNode.insertBefore(selectArea,selects[q]);var optionsDiv=document.createElement("div");var optionsList=document.createElement("ul");optionsDiv.innerHTML+="<div class='select-top'><div></div></div>";optionsDiv.appendChild(optionsList);selects[q]._options=optionsList;optionsDiv.style.width=stWidth+"px";optionsDiv._parent=selectArea;optionsDiv.className="optionsDivInvisible";optionsDiv.id="optionsDiv"+q;populateSelectOptions(selects[q]);optionsDiv.innerHTML+="<div class='select-bottom'><div class='select-bottom-left'></div><div class='select-bottom-right'></div></div>";document.getElementsByTagName("body")[0].appendChild(optionsDiv);selects[q].replaced=true;}all_selects=true;selects[q].onchange=function(){if(this.className.indexOf("selectWithOnChange")>=0){setTimeout("__doPostBack('"+this.id+"','')",0);}var t_opt=this.getElementsByTagName("option");for(var i=0;i<t_opt.length;i++){if(t_opt[i].selected){var t_box=document.getElementById("mySelectText"+this._number);if(t_box){t_box.innerHTML=t_opt[i].innerHTML;}}}};}}function populateSelectOptions(me){me._options.innerHTML="";var currentOnChange="";if(me.attributes["onchange"]){currentOnChange=me.attributes["onchange"].nodeValue;me.attributes["onchange"].nodeValue="";}for(var w=0;w<me.options.length;w++){var optionHolder=document.createElement("li");var optionLink=document.createElement("a");var optionTxt;if(me.options[w].title.indexOf("image")!=-1){optionTxt=document.createElement("img");optionSpan=document.createElement("span");optionTxt.src=me.options[w].title;optionSpan=document.createTextNode(me.options[w].text);}else{optionTxt=document.createTextNode(me.options[w].text);}optionLink.href="javascript:showOptions("+me._number+"); selectMe('"+me.id+"',"+w+","+me._number+");";if(me.options[w].title.indexOf("image")!=-1){optionLink.appendChild(optionTxt);optionLink.appendChild(optionSpan);}else{optionLink.appendChild(optionTxt);}optionHolder.appendChild(optionLink);me._options.appendChild(optionHolder);if(me.options[w].selected){selectMe(me.id,w,me._number);}}if(me.disabled){me._disabled.style.display="block";}else{me._disabled.style.display="none";}if(currentOnChange!=""){me.attributes["onchange"].nodeValue=currentOnChange;}}function selectMe(selectFieldId,linkNo,selectNo){selectField=selects[selectNo];for(var k=0;k<selectField.options.length;k++){if(k==linkNo){selectField.options[k].selected=true;}else{selectField.options[k].selected=false;}}textVar=document.getElementById("mySelectText"+selectNo);var newText;var optionSpan;if(selectField.options[linkNo].title.indexOf("image")!=-1){newText=document.createElement("img");newText.src=selectField.options[linkNo].title;optionSpan=document.createElement("span");optionSpan=document.createTextNode(selectField.options[linkNo].text);}else{newText=document.createTextNode(selectField.options[linkNo].text);}if(selectField.options[linkNo].title.indexOf("image")!=-1){if(textVar.childNodes.length>1){textVar.removeChild(textVar.childNodes[0]);}textVar.replaceChild(newText,textVar.childNodes[0]);textVar.appendChild(optionSpan);}else{if(textVar.childNodes.length>1){textVar.removeChild(textVar.childNodes[0]);}textVar.replaceChild(newText,textVar.childNodes[0]);}if(selectField){try{fireEvent(selectField,"change");}catch(e){}}}function fireEvent(element,event){if(document.createEventObject){var evt=document.createEventObject();return element.fireEvent("on"+event,evt);}else{var evt=document.createEvent("HTMLEvents");evt.initEvent(event,true,true);return !element.dispatchEvent(evt);}}function showOptions(g){_elem=document.getElementById("optionsDiv"+g);var divArea=document.getElementById("sarea"+g);if(active_select&&active_select!=_elem){active_select.className=active_select.className.replace("optionsDivVisible","");active_select.className+=" optionsDivInvisible";active_select.style.height="auto";}if(_elem.className.indexOf("optionsDivInvisible")!=-1){_elem.style.left="-9999px";_elem.style.top=findPosY(divArea)+_selectHeight+"px";_elem.className=_elem.className.replace("optionsDivInvisible","");_elem.className+=" optionsDivVisible";_elem.style.left=findPosX(divArea)+"px";active_select=_elem;if(document.documentElement){document.documentElement.onclick=hideSelectOptions;}else{window.onclick=hideSelectOptions;}}else{if(_elem.className.indexOf("optionsDivVisible")!=-1){_elem.style.height="auto";_elem.className=_elem.className.replace("optionsDivVisible","");_elem.className+=" optionsDivInvisible";}}}function hideSelectOptions(e){if(active_select){if(!e){e=window.event;}var _target=(e.target||e.srcElement);if(isElementBefore(_target,"selectArea")==0&&isElementBefore(_target,"optionsDiv")==0){active_select.className=active_select.className.replace("optionsDivVisible","");active_select.className=active_select.className.replace("optionsDivInvisible","");active_select.className+=" optionsDivInvisible";active_select=false;if(document.documentElement){document.documentElement.onclick=function(){};}else{window.onclick=null;}}}}function isElementBefore(_el,_class){var _parent=_el;do{_parent=_parent.parentNode;}while(_parent&&_parent.className!=null&&_parent.className.indexOf(_class)==-1);if(_parent.className&&_parent.className.indexOf(_class)!=-1){return 1;}else{return 0;}}function findPosY(obj){var posTop=0;while(obj.offsetParent){posTop+=obj.offsetTop;obj=obj.offsetParent;}return posTop;}function findPosX(obj){var posLeft=0;while(obj.offsetParent){posLeft+=obj.offsetLeft;obj=obj.offsetParent;}return posLeft;}function indentCountrySelectList(){if($(".select-country-menu li").size()>12){$(".select-country-menu li").each(function(index){if(index%12==0){$(this).css("margin-left","85px");}});}}var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments);};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return;}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false);}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10);})();}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D();}catch(F){setTimeout(arguments.callee,1);}})();}q(window,"load",D);return function(F){if(!arguments.length){D();}else{C?F():B.push(F);}};})(),root:function(){return document.documentElement||document.body;}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value;};this.convertFrom=function(D){return D/this.value*B;};this.toString=function(){return this.value+this.unit;};},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C;},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")";});return B;}),fontStretch:j(function(B){if(typeof B=="number"){return B;}if(/%$/.test(B)){return parseFloat(B)/100;}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1;}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null));}if(C.currentStyle){return new a(C.currentStyle);}return new a(C.style);},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]]);}return G;}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1]);}return D;}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"));}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B;}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D;},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false;}B[D]=C;return B[D]===C;},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E;}}else{if(B<C-1){E+=" ";}}return E;},textDecoration:function(G,F){if(!F){F=this.getStyle(G);}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue;}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color");}E=false;}if(E){break;}F=this.getStyle(B=B.parentNode);}return C;},textShadow:j(function(F){if(F=="none"){return null;}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0;}else{if(B[1]){G.color=B[1];}else{G[["offX","offY","blur"][C++]]=B[2];}}}E.push(G);return E;}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase();},lowercase:function(C){return C.toLowerCase();},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase();});}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E;};})(),whiteSpace:(function(){var B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E;}if(!D.previousSibling){E=E.replace(/^\s+/,"");}if(!D.nextSibling){E=E.replace(/\s+$/,"");}return E;};})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen");}function G(M,P){if(!n.recognizesMedia(P||"all")){return true;}if(!M||M.disabled){return false;}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false;}break;default:break search;}}}}catch(N){}return true;}function F(){if(document.createStyleSheet){return true;}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false;}}for(K=0;L=J[K];++K){if(!C(L)){return false;}}return true;}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable();}if(B||(E&&F())){H();}else{setTimeout(arguments.callee,10);}});return function(K){if(B){K();}else{D.push(K);}};})();function s(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ");};return D;})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent;}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D;};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null;}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I];}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400;}if(I==500){I=400;}for(var J in G){if(!k(G,J)){continue;}J=parseInt(J,10);if(!F||J<F){F=J;}if(!D||J>D){D=J;}K.push(J);}if(I<F){I=F;}if(I>D){I=D;}K.sort(function(M,L){return(E?(M>I&&L>I)?M<L:M>L:(M<I&&L<I)?M>L:M<L)?-1:1;});return G[K[0]];};}function r(){function D(F,G){if(F.contains){return F.contains(G);}return F.compareDocumentPosition(G)&16;}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return;}C(this);}function E(F){C(this);}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,true);},10);}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B);}else{q(F,"mouseenter",E);q(F,"mouseleave",E);}};}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]];}return E;}this.add=function(F,E){D[F]=C.push(E)-1;};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true);}};}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B);}this.get=function(E){var F=C(E);return D[F]||(D[F]={});};}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F];}}return this;};this.get=function(E){return D[E]!=undefined?D[E]:B[E];};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E));};this.isUsable=function(){return !!B;};}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false);}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event);});}}}function v(C,B){var D=d.get(C);if(D.options){return C;}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C);}D.options=B;return C;}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments);}return C[D];};}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"));}}return null;}function g(B){return document.getElementsByTagName(B);}function k(C,B){return C.hasOwnProperty(B);}function h(){var B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F];}}}return B;}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K;}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("");}if(/\s$/.test(M)){I.push("");}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H);}}return K;}function l(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E);}else{F=E;}if(G){continue;}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,E),B,J,E,C),F);F=null;}if(H==1&&E.firstChild){if(/cufon/.test(E.className)){z[J.engine](D,null,B,J,E,C);}else{arguments.callee(E,J);}}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B);})||(window.dojo&&dojo.query)||(window.$$&&function(B){return $$(B);})||(window.$&&function(B){return $(B);})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B);})||(window.Ext&&Ext.query)||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,characters:"",none:/^/};m.now=function(){x.ready();return m;};m.refresh=function(){y.repeat.apply(y,arguments);return m;};m.registerEngine=function(C,B){if(!B){return m;}z[C]=B;return m.set("engine",C);};m.registerFont=function(D){var B=new s(D),C=B.family;if(!i[C]){i[C]=new f();}i[C].add(B);return m.set("fontFamily",'"'+C+'"');};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m;}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.removeClass(x.root(),"cufon-loading");});e=true;}if(C.hover){C.forceHitArea=true;}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow);}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color);}if(!B){y.add(D,arguments);}if(D.nodeType||typeof D=="string"){D=[D];}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true);}else{l(G,C);}}});return m;};m.set=function(B,C){w[B]=C;return m;};return m;})();Cufon.registerEngine("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;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate;}h[g[j].m].apply(h,g[j].a);}return g;}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a);}}return function(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt;}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R;}if(T>Y){Y=T;}if(R>W){W=R;}if(T<F){F=T;}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue;}if(r){h-=ac=r[B]||0;N[ae-1]-=ac;}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k;}if(v===undefined){return null;}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild;}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad);}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px";}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px";}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke();}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline);}if(u.overline){s(ah.ascent,u.overline);}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue;}if(y.d){aj.beginPath();if(y.code){c(y.code,aj);}else{y.code=d("m"+y.d,aj);}aj.fill();}aj.translate(N[k++],0);}aj.restore();}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af();}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag]);}aj.fillStyle=w;}else{aj.fillStyle=Z.get("color");}af();if(u["line-through"]){s(-ah.descent,u["line-through"]);}return C;};})());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;var f=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(f?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(g,h){return a(g,/(?:em|ex|%)$|^[a-z-]+$/i.test(h)?"1em":h);}function a(j,k){if(/px$/i.test(k)){return parseFloat(k);}var i=j.style.left,h=j.runtimeStyle.left;j.runtimeStyle.left=j.currentStyle.left;j.style.left=k.replace("%","em");var g=j.style.pixelLeft;j.style.left=i;j.runtimeStyle.left=h;return g;}var e={};function d(n){var o=n.id;if(!e[o]){var l=n.stops,m=document.createElement("cvml:fill"),g=[];m.type="gradient";m.angle=180;m.focus="0";m.method="sigma";m.color=l[0][1];for(var i=1,h=l.length-1;i<h;++i){g.push(l[i][0]*100+"% "+l[i][1]);}m.colors=g.join(",");m.color2=l[h][1];e[o]=m;}return e[o];}return function(ai,J,ac,F,N,aj,aa){var n=(J===null);if(n){J=N.alt;}var L=ai.viewBox;var p=ac.computedFontSize||(ac.computedFontSize=new Cufon.CSS.Size(c(aj,ac.get("fontSize"))+"px",ai.baseSize));var Z=ac.computedLSpacing;if(Z==undefined){Z=ac.get("letterSpacing");ac.computedLSpacing=Z=(Z=="normal")?0:~~p.convertFrom(a(aj,Z));}var B,q;if(n){B=N;q=N.firstChild;}else{B=document.createElement("span");B.className="cufon cufon-vml";B.alt=J;q=document.createElement("span");q.className="cufon-vml-canvas";B.appendChild(q);if(F.printable){var af=document.createElement("span");af.className="cufon-alt";af.appendChild(document.createTextNode(J));B.appendChild(af);}if(!aa){B.appendChild(document.createElement("cvml:shape"));}}var ao=B.style;var U=q.style;var h=p.convert(L.height),al=Math.ceil(h);var Y=al/h;var S=Y*Cufon.CSS.fontStretch(ac.get("fontStretch"));var X=L.minX,W=L.minY;U.height=al;U.top=Math.round(p.convert(W-ai.ascent));U.left=Math.round(p.convert(X));ao.height=p.convert(ai.height)+"px";var u=F.enableTextDecoration?Cufon.CSS.textDecoration(aj,ac):{};var I=ac.get("color");var an=Cufon.CSS.textTransform(J,ac).split(""),A;var o=ai.glyphs,G,r,ae;var g=0,O=[],V=0,w;var y,K=F.textShadow;for(var ah=0,ag=0,ad=an.length;ah<ad;++ah){G=o[A=an[ah]]||ai.missingGlyph;if(!G){continue;}if(r){g-=ae=r[A]||0;O[ag-1]-=ae;}g+=w=O[ag++]=~~(G.w||ai.w)+Z;r=G.k;}if(w===undefined){return null;}var z=-X+g+(L.width-w);var am=p.convert(z*S),ab=Math.round(am);var R=z+","+L.height,m;var M="r"+R+"ns";var x=F.textGradient&&d(F.textGradient);for(ah=0,ag=0;ah<ad;++ah){G=o[an[ah]]||ai.missingGlyph;if(!G){continue;}if(n){y=q.childNodes[ag];while(y.firstChild){y.removeChild(y.firstChild);}}else{y=document.createElement("cvml:shape");q.appendChild(y);}y.stroked="f";y.coordsize=R;y.coordorigin=m=(X-V)+","+W;y.path=(G.d?"m"+G.d+"xe":"")+"m"+m+M;y.fillcolor=I;if(x){y.appendChild(x.cloneNode(false));}var ak=y.style;ak.width=ab;ak.height=al;if(K){var t=K[0],s=K[1];var E=Cufon.CSS.color(t.color),C;var Q=document.createElement("cvml:shadow");Q.on="t";Q.color=E.color;Q.offset=t.offX+","+t.offY;if(s){C=Cufon.CSS.color(s.color);Q.type="double";Q.color2=C.color;Q.offset2=s.offX+","+s.offY;}Q.opacity=E.opacity||(C&&C.opacity)||1;y.appendChild(Q);}V+=O[ag++];}var P=y.nextSibling,v,D;if(F.forceHitArea){if(!P){P=document.createElement("cvml:rect");P.stroked="f";P.className="cufon-vml-cover";v=document.createElement("cvml:fill");v.opacity=0;P.appendChild(v);q.appendChild(P);}D=P.style;D.width=ab;D.height=al;}else{if(P){q.removeChild(P);}}ao.width=Math.max(Math.ceil(p.convert(g*S)),0);if(f){var T=ac.computedYAdjust;if(T===undefined){var H=ac.get("lineHeight");if(H=="normal"){H="1em";}else{if(!isNaN(H)){H+="em";}}ac.computedYAdjust=T=0.5*(a(aj,H)-parseFloat(ao.height));}if(T){ao.marginTop=Math.ceil(T)+"px";ao.marginBottom=T+"px";}}return B;};})());Cufon.registerFont({"w":180,"face":{"font-family":"Gill Sans Light","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 4 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-16 -271 372 92","underline-thickness":"8.78906","underline-position":"-13.1836","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100},"!":{"d":"26,-71r-6,-178r24,0r-6,178r-12,0xm20,-34r24,0r0,34r-24,0r0,-34","w":63},'"':{"d":"17,-163v-3,-26,-5,-53,-4,-83r24,0v0,29,-1,57,-3,83r-17,0xm67,-163v-3,-26,-5,-53,-4,-83r24,0v1,30,-1,57,-4,83r-16,0","w":100},"#":{"d":"109,-246r-14,70r70,0r15,-70r16,0r-14,70r28,0r0,16r-31,0r-14,67r45,0r0,16r-48,0r-17,80r-17,0r17,-80r-71,0r-16,80r-17,0r17,-80r-30,0r0,-16r33,0r14,-67r-47,0r0,-16r50,0r14,-70r17,0xm91,-160r-13,67r70,0r14,-67r-71,0","w":237},"$":{"d":"14,-178v0,-39,29,-60,70,-61r0,-23r18,0r0,24v27,2,43,10,61,24r0,19v-20,-14,-35,-22,-61,-26r0,93v40,11,71,25,72,68v1,39,-32,61,-72,63r0,24r-18,0r0,-24v-32,-3,-49,-13,-71,-29r0,-19v21,17,41,27,71,31r0,-98v-35,-10,-70,-30,-70,-66xm84,-221v-43,-3,-69,45,-36,71v8,6,20,12,36,17r0,-88xm102,-14v43,2,72,-48,38,-77v-8,-7,-21,-12,-38,-17r0,94","w":187},"%":{"d":"65,-134v-33,0,-58,-24,-58,-57v0,-33,25,-57,58,-57v33,0,58,24,58,57v0,33,-25,57,-58,57xm65,-234v-23,0,-42,19,-42,43v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-24,-19,-43,-42,-43xm18,5r197,-253r18,0r-196,253r-19,0xm187,5v-33,0,-59,-24,-59,-57v0,-33,26,-58,59,-58v32,0,58,26,58,58v0,32,-25,57,-58,57xm187,-95v-24,0,-43,19,-43,42v0,23,20,43,43,43v23,0,42,-20,42,-43v0,-23,-19,-42,-42,-42","w":251},"&":{"d":"71,-130v-17,-18,-31,-32,-32,-58v-1,-29,26,-53,56,-53v28,0,57,22,57,48v-1,34,-26,53,-53,68r57,59v10,-18,21,-39,27,-58r19,0v-6,21,-21,52,-34,70r51,54r-24,0r-37,-39v-20,23,-47,41,-85,42v-39,1,-64,-22,-64,-60v0,-35,32,-62,62,-73xm30,-58v0,59,87,48,111,11r5,-5r-63,-65v-27,10,-53,30,-53,59xm95,-223v-31,0,-49,32,-29,58v6,7,11,17,21,27v20,-7,47,-27,46,-50v0,-20,-18,-36,-38,-35","w":221},"'":{"d":"32,-163v-3,-26,-5,-53,-4,-83r24,0v1,30,-1,57,-4,83r-16,0","w":79},"(":{"d":"102,83v-40,-33,-73,-98,-73,-166v0,-68,33,-133,73,-166r15,0v-39,32,-71,98,-71,166v0,67,33,134,71,166r-15,0","w":119},")":{"d":"18,-249v40,33,73,99,73,167v0,68,-33,132,-73,165r-16,0v40,-32,72,-98,72,-165v0,-68,-33,-134,-72,-167r16,0","w":119},"*":{"d":"93,-246v0,21,-9,49,-5,67r42,-51r12,12v-15,15,-42,26,-50,44r65,-7r0,17v-21,0,-49,-9,-67,-5r52,42r-12,12v-15,-16,-29,-40,-44,-51r7,66r-17,0v-1,-21,11,-51,4,-67r-41,52r-12,-13v15,-14,39,-28,50,-43r-65,7r0,-18v21,0,51,12,67,5r-52,-41r12,-12v15,15,26,42,44,50r-7,-66r17,0","w":168},"+":{"d":"111,-119r-87,0r0,-15r87,0r0,-87r15,0r0,87r87,0r0,15r-87,0r0,87r-15,0r0,-87","w":237},",":{"d":"20,0r0,-35r24,0v2,34,-3,64,-24,77v-2,-18,13,-23,7,-42r-7,0","w":63},"-":{"d":"14,-89r85,0r0,17r-85,0r0,-17","w":112},".":{"d":"20,-34r24,0r0,34r-24,0r0,-34","w":63},"/":{"d":"97,-250r-79,254r-17,0r79,-254r17,0","w":101},"0":{"d":"90,4v-104,-4,-106,-249,0,-253v106,2,105,250,0,253xm90,-13v80,-11,80,-208,0,-219v-80,10,-80,208,0,219"},"1":{"d":"81,0r0,-246r18,0r0,246r-18,0"},"2":{"d":"18,-226v40,-43,132,-21,128,47v-4,56,-52,123,-91,162r114,0r0,17r-156,0v51,-48,108,-106,114,-179v3,-30,-26,-54,-55,-53v-24,1,-39,14,-54,28r0,-22"},"3":{"d":"72,-137v34,3,60,-18,60,-48v1,-49,-72,-59,-104,-31r0,-18v41,-32,123,-11,123,46v0,29,-18,51,-42,58v26,7,46,29,46,59v0,67,-77,93,-131,62r0,-18v41,25,112,13,112,-40v-1,-32,-29,-57,-64,-54r0,-16"},"4":{"d":"5,-93r0,-8r125,-145r7,0r0,136r33,0r0,17r-33,0r0,93r-18,0r0,-93r-114,0xm119,-110r0,-102r-87,102r87,0"},"5":{"d":"52,-150v55,-10,101,19,101,71v0,73,-86,106,-138,65r0,-19v40,33,120,22,120,-42v0,-49,-52,-73,-99,-56r0,-115r104,0r0,17r-88,0r0,79"},"6":{"d":"94,4v-84,-1,-87,-116,-45,-176v20,-28,42,-54,74,-77r12,12v-45,35,-76,64,-90,121v44,-39,122,-10,122,51v0,40,-32,70,-73,69xm41,-93v-3,46,14,80,56,80v28,1,51,-24,51,-52v0,-55,-80,-67,-107,-28"},"7":{"d":"42,0r103,-229r-135,0r0,-17r162,0r-113,254"},"8":{"d":"157,-185v0,27,-16,47,-35,57v23,9,38,33,38,63v0,40,-29,69,-70,69v-76,0,-93,-109,-31,-132v-20,-10,-35,-30,-35,-57v0,-34,31,-64,66,-64v35,0,67,31,67,64xm43,-184v0,26,21,48,47,48v26,1,48,-22,48,-48v0,-26,-22,-49,-48,-48v-26,0,-47,22,-47,48xm142,-66v0,-30,-21,-53,-52,-53v-28,0,-51,24,-51,53v0,29,24,53,51,53v28,0,52,-24,52,-53"},"9":{"d":"84,-249v83,1,87,115,45,175v-20,28,-42,55,-74,78r-11,-13v45,-35,74,-65,90,-121v-44,39,-122,11,-122,-51v0,-40,32,-69,72,-68xm137,-153v3,-45,-15,-79,-56,-79v-27,-1,-51,24,-51,51v0,55,80,67,107,28"},":":{"d":"20,-34r24,0r0,34r-24,0r0,-34xm20,-162r24,0r0,35r-24,0r0,-35","w":63},";":{"d":"20,0r0,-35r24,0v2,34,-3,64,-24,77v-2,-18,13,-23,7,-42r-7,0xm20,-162r24,0r0,35r-24,0r0,-35","w":63},"<":{"d":"24,-119r0,-15r189,-80r0,17r-167,70r167,71r0,17","w":237},"=":{"d":"24,-91r189,0r0,16r-189,0r0,-16xm24,-178r189,0r0,16r-189,0r0,-16","w":237},">":{"d":"213,-119r-189,80r0,-17r168,-71r-168,-70r0,-17r189,80r0,15","w":237},"?":{"d":"68,-199v2,-35,-41,-42,-59,-17r7,-26v32,-20,71,7,71,43v0,56,-70,89,-37,138r-9,5v-44,-48,25,-87,27,-143xm34,-34r23,0r0,34r-23,0r0,-34","w":101},"@":{"d":"132,-174v25,0,47,16,60,35r0,-38r19,0v1,43,-4,98,6,131v4,12,10,18,18,18v29,0,37,-44,37,-84v0,-75,-48,-124,-123,-124v-82,0,-133,56,-133,139v0,106,86,160,192,134r0,14v-114,27,-209,-35,-209,-148v0,-92,59,-153,151,-153v85,0,139,55,139,138v0,52,-16,98,-59,100v-18,2,-31,-23,-35,-42v-10,23,-34,42,-63,42v-40,0,-72,-39,-72,-81v0,-42,31,-81,72,-81xm192,-93v0,-36,-21,-67,-56,-67v-32,0,-57,33,-57,67v0,34,24,66,57,66v36,0,56,-29,56,-66","w":287},"A":{"d":"115,-248r10,0r114,248r-21,0r-39,-85r-120,0r-38,85r-20,0xm119,-217r-52,116r105,0","w":240},"B":{"d":"183,-65v0,69,-80,68,-154,65r0,-246v66,-3,134,0,134,62v1,27,-17,48,-40,56v32,7,60,27,60,63xm142,-180v0,-46,-44,-52,-94,-49r0,98v49,3,94,-2,94,-49xm162,-66v0,-51,-58,-52,-114,-50r0,99v55,2,114,4,114,-49","w":191},"C":{"d":"146,-14v38,-1,61,-10,89,-25r0,19v-29,15,-51,22,-91,23v-66,2,-126,-60,-126,-126v0,-69,57,-127,126,-126v39,2,61,8,91,23r0,19v-28,-16,-51,-24,-89,-25v-58,-1,-108,51,-108,109v0,58,50,110,108,109","w":243},"D":{"d":"248,-123v0,75,-55,124,-132,123r-88,0r0,-246r91,0v75,-1,129,48,129,123xm227,-123v0,-64,-44,-107,-108,-106r-72,0r0,212r69,0v66,1,111,-41,111,-106","w":266},"E":{"d":"29,0r0,-246r132,0r0,16r-113,0r0,99r111,0r0,16r-111,0r0,99r118,0r0,16r-137,0","w":176},"F":{"d":"28,0r0,-246r127,0r0,16r-108,0r0,99r95,0r0,16r-95,0r0,115r-19,0","w":157},"G":{"d":"39,-123v0,90,103,137,181,92r0,-76r-52,0r0,-16r71,0r0,103v-90,57,-221,4,-221,-103v0,-69,58,-128,127,-126v40,1,61,9,94,23r0,19v-29,-16,-52,-24,-92,-25v-59,-1,-108,49,-108,109","w":258},"H":{"d":"28,0r0,-246r19,0r0,115r164,0r0,-115r19,0r0,246r-19,0r0,-115r-164,0r0,115r-19,0","w":258},"I":{"d":"28,0r0,-246r19,0r0,246r-19,0","w":74},"J":{"d":"-16,54v33,5,46,-15,46,-50r0,-250r19,0r0,250v0,43,-20,73,-62,67","w":74},"K":{"d":"46,0r-19,0r0,-246r19,0r0,124r121,-124r24,0r-121,122r129,124r-26,0r-127,-123r0,123","w":191},"L":{"d":"28,0r0,-246r19,0r0,230r122,0r0,16r-141,0","w":168},"M":{"d":"234,-220r-94,117r-93,-114r0,217r-19,0r0,-246r18,0r96,117r93,-117r18,0r0,246r-19,0r0,-220","w":281},"N":{"d":"47,0r-19,0r0,-246r16,0r186,212r0,-212r19,0r0,248r-11,0r-191,-216r0,214","w":277},"O":{"d":"148,3v-68,0,-130,-60,-130,-126v0,-66,63,-126,130,-126v68,0,130,59,130,126v0,67,-62,126,-130,126xm148,-14v59,0,109,-50,109,-109v0,-59,-50,-109,-109,-109v-59,0,-109,50,-109,109v0,59,50,109,109,109","w":296},"P":{"d":"176,-179v0,60,-61,72,-129,67r0,112r-19,0r0,-246v73,-3,148,-1,148,67xm155,-179v0,-51,-54,-53,-108,-50r0,100v54,2,108,2,108,-50","w":183},"Q":{"d":"167,2v21,20,68,44,103,25r-20,20v-40,7,-91,-20,-112,-45v-63,-2,-120,-61,-120,-125v0,-66,63,-126,130,-126v68,0,130,59,130,126v0,62,-53,119,-111,125xm148,-232v-59,0,-109,50,-109,109v0,59,50,109,109,109v59,0,109,-50,109,-109v0,-59,-50,-109,-109,-109","w":296},"R":{"d":"173,-182v0,31,-21,52,-47,59v37,30,60,82,88,123r-21,0v-23,-33,-48,-85,-75,-109v-14,-13,-45,-7,-71,-8r0,117r-19,0r0,-246v70,-3,145,-2,145,64xm152,-181v0,-48,-53,-50,-105,-48r0,96v52,2,105,2,105,-48","w":206},"S":{"d":"17,-186v0,-59,84,-80,128,-47r0,20v-35,-29,-108,-24,-108,30v0,65,117,40,117,121v0,64,-91,83,-133,44r0,-22v32,37,113,35,113,-25v0,-69,-117,-40,-117,-121","w":168},"T":{"d":"94,0r0,-230r-93,0r0,-16r204,0r0,16r-93,0r0,230r-18,0","w":206},"U":{"d":"126,-14v53,0,84,-40,84,-95r0,-137r19,0r0,136v0,67,-37,113,-103,113v-66,0,-103,-46,-103,-113r0,-136r19,0r0,137v0,55,31,95,84,95","w":251},"V":{"d":"109,2r-4,0r-104,-248r19,0r87,209r86,-209r20,0","w":213},"W":{"d":"99,2r-4,0r-95,-248r20,0r78,206r82,-208r12,0r82,208r78,-206r20,0r-96,248r-4,0r-87,-215","w":371},"X":{"d":"224,0r-101,-111r-101,111r-22,0r112,-123r-110,-123r24,0r98,109r99,-109r23,0r-111,122r113,124r-24,0","w":247},"Y":{"d":"95,-132r-95,-114r24,0r81,99r82,-99r23,0r-96,113r0,133r-19,0r0,-132","w":209},"Z":{"d":"3,-8r191,-222r-181,0r0,-16r207,0r2,9r-190,221r189,0r0,16r-215,0","w":228},"[":{"d":"25,83r0,-332r81,0r0,16r-64,0r0,301r64,0r0,15r-81,0","w":108},"\\":{"d":"83,4r-79,-254r17,0r79,254r-17,0","w":101},"]":{"d":"84,83r-82,0r0,-15r65,0r0,-301r-65,0r0,-16r82,0r0,332","w":108},"^":{"d":"123,-249r75,128r-19,0r-61,-104r-60,104r-18,0r75,-128r8,0","w":237},"_":{"d":"-2,83r0,-18r184,0r0,18r-184,0"},"`":{"d":"55,-184r-56,-58r28,0r39,58r-11,0","w":119},"a":{"d":"107,-16v-9,5,-33,20,-51,20v-23,0,-44,-18,-43,-41v1,-41,47,-62,94,-61v2,-32,-4,-54,-37,-51v-22,1,-35,8,-48,20r0,-19v28,-25,102,-26,102,24r0,103v0,10,7,10,14,4r13,-10v6,22,-20,26,-33,30v-9,-1,-11,-9,-11,-19xm30,-38v0,37,66,29,77,5r0,-51v-34,-1,-77,17,-77,46","w":153},"b":{"d":"170,-81v0,72,-87,106,-148,71r0,-236r18,0r0,106v12,-16,37,-25,58,-25v46,-1,72,38,72,84xm98,-150v-24,0,-48,13,-58,30r0,99v49,23,114,-7,112,-61v-1,-35,-20,-68,-54,-68","w":183},"c":{"d":"33,-81v0,58,56,80,106,59r0,17v-59,28,-124,-11,-124,-76v0,-63,61,-102,121,-76r0,18v-48,-25,-103,5,-103,58","w":150},"d":{"d":"15,-81v0,-64,75,-108,129,-70r0,-95r18,0r0,246r-18,0r0,-11v-53,38,-129,-2,-129,-70xm144,-131v-38,-36,-118,-11,-111,50v-5,56,72,90,111,51r0,-101","w":183},"e":{"d":"160,-19v-50,48,-146,15,-146,-62v0,-71,81,-112,127,-62v12,14,18,33,19,58r-128,0v-6,68,87,90,128,48r0,18xm87,-149v-26,0,-48,25,-53,50r107,0v-3,-30,-24,-50,-54,-50","w":172},"f":{"d":"120,-224v-30,-16,-75,-4,-69,37r0,25r34,0r0,15r-34,0r0,147r-17,0r0,-147r-30,0r0,-15r30,0v-11,-63,33,-105,86,-79r0,17","w":86},"g":{"d":"115,-147v41,28,14,94,-27,98v-23,2,-40,7,-44,25v3,15,24,16,45,17v38,1,60,9,61,43v1,61,-142,65,-143,3v0,-20,20,-36,42,-36v-10,-5,-23,-15,-22,-26v1,-14,18,-25,33,-27v-25,-4,-44,-27,-43,-55v0,-36,30,-56,71,-56r62,0r0,14r-35,0xm120,-105v1,-23,-20,-43,-44,-43v-24,0,-43,20,-43,43v0,23,19,43,43,43v24,0,44,-19,44,-43xm134,37v-3,-44,-109,-37,-112,1v3,42,110,41,112,-1","w":153},"h":{"d":"136,-98v4,-62,-79,-62,-96,-16r0,114r-18,0r0,-246r18,0r0,112v27,-53,114,-33,114,35r0,99r-18,0r0,-98","w":176},"i":{"d":"25,0r0,-162r17,0r0,162r-17,0xm25,-246r17,0r0,30r-17,0r0,-30","w":67},"j":{"d":"-10,69v24,-4,34,-17,35,-46r0,-185r17,0r0,185v0,38,-15,58,-49,61xm25,-246r17,0r0,30r-17,0r0,-30","w":67},"k":{"d":"38,-246r0,246r-17,0r0,-246r17,0xm141,0r-98,-81r89,-81r23,0r-87,80r99,82r-26,0","w":153},"l":{"d":"25,0r0,-246r17,0r0,246r-17,0","w":67},"m":{"d":"87,-148v-18,0,-38,17,-48,33r0,115r-17,0r0,-162r17,0r0,27v21,-43,92,-37,104,7v11,-20,31,-37,55,-37v35,0,58,27,58,63r0,102r-18,0v-4,-60,19,-147,-43,-148v-18,0,-38,17,-48,33r0,115r-17,0v-4,-60,19,-147,-43,-148","w":277},"n":{"d":"136,-98v4,-62,-79,-62,-96,-16r0,114r-18,0r0,-162r18,0r0,28v27,-53,114,-33,114,35r0,99r-18,0r0,-98","w":176},"o":{"d":"97,4v-48,0,-82,-37,-82,-85v0,-48,34,-84,82,-84v49,0,83,36,83,84v0,49,-35,85,-83,85xm97,-13v35,0,65,-31,65,-68v0,-37,-30,-68,-65,-68v-35,0,-64,32,-64,68v0,36,29,68,64,68","w":195},"p":{"d":"168,-81v0,66,-71,107,-128,73r0,91r-17,0r0,-245r17,0r0,9v57,-33,128,4,128,72xm150,-81v0,-55,-67,-86,-110,-55r0,110v42,31,110,4,110,-55","w":183},"q":{"d":"13,-81v0,-65,74,-108,131,-70r0,-11r17,0r0,245r-17,0r0,-94v-55,36,-131,2,-131,-70xm144,-133v-44,-35,-120,-4,-112,59v-5,56,72,78,112,46r0,-105","w":183},"r":{"d":"88,-149v-25,4,-36,25,-52,48r0,101r-17,0r0,-162r17,0r0,45v15,-34,63,-69,95,-29r-9,16v-13,-10,-19,-16,-34,-19","w":119},"s":{"d":"16,-123v0,-42,66,-54,95,-28r0,17v-20,-19,-74,-23,-78,11v4,45,88,27,83,83v-4,46,-67,54,-101,29r0,-16v26,18,84,23,84,-16v0,-44,-83,-27,-83,-80","w":127},"t":{"d":"54,-40v-4,32,38,32,54,18r0,16v-24,20,-71,10,-71,-29r0,-112r-44,0r0,-15r44,0r0,-39v6,-4,7,-14,17,-14r0,53r43,0r0,15r-43,0r0,107","w":108},"u":{"d":"40,-63v-4,62,80,62,96,15r0,-114r18,0r0,162r-18,0r0,-28v-27,54,-114,34,-114,-34r0,-100r18,0r0,99","w":176},"v":{"d":"18,-162r60,139r59,-139r17,0r-72,164r-10,0r-72,-164r18,0","w":153},"w":{"d":"66,2r-66,-164r18,0r54,136r51,-138r10,0r52,138r53,-136r17,0r-66,164r-11,0r-51,-135r-51,135r-10,0","w":254},"x":{"d":"151,0r-64,-70r-64,70r-21,0r75,-81r-73,-81r22,0r62,68r63,-68r21,0r-73,80r74,82r-22,0","w":172},"y":{"d":"21,-162r59,115r55,-115r17,0r-122,249r-18,0r58,-118r-68,-131r19,0","w":150},"z":{"d":"6,0r-2,-5r108,-141r-99,0r0,-16r126,0r2,6r-108,140r104,0r0,16r-131,0","w":142},"{":{"d":"72,-21v1,39,-9,90,31,89r0,15v-92,16,-7,-145,-85,-155r0,-22v79,2,-14,-159,85,-155r0,16v-40,-1,-30,50,-31,89v-1,39,-8,54,-39,61v31,8,38,22,39,62","w":119},"|":{"d":"31,92r0,-363r17,0r0,363r-17,0","w":79},"}":{"d":"102,-72v-78,0,14,159,-85,155r0,-15v40,1,30,-50,31,-89v1,-41,8,-54,39,-62v-45,-3,-39,-54,-39,-104v0,-29,-6,-45,-31,-46r0,-16v58,-6,48,52,49,105v0,31,9,47,36,50r0,22","w":119},"~":{"d":"72,-127v-18,1,-37,11,-48,22v-3,-32,27,-39,53,-39v32,0,55,26,88,26v19,0,39,-10,48,-22v3,33,-25,40,-53,40v-32,0,-54,-27,-88,-27","w":237},"\u00d7":{"d":"118,-115r-61,61r-11,-11r62,-61r-62,-62r11,-10r61,61r62,-61r11,10r-62,62r62,61r-11,11","w":237},"\u2013":{"d":"14,-87r152,0r0,12r-152,0r0,-12"},"\u2014":{"d":"14,-87r332,0r0,12r-332,0r0,-12","w":360},"\u2018":{"d":"43,-205r0,35r-23,0v-2,-34,3,-62,23,-77v1,18,-9,21,-7,42r7,0","w":63},"\u2019":{"d":"20,-211r0,-35r23,0v2,34,-2,63,-23,77v-3,-18,13,-23,7,-42r-7,0","w":63},"\u201c":{"d":"43,-205r0,35r-23,0v-2,-34,3,-62,23,-77v1,18,-9,21,-7,42r7,0xm99,-205r0,35r-23,0v-2,-34,3,-62,23,-77v2,18,-11,25,-7,42r7,0","w":119},"\u201d":{"d":"20,-211r0,-35r23,0v2,34,-2,63,-23,77v-3,-18,13,-23,7,-42r-7,0xm76,-211r0,-35r23,0v2,34,-2,63,-23,77v-3,-18,13,-23,7,-42r-7,0","w":119},"\u2026":{"d":"48,-34r24,0r0,34r-24,0r0,-34xm168,-34r23,0r0,34r-23,0r0,-34xm288,-34r23,0r0,34r-23,0r0,-34","w":360},"\u2122":{"d":"116,-137r0,-107r28,0r20,85r20,-85r28,0r0,107r-16,0r0,-99r-23,99r-18,0r-23,-99r0,99r-16,0xm36,-244r69,0r0,16r-27,0r0,91r-15,0r0,-91r-27,0r0,-16","w":338},"\u00a0":{"w":100}}});Cufon.registerFont({"w":180,"face":{"font-family":"Gill Sans MT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 1 4 2 2 3","ascent":"288","descent":"-72","x-height":"3","bbox":"-22 -262.115 375 83","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100,"k":{"\u2018":36,"\u201c":36,"Y":54,"W":45,"V":54,"T":45,"A":36}},"!":{"d":"49,-41v12,0,21,11,21,23v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21v0,-13,10,-23,22,-23xm49,-71v-15,-19,-20,-90,-20,-126v0,-34,7,-52,20,-52v37,19,17,141,0,178","w":97},'"':{"d":"45,-166r-20,0v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-8,92xm103,-166r-20,0v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-8,92","w":127},"#":{"d":"1,-153r0,-22r57,0r15,-71r21,0r-15,71r74,0r15,-71r22,0r-15,71r35,0r0,22r-40,0r-13,65r53,0r0,22r-57,0r-15,70r-22,0r15,-70r-74,0r-15,70r-21,0r14,-70r-34,0r0,-22r39,0r14,-65r-53,0xm149,-153r-74,0r-14,65r75,0","w":210},"$":{"d":"19,-172v0,-37,32,-60,67,-64r0,-13r29,0r0,13v23,4,41,10,54,21r0,41v-15,-15,-33,-25,-54,-30r0,71v36,10,66,31,66,70v0,37,-27,61,-66,66r0,39r-29,0r0,-39v-20,-2,-43,-10,-68,-25r0,-44v21,18,38,30,68,37r0,-78v-40,-14,-67,-23,-67,-65xm86,-204v-23,0,-42,28,-26,47v4,5,17,11,26,15r0,-62xm115,-30v41,-6,38,-51,6,-62r-6,-3r0,65","w":195},"%":{"d":"188,-249r27,0r-161,252r-27,0xm124,-52v-1,-28,26,-55,55,-55v29,0,55,26,55,55v0,30,-26,54,-55,54v-29,0,-55,-25,-55,-54xm208,-52v0,-16,-14,-28,-29,-28v-16,-1,-28,13,-28,28v0,15,12,28,28,28v15,0,29,-14,29,-28xm9,-193v0,-29,26,-55,55,-55v29,0,54,26,54,55v0,28,-26,54,-54,54v-29,0,-55,-25,-55,-54xm92,-193v0,-15,-13,-29,-29,-29v-15,0,-28,14,-28,29v0,15,13,28,28,28v15,0,29,-14,29,-28","w":243},"&":{"d":"102,-241v34,-1,60,21,61,54v0,21,-17,47,-46,65r35,40v10,-11,18,-25,26,-40r35,0v-8,22,-22,43,-40,64r50,58r-45,0r-28,-33v-16,15,-48,35,-79,36v-32,0,-62,-25,-61,-57v1,-38,32,-57,58,-73v-48,-40,-31,-114,34,-114xm45,-56v3,36,60,27,75,5r8,-7r-40,-46v-16,12,-45,30,-43,48xm102,-211v-40,1,-27,52,-4,65v14,-9,33,-23,32,-40v0,-14,-12,-26,-28,-25","w":225},"'":{"d":"44,-166r-20,0v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-8,92","w":67},"(":{"d":"57,37v-56,-89,-36,-220,35,-286r20,0v-67,82,-71,246,0,331v-33,5,-43,-35,-55,-45","w":116},")":{"d":"4,82v69,-80,67,-254,0,-331v34,-5,43,35,55,45v17,28,35,78,34,121v-4,77,-27,115,-69,165r-20,0","w":116},"*":{"d":"23,-200v-21,-5,-20,-24,-4,-28v19,5,32,27,47,38v2,-2,4,-4,7,-4r-10,-51v0,-11,5,-16,13,-16v33,0,-12,60,9,71v15,-12,27,-33,47,-38v16,2,16,27,-2,28r-42,15r0,9v19,11,48,10,56,31v-17,32,-47,-19,-59,-26v-2,2,-5,3,-7,3v3,18,8,34,9,54v0,10,-4,15,-12,15v-25,-6,-4,-49,-2,-69v-2,0,-5,-1,-7,-3v-13,11,-32,34,-48,37v-21,-8,-12,-23,10,-30r35,-12r0,-9","w":150},"+":{"d":"90,-42r0,-70r-70,0r0,-30r70,0r0,-70r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0","w":210},",":{"d":"35,-46v29,1,32,48,14,68v-8,10,-18,17,-31,21v2,-19,17,-19,14,-43v-26,-5,-22,-46,3,-46","w":78,"k":{"\u2019":36,"\u201d":36," ":36}},"-":{"d":"14,-97r88,0r0,34r-88,0r0,-34","w":116},".":{"d":"18,-18v0,-12,9,-21,21,-21v12,0,22,10,22,21v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21","w":78,"k":{"\u2019":36,"\u201d":36," ":36}},"/":{"d":"1,3r71,-252r25,0r-71,252r-25,0","w":101},"0":{"d":"90,2v-108,-2,-106,-250,1,-251v104,5,106,248,-1,251xm90,-30v61,-7,61,-179,0,-185v-61,7,-61,178,0,185"},"1":{"d":"73,-246r35,0r0,246r-35,0r0,-246"},"2":{"d":"17,-225v58,-58,159,-2,128,84v-14,40,-39,69,-71,107r94,0r0,34v-50,-2,-110,4,-156,-2v33,-53,96,-95,103,-166v3,-27,-17,-46,-43,-46v-24,0,-42,16,-55,33r0,-44"},"3":{"d":"76,-249v72,0,99,95,41,119v66,23,33,133,-40,133v-19,0,-37,-5,-54,-14r0,-38v34,24,93,28,93,-21v0,-30,-18,-38,-51,-41v2,-10,-3,-26,2,-32v28,0,47,-10,47,-37v-1,-41,-52,-46,-85,-25r0,-33v14,-7,30,-11,47,-11"},"4":{"d":"128,-249r14,0r0,138r28,0r0,30r-28,0r0,81r-34,0r0,-81r-104,0r0,-15xm108,-111r0,-71r-57,71r57,0"},"5":{"d":"122,-76v2,-37,-50,-53,-86,-42r0,-128r109,0r0,32r-77,0r0,62v50,-6,90,29,90,76v0,70,-81,98,-140,64r0,-36v37,29,101,21,104,-28"},"6":{"d":"94,3v-70,1,-93,-82,-67,-147v18,-45,49,-76,87,-105r21,27v-36,24,-59,49,-75,90v50,-29,108,8,108,61v0,40,-34,74,-74,74xm133,-70v0,-41,-54,-51,-80,-25v-8,33,9,65,41,65v23,0,39,-18,39,-40"},"7":{"d":"18,-246r158,0r-111,249r-31,-13r90,-202r-106,0r0,-34"},"8":{"d":"46,-125v-54,-34,-23,-124,46,-124v68,0,101,89,42,124v64,32,29,136,-44,128v-71,7,-110,-95,-44,-128xm91,-142v20,0,39,-16,39,-37v0,-21,-17,-36,-39,-36v-22,0,-39,15,-39,36v0,20,19,37,39,37xm91,-31v24,0,42,-14,42,-38v0,-23,-19,-39,-43,-39v-24,0,-43,16,-43,39v0,23,19,38,44,38"},"9":{"d":"87,-249v86,1,98,115,51,180v-21,29,-42,55,-71,72r-21,-26v32,-20,64,-54,75,-92v-47,31,-108,-7,-108,-61v0,-40,34,-74,74,-73xm48,-176v0,38,50,51,79,26v11,-36,-8,-65,-40,-66v-23,-1,-39,18,-39,40"},":":{"d":"17,-18v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm20,-143v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":78,"k":{" ":36}},";":{"d":"22,43v3,-18,16,-22,15,-43v-28,-5,-23,-46,3,-46v29,2,30,49,13,68v-8,10,-18,17,-31,21xm22,-143v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21","w":82,"k":{" ":36}},"<":{"d":"20,-113r0,-29r170,-72r0,31r-135,56r135,56r0,31","w":210},"=":{"d":"190,-152r-170,0r0,-29r170,0r0,29xm190,-73r-170,0r0,-30r170,0r0,30","w":210},">":{"d":"190,-113r-170,73r0,-31r135,-56r-135,-56r0,-31r170,72r0,29","w":210},"?":{"d":"51,-63v-56,-29,15,-90,17,-130v1,-22,-25,-29,-45,-18r23,-38v34,1,58,19,58,52v0,48,-59,92,-53,134xm55,-40v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,10,-22,21,-22","w":119},"@":{"d":"87,-78v0,-79,94,-156,144,-80r6,-27r32,0r-31,145v1,6,6,11,12,12v36,-8,68,-51,68,-98v0,-65,-59,-111,-126,-111v-83,0,-146,67,-146,152v0,88,61,135,152,134v56,0,98,-18,123,-52r31,0v-26,46,-80,78,-155,78v-104,0,-180,-56,-178,-157v2,-105,66,-180,175,-180v84,0,153,57,151,137v-2,63,-43,125,-107,125v-25,0,-32,-7,-34,-29v-14,15,-31,28,-54,29v-38,1,-63,-38,-63,-78xm180,-165v-56,-2,-93,140,-23,140v34,0,66,-50,64,-89v0,-28,-15,-51,-41,-51","w":363},"A":{"d":"105,-247r25,0r110,247r-36,0r-33,-73r-104,0r-31,73r-36,0xm157,-104r-40,-89r-36,89r76,0","w":240,"k":{"y":9,"w":9,"v":9,"Y":40,"W":29,"V":29,"U":7,"T":36,"Q":14,"O":14,"G":14,"C":14}},"B":{"d":"195,-67v-1,75,-89,69,-168,67r0,-246v72,-2,147,-5,147,64v0,24,-13,42,-38,52v32,5,59,28,59,63xm62,-140v40,2,75,-3,75,-39v0,-35,-37,-37,-75,-35r0,74xm159,-70v0,-43,-49,-40,-97,-39r0,78v49,1,97,3,97,-39","w":202,"k":{"A":-7}},"C":{"d":"54,-122v0,92,117,117,185,65r0,39v-26,14,-56,21,-90,21v-79,-1,-130,-49,-131,-125v-2,-105,119,-159,218,-107r0,38v-74,-49,-182,-21,-182,69","w":254,"k":{"A":-9,".":-9,",":-9}},"D":{"d":"253,-123v0,82,-52,126,-148,123r-78,0r0,-246r83,0v91,-2,143,43,143,123xm217,-125v0,-74,-66,-97,-154,-89r0,182r45,0v72,4,109,-34,109,-93","w":270,"k":{"Y":36,"W":18,"V":18,"A":20,".":27,",":27}},"E":{"d":"27,-246r139,0r0,32r-104,0r0,75r101,0r0,31r-101,0r0,76r108,0r0,32r-143,0r0,-246"},"F":{"d":"27,-246r131,0r0,32r-95,0r0,68r95,0r0,32r-95,0r0,114r-36,0r0,-246","w":168,"k":{"o":5,"e":5,"A":18,".":50,",":50}},"G":{"d":"55,-123v0,77,76,116,152,85r0,-52r-47,0r0,-31r82,0r0,104v-98,50,-224,4,-224,-104v0,-108,127,-159,219,-107r0,36v-72,-50,-182,-22,-182,69","w":266},"H":{"d":"200,-246r35,0r0,246r-35,0r0,-107r-138,0r0,107r-35,0r0,-246r35,0r0,107r138,0r0,-107","w":262},"I":{"d":"27,-246r36,0r0,246r-36,0r0,-246","w":90},"J":{"d":"-22,49v41,0,49,-9,49,-56r0,-239r36,0r0,243v2,61,-23,88,-78,85","w":90,"k":{"u":7,"o":7,"e":7}},"K":{"d":"166,-246r44,0r-107,117r133,129r-48,0r-125,-121r0,121r-36,0r0,-246r36,0r0,113","w":236,"k":{"y":27,"u":18,"o":22,"e":22,"O":43}},"L":{"d":"27,-246r35,0r0,214r111,0r0,32r-146,0r0,-246","w":176,"k":{"\u2019":29,"\u201d":29,"y":11,"Y":40,"W":36,"V":36,"T":36}},"M":{"d":"223,-246r32,0r0,246r-35,0r0,-191r-76,95r-6,0r-76,-95r0,191r-36,0r0,-246r33,0r82,101","w":281},"N":{"d":"222,-246r34,0r0,246r-31,0r-164,-189r0,189r-33,0r0,-246r29,0r165,191r0,-191","w":281},"O":{"d":"16,-122v0,-74,58,-127,132,-127v73,0,132,55,132,126v0,72,-59,126,-134,126v-71,0,-130,-54,-130,-125xm244,-123v0,-52,-43,-93,-95,-93v-54,0,-96,41,-96,94v0,51,42,92,95,92v54,0,96,-40,96,-93","w":296,"k":{"Y":29,"X":29,"W":14,"V":14,"T":23,"A":14,".":22,",":22}},"P":{"d":"180,-176v-2,60,-50,74,-120,69r0,107r-35,0r0,-246r78,0v44,-1,78,27,77,70xm60,-138v42,2,84,2,84,-39v0,-38,-43,-40,-84,-38r0,77","w":183,"k":{"o":9,"e":9,"A":29,".":54,",":54}},"Q":{"d":"280,-123v0,63,-46,114,-102,123v39,13,64,28,97,15r-36,35v-54,-6,-78,-22,-120,-50v-56,-8,-102,-60,-103,-122v-1,-73,58,-127,132,-127v73,0,132,54,132,126xm244,-123v0,-53,-42,-93,-96,-93v-54,0,-96,41,-96,94v0,51,43,92,96,92v52,0,96,-42,96,-93","w":296},"R":{"d":"171,-177v0,31,-18,51,-42,60v35,22,59,82,88,117r-41,0v-25,-35,-45,-79,-79,-103v-6,-4,-22,-4,-34,-4r0,107r-35,0r0,-246v72,-4,144,1,143,69xm134,-178v0,-35,-29,-40,-71,-38r0,78v42,1,71,-3,71,-40","w":217,"k":{"Y":36,"W":27,"V":29,"U":11,"T":32,"O":22}},"S":{"d":"82,-28v48,0,48,-53,6,-75v-33,-18,-73,-34,-73,-81v0,-63,83,-83,129,-48r0,40v-18,-17,-38,-25,-58,-25v-30,0,-52,27,-31,49v27,29,98,51,98,104v0,70,-91,85,-137,44r0,-44v19,24,41,36,66,36","w":164},"T":{"d":"6,-246r205,0r0,31r-85,0r0,215r-36,0r0,-215r-84,0r0,-31","w":217,"k":{"y":45,"w":54,"u":50,"r":45,"o":54,"e":54,"a":45,"O":23,"A":36,";":11,":":11,".":45,"-":61,",":45}},"U":{"d":"127,-28v48,0,71,-22,71,-78r0,-140r35,0r0,140v3,77,-38,109,-105,109v-68,0,-106,-32,-106,-110r0,-139r35,0r0,140v-2,58,21,78,70,78","w":254,"k":{"A":9,".":9,",":9}},"V":{"d":"182,-246r35,0r-103,247r-8,0r-106,-247r35,0r74,173","w":217,"k":{"u":27,"o":36,"e":36,"a":22,"O":14,"G":14,"A":29,".":47,"-":36,",":47}},"W":{"d":"340,-246r35,0r-100,247r-7,0r-80,-200r-81,200r-8,0r-99,-247r35,0r68,170r68,-170r33,0r69,170","w":375,"k":{"y":11,"u":27,"o":32,"e":32,"a":22,"O":14,"A":29,".":47,"-":36,",":47}},"X":{"d":"205,-246r42,0r-98,119r105,127r-42,0r-84,-102r-84,102r-43,0r106,-127r-99,-119r43,0r77,94","w":254},"Y":{"d":"175,-246r42,0r-90,116r0,130r-36,0r0,-130r-91,-116r43,0r65,85","w":217,"k":{"u":43,"o":50,"e":47,"a":43,"S":7,"O":29,"A":40,";":11,":":11,".":47,"-":54,",":47}},"Z":{"d":"14,-246r212,0r-157,215r157,0r0,31r-222,0r158,-215r-148,0r0,-31","w":232},"[":{"d":"31,-246r84,0r0,29r-49,0r0,267r49,0r0,29r-84,0r0,-325","w":119},"\\":{"d":"75,3r-71,-252r26,0r70,252r-25,0","w":101},"]":{"d":"89,79r-84,0r0,-29r49,0r0,-267r-49,0r0,-29r84,0r0,325","w":119},"^":{"d":"84,-210r-42,105r-33,0r63,-141r25,0r62,141r-32,0","w":168},"_":{"d":"204,71r-209,0r0,-23r209,0r0,23","w":198},"`":{"d":"57,-249r25,52r-20,0r-40,-52r35,0","w":120},"a":{"d":"13,-143v34,-39,126,-27,111,46r0,69v3,16,13,6,24,-1r0,20v-15,13,-50,19,-56,-4v-29,26,-83,18,-82,-24v1,-41,50,-47,83,-60v4,-54,-55,-44,-80,-11r0,-35xm48,-59v-15,13,-5,39,17,39v10,0,19,-4,28,-12r0,-48v-15,5,-37,13,-45,21","w":153,"k":{"y":14,"w":13,"v":13,"p":4}},"b":{"d":"167,-82v0,77,-82,102,-146,73r0,-237r32,0r0,96v51,-39,114,2,114,68xm135,-81v0,-47,-49,-72,-82,-39r0,88v42,15,82,-4,82,-49","k":{"y":4,".":4,",":4}},"c":{"d":"46,-81v0,51,55,67,98,43r0,32v-63,26,-130,-6,-130,-74v0,-67,68,-106,126,-74r0,34v-39,-30,-94,-12,-94,39","w":157,"k":{".":-7,",":-7}},"d":{"d":"16,-83v0,-60,56,-99,115,-75r0,-88r32,0r0,246r-69,0v-48,0,-78,-34,-78,-83xm48,-80v0,48,31,57,83,53r0,-103v-41,-20,-83,3,-83,50","w":183,"k":{"d":4}},"e":{"d":"90,-165v45,0,72,37,70,87r-113,0v0,57,74,63,111,31r0,31v-19,12,-35,18,-64,18v-52,-1,-77,-34,-79,-84v-2,-47,30,-83,75,-83xm129,-97v2,-36,-42,-52,-67,-30v-7,7,-13,17,-15,30r82,0","w":172,"k":{"y":5,"w":5,"v":5,".":-7,",":-7}},"f":{"d":"107,-214v-35,-11,-53,11,-49,52r29,0r0,29r-29,0r0,133r-32,0r0,-133r-23,0r0,-29r23,0v-3,-58,25,-99,81,-84r0,32","w":90,"k":{"\u2019":-29,"\u201d":-29,"o":4,"e":4}},"g":{"d":"41,-11v-29,-13,-15,-39,9,-44v-24,-11,-36,-27,-36,-51v-1,-61,73,-58,138,-56r0,25r-33,0v36,35,5,90,-46,90v-18,0,-24,13,-12,22v35,12,90,10,90,57v0,35,-35,50,-75,50v-40,0,-75,-15,-76,-50v0,-22,14,-37,41,-43xm107,-104v0,-16,-14,-30,-32,-30v-17,0,-32,14,-32,30v0,17,14,29,32,29v17,0,31,-14,32,-29xm120,33v0,-31,-89,-37,-90,-1v0,17,15,25,45,25v23,0,45,-5,45,-24","w":153,"k":{"y":-7,"o":4}},"h":{"d":"94,-139v-20,0,-27,11,-40,23r0,116r-32,0r0,-246r32,0r0,106v35,-46,104,-26,104,48r0,92r-32,0v-5,-51,20,-139,-32,-139","k":{"y":13}},"i":{"d":"21,-211v-1,-10,9,-19,18,-19v9,0,20,9,19,19v1,10,-10,19,-19,19v-9,0,-19,-9,-18,-19xm23,-162r32,0r0,162r-32,0r0,-162","w":78},"j":{"d":"19,-211v-1,-10,9,-19,18,-19v10,0,20,9,20,19v0,9,-9,19,-19,19v-9,0,-20,-9,-19,-19xm-2,59v14,-5,24,-17,24,-36r0,-185r32,0r0,185v0,28,-10,47,-32,59","w":78},"k":{"d":"128,-162r38,0r-69,80r83,82r-43,0r-81,-82xm23,-246r32,0r0,246r-32,0r0,-246","w":172,"k":{"o":11,"e":11}},"l":{"d":"23,-246r32,0r0,246r-32,0r0,-246","w":78,"k":{"y":4,"w":4}},"m":{"d":"224,0v-6,-50,20,-135,-32,-137v-13,0,-26,7,-37,20r0,117r-32,0v-7,-49,21,-137,-32,-138v-20,0,-27,8,-38,21r0,117r-32,0r0,-162r32,0r0,22v30,-34,74,-34,96,4v37,-51,107,-31,107,41r0,95r-32,0","w":277,"k":{"y":13,"u":4}},"n":{"d":"126,0v-6,-50,21,-137,-33,-138v-15,0,-27,8,-38,23r0,115r-33,0r0,-162r33,0r0,21v38,-45,103,-23,103,49r0,92r-32,0","k":{"y":7,"v":5,"u":4}},"o":{"d":"13,-79v0,-47,39,-83,87,-83v49,0,86,37,86,84v0,47,-40,81,-87,81v-47,0,-86,-37,-86,-82xm153,-80v1,-31,-24,-53,-55,-53v-29,0,-52,22,-52,53v0,30,23,53,54,53v31,0,53,-23,53,-53","w":198,"k":{"y":7,"x":5,"w":4,"v":4,".":11,",":11}},"p":{"d":"168,-80v0,58,-56,101,-115,76r0,86r-32,0r0,-244v80,-5,147,7,147,82xm135,-81v0,-45,-34,-54,-82,-51r0,100v40,20,82,-5,82,-49","k":{"y":13,".":11,",":11}},"q":{"d":"13,-79v0,-74,65,-91,146,-83r0,244r-32,0r0,-85v-61,22,-114,-16,-114,-76xm45,-80v-2,45,45,69,82,49r0,-101v-51,-4,-80,9,-82,52"},"r":{"d":"126,-118v-29,-35,-69,-7,-69,33r0,85r-32,0r0,-162r32,0r0,37v26,-39,50,-55,86,-22","w":142,"k":{"y":-11,"v":-11,"t":-7,"r":4,"q":9,"o":9,"e":7,"d":5,"c":9,";":-14,":":-14,".":36,"-":29,",":36}},"s":{"d":"124,-43v0,51,-75,57,-109,31r0,-34v18,14,63,35,76,5v-12,-37,-78,-36,-75,-82v3,-45,63,-52,100,-29r0,32v-19,-11,-34,-17,-46,-17v-31,0,-22,27,2,37v26,11,52,35,52,57","w":138,"k":{"w":4}},"t":{"d":"120,-8v-42,23,-92,11,-92,-53r0,-72r-28,0v16,-25,41,-40,60,-62r0,33r51,0r0,29r-51,0v5,37,-16,105,23,107v11,0,24,-3,37,-11r0,29","w":119},"u":{"d":"54,-162v7,50,-22,138,33,138v15,0,28,-7,39,-22r0,-116r32,0r0,162r-32,0r0,-21v-34,41,-104,26,-104,-48r0,-93r32,0"},"v":{"d":"122,-162r34,0r-71,165r-11,0r-73,-165r35,0r44,100","w":157,"k":{"o":7,"e":7,".":22,",":22}},"w":{"d":"225,-162r34,0r-71,165r-10,0r-48,-113r-48,113r-10,0r-72,-165r34,0r43,98r41,-98r24,0r40,98","w":258,"k":{"o":7,"e":7,".":22,",":22}},"x":{"d":"134,-162r41,0r-66,80r71,82r-41,0r-51,-58r-48,58r-40,0r68,-82r-68,-80r40,0r48,56","k":{"e":11}},"y":{"d":"122,-162r36,0r-115,244r-35,0r55,-117r-63,-127r36,0r44,92","w":157,"k":{"o":7,"e":7,".":29,",":29}},"z":{"d":"8,-162r138,0r-86,132r86,0r0,30r-142,0r85,-132r-81,0r0,-30","w":150},"{":{"d":"46,-11v0,-44,-2,-64,-36,-68r0,-29v34,-3,37,-24,36,-68v-1,-64,6,-88,66,-86r0,27v-41,-6,-36,26,-36,63v0,44,-7,65,-37,79v38,12,37,53,37,105v0,31,7,37,36,36r0,27v-60,2,-67,-23,-66,-86","w":119},"|":{"d":"33,83r0,-329r28,0r0,329r-28,0","w":93},"}":{"d":"44,-172v-1,-35,6,-70,-36,-63r0,-27v59,-2,67,24,66,86v0,44,1,65,36,68r0,29v-34,3,-37,25,-37,68v0,64,-6,88,-65,86r0,-27v41,6,36,-26,36,-62v1,-45,6,-66,37,-79v-30,-13,-37,-35,-37,-79","w":119},"~":{"d":"195,-114v-49,60,-134,-44,-180,20r0,-36v50,-62,133,43,180,-22r0,38","w":209},"\u2122":{"d":"110,-102r-24,0r0,-122r-46,0r0,-22r117,0r0,22r-47,0r0,122xm195,-102r-22,0r0,-144r35,0r36,115r35,-115r35,0r0,144r-22,0r0,-121r-37,121r-22,0r-38,-122r0,122","w":360},"\u2026":{"d":"279,-18v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21xm159,-18v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21xm38,-18v0,-12,11,-21,22,-22v11,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-10,-22,-21","w":360},"\u2013":{"d":"-3,-103r186,0r0,23r-186,0r0,-23"},"\u2014":{"d":"-3,-103r366,0r0,23r-366,0r0,-23","w":360},"\u201c":{"d":"118,-162v-36,0,-30,-60,-7,-74v7,-4,13,-9,23,-13v-2,16,-20,24,-13,46v12,0,18,10,18,21v0,11,-10,20,-21,20xm38,-162v-29,0,-33,-47,-15,-67v8,-9,17,-16,30,-20v-1,19,-22,26,-12,46v10,-1,17,11,17,21v0,11,-9,20,-20,20","w":153,"k":{"\u2018":-22}},"\u201d":{"d":"117,-249v47,8,19,88,-17,87v3,-17,17,-22,14,-44v-12,-2,-18,-8,-18,-21v0,-12,9,-24,21,-22xm37,-249v15,1,26,16,25,34v0,26,-14,43,-42,53v3,-16,16,-22,13,-43v-28,-3,-20,-45,4,-44","w":153},"\u2018":{"d":"44,-162v-16,0,-25,-14,-24,-32v0,-27,14,-46,42,-55v-3,19,-21,27,-15,45v27,5,23,42,-3,42","w":78},"\u2019":{"d":"35,-249v29,0,32,49,14,69v-8,10,-18,17,-31,21v2,-19,16,-19,14,-43v-26,-5,-22,-47,3,-47","w":78,"k":{"\u201d":-22,"v":9,"t":14,"s":29,"r":29,"d":29}},"\u00d7":{"d":"28,-72r56,-55r-56,-55r22,-22r55,55r55,-55r21,22r-55,55r55,55r-21,21r-55,-55r-55,55","w":210},"\u00a0":{"w":100,"k":{"\u2018":36,"\u201c":36,"Y":54,"W":45,"V":54,"T":45,"A":36}}}});Cufon.registerFont({"w":180,"face":{"font-family":"Gill Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 2 2 2 4 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-22 -333 375 92","underline-thickness":"8.78906","underline-position":"-13.1836","unicode-range":"U+0020-U+EFF8"},"glyphs":{" ":{"w":100},"!":{"d":"54,-76v-1,6,-9,6,-10,0v-10,-49,-13,-76,-16,-130v-1,-23,3,-43,21,-43v18,0,22,21,22,43v0,54,-7,81,-17,130xm27,-18v0,-11,10,-21,22,-21v12,0,22,10,22,21v0,27,-44,28,-44,0","w":97},'"':{"d":"25,-154v-5,-28,-10,-57,-8,-92r33,0v2,35,-3,64,-8,92r-17,0xm83,-154v-5,-28,-10,-57,-8,-92r32,0v1,34,-2,64,-7,92r-17,0","w":127},"#":{"d":"98,-246r-13,64r66,0r14,-64r25,0r-13,64r33,0r0,25r-38,0r-12,58r50,0r0,25r-55,0r-16,78r-26,0r16,-78r-67,0r-16,78r-26,0r16,-78r-36,0r0,-25r42,0r12,-58r-54,0r0,-25r59,0r13,-64r26,0xm79,-157r-12,58r67,0r12,-58r-67,0","w":210},"$":{"d":"18,-182v-2,-37,30,-60,65,-66r0,-26r29,0r0,25v26,2,40,8,57,22r0,35v-17,-15,-31,-22,-57,-25r0,78v36,19,67,33,69,73v2,38,-31,62,-69,68r0,26r-29,0r0,-24v-28,-1,-44,-9,-65,-22r0,-35v20,14,36,24,65,24r0,-85v-34,-18,-63,-31,-65,-68xm83,-214v-25,4,-45,33,-18,49v4,3,10,8,18,12r0,-61xm112,-32v27,-5,50,-34,22,-53v-5,-4,-12,-9,-22,-14r0,67","w":195},"%":{"d":"64,-138v-30,0,-55,-24,-55,-55v0,-31,25,-55,55,-55v31,0,56,23,56,55v0,32,-26,55,-56,55xm64,-223v-15,0,-29,14,-29,29v0,15,13,29,29,29v16,0,30,-14,30,-29v0,-15,-15,-29,-30,-29xm29,2r161,-250r26,0r-161,250r-26,0xm180,2v-31,0,-55,-23,-55,-54v0,-32,24,-56,55,-56v31,0,56,24,56,56v0,31,-25,55,-56,54xm180,-82v-16,0,-29,14,-29,29v0,15,14,28,29,28v16,0,30,-13,30,-28v0,-15,-14,-29,-30,-29","w":244},"&":{"d":"67,-128v-14,-18,-26,-32,-27,-55v-1,-34,29,-59,62,-59v31,0,62,22,62,53v0,26,-27,55,-47,68r36,41v10,-11,22,-30,26,-42r34,0v-6,20,-24,49,-40,65r50,57r-44,0r-29,-33v-19,18,-46,37,-75,37v-39,0,-65,-24,-65,-64v1,-30,31,-55,57,-68xm44,-57v0,45,70,25,86,1r-44,-50v-19,9,-42,28,-42,49xm102,-211v-43,3,-26,49,-4,68v26,-12,52,-66,4,-68","w":225},"'":{"d":"26,-154v-5,-28,-10,-57,-8,-92r32,0v1,34,-2,64,-7,92r-17,0","w":67},"(":{"d":"90,83v-38,-37,-67,-97,-67,-166v0,-69,29,-129,67,-166r22,0v-69,64,-69,268,0,332r-22,0","w":116},")":{"d":"26,-249v38,37,67,96,67,166v0,69,-29,129,-67,166r-22,0v69,-62,70,-270,0,-332r22,0","w":116},"*":{"d":"75,-262v12,-1,16,10,13,23r-13,58r-13,-64v0,-11,3,-17,13,-17xm75,-181v-23,-10,-57,-11,-71,-29v-5,-17,17,-23,27,-10xm75,-181v-21,15,-35,39,-62,47v-15,-4,-8,-28,6,-29xm87,-123v6,16,-9,31,-22,19v-8,-25,8,-52,10,-77xm75,-181v23,10,56,13,72,30v2,16,-16,22,-28,10xm75,-181v21,-14,33,-40,62,-46v17,4,9,28,-6,29xm75,-168v-18,0,-16,-26,0,-26v18,0,16,26,0,26","w":150},"+":{"d":"90,-113r-70,0r0,-29r70,0r0,-71r30,0r0,71r70,0r0,29r-70,0r0,70r-30,0r0,-70","w":210},",":{"d":"36,-2v-10,0,-19,-9,-19,-21v0,-12,9,-21,21,-21v49,11,19,85,-17,86v4,-14,20,-22,15,-44","w":78},"-":{"d":"14,-96r88,0r0,33r-88,0r0,-33","w":116},".":{"d":"18,-18v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-11,0,-21,-10,-21,-22","w":78},"/":{"d":"99,-248r-72,250r-24,0r71,-250r25,0","w":101},"0":{"d":"90,4v-107,-3,-107,-250,0,-253v107,3,107,250,0,253xm90,-30v61,-9,60,-177,0,-186v-61,8,-60,177,0,186"},"1":{"d":"73,0r0,-249r35,0r0,249r-35,0"},"2":{"d":"17,-226v43,-45,141,-19,134,54v-4,53,-41,96,-76,139r93,0r0,33r-156,0r0,-3v48,-54,94,-99,103,-162v4,-30,-15,-52,-44,-51v-25,1,-39,15,-54,32r0,-42"},"3":{"d":"66,-143v28,2,47,-12,48,-36v2,-41,-57,-45,-84,-25r0,-35v48,-25,119,-4,119,53v0,25,-11,45,-29,55v61,30,29,141,-45,135v-23,-2,-35,-5,-52,-14r0,-38v27,24,95,26,95,-22v0,-27,-23,-41,-52,-40r0,-33"},"4":{"d":"4,-81r0,-18r121,-147r17,0r0,132r28,0r0,33r-28,0r0,81r-36,0r0,-81r-102,0xm106,-114r0,-68r-55,68r55,0"},"5":{"d":"68,-153v51,-3,88,24,90,70v4,75,-80,108,-140,72r0,-35v33,24,105,20,105,-31v0,-41,-51,-55,-87,-41r0,-128r108,0r0,34r-76,0r0,59"},"6":{"d":"95,4v-87,0,-96,-115,-53,-180v19,-28,41,-53,71,-73r21,26v-35,23,-60,53,-75,93v48,-29,108,2,108,61v0,39,-34,73,-72,73xm51,-93v-3,36,11,63,42,63v24,0,40,-16,40,-39v1,-41,-57,-50,-82,-24"},"7":{"d":"33,-12r94,-200r-109,0r0,-34r158,0r-110,249"},"8":{"d":"90,4v-77,9,-104,-98,-46,-130v-53,-32,-25,-133,46,-123v71,-9,101,90,46,123v57,32,32,139,-46,130xm50,-179v0,21,17,37,40,37v24,0,40,-15,40,-37v0,-22,-17,-37,-40,-37v-23,0,-40,15,-40,37xm134,-69v0,-24,-19,-40,-44,-39v-25,0,-44,15,-44,39v0,24,20,39,44,39v25,0,44,-15,44,-39"},"9":{"d":"86,-249v86,0,98,114,54,179v-19,28,-41,54,-72,74r-21,-26v36,-25,60,-51,75,-93v-48,29,-109,-3,-109,-62v0,-39,34,-72,73,-72xm129,-152v6,-34,-11,-63,-41,-64v-24,0,-39,16,-40,39v-2,41,55,50,81,25"},":":{"d":"18,-18v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-11,0,-21,-10,-21,-22xm18,-144v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-11,0,-21,-10,-21,-22","w":78},";":{"d":"36,-2v-10,0,-19,-10,-19,-21v0,-11,10,-23,22,-21v47,8,20,86,-17,86v4,-14,18,-23,14,-44xm18,-144v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-11,0,-21,-10,-21,-22","w":78},"<":{"d":"20,-113r0,-29r170,-74r0,30r-135,58r135,59r0,30","w":210},"=":{"d":"20,-103r170,0r0,30r-170,0r0,-30xm20,-182r170,0r0,30r-170,0r0,-30","w":210},">":{"d":"190,-113r-170,74r0,-30r135,-59r-135,-58r0,-30r170,74r0,29","w":210},"?":{"d":"70,-193v0,-20,-16,-26,-41,-22r17,-33v34,-5,59,20,58,55v-1,53,-51,81,-55,129v-54,-32,21,-87,21,-129xm35,-18v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-10,22,-21,22v-12,0,-22,-10,-22,-22","w":119},"@":{"d":"103,-121v0,-64,75,-109,121,-61r0,-16r35,0v3,39,-8,91,7,118v33,25,49,-21,49,-61v0,-72,-51,-114,-124,-114v-80,-1,-133,50,-133,130v0,104,99,150,202,123r0,33v-125,28,-240,-32,-240,-156v0,-102,70,-163,173,-163v94,0,160,55,160,147v0,56,-26,101,-77,102v-21,0,-37,-11,-44,-27v-12,17,-31,28,-58,27v-40,1,-71,-40,-71,-82xm224,-121v0,-29,-16,-54,-42,-54v-25,-1,-42,28,-42,54v0,27,16,56,42,55v28,0,42,-25,42,-55","w":363},"A":{"d":"105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"B":{"d":"195,-66v0,74,-90,67,-168,66r0,-246v70,-2,146,-5,146,62v0,26,-16,47,-38,54v34,5,60,28,60,64xm137,-177v0,-37,-36,-37,-75,-36r0,72v38,1,75,1,75,-36xm159,-70v0,-43,-52,-40,-97,-39r0,77v44,0,98,6,97,-38","w":202},"C":{"d":"54,-123v0,95,125,119,185,66r0,39v-31,14,-50,21,-89,22v-71,1,-133,-57,-133,-127v0,-70,62,-128,133,-126v39,1,58,8,89,22r0,38v-62,-51,-185,-30,-185,66","w":254},"D":{"d":"253,-123v0,74,-61,123,-137,123r-89,0r0,-246r97,0v73,-1,129,51,129,123xm217,-123v0,-80,-68,-98,-154,-90r0,181v85,7,154,-13,154,-91","w":270},"E":{"d":"27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"F":{"d":"27,0r0,-246r131,0r0,32r-95,0r0,68r95,0r0,32r-95,0r0,114r-36,0","w":168},"G":{"d":"55,-123v0,78,81,114,152,84r0,-53r-50,0r0,-31r85,0r0,107v-28,13,-61,20,-98,20v-69,1,-126,-58,-126,-127v0,-70,62,-128,134,-126v39,1,59,8,90,22r0,38v-30,-17,-51,-27,-92,-28v-55,-1,-95,38,-95,94","w":266},"H":{"d":"27,0r0,-246r35,0r0,107r138,0r0,-107r35,0r0,246r-35,0r0,-108r-138,0r0,108r-35,0","w":262},"I":{"d":"27,0r0,-246r36,0r0,246r-36,0","w":90},"J":{"d":"-22,57v38,1,49,-14,49,-53r0,-250r36,0r0,250v1,59,-23,88,-80,82","w":90},"K":{"d":"62,0r-35,0r0,-246r35,0r0,112r101,-112r46,0r-109,117r136,129r-49,0r-125,-121r0,121","w":236},"L":{"d":"27,0r0,-246r35,0r0,215r111,0r0,31r-146,0","w":176},"M":{"d":"143,-96r-4,0r-77,-93r0,189r-36,0r0,-246r35,0r82,100r82,-100r30,0r0,246r-35,0r0,-189","w":281},"N":{"d":"60,0r-33,0r0,-246r30,0r164,188r0,-188r33,0r0,248r-27,0r-167,-190r0,188","w":281},"O":{"d":"148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"P":{"d":"180,-176v0,60,-54,74,-120,69r0,107r-35,0r0,-246v76,-2,155,-5,155,70xm143,-176v0,-42,-42,-38,-83,-37r0,74v41,1,83,4,83,-37","w":183},"Q":{"d":"280,-123v0,60,-45,113,-99,123v24,13,60,24,91,20r-29,28v-41,2,-91,-23,-118,-46v-58,-8,-109,-61,-109,-125v0,-70,60,-126,132,-126v72,0,132,56,132,126xm148,-217v-55,0,-95,38,-95,94v0,56,40,94,95,94v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94","w":296},"R":{"d":"169,-179v0,33,-17,53,-43,62v39,23,63,79,91,117r-42,0v-33,-39,-41,-110,-112,-108r0,108r-35,0r0,-246v71,-3,141,-2,141,67xm133,-176v0,-36,-32,-39,-70,-37r0,73v37,2,70,0,70,-36","w":217},"S":{"d":"14,-182v0,-65,85,-84,130,-50r0,40v-19,-29,-92,-39,-97,5v10,55,106,53,106,121v0,75,-97,88,-139,45r0,-43v18,19,35,34,67,35v22,0,39,-12,39,-32v0,-57,-106,-57,-106,-121","w":164},"T":{"d":"91,0r0,-214r-85,0r0,-32r205,0r0,32r-85,0r0,214r-35,0","w":217},"U":{"d":"128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"V":{"d":"38,-246r71,175r70,-175r38,0r-103,248r-10,0r-104,-248r38,0","w":217},"W":{"d":"98,2r-98,-248r38,0r66,172r70,-174r27,0r71,174r65,-172r38,0r-98,248r-10,0r-80,-191r-80,191r-9,0","w":375},"X":{"d":"208,0r-81,-97r-81,97r-45,0r104,-125r-101,-121r46,0r78,94r77,-94r46,0r-101,121r104,125r-46,0","w":254},"Y":{"d":"91,-127r-91,-119r46,0r63,87r63,-87r45,0r-91,119r0,127r-35,0r0,-127","w":217},"Z":{"d":"6,0r152,-214r-147,0r0,-32r212,0r-152,215r156,0r0,31r-221,0","w":232},"[":{"d":"31,77r0,-339r84,0r0,22r-51,0r0,296r51,0r0,21r-84,0","w":119},"\\":{"d":"74,2r-71,-250r24,0r72,250r-25,0","w":101},"]":{"d":"89,77r-84,0r0,-21r51,0r0,-296r-51,0r0,-22r84,0r0,339","w":119},"^":{"d":"92,-249r67,128r-33,0r-42,-79r-41,79r-34,0r68,-128r15,0","w":168},"_":{"d":"-2,83r0,-18r184,0r0,18r-184,0"},"`":{"d":"62,-181r-40,-55r36,0r24,55r-20,0","w":119},"a":{"d":"148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"b":{"d":"168,-81v0,78,-87,104,-147,71r0,-236r32,0r0,96v49,-40,115,4,115,69xm53,-30v41,14,86,-5,82,-51v5,-48,-56,-75,-82,-37r0,88"},"c":{"d":"48,-81v-5,52,65,73,97,39r0,34v-57,33,-130,-5,-130,-73v0,-67,67,-105,124,-73r0,35v-31,-32,-97,-15,-91,38","w":157},"d":{"d":"16,-83v0,-62,55,-97,114,-76r0,-87r32,0r0,246r-71,0v-45,0,-75,-35,-75,-83xm49,-82v0,48,32,58,81,54v-2,-33,4,-74,-2,-103v-38,-18,-79,5,-79,49","w":183},"e":{"d":"48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"f":{"d":"107,-214v-36,-9,-53,11,-50,52r31,0r0,30r-31,0r0,132r-32,0r0,-132r-22,0r0,-30r22,0v-3,-60,24,-97,82,-85r0,33","w":90},"g":{"d":"15,-105v0,-64,70,-58,137,-56r0,26r-23,0v21,43,-9,91,-59,86v-13,3,-23,17,-5,24v36,15,89,11,87,60v-2,65,-152,67,-152,-4v0,-23,17,-40,38,-42v-22,-16,-12,-37,10,-44v-19,-7,-34,-27,-33,-50xm107,-105v0,-18,-13,-32,-31,-32v-18,0,-31,13,-31,32v0,18,13,30,31,30v18,0,31,-13,31,-30xm121,35v-1,-34,-89,-41,-92,-4v2,35,87,37,92,4","w":153},"h":{"d":"126,0v-6,-51,21,-136,-32,-139v-14,-1,-30,11,-40,25r0,114r-32,0r0,-246r32,0r0,107v35,-49,104,-25,104,41r0,98r-32,0"},"i":{"d":"24,0r0,-162r32,0r0,162r-32,0xm21,-212v-1,-10,9,-20,19,-19v10,-1,20,9,19,19v1,10,-9,20,-19,20v-10,0,-20,-10,-19,-20","w":78},"j":{"d":"-2,58v13,-6,24,-16,24,-33r0,-187r32,0r0,187v0,29,-13,47,-33,57xm19,-212v-1,-10,9,-20,19,-19v10,-1,20,9,19,19v1,10,-9,20,-19,20v-10,0,-20,-10,-19,-20","w":78},"k":{"d":"54,-246r0,246r-32,0r0,-246r32,0xm138,0r-82,-81r72,-81r39,0r-71,81r84,81r-42,0","w":172},"l":{"d":"23,0r0,-246r32,0r0,246r-32,0","w":78},"m":{"d":"123,0v-6,-50,21,-135,-31,-139v-14,-1,-29,11,-39,25r0,114r-32,0r0,-162r32,0r0,23v27,-39,83,-32,97,7v27,-54,106,-39,106,32r0,100r-32,0v-6,-50,21,-134,-30,-139v-14,-1,-29,11,-39,25r0,114r-32,0","w":277},"n":{"d":"126,0v-6,-51,21,-136,-32,-139v-14,-1,-30,11,-40,25r0,114r-32,0r0,-162r32,0r0,23v35,-49,104,-25,104,41r0,98r-32,0"},"o":{"d":"99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"p":{"d":"167,-78v0,60,-58,98,-114,75r0,86r-32,0r0,-243v81,-5,146,5,146,82xm53,-32v36,17,81,-4,81,-46v0,-45,-36,-59,-81,-52r0,98"},"q":{"d":"13,-79v0,-49,33,-83,82,-82r64,0r0,244r-32,0r0,-85v-56,21,-114,-17,-114,-77xm46,-78v0,43,42,65,81,49r-1,-102v-43,-8,-80,11,-80,53"},"r":{"d":"126,-116v-24,-37,-69,-15,-69,29r0,87r-32,0r0,-162r32,0r0,38v13,-36,57,-59,86,-22","w":142},"s":{"d":"15,-120v0,-50,69,-54,102,-31r0,30v-14,-9,-25,-17,-46,-16v-12,0,-24,5,-24,15v14,32,77,35,77,79v0,53,-74,57,-109,31r0,-34v18,13,29,20,52,22v12,0,27,-6,25,-18v-5,-34,-77,-32,-77,-78","w":138},"t":{"d":"59,-132v5,39,-17,105,27,105v14,0,25,-4,33,-10r0,31v-34,23,-92,5,-92,-44r0,-82r-27,0r0,-5r59,-57r0,32r50,0r0,30r-50,0","w":119},"u":{"d":"125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"v":{"d":"36,-162r43,100r42,-100r35,0r-73,164r-9,0r-73,-164r35,0","w":157},"w":{"d":"72,2r-72,-164r35,0r42,100r43,-102r19,0r43,101r42,-99r35,0r-72,164r-10,0r-48,-109r-48,109r-9,0","w":258},"x":{"d":"140,0r-50,-59r-50,59r-40,0r70,-83r-67,-79r40,0r47,56r47,-56r40,0r-67,80r70,82r-40,0"},"y":{"d":"36,-162r46,93r41,-93r35,0r-113,249r-37,0r56,-124r-64,-125r36,0","w":157},"z":{"d":"4,0r86,-132r-81,0r0,-30r136,0r-85,132r86,0r0,30r-142,0","w":150},"{":{"d":"79,-31v1,37,-8,84,33,81r0,25v-67,7,-63,-44,-63,-106v0,-30,-11,-47,-39,-49r0,-27v85,1,-17,-168,102,-155r0,25v-41,-3,-32,44,-33,82v-1,38,-10,53,-39,61v29,9,38,24,39,63","w":119},"|":{"d":"33,92r0,-364r27,0r0,364r-27,0","w":93},"}":{"d":"110,-80v-85,-1,17,168,-102,155r0,-25v40,3,32,-43,33,-81v1,-39,10,-54,39,-63v-44,-6,-39,-55,-39,-106v0,-25,-9,-37,-33,-37r0,-25v68,-7,63,44,63,107v0,30,11,46,39,48r0,27","w":119},"~":{"d":"9,-113v12,-59,96,-25,148,-23v14,0,28,-5,32,-13r13,6v-4,21,-23,38,-49,37v-37,-2,-106,-31,-131,0","w":210},"\u00a0":{"w":100},"\u00a1":{"d":"49,71v-38,-5,-17,-81,-16,-111v1,-18,6,-39,10,-63v0,-5,11,-5,11,0v10,50,12,77,16,131v1,23,-4,41,-21,43xm70,-161v0,12,-9,22,-21,22v-12,0,-23,-9,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21","w":97},"\u00a2":{"d":"54,-8v-43,-19,-55,-97,-16,-131v18,-16,42,-26,70,-22r24,-69r16,0r-25,71v7,2,15,5,24,9r0,35v-12,-10,-20,-14,-34,-18r-36,104v25,11,54,1,70,-14r0,35v-22,12,-54,17,-80,6r-25,70r-15,0xm98,-134v-47,-1,-68,67,-34,97","w":157},"\u00a3":{"d":"179,-3v-44,19,-108,-11,-158,7r30,-108r-29,0r0,-30r37,0v14,-57,37,-124,104,-113r19,37v-51,-26,-82,28,-88,76r30,0r0,30r-38,0r-20,69v39,-6,85,15,113,-3r0,35","w":191},"\u00a4":{"d":"99,-68v30,0,54,-24,54,-54v0,-30,-23,-54,-54,-54v-30,0,-54,24,-54,54v0,29,25,54,54,54xm146,-60v-25,20,-67,20,-93,1r-23,23r-17,-17r24,-23v-20,-25,-20,-68,0,-93r-24,-23r17,-16r23,23v24,-20,68,-20,92,0r24,-23r16,16r-23,24v20,25,20,67,0,92r23,23r-16,17","w":198},"\u00a5":{"d":"10,-121r0,-23r63,0r-73,-102r40,0r60,88r59,-88r40,0r-73,102r63,0r0,23r-72,0r0,26r72,0r0,23r-72,0r0,72r-35,0r0,-72r-72,0r0,-23r72,0r0,-26r-72,0","w":198},"\u00a6":{"d":"33,65r0,-132r27,0r0,132r-27,0xm33,-117r0,-132r27,0r0,132r-27,0","w":93},"\u00a7":{"d":"35,-162v-26,-39,1,-87,48,-87v19,0,39,12,39,31v0,10,-9,19,-18,18v-20,3,-10,-27,-24,-27v-17,0,-26,12,-26,30v12,46,79,71,81,126v0,27,-12,47,-27,61v29,36,7,98,-45,93v-33,7,-56,-45,-21,-51v14,-2,18,16,20,28v19,5,31,-10,30,-29v-12,-47,-80,-72,-80,-133v0,-26,9,-46,23,-60xm91,-31v37,-41,-14,-81,-39,-109v-30,43,12,84,39,109","w":146},"\u00a8":{"d":"10,-198v0,-9,7,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-9,0,-16,-8,-16,-17xm77,-198v0,-10,6,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-16,-7,-16,-17","w":119},"\u00a9":{"d":"57,-186v0,31,40,47,57,23r11,11v-25,28,-86,9,-81,-34v-4,-42,53,-65,80,-35r-10,11v-17,-22,-57,-7,-57,24xm84,-269v46,0,84,37,84,84v0,46,-37,84,-84,84v-46,0,-84,-39,-84,-84v0,-46,39,-84,84,-84xm157,-185v0,-39,-34,-72,-73,-72v-39,0,-72,33,-72,72v0,39,33,73,72,73v40,0,73,-33,73,-73","w":266},"\u00aa":{"d":"97,-171v8,22,-25,31,-35,17v-20,10,-57,11,-57,-16v0,-28,33,-31,55,-40v-2,-28,-42,-17,-52,-1r0,-24v20,-22,74,-17,74,21r0,41v-2,14,11,7,15,2xm35,-184v-9,8,-4,21,9,20v6,0,11,-2,16,-4r0,-29v-8,4,-19,8,-25,13","w":101},"\u00ab":{"d":"95,-162r-52,81r52,81r-32,0r-52,-81r52,-81r32,0xm168,-162r-52,81r52,81r-32,0r-52,-81r52,-81r32,0","w":176},"\u00ac":{"d":"160,-151r-140,0r0,-30r170,0r0,106r-30,0r0,-76","w":210},"\u00ad":{"d":"14,-96r88,0r0,33r-88,0r0,-33","w":116},"\u00ae":{"d":"88,-231v28,-1,35,41,10,50r16,39r-16,0r-15,-37r-15,0r0,37r-13,0r0,-89r33,0xm68,-192v15,0,32,3,32,-13v0,-16,-17,-13,-32,-13r0,26xm84,-268v47,0,84,37,84,84v0,46,-37,84,-84,84v-46,0,-84,-39,-84,-84v0,-46,38,-84,84,-84xm157,-184v0,-39,-34,-72,-73,-72v-39,0,-72,33,-72,72v0,39,33,73,72,73v40,0,73,-33,73,-73","w":266},"\u00af":{"d":"-2,-268r0,-19r184,0r0,19r-184,0"},"\u00b0":{"d":"22,-201v0,-27,22,-48,49,-48v27,0,49,22,49,48v0,27,-21,49,-49,49v-28,0,-49,-21,-49,-49xm71,-175v13,0,25,-12,25,-26v0,-14,-12,-25,-25,-25v-13,0,-25,11,-25,25v0,14,12,26,25,26","w":142},"\u00b1":{"d":"90,-113r-70,0r0,-29r70,0r0,-71r30,0r0,71r70,0r0,29r-70,0r0,70r-30,0r0,-70xm20,-30r170,0r0,30r-170,0r0,-30","w":210},"\u00b2":{"d":"13,-235v26,-25,85,-13,83,28v-1,24,-23,49,-39,67r49,0r0,22v-31,-2,-69,4,-96,-2v27,-28,56,-49,62,-83v-1,-31,-47,-25,-59,-6r0,-26","w":116},"\u00b3":{"d":"43,-193v15,1,28,-5,28,-18v0,-21,-36,-22,-50,-12r0,-20v30,-12,76,-4,74,30v0,11,-3,22,-13,26v30,22,11,77,-33,72v-14,-2,-21,-3,-32,-8r0,-22v14,13,55,17,55,-10v0,-14,-14,-20,-29,-19r0,-19","w":116},"\u00b4":{"d":"40,-181r24,-55r36,0r-40,55r-20,0","w":119},"\u00b5":{"d":"137,-15v-18,30,-60,21,-74,-4r0,92r-32,0r0,-235r32,0v4,54,-19,139,37,139v55,0,33,-85,37,-139r32,0r0,162r-32,0r0,-15","w":198},"\u00b6":{"d":"0,-184v0,-68,69,-92,149,-84r0,14r-24,0r0,311r-14,0r0,-311r-17,0r0,311r-14,0r0,-156v-46,-8,-80,-36,-80,-85","w":195},"\u00b7":{"d":"18,-123v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22","w":78},"\u00b8":{"d":"36,43v18,6,46,-5,29,-21v-4,-3,-13,-4,-19,-2r9,-22r20,0r-4,11v12,2,21,10,21,22v0,24,-28,35,-56,29r0,-17","w":119},"\u00b9":{"d":"46,-118r0,-130r23,0r0,130r-23,0","w":116},"\u00ba":{"d":"66,-147v-32,0,-58,-19,-58,-51v0,-31,26,-50,58,-50v31,0,57,19,57,50v0,31,-25,51,-57,51xm66,-166v19,0,33,-14,33,-32v0,-18,-14,-31,-33,-31v-19,0,-34,12,-34,31v0,19,14,32,34,32","w":131},"\u00bb":{"d":"8,0r52,-81r-52,-81r32,0r52,81r-52,81r-32,0xm81,0r52,-81r-52,-81r32,0r53,81r-53,81r-32,0","w":176},"\u2215":{"d":"233,-248r-164,259r-24,0r164,-259r24,0","w":270},"\u2074":{"d":"10,-155r0,-11r69,-80r11,0r0,73r16,0r0,18r-16,0r0,37r-23,0r0,-37r-57,0xm67,-173r0,-31r-26,31r26,0","w":116},"\u00bc":{"d":"219,-248r-164,259r-24,0r164,-259r24,0xm30,-118r0,-130r23,0r0,130r-23,0xm149,-37r0,-11r69,-80r11,0r0,73r16,0r0,18r-16,0r0,37r-23,0r0,-37r-57,0xm206,-55r0,-31r-26,31r26,0","w":303},"\u00bd":{"d":"218,-248r-164,259r-24,0r164,-259r24,0xm39,-118r0,-130r23,0r0,130r-23,0xm179,-117v26,-25,85,-13,83,28v-1,24,-23,49,-39,67r49,0r0,22v-31,-2,-69,4,-96,-2v27,-28,56,-49,62,-83v-1,-31,-47,-25,-59,-6r0,-26","w":303},"\u00be":{"d":"242,-248r-164,259r-24,0r164,-259r24,0xm50,-193v15,1,28,-5,28,-18v0,-21,-36,-22,-50,-12r0,-20v30,-12,76,-4,74,30v0,11,-3,22,-13,26v30,22,11,77,-33,72v-14,-2,-21,-3,-32,-8r0,-22v14,13,55,17,55,-10v0,-14,-14,-20,-29,-19r0,-19xm166,-37r0,-11r69,-80r11,0r0,73r16,0r0,18r-16,0r0,37r-23,0r0,-37r-57,0xm223,-55r0,-31r-26,31r26,0","w":303},"\u00bf":{"d":"49,15v3,19,18,25,42,21r-17,34v-34,5,-60,-21,-59,-55v2,-53,52,-82,56,-130v54,33,-16,89,-22,130xm85,-161v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-11,10,-21,22,-21v12,0,22,10,22,21","w":119},"\u00c0":{"d":"122,-265r-40,-54r36,0r24,54r-20,0xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u00c1":{"d":"94,-265r24,-54r36,0r-41,54r-19,0xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u00c2":{"d":"134,-319r34,54r-19,0r-31,-33r-32,33r-18,0r33,-54r33,0xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u00c3":{"d":"94,-307v21,0,54,28,63,0r13,0v3,45,-35,49,-68,31v-13,-4,-23,1,-23,12r-14,0v0,-22,10,-42,29,-43xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u00c4":{"d":"67,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm134,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u00c5":{"d":"118,-266v-18,0,-34,-15,-34,-33v0,-19,15,-34,34,-34v18,0,33,16,33,34v0,18,-15,33,-33,33xm118,-279v11,0,20,-9,20,-20v0,-11,-8,-20,-20,-20v-12,0,-20,8,-20,20v0,12,9,20,20,20xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u00c6":{"d":"168,0r0,-107r-66,0r-61,107r-40,0r142,-246r163,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r107,0r0,31r-142,0xm168,-223r-48,85r48,0r0,-85","w":322},"\u00c7":{"d":"122,43v18,6,44,-6,28,-21v-4,-3,-12,-4,-18,-2r8,-22r20,0r-4,11v12,2,21,10,21,22v1,25,-27,34,-55,29r0,-17xm54,-123v0,95,125,119,185,66r0,39v-31,14,-50,21,-89,22v-71,1,-133,-57,-133,-127v0,-70,62,-128,133,-126v39,1,58,8,89,22r0,38v-62,-51,-185,-30,-185,66","w":254},"\u00c8":{"d":"101,-265r-41,-54r37,0r24,54r-20,0xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u00c9":{"d":"72,-265r25,-54r36,0r-41,54r-20,0xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u00ca":{"d":"113,-319r34,54r-19,0r-31,-33r-32,33r-19,0r34,-54r33,0xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u00cb":{"d":"46,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm113,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u00cc":{"d":"50,-265r-41,-54r36,0r24,54r-19,0xm27,0r0,-246r36,0r0,246r-36,0","w":90},"\u00cd":{"d":"22,-265r24,-54r36,0r-41,54r-19,0xm28,0r0,-246r36,0r0,246r-36,0","w":90},"\u00ce":{"d":"62,-319r33,54r-19,0r-31,-33r-31,33r-19,0r34,-54r33,0xm27,0r0,-246r36,0r0,246r-36,0","w":90},"\u00cf":{"d":"-5,-282v0,-10,7,-17,17,-17v9,0,16,8,16,17v0,9,-7,17,-16,17v-10,0,-17,-7,-17,-17xm62,-282v0,-10,7,-17,17,-17v9,0,16,8,16,17v0,9,-7,17,-16,17v-10,0,-17,-7,-17,-17xm27,0r0,-246r36,0r0,246r-36,0","w":90},"\u00d0":{"d":"253,-123v0,74,-61,123,-137,123r-89,0r0,-107r-28,0r0,-31r28,0r0,-108r97,0v73,-1,129,51,129,123xm217,-123v0,-80,-68,-98,-155,-90r0,75r69,0r0,31r-69,0r0,75v86,7,155,-13,155,-91","w":270},"\u00d1":{"d":"117,-307v20,-1,54,29,62,0r14,0v2,38,-27,51,-58,34v-11,-6,-33,-8,-33,9r-14,0v0,-22,10,-42,29,-43xm60,0r-33,0r0,-246r30,0r164,188r0,-188r33,0r0,248r-27,0r-167,-190r0,188","w":281},"\u00d2":{"d":"152,-265r-40,-54r36,0r24,54r-20,0xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u00d3":{"d":"124,-265r24,-54r36,0r-40,54r-20,0xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u00d4":{"d":"164,-319r34,54r-19,0r-31,-33r-31,33r-19,0r34,-54r32,0xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u00d5":{"d":"172,-264v-17,0,-57,-28,-62,0r-15,0v0,-22,10,-42,29,-43v21,-1,55,29,63,0r14,0v0,22,-10,43,-29,43xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u00d6":{"d":"98,-282v0,-9,7,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-9,0,-16,-8,-16,-17xm165,-282v0,-9,7,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-9,0,-16,-8,-16,-17xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u00d7":{"d":"105,-107r-56,56r-21,-21r56,-56r-56,-55r21,-21r56,56r55,-56r21,21r-55,55r55,56r-21,21","w":210},"\u00d8":{"d":"85,-50v59,48,158,9,158,-73v0,-23,-5,-41,-17,-57xm251,-203v71,80,2,207,-103,207v-34,0,-64,-11,-88,-31r-29,27r-15,-15r30,-27v-72,-79,-5,-207,102,-207v34,0,63,10,87,31r30,-28r15,16xm211,-196v-59,-48,-158,-9,-158,73v0,22,6,42,17,58","w":296},"\u00d9":{"d":"132,-265r-40,-54r36,0r24,54r-20,0xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u00da":{"d":"104,-265r24,-54r36,0r-41,54r-19,0xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u00db":{"d":"144,-319r34,54r-19,0r-31,-33r-31,33r-19,0r33,-54r33,0xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u00dc":{"d":"77,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm144,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u00dd":{"d":"85,-265r24,-54r36,0r-41,54r-19,0xm91,-127r-91,-119r46,0r63,87r63,-87r45,0r-91,119r0,127r-35,0r0,-127","w":217},"\u00de":{"d":"180,-123v0,61,-53,75,-120,70r0,53r-35,0r0,-246r35,0r0,53v66,-4,120,9,120,70xm60,-85v41,1,83,3,83,-38v0,-41,-42,-37,-83,-37r0,75","w":183},"\u00df":{"d":"89,-224v-28,1,-35,12,-36,43r0,181r-32,0r0,-181v0,-45,25,-65,70,-68v71,-5,89,91,33,114v67,15,53,142,-19,139v-10,0,-14,-3,-24,-4r0,-31v27,18,56,-10,54,-41v-1,-31,-20,-47,-52,-47r0,-28v24,0,42,-14,42,-39v0,-22,-16,-38,-36,-38"},"\u00e0":{"d":"75,-181r-40,-55r36,0r24,55r-20,0xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u00e1":{"d":"47,-181r24,-55r36,0r-41,55r-19,0xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u00e2":{"d":"87,-236r34,55r-19,0r-31,-33r-31,33r-19,0r33,-55r33,0xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u00e3":{"d":"95,-181v-20,1,-55,-28,-62,0r-15,0v0,-21,11,-41,29,-42v21,0,55,29,63,0r14,0v0,21,-10,42,-29,42xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u00e4":{"d":"21,-198v0,-10,6,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-16,-7,-16,-17xm88,-198v0,-10,6,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-16,-7,-16,-17xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u00e5":{"d":"71,-182v-19,0,-34,-15,-34,-34v0,-18,16,-33,34,-33v18,0,33,14,33,33v0,19,-15,34,-33,34xm71,-195v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20v0,11,9,21,20,21xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u00e6":{"d":"226,-18v-26,29,-84,30,-108,-3v-27,27,-104,41,-105,-15v-1,-44,49,-48,81,-62v8,-55,-63,-39,-78,-12r0,-33v18,-28,85,-31,101,0v22,-30,73,-29,93,0v10,14,15,33,16,57r-100,0v-2,33,16,59,46,59v25,0,41,-11,54,-25r0,34xm53,-59v-21,23,7,51,35,35r6,-3r0,-53v-14,6,-33,11,-41,21xm161,-137v-15,0,-27,15,-32,29r65,0v-3,-17,-15,-29,-33,-29","w":240},"\u00e7":{"d":"71,43v18,6,44,-6,28,-21v-4,-3,-12,-4,-18,-2r8,-22r20,0r-4,11v12,3,22,10,22,22v0,24,-28,35,-56,29r0,-17xm48,-81v-5,52,65,73,97,39r0,34v-57,33,-130,-5,-130,-73v0,-67,67,-105,124,-73r0,35v-31,-32,-97,-15,-91,38","w":157},"\u00e8":{"d":"95,-181r-41,-55r37,0r24,55r-20,0xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u00e9":{"d":"66,-181r25,-55r36,0r-41,55r-20,0xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u00ea":{"d":"107,-236r34,55r-19,0r-31,-33r-32,33r-19,0r34,-55r33,0xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u00eb":{"d":"40,-198v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm107,-198v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u0131":{"d":"23,0r0,-162r32,0r0,162r-32,0","w":78},"\u00ec":{"d":"44,-181r-40,-55r36,0r24,55r-20,0xm24,0r0,-162r32,0r0,162r-32,0","w":78},"\u00ed":{"d":"15,-181r24,-55r36,0r-40,55r-20,0xm23,0r0,-162r32,0r0,162r-32,0","w":78},"\u00ee":{"d":"56,-236r34,55r-19,0r-31,-33r-32,33r-19,0r34,-55r33,0xm23,0r0,-162r32,0r0,162r-32,0","w":78},"\u00ef":{"d":"-11,-198v0,-10,7,-17,17,-17v10,0,16,7,16,17v0,10,-6,17,-16,17v-10,0,-17,-7,-17,-17xm56,-198v0,-10,7,-17,17,-17v10,0,16,7,16,17v0,10,-6,17,-16,17v-10,0,-17,-7,-17,-17xm23,0r0,-162r32,0r0,162r-32,0","w":78},"\u00f0":{"d":"141,-213v60,50,70,217,-42,217v-49,0,-86,-34,-86,-83v0,-65,71,-103,130,-73v-7,-18,-17,-34,-29,-47r-50,24r-8,-19r41,-20v-7,-5,-14,-9,-22,-13r21,-19v11,5,20,12,29,19r47,-23r9,18xm99,-134v-31,0,-53,24,-53,55v0,31,21,55,53,55v32,0,54,-23,54,-55v0,-32,-23,-55,-54,-55","w":202},"\u00f1":{"d":"114,-181v-20,1,-55,-28,-62,0r-15,0v0,-21,11,-41,29,-42v21,-1,55,29,63,0r14,0v0,21,-10,42,-29,42xm126,0v-6,-51,21,-136,-32,-139v-14,-1,-30,11,-40,25r0,114r-32,0r0,-162r32,0r0,23v35,-49,104,-25,104,41r0,98r-32,0"},"\u00f2":{"d":"104,-181r-41,-55r36,0r24,55r-19,0xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u00f3":{"d":"75,-181r24,-55r36,0r-40,55r-20,0xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u00f4":{"d":"116,-236r33,55r-19,0r-31,-33r-31,33r-19,0r34,-55r33,0xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u00f5":{"d":"123,-181v-19,0,-55,-28,-62,0r-14,0v0,-22,10,-41,28,-42v21,-1,55,29,63,0r14,0v0,22,-9,42,-29,42xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u00f6":{"d":"49,-198v0,-10,7,-17,17,-17v10,0,16,7,16,17v0,10,-6,17,-16,17v-10,0,-17,-7,-17,-17xm116,-198v0,-10,7,-17,17,-17v10,0,16,7,16,17v0,10,-6,17,-16,17v-10,0,-17,-7,-17,-17xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u00f7":{"d":"86,-74v-1,-10,9,-20,19,-19v10,-1,20,9,19,19v1,10,-10,19,-19,19v-9,0,-20,-9,-19,-19xm20,-142r170,0r0,29r-170,0r0,-29xm86,-181v-1,-10,9,-20,19,-19v10,-1,20,9,19,19v1,10,-9,20,-19,19v-10,1,-20,-9,-19,-19","w":210},"\u00f8":{"d":"65,-37v32,30,88,4,88,-44v0,-12,-3,-22,-8,-31xm169,-134v42,55,2,138,-70,138v-23,0,-42,-6,-57,-19r-17,15r-12,-12r17,-16v-41,-54,-3,-137,69,-137v23,0,43,6,58,19r16,-16r13,12xm134,-125v-46,-38,-113,18,-81,76","w":198},"\u00f9":{"d":"94,-181r-41,-55r36,0r25,55r-20,0xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u00fa":{"d":"65,-181r24,-55r37,0r-41,55r-20,0xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u00fb":{"d":"106,-236r34,55r-19,0r-32,-33r-31,33r-19,0r34,-55r33,0xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u00fc":{"d":"39,-198v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm106,-198v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u00fd":{"d":"55,-181r24,-55r36,0r-41,55r-19,0xm36,-162r46,93r41,-93r35,0r-113,249r-37,0r56,-124r-64,-125r36,0","w":157},"\u00fe":{"d":"167,-79v0,60,-58,99,-114,76r0,86r-32,0r0,-329r32,0r0,85v69,-4,114,18,114,82xm53,-32v36,18,81,-4,81,-47v0,-44,-35,-60,-81,-52r0,99"},"\u00ff":{"d":"28,-198v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm95,-198v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm36,-162r46,93r41,-93r35,0r-113,249r-37,0r56,-124r-64,-125r36,0","w":157},"\u0100":{"d":"59,-290r117,0r0,25r-117,0r0,-25xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u0101":{"d":"12,-206r117,0r0,25r-117,0r0,-25xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u0102":{"d":"169,-307v1,39,-60,55,-88,30v-9,-8,-14,-18,-14,-30r23,0v0,24,55,25,55,0r24,0xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u0103":{"d":"122,-223v2,40,-60,54,-88,30v-9,-8,-14,-18,-14,-30r23,0v0,24,55,25,55,0r24,0xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u0104":{"d":"247,66v-26,10,-64,1,-62,-29v2,-21,7,-47,37,-41v-12,12,-26,55,5,55v7,-1,15,-2,20,-5r0,20xm105,-248r25,0r110,248r-38,0r-32,-73r-102,0r-30,73r-38,0xm118,-194r-37,90r76,0","w":240},"\u0105":{"d":"145,66v-26,10,-64,1,-62,-29v2,-21,7,-47,37,-41v-12,12,-26,55,5,55v7,-1,15,-2,20,-5r0,20xm148,-10v-12,13,-49,21,-54,-2v-25,23,-88,23,-85,-24v2,-43,51,-48,84,-62v7,-55,-65,-39,-80,-12r0,-33v29,-37,112,-29,112,35r0,81v3,14,18,3,23,-3r0,20xm42,-39v0,24,38,23,51,9r0,-49v-22,8,-51,14,-51,40","w":153},"\u0106":{"d":"126,-265r24,-54r36,0r-40,54r-20,0xm54,-123v0,95,125,119,185,66r0,39v-31,14,-50,21,-89,22v-71,1,-133,-57,-133,-127v0,-70,62,-128,133,-126v39,1,58,8,89,22r0,38v-62,-51,-185,-30,-185,66","w":254},"\u0107":{"d":"67,-181r24,-55r36,0r-41,55r-19,0xm48,-81v-5,52,65,73,97,39r0,34v-57,33,-130,-5,-130,-73v0,-67,67,-105,124,-73r0,35v-31,-32,-97,-15,-91,38","w":157},"\u010c":{"d":"134,-265r-34,-54r19,0r31,32r31,-32r19,0r-34,54r-32,0xm54,-123v0,95,125,119,185,66r0,39v-31,14,-50,21,-89,22v-71,1,-133,-57,-133,-127v0,-70,62,-128,133,-126v39,1,58,8,89,22r0,38v-62,-51,-185,-30,-185,66","w":254},"\u010d":{"d":"75,-181r-34,-55r19,0r31,33r31,-33r19,0r-34,55r-32,0xm48,-81v-5,52,65,73,97,39r0,34v-57,33,-130,-5,-130,-73v0,-67,67,-105,124,-73r0,35v-31,-32,-97,-15,-91,38","w":157},"\u010e":{"d":"101,-265r-33,-54r19,0r31,32r31,-32r19,0r-34,54r-33,0xm253,-123v0,74,-61,123,-137,123r-89,0r0,-246r97,0v73,-1,129,51,129,123xm217,-123v0,-80,-68,-98,-154,-90r0,181v85,7,154,-13,154,-91","w":270},"\u010f":{"d":"194,-222v-17,-2,-14,-32,4,-31v34,9,13,62,-13,63v2,-10,13,-15,9,-32xm16,-83v0,-62,55,-97,114,-76r0,-87r32,0r0,246r-71,0v-45,0,-75,-35,-75,-83xm49,-82v0,48,32,58,81,54v-2,-33,4,-74,-2,-103v-38,-18,-79,5,-79,49","w":218},"\u0110":{"d":"253,-123v0,74,-61,123,-137,123r-89,0r0,-107r-28,0r0,-31r28,0r0,-108r97,0v73,-1,129,51,129,123xm217,-123v0,-80,-68,-98,-155,-90r0,75r69,0r0,31r-69,0r0,75v86,7,155,-13,155,-91","w":270},"\u0111":{"d":"16,-83v0,-62,55,-97,114,-76r0,-32r-48,0r0,-21r48,0r0,-34r32,0r0,34r22,0r0,21r-22,0r0,191r-71,0v-45,0,-75,-35,-75,-83xm49,-82v0,48,32,58,81,54v-2,-33,4,-74,-2,-103v-38,-18,-79,5,-79,49","w":183},"\u0112":{"d":"38,-290r117,0r0,25r-117,0r0,-25xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u0113":{"d":"32,-206r117,0r0,25r-117,0r0,-25xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u0116":{"d":"78,-288v-1,-10,9,-20,19,-19v10,-1,19,9,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u0117":{"d":"72,-204v-1,-10,9,-20,19,-19v10,-1,19,10,19,19v0,9,-9,19,-19,18v-10,1,-20,-8,-19,-18xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u0118":{"d":"187,66v-26,10,-66,1,-63,-29v2,-20,7,-47,37,-41v-12,12,-25,54,5,55v7,-1,15,-2,21,-5r0,20xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u0119":{"d":"155,66v-26,11,-65,0,-63,-29v2,-21,8,-47,38,-41v-12,12,-26,55,5,55v7,-1,14,-2,20,-5r0,20xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u011a":{"d":"80,-265r-34,-54r19,0r32,32r31,-32r19,0r-34,54r-33,0xm27,0r0,-246r138,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r108,0r0,31r-143,0"},"\u011b":{"d":"74,-181r-34,-55r19,0r32,33r31,-33r19,0r-34,55r-33,0xm48,-75v1,56,84,60,112,23r0,34v-50,47,-145,14,-145,-63v0,-47,29,-84,73,-84v50,0,75,35,72,90r-112,0xm89,-137v-22,0,-37,19,-40,41r81,0v-3,-24,-16,-41,-41,-41","w":172},"\u011e":{"d":"203,-307v2,40,-60,55,-87,30v-9,-8,-15,-18,-15,-30r24,0v0,25,54,24,55,0r23,0xm55,-123v0,78,81,114,152,84r0,-53r-50,0r0,-31r85,0r0,107v-28,13,-61,20,-98,20v-69,1,-126,-58,-126,-127v0,-70,62,-128,134,-126v39,1,59,8,90,22r0,38v-30,-17,-51,-27,-92,-28v-55,-1,-95,38,-95,94","w":266},"\u011f":{"d":"134,-223v2,40,-60,54,-88,30v-9,-8,-14,-18,-14,-30r24,0v0,25,54,24,55,0r23,0xm15,-105v0,-64,70,-58,137,-56r0,26r-23,0v21,43,-9,91,-59,86v-13,3,-23,17,-5,24v36,15,89,11,87,60v-2,65,-152,67,-152,-4v0,-23,17,-40,38,-42v-22,-16,-12,-37,10,-44v-19,-7,-34,-27,-33,-50xm107,-105v0,-18,-13,-32,-31,-32v-18,0,-31,13,-31,32v0,18,13,30,31,30v18,0,31,-13,31,-30xm121,35v-1,-34,-89,-41,-92,-4v2,35,87,37,92,4","w":153},"\u0122":{"d":"140,50v-8,1,-13,-8,-13,-15v0,-8,8,-17,16,-15v34,8,13,60,-12,62v3,-9,11,-17,9,-32xm55,-123v0,78,81,114,152,84r0,-53r-50,0r0,-31r85,0r0,107v-28,13,-61,20,-98,20v-69,1,-126,-58,-126,-127v0,-70,62,-128,134,-126v39,1,59,8,90,22r0,38v-30,-17,-51,-27,-92,-28v-55,-1,-95,38,-95,94","w":266},"\u0123":{"d":"81,-212v20,3,12,33,-4,31v-32,-5,-15,-63,12,-63v-2,10,-12,15,-8,32xm15,-105v0,-64,70,-58,137,-56r0,26r-23,0v21,43,-9,91,-59,86v-13,3,-23,17,-5,24v36,15,89,11,87,60v-2,65,-152,67,-152,-4v0,-23,17,-40,38,-42v-22,-16,-12,-37,10,-44v-19,-7,-34,-27,-33,-50xm107,-105v0,-18,-13,-32,-31,-32v-18,0,-31,13,-31,32v0,18,13,30,31,30v18,0,31,-13,31,-30xm121,35v-1,-34,-89,-41,-92,-4v2,35,87,37,92,4","w":153},"\u012a":{"d":"-13,-290r117,0r0,25r-117,0r0,-25xm28,0r0,-246r36,0r0,246r-36,0","w":90},"\u012b":{"d":"-20,-206r117,0r0,25r-117,0r0,-25xm22,0r0,-162r32,0r0,162r-32,0","w":78},"\u012e":{"d":"87,66v-26,10,-64,1,-62,-29v2,-21,7,-47,37,-41v-12,12,-26,55,5,55v7,-1,15,-2,20,-5r0,20xm26,0r0,-246r36,0r0,246r-36,0","w":90},"\u012f":{"d":"80,66v-26,10,-64,1,-62,-29v2,-21,7,-47,37,-41v-12,12,-26,55,5,55v7,-1,15,-2,20,-5r0,20xm24,0r0,-162r32,0r0,162r-32,0xm21,-212v-1,-10,9,-20,19,-19v10,-1,20,9,19,19v1,10,-9,20,-19,20v-10,0,-20,-10,-19,-20","w":78},"\u0130":{"d":"27,-288v0,-9,9,-20,19,-19v10,-1,20,9,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19xm28,0r0,-246r36,0r0,246r-36,0","w":90},"\u0136":{"d":"120,50v-7,1,-12,-7,-12,-15v0,-8,7,-16,15,-15v34,7,15,62,-12,62v3,-9,13,-16,9,-32xm62,0r-35,0r0,-246r35,0r0,112r101,-112r46,0r-109,117r136,129r-49,0r-125,-121r0,121","w":236},"\u0137":{"d":"92,50v-8,1,-13,-8,-13,-15v0,-8,8,-17,16,-15v34,8,14,61,-12,62v3,-9,11,-17,9,-32xm54,-246r0,246r-32,0r0,-246r32,0xm138,0r-82,-81r72,-81r39,0r-71,81r84,81r-42,0","w":172},"\u0139":{"d":"21,-265r24,-54r36,0r-40,54r-20,0xm28,0r0,-246r35,0r0,215r111,0r0,31r-146,0","w":176},"\u013a":{"d":"15,-265r24,-54r36,0r-40,54r-20,0xm23,0r0,-246r32,0r0,246r-32,0","w":78},"\u013b":{"d":"95,50v-7,1,-12,-7,-12,-15v0,-8,7,-16,15,-15v34,7,15,62,-12,62v3,-9,13,-16,9,-32xm27,0r0,-246r35,0r0,215r111,0r0,31r-146,0","w":176},"\u013c":{"d":"36,50v-8,1,-13,-8,-13,-15v0,-8,8,-17,16,-15v34,8,14,61,-12,62v3,-9,13,-16,9,-32xm24,0r0,-246r32,0r0,246r-32,0","w":78},"\u013d":{"d":"94,-222v-19,-2,-13,-33,3,-31v34,5,15,63,-12,63v2,-10,13,-15,9,-32xm27,0r0,-246r35,0r0,215r111,0r0,31r-146,0","w":176},"\u013e":{"d":"87,-222v-17,-2,-14,-32,4,-31v34,9,13,62,-13,63v2,-10,13,-15,9,-32xm23,0r0,-246r32,0r0,246r-32,0","w":108},"\u0141":{"d":"27,0r0,-93r-32,25r0,-27r32,-25r0,-126r35,0r0,98r32,-25r0,28r-32,25r0,89r111,0r0,31r-146,0","w":176},"\u0142":{"d":"23,-106r-28,22r0,-27r28,-22r0,-113r32,0r0,88r29,-21r0,27r-29,21r0,131r-32,0r0,-106","w":78},"\u0143":{"d":"116,-265r24,-54r36,0r-40,54r-20,0xm60,0r-33,0r0,-246r30,0r164,188r0,-188r33,0r0,248r-27,0r-167,-190r0,188","w":281},"\u0144":{"d":"66,-181r24,-55r36,0r-40,55r-20,0xm126,0v-6,-51,21,-136,-32,-139v-14,-1,-30,11,-40,25r0,114r-32,0r0,-162r32,0r0,23v35,-49,104,-25,104,41r0,98r-32,0"},"\u0145":{"d":"136,50v-8,1,-13,-8,-13,-15v0,-8,8,-16,16,-15v34,7,15,62,-12,62v3,-9,13,-16,9,-32xm60,0r-33,0r0,-246r30,0r164,188r0,-188r33,0r0,248r-27,0r-167,-190r0,188","w":281},"\u0146":{"d":"85,50v-7,0,-12,-8,-12,-15v0,-8,8,-17,16,-15v35,8,12,60,-13,62v3,-9,13,-16,9,-32xm126,0v-6,-51,21,-136,-32,-139v-14,-1,-30,11,-40,25r0,114r-32,0r0,-162r32,0r0,23v35,-49,104,-25,104,41r0,98r-32,0"},"\u0147":{"d":"124,-265r-34,-54r19,0r31,32v16,-11,20,-36,51,-32r-34,54r-33,0xm60,0r-33,0r0,-246r30,0r164,188r0,-188r33,0r0,248r-27,0r-167,-190r0,188","w":281},"\u0148":{"d":"74,-181r-34,-55r19,0r31,33r31,-33r19,0r-34,55r-32,0xm126,0v-6,-51,21,-136,-32,-139v-14,-1,-30,11,-40,25r0,114r-32,0r0,-162r32,0r0,23v35,-49,104,-25,104,41r0,98r-32,0"},"\u014c":{"d":"90,-290r116,0r0,25r-116,0r0,-25xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u014d":{"d":"41,-206r117,0r0,25r-117,0r0,-25xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u0150":{"d":"105,-265r24,-54r36,0r-40,54r-20,0xm168,-265r24,-54r36,0r-40,54r-20,0xm148,4v-72,0,-132,-56,-132,-127v0,-70,60,-126,132,-126v72,0,132,56,132,126v0,70,-60,127,-132,127xm148,-29v55,0,95,-38,95,-94v0,-56,-40,-94,-95,-94v-55,0,-95,38,-95,94v0,56,40,94,95,94","w":296},"\u0151":{"d":"56,-181r24,-55r36,0r-40,55r-20,0xm119,-181r24,-55r36,0r-40,55r-20,0xm99,4v-49,0,-86,-36,-86,-85v0,-49,37,-84,86,-84v50,0,87,35,87,84v0,50,-38,85,-87,85xm99,-24v32,0,54,-24,54,-57v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,33,21,57,53,57","w":198},"\u0152":{"d":"17,-123v1,-76,70,-123,159,-123r139,0r0,32r-103,0r0,75r100,0r0,31r-100,0r0,77r107,0r0,31r-165,0v-71,2,-139,-54,-137,-123xm54,-123v-1,61,55,101,122,89r0,-178v-69,-9,-122,28,-122,89","w":330},"\u0153":{"d":"13,-81v0,-81,109,-111,155,-55v18,-36,78,-39,102,-7v11,14,17,33,17,57r-101,0v-2,33,16,59,46,59v25,0,40,-11,55,-25r0,34v-29,33,-98,27,-118,-10v-42,60,-156,30,-156,-53xm153,-81v0,-32,-22,-56,-54,-56v-32,0,-53,24,-53,56v0,34,21,57,53,57v32,0,54,-24,54,-57xm222,-137v-16,0,-28,15,-33,29r66,0v-3,-17,-15,-29,-33,-29","w":299},"\u0154":{"d":"68,-265r24,-54r36,0r-41,54r-19,0xm169,-179v0,33,-17,53,-43,62v39,23,63,79,91,117r-42,0v-33,-39,-41,-110,-112,-108r0,108r-35,0r0,-246v71,-3,141,-2,141,67xm133,-176v0,-36,-32,-39,-70,-37r0,73v37,2,70,0,70,-36","w":217},"\u0155":{"d":"60,-181r24,-55r36,0r-41,55r-19,0xm126,-116v-24,-37,-69,-15,-69,29r0,87r-32,0r0,-162r32,0r0,38v13,-36,57,-59,86,-22","w":142},"\u0156":{"d":"114,50v-7,0,-12,-8,-12,-15v0,-8,8,-17,16,-15v35,8,12,60,-13,62v3,-9,13,-16,9,-32xm169,-179v0,33,-17,53,-43,62v39,23,63,79,91,117r-42,0v-33,-39,-41,-110,-112,-108r0,108r-35,0r0,-246v71,-3,141,-2,141,67xm133,-176v0,-36,-32,-39,-70,-37r0,73v37,2,70,0,70,-36","w":217},"\u0157":{"d":"37,50v-7,1,-12,-7,-12,-15v0,-8,7,-17,15,-15v36,7,14,60,-12,62v3,-9,13,-16,9,-32xm127,-116v-24,-37,-69,-15,-69,29r0,87r-32,0r0,-162r32,0r0,38v13,-36,57,-59,86,-22","w":142},"\u0158":{"d":"75,-265r-34,-54r19,0r32,32r31,-32r19,0r-34,54r-33,0xm169,-179v0,33,-17,53,-43,62v39,23,63,79,91,117r-42,0v-33,-39,-41,-110,-112,-108r0,108r-35,0r0,-246v71,-3,141,-2,141,67xm133,-176v0,-36,-32,-39,-70,-37r0,73v37,2,70,0,70,-36","w":217},"\u0159":{"d":"68,-181r-34,-55r19,0r31,33r31,-33r19,0r-34,55r-32,0xm126,-116v-24,-37,-69,-15,-69,29r0,87r-32,0r0,-162r32,0r0,38v13,-36,57,-59,86,-22","w":142},"\u015a":{"d":"65,-265r24,-54r36,0r-40,54r-20,0xm14,-182v0,-65,85,-84,130,-50r0,40v-19,-29,-92,-39,-97,5v10,55,106,53,106,121v0,75,-97,88,-139,45r0,-43v18,19,35,34,67,35v22,0,39,-12,39,-32v0,-57,-106,-57,-106,-121","w":164},"\u015b":{"d":"44,-181r24,-55r36,0r-41,55r-19,0xm15,-120v0,-50,69,-54,102,-31r0,30v-14,-9,-25,-17,-46,-16v-12,0,-24,5,-24,15v14,32,77,35,77,79v0,53,-74,57,-109,31r0,-34v18,13,29,20,52,22v12,0,27,-6,25,-18v-5,-34,-77,-32,-77,-78","w":138},"\u015e":{"d":"55,43v18,6,46,-5,29,-21v-4,-3,-13,-4,-19,-2r9,-22r20,0r-4,11v12,2,21,10,21,22v0,24,-28,35,-56,29r0,-17xm14,-182v0,-65,85,-84,130,-50r0,40v-19,-29,-92,-39,-97,5v10,55,106,53,106,121v0,75,-97,88,-139,45r0,-43v18,19,35,34,67,35v22,0,39,-12,39,-32v0,-57,-106,-57,-106,-121","w":164},"\u015f":{"d":"39,43v18,6,44,-6,28,-21v-4,-3,-12,-4,-18,-2r8,-22r20,0r-4,11v12,3,22,10,22,22v0,24,-28,35,-56,29r0,-17xm15,-120v0,-50,69,-54,102,-31r0,30v-14,-9,-25,-17,-46,-16v-12,0,-24,5,-24,15v14,32,77,35,77,79v0,53,-74,57,-109,31r0,-34v18,13,29,20,52,22v12,0,27,-6,25,-18v-5,-34,-77,-32,-77,-78","w":138},"\u0160":{"d":"73,-265r-34,-54r19,0r31,32r31,-32r19,0r-33,54r-33,0xm14,-182v0,-65,85,-84,130,-50r0,40v-19,-29,-92,-39,-97,5v10,55,106,53,106,121v0,75,-97,88,-139,45r0,-43v18,19,35,34,67,35v22,0,39,-12,39,-32v0,-57,-106,-57,-106,-121","w":164},"\u0161":{"d":"52,-181r-34,-55r19,0r31,33r31,-33r19,0r-34,55r-32,0xm15,-120v0,-50,69,-54,102,-31r0,30v-14,-9,-25,-17,-46,-16v-12,0,-24,5,-24,15v14,32,77,35,77,79v0,53,-74,57,-109,31r0,-34v18,13,29,20,52,22v12,0,27,-6,25,-18v-5,-34,-77,-32,-77,-78","w":138},"\u0162":{"d":"80,43v18,6,45,-6,29,-21v-4,-3,-13,-4,-19,-2r9,-22r20,0r-5,11v12,2,22,10,22,22v0,24,-28,35,-56,29r0,-17xm91,0r0,-214r-85,0r0,-32r205,0r0,32r-85,0r0,214r-35,0","w":217},"\u0163":{"d":"48,43v18,6,44,-6,28,-21v-4,-3,-12,-4,-18,-2r8,-22r20,0r-4,11v12,2,21,10,21,22v1,25,-27,34,-55,29r0,-17xm59,-132v5,39,-17,105,27,105v14,0,25,-4,33,-10r0,31v-34,23,-92,5,-92,-44r0,-82r-27,0r0,-5r59,-57r0,32r50,0r0,30r-50,0","w":119},"\u0164":{"d":"92,-265r-33,-54r19,0r31,32r31,-32r19,0r-34,54r-33,0xm91,0r0,-214r-85,0r0,-32r205,0r0,32r-85,0r0,214r-35,0","w":217},"\u0165":{"d":"91,-213v-17,-2,-14,-35,4,-31v35,7,13,62,-13,63v2,-10,13,-15,9,-32xm59,-132v5,39,-17,105,27,105v14,0,25,-4,33,-10r0,31v-34,23,-92,5,-92,-44r0,-82r-27,0r0,-5r59,-57r0,32r50,0r0,30r-50,0","w":119},"\u016a":{"d":"69,-290r117,0r0,25r-117,0r0,-25xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u016b":{"d":"31,-206r117,0r0,25r-117,0r0,-25xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u016e":{"d":"128,-266v-18,0,-34,-15,-34,-33v0,-19,15,-34,34,-34v18,0,33,16,33,34v0,18,-15,33,-33,33xm128,-279v11,0,20,-9,20,-20v0,-11,-8,-20,-20,-20v-12,0,-20,8,-20,20v0,12,9,20,20,20xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u016f":{"d":"89,-182v-18,0,-33,-16,-33,-34v0,-18,15,-33,33,-33v18,0,34,15,34,33v0,19,-15,34,-34,34xm89,-195v12,0,21,-9,21,-21v0,-11,-10,-20,-21,-20v-11,0,-20,9,-20,20v0,11,9,21,20,21xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u0170":{"d":"85,-265r24,-54r36,0r-41,54r-19,0xm148,-265r24,-54r36,0r-41,54r-19,0xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u0171":{"d":"46,-181r24,-55r37,0r-41,55r-20,0xm110,-181r24,-55r36,0r-41,55r-19,0xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u0172":{"d":"196,66v-26,10,-66,1,-63,-29v2,-20,7,-47,37,-41v-12,12,-25,54,5,55v7,-1,15,-2,21,-5r0,20xm128,-27v44,0,70,-27,70,-71r0,-148r35,0r0,155v0,58,-44,95,-105,95v-61,0,-106,-37,-106,-95r0,-155r35,0r0,148v0,44,27,71,71,71","w":254},"\u0173":{"d":"177,66v-26,10,-64,1,-62,-29v2,-21,7,-47,37,-41v-12,12,-26,55,5,55v7,-1,15,-2,20,-5r0,20xm125,-23v-34,50,-103,27,-103,-40r0,-99r32,0v6,50,-21,135,31,139v14,1,30,-11,40,-25r0,-114r32,0r0,162r-32,0r0,-23"},"\u0178":{"d":"58,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm125,-282v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17xm91,-127r-91,-119r46,0r63,87r63,-87r45,0r-91,119r0,127r-35,0r0,-127","w":217},"\u0179":{"d":"93,-265r24,-54r36,0r-40,54r-20,0xm6,0r152,-214r-147,0r0,-32r212,0r-152,215r156,0r0,31r-221,0","w":232},"\u017a":{"d":"53,-181r24,-55r36,0r-40,55r-20,0xm4,0r86,-132r-81,0r0,-30r136,0r-85,132r86,0r0,30r-142,0","w":150},"\u017b":{"d":"98,-288v0,-9,9,-20,19,-19v10,-1,20,9,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19xm6,0r152,-214r-147,0r0,-32r212,0r-152,215r156,0r0,31r-221,0","w":232},"\u017c":{"d":"58,-204v0,-9,9,-20,19,-19v10,-1,20,9,19,19v1,10,-9,19,-19,18v-10,1,-19,-9,-19,-18xm4,0r86,-132r-81,0r0,-30r136,0r-85,132r86,0r0,30r-142,0","w":150},"\u017d":{"d":"101,-265r-34,-54r19,0r31,32r31,-32r19,0r-33,54r-33,0xm6,0r152,-214r-147,0r0,-32r212,0r-152,215r156,0r0,31r-221,0","w":232},"\u017e":{"d":"61,-181r-34,-55r19,0r31,33r31,-33r19,0r-33,55r-33,0xm4,0r86,-132r-81,0r0,-30r136,0r-85,132r86,0r0,30r-142,0","w":150},"\u0192":{"d":"127,-161r-34,192v-2,43,-45,52,-85,41r10,-27v16,3,40,5,43,-14r34,-192r-35,0r4,-25r35,0v8,-40,9,-79,57,-76v14,0,25,1,33,5r-5,28v-16,-7,-50,-7,-48,17r-5,26r35,0r-5,25r-34,0","w":198},"\u02c6":{"d":"76,-236r34,55r-19,0r-31,-33r-31,33r-19,0r34,-55r32,0","w":119},"\u02c7":{"d":"44,-181r-34,-55r19,0r31,33r31,-33r19,0r-34,55r-32,0","w":119},"\u02c9":{"d":"2,-206r116,0r0,25r-116,0r0,-25","w":119},"\u02d8":{"d":"111,-223v2,40,-60,54,-88,30v-9,-8,-14,-18,-14,-30r23,0v1,24,55,24,56,0r23,0","w":119},"\u02d9":{"d":"43,-204v0,-9,9,-20,19,-19v10,-1,20,9,19,19v1,10,-9,19,-19,18v-10,1,-19,-9,-19,-18","w":119},"\u02da":{"d":"60,-182v-18,0,-33,-15,-33,-34v0,-19,15,-33,33,-33v18,0,34,15,34,33v0,19,-15,34,-34,34xm60,-195v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20v0,11,9,21,20,21","w":119},"\u02db":{"d":"140,66v-26,10,-65,1,-63,-29v2,-21,7,-47,37,-41v-12,12,-26,55,5,55v7,-1,15,-2,21,-5r0,20","w":119},"\u02dc":{"d":"84,-181v-20,1,-55,-28,-62,0r-15,0v0,-21,11,-41,29,-42v21,-1,55,29,63,0r14,0v0,21,-10,42,-29,42","w":119},"\u02dd":{"d":"13,-181r24,-55r36,0r-40,55r-20,0xm76,-181r24,-55r36,0r-40,55r-20,0","w":119},"\u2013":{"d":"11,-91r158,0r0,23r-158,0r0,-23"},"\u2014":{"d":"14,-91r332,0r0,23r-332,0r0,-23","w":360},"\u2018":{"d":"45,-202v10,0,19,10,19,21v0,12,-11,21,-22,21v-45,-10,-19,-87,17,-88v-4,13,-18,24,-14,46","w":78},"\u2019":{"d":"36,-206v-10,0,-19,-9,-19,-21v0,-12,9,-21,21,-21v49,12,19,86,-17,88v3,-15,20,-22,15,-46","w":78},"\u201a":{"d":"36,4v-9,0,-19,-9,-19,-21v0,-12,9,-21,21,-21v49,12,19,85,-17,87v4,-14,19,-22,15,-45","w":78},"\u201c":{"d":"43,-202v10,0,19,9,19,21v0,12,-11,21,-22,21v-28,0,-32,-48,-13,-68v9,-9,19,-17,31,-20v-4,14,-20,23,-15,46xm120,-202v10,0,19,9,19,21v0,12,-11,21,-22,21v-45,-10,-19,-87,17,-88v-4,13,-18,24,-14,46","w":153},"\u201d":{"d":"34,-206v-10,0,-19,-9,-19,-21v0,-12,10,-21,22,-21v28,2,32,48,13,68v-9,9,-19,17,-31,20v3,-15,20,-22,15,-46xm111,-206v-10,0,-19,-9,-19,-21v0,-12,9,-21,21,-21v49,12,19,86,-17,88v3,-15,20,-22,15,-46","w":153},"\u201e":{"d":"37,4v-10,-1,-19,-11,-19,-22v0,-11,11,-20,22,-20v48,10,19,86,-17,87v4,-14,20,-21,14,-45xm114,4v-10,-1,-19,-11,-19,-22v0,-11,11,-20,22,-20v48,10,19,86,-17,87v4,-14,20,-21,14,-45","w":153},"\u2020":{"d":"60,-130v-15,5,-52,13,-50,-12v3,-33,50,-10,72,-7v-6,-27,-8,-43,-12,-72v-3,-22,18,-38,31,-21v12,28,-3,65,-6,93r49,-11v20,-3,29,19,17,31v-19,12,-47,-4,-67,-6r12,176v-1,21,-2,40,-18,42v-16,-2,-19,-21,-18,-42r12,-176","w":176},"\u2021":{"d":"60,2v-16,4,-53,13,-50,-13v3,-32,50,-10,72,-7v-7,-40,-8,-90,0,-130r-49,11v-20,3,-30,-18,-18,-31v19,-12,47,3,66,6r-11,-59v-3,-22,18,-38,31,-21v11,25,-1,56,-6,80r49,-11v20,-3,29,19,17,31v-19,12,-47,-3,-66,-6v4,44,7,90,-1,131v18,-6,29,-8,50,-11v21,-4,28,19,17,31v-20,10,-48,-3,-66,-7v6,22,8,35,11,60v3,22,-18,38,-31,21v-11,-24,3,-55,6,-80","w":176},"\u2022":{"d":"19,-132v0,-25,21,-45,45,-45v23,0,44,21,44,45v0,23,-20,44,-44,44v-24,0,-45,-20,-45,-44","w":127},"\u2026":{"d":"38,-18v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-10,22,-21,22v-12,0,-22,-10,-22,-22xm158,-18v0,-11,10,-21,22,-21v12,0,22,10,22,21v0,27,-44,28,-44,0xm279,-18v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-11,0,-21,-10,-21,-22","w":360},"\u2030":{"d":"60,-138v-31,0,-55,-23,-55,-55v0,-32,24,-55,55,-55v31,0,55,24,55,55v0,31,-24,55,-55,55xm60,-223v-15,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29v0,-16,-14,-29,-29,-29xm23,2r162,-250r26,0r-161,250r-27,0xm174,2v-32,0,-55,-23,-55,-54v0,-32,23,-56,55,-56v32,0,56,24,56,56v0,31,-24,55,-56,54xm174,-82v-16,0,-29,14,-29,29v0,15,14,28,29,28v15,0,29,-13,29,-28v0,-16,-13,-29,-29,-29xm303,2v-32,0,-55,-23,-55,-54v0,-32,23,-56,55,-56v32,0,55,24,55,56v0,32,-23,54,-55,54xm303,-82v-16,0,-29,13,-29,29v0,15,14,28,29,28v15,0,29,-13,29,-28v0,-16,-13,-29,-29,-29","w":363},"\u2039":{"d":"98,-162r-53,81r53,81r-33,0r-52,-81r52,-81r33,0","w":112},"\u203a":{"d":"15,0r53,-81r-53,-81r32,0r53,81r-53,81r-32,0","w":112},"\u2122":{"d":"120,-137r0,-107r28,0r20,85r19,-85r28,0r0,107r-15,0r0,-99r-23,99r-19,0r-23,-99r0,99r-15,0xm40,-244r69,0r0,16r-27,0r0,91r-16,0r0,-91r-26,0r0,-16","w":360},"\u2219":{"d":"18,-123v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22","w":78},"\uefed":{"d":"43,-288v0,-9,9,-20,19,-19v10,-1,20,9,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19","w":119},"\uefee":{"d":"111,-307v2,40,-60,54,-88,30v-9,-8,-14,-18,-14,-30r23,0v1,24,55,24,56,0r23,0","w":119},"\uefef":{"d":"2,-290r116,0r0,25r-116,0r0,-25","w":119},"\ueff0":{"d":"13,-265r24,-54r36,0r-40,54r-20,0xm76,-265r24,-54r36,0r-40,54r-20,0","w":119},"\ueff1":{"d":"192,66v-26,11,-66,0,-63,-29v2,-21,7,-48,38,-41v-12,12,-26,55,5,55v7,-1,14,-2,20,-5r0,20","w":119},"\ueff2":{"d":"36,43v18,6,46,-5,29,-21v-4,-3,-13,-4,-19,-2r9,-22r20,0r-4,11v12,2,21,10,21,22v0,24,-28,35,-56,29r0,-17","w":119},"\ueff3":{"d":"60,-266v-18,0,-33,-14,-33,-33v0,-19,15,-34,33,-34v19,0,34,15,34,34v0,18,-16,33,-34,33xm60,-279v11,0,20,-9,20,-20v0,-11,-8,-20,-20,-20v-12,0,-20,9,-20,20v0,11,9,20,20,20","w":119},"\ueff4":{"d":"44,-265r-34,-54r19,0r31,32r31,-32r19,0r-34,54r-32,0","w":119},"\ueff5":{"d":"84,-264v-17,0,-57,-28,-62,0r-15,0v0,-22,10,-42,29,-43v21,-1,55,29,63,0r14,0v0,22,-10,43,-29,43","w":119},"\ueff6":{"d":"10,-282v0,-9,7,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-9,0,-16,-8,-16,-17xm77,-282v0,-10,6,-17,16,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-16,-7,-16,-17","w":119},"\ueff7":{"d":"76,-319r34,54r-19,0r-31,-33r-31,33r-19,0r34,-54r32,0","w":119},"\ueff8":{"d":"62,-265r-40,-54r36,0r24,54r-20,0","w":119}}});var galleryCaption="";function initTabSlider(){$("div.sliding-tabs").slideNews({tabsNews:".tabset-holder ul a",holderList:"div.tabs-wrapper",scrollElParent:"div.tabslider",scrollEl:" > div",duration:1100,autoSlide:false});}function initTabsClick(){$(".tabs").each(function(){var _list=$(this);var _links=_list.find("a.tab");_links.each(function(){var _link=$(this);var _href=_link.attr("href");var _tab=$(_href);if(_link.hasClass("active")){_tab.show();}else{_tab.hide();}_link.hover(function(){var _src=$(this).find("img").attr("src");$(this).find("img").attr("src",_src.replace("_off","_over"));},function(){var _src=$(this).find("img").attr("src");if(_link.hasClass("active")){$(this).find("img").attr("src",_src.replace("_over","_on"));}else{$(this).find("img").attr("src",_src.replace("_over","_off"));}});_link.click(function(){_links.filter(".active").each(function(){$($(this).removeClass("active").attr("href")).hide();var _src=$(this).find("img").attr("src");$(this).find("img").attr("src",_src.replace("_on","_off"));});_link.addClass("active");var _src=_link.find("img").attr("src");_link.find("img").attr("src",_src.replace("_off","_on"));_tab.show();return false;});});});}function initTabsHover(){$("div.tabs-hover").each(function(){var _openers=$(this).find("a.tab");var _tabs=[];_openers.each(function(){_tabs.push($($(this).attr("rel")).css({display:($(this).hasClass("active")?"block":"none")}));});var _descriptionHolder=$(_tabs[0]).parent();var _innerHolder=_descriptionHolder.parent();var _dropHolder=_innerHolder.parent().parent();var _menuOffset=213;_openers.hover(function(){var _id=$(this).attr("rel");for(var i=0;i<_tabs.length;i++){$(_tabs[i]).css({display:"none"});}$(_id).css({display:"block"});_openers.removeClass("active");for(var i=0;i<_openers.length;i++){$(_openers[i]).find("img.menu").attr("src",$(_openers[i]).find("img.out").attr("src"));}$(this).addClass("active");var imgOn=$(this).find("img.on").attr("src");if(imgOn){$(this).find("img.menu").attr("src",imgOn);}var _newWidth=298;setTimeout(function(){_newWidth=$(_id).find("div > img").get(0).width;_descriptionHolder.css({width:_newWidth});_innerHolder.css({width:_newWidth+_menuOffset});_dropHolder.css({width:_newWidth+_menuOffset});},10);});if(!$.browser.msie){_openers.eq(0).trigger("mouseover");}});}function initGallery(){var _galleryImage=$("#gallery-image");var _gallery=$("#gallery-holder");var _slideBorder=_gallery.find(".bottom-border").css({opacity:0});var _tabsBox=_gallery.find(".gallery-tabs");var _menuRow=_gallery.find(".menu-row").eq(0);var _toggleBox=_gallery.find(".toggle-box").eq(0);var _toggleTimer;var _maximizedState=130;var _toggleSpeed=300;var _fadeSpeed=200;var _btnOpen=_gallery.find("a.btn-open");var _btnClose=_gallery.find("a.btn-close");function toggleState(_s){if(_s){if(!_toggleBox.hasClass("open")){_toggleBox.animate({marginTop:-10},{duration:_toggleSpeed,queue:false,complete:function(){_slideBorder.show().animate({opacity:1},{duration:_toggleSpeed,queue:false});}});}}else{if(!_toggleBox.hasClass("open")){_toggleBox.animate({marginTop:0},{duration:_toggleSpeed,queue:false,complete:function(){_slideBorder.animate({opacity:0},{duration:_toggleSpeed,queue:false});}});}}}if(_toggleBox.hasClass("home-gallery")){_toggleBox.addClass("open").animate({marginTop:-_maximizedState},{duration:_toggleSpeed,queue:false});}else{_toggleBox.addClass("open").animate({marginTop:-_maximizedState},{duration:_toggleSpeed,queue:false});_toggleBox.hover(function(){toggleState(true);},function(){toggleState(false);});_btnOpen.click(function(){_galleryImage.find("div.gallery-description").html(galleryCaption);_galleryImage.find("div.gallery-description").css({display:"block"});_slideBorder.fadeOut(_fadeSpeed);_toggleBox.addClass("open").animate({marginTop:-_maximizedState},{duration:_toggleSpeed,queue:false});return false;});_btnClose.click(function(){if(_galleryImage.find("div.gallery-description")){galleryCaption=_galleryImage.find("div.gallery-description").html();_galleryImage.find("div.gallery-description").html("");_galleryImage.find("div.gallery-description").css({display:"none"});}_toggleBox.removeClass("open");toggleState(false);return false;});}var _tabTogglers=_gallery.find(".tabs a");_tabTogglers.click(function(){if(!_toggleBox.hasClass("open")){_toggleBox.addClass("open").animate({marginTop:-_maximizedState},{duration:_toggleSpeed,queue:false});_slideBorder.animate({opacity:0},{duration:_toggleSpeed});}return false;});_gallery.find("div.gallery").each(function(){var _minSlides=5;var _mainHolder=$(this);var _slideHolder=_mainHolder.find(".gallery-wraper");var _slider=_slideHolder.find(" > ul");var _slideItems=_slider.find(" > li");if(_slideItems.length>_minSlides){_slider.removeClass("shifted-position");var _slideCount=_slideItems.length;_slider.append(_slideItems.clone()).append(_slideItems.clone());var _hWidth=990;var _hHeight=_slideHolder.height();var _maxOffset=100;var _cursorPos=0;var _direction=0;var _sWidth=0;var _speed=0.15;var _k=1;var _duration=0;var _gOffset=_gallery.offset().left;var _controlSize=130;_sWidth=0;_slideItems.each(function(){_sWidth+=$(this).outerWidth(true);});var _holderDiv=_slideHolder.parent().parent();var _mouseCoords;$("body").mousemove(function(e){_mouseCoords=e;calculateSpeed();});function calculateSpeed(){var _holderOffsetLeft=_holderDiv.offset().left;var _holderOffsetTop=_holderDiv.offset().top;if(_mouseCoords.pageX>_holderOffsetLeft&&_mouseCoords.pageX<_holderOffsetLeft+_hWidth&&_mouseCoords.pageY>_holderOffsetTop&&_mouseCoords.pageY<_holderOffsetTop+_hHeight){var _mX=_mouseCoords.clientX-_holderOffsetLeft;var _mY=_mouseCoords.clientY-_holderOffsetTop;if(_mX<_controlSize||_mX>_hWidth-_controlSize){var _newSpeed;if(_mX<_controlSize){_direction=1;_newSpeed=Math.round((_controlSize-_mX)/10)/100*3;}else{_direction=0;_newSpeed=Math.abs(Math.round((_hWidth-_controlSize-_mX)/10)/100)*3;}if(_speed!=_newSpeed){_speed=_newSpeed;gallerySlide(true);}}else{gallerySlide(false);}}else{gallerySlide(false);}}_slider.css({marginLeft:-_sWidth});function gallerySlide(_f){if(!_toggleBox.hasClass("open")){return false;}var _minL=0;var _maxL=_sWidth*3-_hWidth;if(_f){if(_direction){_k=(_maxL-parseInt(_slider.css("marginLeft")))/_maxL-1;_duration=_sWidth/_speed;_slider.stop().animate({marginLeft:0},{duration:_duration*_k,queue:false,easing:"linear",complete:function(){_slider.css({marginLeft:-_sWidth});setTimeout(function(){gallerySlide(true);},10);}});}else{_k=2-(_maxL-parseInt(_slider.css("marginLeft")))/_maxL;_duration=_sWidth/_speed;_slider.stop().animate({marginLeft:-_maxL},{duration:_duration*_k,queue:false,easing:"linear",complete:function(){_slider.css({marginLeft:_hWidth-_sWidth});setTimeout(function(){gallerySlide(true);},10);}});}}else{_slider.stop();}}}});_gallery.find("div.download-menu").each(function(){var _oldZ=_toggleBox.css("z-index");$(this).hover(function(){$(this).addClass("download-menu-open");_tabsBox.css({zIndex:300});},function(){$(this).removeClass("download-menu-open");_tabsBox.css({zIndex:_oldZ});});});_gallery.find("div.download-menu ul li a").each(function(){$(this).click(function(){window.open(this.href);return false;});});$("a.image-changer").click(function(){_galleryImage.html("");var galleryarray=$(this).attr("href").split(",");_galleryImage.append('<div class="gallery-description" id="description">'+galleryarray[8].replace("[[comma]]",",")+"</div>");_galleryImage.append('<img src="'+galleryarray[1]+'" alt="" />');UpdateWallpaperThumbnails(galleryarray);return false;});$("a.film-changer").click(function(){_galleryImage.html("");var _href=$(this).attr("href");_galleryImage.append('<div class="FlashWrapper"><div id="FlashPlayerControl" /></div>');if(_href.substr(_href.length-3,_href.length)=="swf"){PlayModelFilm($(this).attr("href"));}else{PlayFlvModelFilm($(this).attr("href"));}return false;});}function UpdateWallpaperThumbnails(galleryarray){$("#a800x600").attr("href",galleryarray[2]);$("#a1024x760").attr("href",galleryarray[3]);$("#a1140x900").attr("href",galleryarray[4]);$("#a1280x800").attr("href",galleryarray[5]);$("#a1280x1024").attr("href",galleryarray[6]);$("#a1600x1200").attr("href",galleryarray[7]);$("#img800x600").attr("src",galleryarray[0]);$("#img1024x760").attr("src",galleryarray[0]);$("#img1140x900").attr("src",galleryarray[0]);$("#img1280x800").attr("src",galleryarray[0]);$("#img1280x1024").attr("src",galleryarray[0]);$("#img1600x1200").attr("src",galleryarray[0]);}function PlayModelFilm(movieSrc){PlayGenericFilm(movieSrc,"990","388");}function PlayFlvModelFilm(movieSrc){PlaySkinGenericFilm("/swf/mediadisplay.swf","728","340","","/swf/defaultskin.swf",movieSrc);}function PlayGenericFilm(movieSrc,w,h){var mainFlashVars={};mainFlashVars.width=w;mainFlashVars.height=h;mainFlashVars.buffer="6";mainFlashVars.HandlerUrl=movieSrc;var mainParams={};mainParams.allowFullScreen="true";mainParams.wmode="transparent";mainParams.id="FlashPlayerControl";mainParams.name="";mainParams.quality="high";swfobject.embedSWF(movieSrc,"FlashPlayerControl",w,h,"9.0.0","",mainFlashVars,mainParams);}function PlaySkinGenericFilm(movieSrc,w,h,caption,skinSrc,mediaSrc){var mainFlashVars={};mainFlashVars.width=w;mainFlashVars.height=h;mainFlashVars.buffer="10";mainFlashVars.mediaSrc=mediaSrc;mainFlashVars.skinSrc=skinSrc;mainFlashVars.transitionSpeed=1.5;mainFlashVars.captionLeft=caption;mainFlashVars.HandlerUrl=movieSrc;var mainParams={};mainParams.allowFullScreen="true";mainParams.wmode="transparent";mainParams.id="FlashPlayerControl";mainParams.name="";mainParams.quality="high";swfobject.embedSWF(movieSrc,"FlashPlayerControl",w,h,"9.0.0","",mainFlashVars,mainParams);}function initSlideActions(){var _fadeSpeed=400;var _slideSpeed=300;$(".find-box").each(function(){var _submitFlag=false;var _holder=$(this);var _opener=_holder.find(".btn-search");var _step1=_holder.find(".half-open");var _step2=_holder.find(".full-open");_step1.css({display:"none",opacity:0});_step2.css({display:"none"});_holder.hover(function(){_step1.stop().css({display:"block"}).animate({opacity:1},{duration:_fadeSpeed,queue:false});},function(){_step2.slideUp(_slideSpeed,function(){_step1.animate({opacity:0},{duration:_fadeSpeed,queue:false});_submitFlag=false;});});});}function initDropMenu(){var _fadeSpeed=($.browser.msie?0:300);$("#h-nav > ul > li").each(function(){var _opener=$(this);_opener.css({position:"relative"});var _drop=_opener.find(" > div");var _timer;_drop.css({display:"none"});if(_drop.length){_opener.hover(function(){if(_timer){clearTimeout(_timer);}var newOn=_opener.find("img.on").attr("src");if(newOn){_opener.find(" > a > img").attr("src",newOn);}_opener.find(" > a").removeClass("no-hover");_timer=setTimeout(function(){_opener.addClass("expanded");_drop.fadeIn(_fadeSpeed);},200);},function(){if(_timer){clearTimeout(_timer);}var newsrc=_opener.find("img.out").attr("src");if(newsrc){_opener.find(" > a > img").attr("src",newsrc);}_timer=setTimeout(function(){_opener.find(" > a").addClass("no-hover");_drop.fadeOut(_fadeSpeed,function(){_opener.removeClass("expanded");});},75);});}});$(".drop-nav").each(function(){var _items=$(this).find("div.column > div.heading");_items.each(function(){var _opener=$(this);var _drop=_opener.find("div.drop-down").css({opacity:0});_opener.hover(function(){_opener.parent().addClass("hover").css("zIndex",50);_drop.show().animate({opacity:($.browser.msie?"auto":1)},{duration:_fadeSpeed,queue:false});},function(){_opener.parent().removeClass("hover").css("zIndex",10);_drop.hide().animate({opacity:($.browser.msie?"auto":0)},{duration:_fadeSpeed,queue:false});setTimeout(function(){Cufon.refresh(".search-result .search-parameters h2 > a");},100);});});});}function initAccordion(){var _slideSpeed=350;var _items=$("#models-list li");_items.each(function(){var _holder=$(this);var _opener=_holder.find("h3 a");var _slider=_holder.find(".description");if(!_holder.hasClass("open")){_slider.hide();}_opener.click(function(){if(_holder.hasClass("open")){}else{_items.filter(".open").each(function(){$(this).find(".description").stop().slideUp(_slideSpeed,function(){$(this).height("auto");});$(this).removeClass("open");});_holder.addClass("open");_slider.slideDown(_slideSpeed);Cufon.refresh("#models-list h3 > a");return false;}});});var _hold=$("#models-list");var t_h=0;_hold.find("div.column").each(function(){var _el=$(this);_el.find("li").each(function(){var _f=true;if($(this).hasClass("open")){_f=false;}var _box=$(this).find("div.description");_box.show();$(this).addClass("open");if(t_h<_el.outerHeight()){t_h=_el.outerHeight();}_box.hide();if(_f){$(this).removeClass("open");}});});_hold.css("minHeight",t_h+10);if($.browser.msie&&$.browser.version<7){_hold.css("height",t_h+10);}}function initGroupSelection(_obj){var _group=$(".check-select-area");if(_obj&&_obj.length){_group=_obj.find(".check-select-area");}_group.each(function(){var _holder=$(this);var _checkList=_holder.find('input[type="checkbox"]');var _btnSelect=_holder.find(".check-select-all");var _btnDeselect=_holder.find(".check-deselect-all");_btnSelect.click(function(){_checkList.attr("checked",true);if(typeof refreshCheckboxes==="function"){refreshCheckboxes();}return false;});_btnDeselect.click(function(){_checkList.attr("checked",false);if(typeof refreshCheckboxes==="function"){refreshCheckboxes();}return false;});});}function initTabSelector(){$("div.tab-selector").each(function(){var _holder=$(this);var _select=_holder.find("select");_select.change(function(){var _tabID=_select.val();if(_tabID!="0"){_holder.find('a[href*="'+_tabID+'"]').trigger("click");}});_holder.find(".tabs a.tab").click(function(){var _href=$(this).attr("href");_select.find('option[value*="'+_href+'"]').attr("selected","selected");_select.parent().find(".selectArea .center").html($(this).text());return false;});});}function initRadioUnlockBlocks(){var _fadeSpeed=300;$(".radio-lock").each(function(){var _holder=$(this);var _selectMenu=_holder.find(".select-country-menu li");var _overlay=_holder.find(".search-fader");_selectMenu.each(function(){var _holder=$(this);var _opener=_holder.find("a");_opener.click(function(){_selectMenu.removeClass("active");_holder.addClass("active");_holder.find("input").trigger("click");_overlay.fadeOut(_fadeSpeed);return false;});});});}function initContentTooltips(){var _popups=$("div.info");var _fadeSpeed=300;var _stayTime=150;_popups.each(function(){var _timer;var _opener=$(this).find(">a");var _popup=$(this).find(".popup").css({display:"none",opacity:0});_opener.hover(function(){if(_timer){clearTimeout(_timer);}_popup.css("display","block").animate({opacity:1},{duration:_fadeSpeed,queue:false});},function(){_timer=setTimeout(function(){_popup.animate({opacity:0},{duration:_fadeSpeed,queue:false,complete:function(){_popup.hide();}});},_stayTime);});_popup.hover(function(){if(_timer){clearTimeout(_timer);}},function(){_timer=setTimeout(function(){_popup.animate({opacity:0},{duration:_fadeSpeed,queue:false,complete:function(){_popup.hide();}});},_stayTime);});});}function initSliders(){$(".radio-val-slider").each(function(){var _valueType=$(this).find(".val-type");var _radios=$(this).find(".val-radio");_radios.click(function(){_valueType.html($(this).val());});var _selects=$(this).find(".val-select");_selects.change(function(){_valueType.html($(this).val());});});$(".plain-slider").each(function(){var _slideHolder=$(this).find(".slider-holder");var _sliderMin=0;var _sliderMax=$(this).find(".slide-max");var _sliderVal1=$(this).find(".slide-val1");var _sliderVal2=$(this).find(".slide-val2");var _hiddenVal1=$(this).find(".hidden-val1");var _hiddenVal2=$(this).find(".hidden-val2");var _step=parseInt(_sliderMax.text())/10;if(_sliderVal2&&_sliderVal2.length){_slideHolder.slider({range:true,min:_sliderMin,max:parseInt(_sliderMax.text()),values:[parseInt(_sliderVal1.text()),parseInt(_sliderVal2.text())],step:_step,slide:function(event,ui){_sliderVal1.html(ui.values[0]);_sliderVal2.html(ui.values[1]);_hiddenVal1.val(ui.values[0]);_hiddenVal2.val(ui.values[1]);}});}else{_slideHolder.slider({range:"min",min:_sliderMin,max:parseInt(_sliderMax.text()),value:parseInt(_sliderVal1.text()),step:_step,slide:function(event,ui){_sliderVal1.html(ui.value);_hiddenVal1.val(ui.value);}});}});}function initViewMode(){var _targetList=$("#result-list");var _togglers=$("#view-mode ul a");_togglers.click(function(){_togglers.parent().removeClass("active");$(this).parent().addClass("active");_targetList.attr("class","");_targetList.addClass($(this).attr("rel"));return false;});}function initPopupButtons(){}function showLightbox(_pid){var _lightboxContentBlock;var _faderOpacity=0.8;var _faderBackground="#000000";var _closeLink="a.close";var _href=_pid;var _isIE6=false;if($.browser.msie&&$.browser.version=="6.0"){_isIE6=false;}if(_pid&&_pid.length>0){var _lightbox=_pid;if(!jQuery("div.lightbox-fader").length){_fader=$("body").append('<div class="lightbox-fader"></div>');}if(_isIE6){if(!jQuery("iframe.ie-fader").length){_ieFader=$("body").append('<iframe class="ie-fader" src="about:blank" width="10" height="10" scrolling="no" frameborder="0"></iframe>');_ieFader=$("iframe.ie-fader");_ieFader.css({opacity:0,position:"absolute",visibility:"visible",top:0,left:0});}}_fader=jQuery("div.lightbox-fader");_lightbox.css({"zIndex":999,"visibility":"visible","display":"none"});if(!_fader.is(":visible")){_fader.css({opacity:_faderOpacity,backgroundColor:_faderBackground,display:"none",position:"absolute",visibility:"visible",top:0,left:0,zIndex:998,textIndent:-9999}).text("&nbsp;");}else{$('div[class="lightbox"]').fadeOut(400);}_fader.click(function(){_lightbox.fadeOut(400,function(){_fader.fadeOut(300);if(_isIE6){_ieFader.hide();}});return false;});_fader.fadeIn(300,function(){_lightbox.fadeIn(400);positionLightbox(_lightbox,true);});$(document).keydown(function(e){if(!e){evt=window.event;}if(e.keyCode==27){_lightbox.fadeOut(400,function(){_fader.fadeOut(300);});}});$(window).resize(function(){positionLightbox(_lightbox);});$(window).scroll(function(){positionLightbox(_lightbox);});return false;}function positionLightbox(_lbox,_opt){var _height=0;var _width=0;var _minWidth=$("body > div:eq(0)").outerWidth();if(window.innerHeight){_height=window.innerHeight;_width=window.innerWidth;}else{_height=document.documentElement.clientHeight;_width=document.documentElement.clientWidth;}var _thisHeight=_lbox.outerHeight();var _page=$("body > div:eq(0)");if(_lbox.length){if(_height>_page.innerHeight()){_fader.css("height",_height);}else{_fader.css("height",_page.innerHeight());}if(_width<_minWidth){_fader.css("width",_minWidth);}else{_fader.css("width","100%");}if(_height>_thisHeight){if(!window.innerHeight){_lbox.css({position:"absolute",top:(document.documentElement.scrollTop+(_height-_thisHeight)/2)+"px"});}else{_lbox.css({position:"fixed",top:((_height-_lbox.outerHeight())/2)+"px"});}}else{if(_opt){scroll(0,0);}_lbox.css({position:"absolute",top:0});}if(_width>_lbox.outerWidth()){_lbox.css({left:(_width-_lbox.outerWidth())/2+"px"});}else{_lbox.css({position:"absolute",left:0});}if(_isIE6){_ieFader.css({height:_fader.height(),width:_fader.width()});}}}}function initPopups(_holder){_holder.find("a.ajax-popup").click(function(){var _opener=$(this);var _target=_opener.attr("href");if(_opener.hasClass("disabled")){return false;}$(".lightbox").remove();$.ajax({url:_target,global:false,type:"GET",dataType:"html",success:function(msg){_lightbox=$(msg);_lightbox.attr("rel",_target).css({zIndex:999,position:"absolute",display:"block",top:-9999,left:-9999});$("body").append(_lightbox);if(typeof initSectionTabs=="function"){initSectionTabs(_lightbox.find("ul.tabs"));}if(typeof $.fn.slideShow=="function"){_lightbox.find("div.gallery").slideShow({slideEl:"div.slide-area ul li",linkNext:"a.next",linkPrev:"a.prev",numElementLink:"ul.thumbnails a",autoSlideShow:false,switchTime:3000,duration:600,event:"click"});}if(typeof initPopups=="function"){initPopups(_lightbox);}if(typeof initGroupSelection=="function"){initGroupSelection(_lightbox);}$("a.a-close",_lightbox).click(function(){$('div[class="lightbox"]').fadeOut(400,function(){_fader.fadeOut(300);_scroll=false;});return false;});initCufon();initCastomForms();showLightbox(_lightbox);},error:function(msg){alert("AJAX Error!");return false;}});return false;});}function OpenVehicleDetails(Url){var _opener=$(this);var _target=Url;if(_opener.hasClass("disabled")){return false;}$(".lightbox").remove();$.ajax({url:_target,global:false,type:"GET",dataType:"html",success:function(msg){_lightbox=$(msg);_lightbox.attr("rel",_target).css({zIndex:999,position:"absolute",display:"block",top:-9999,left:-9999});$("body").append(_lightbox);if(typeof initSectionTabs=="function"){initSectionTabs(_lightbox.find("ul.tabs"));}if(typeof $.fn.slideShow=="function"){_lightbox.find("div.gallery").slideShow({slideEl:"div.slide-area ul li",linkNext:"a.next",linkPrev:"a.prev",numElementLink:"ul.thumbnails a",autoSlideShow:false,switchTime:3000,duration:600,event:"click"});}if(typeof initPopups=="function"){initPopups(_lightbox);}if(typeof initGroupSelection=="function"){initGroupSelection(_lightbox);}$("a.a-close",_lightbox).click(function(){$('div[class="lightbox"]').fadeOut(400,function(){_fader.fadeOut(300);_scroll=false;});return false;});initCufon();initCastomForms();showLightbox(_lightbox);},error:function(msg){alert("AJAX Error!");return false;}});return false;}function initSectionTabs(_tabset){if(_tabset&&_tabset.length){$(_tabset).each(function(){var _list=$(this);var _links=_list.find("a.tab");_links.each(function(){var _link=$(this);_link.attr("href",_link.attr("href").substring(_link.attr("href").lastIndexOf("#")));var _href=_link.attr("href");var _tab=$(_href);if(_link.hasClass("active")){_tab.show();}else{_tab.hide();}_link.click(function(){_links.filter(".active").each(function(){$($(this).removeClass("active").attr("href")).hide();});_link.addClass("active");_tab.show();Cufon.refresh();return false;});});});}}function initCufon(){Cufon.replace(".tab > p",{fontFamily:"Gill Sans MT"});Cufon.replace("#models-list h3 > a",{fontFamily:"Gill Sans MT",hover:true});Cufon.replace(".sb-nav p",{fontFamily:"Gill Sans MT"});Cufon.replace(".sb-nav > ul > li > span > a",{fontFamily:"Gill Sans MT",hover:true});Cufon.replace(".search-result .search-parameters h2 > a",{fontFamily:"Gill Sans",hover:true});Cufon.replace(".vehicle-details .sb .tabs a, .shortlist .sb ul a",{fontFamily:"Gill Sans",hover:true});Cufon.replace(".main-content .tabs-holder h2, .enquiry-popup form .section h2",{fontFamily:"Gill Sans Light"});Cufon.replace(".next-steps p, .popup .title .left .a-back a",{fontFamily:"Gill Sans MT"});Cufon.replace(".search .models ul label, .search-parameters .model-col .drop-down form label",{fontFamily:"Gill Sans MT"});Cufon.replace(".search .models h2",{fontFamily:"Gill Sans Light"});Cufon.replace(".search .distance-from-location h2",{fontFamily:"Gill Sans"});Cufon.replace(".search .distance .measuring-bar li label, .search-parameters .mileage-col .drop-down label",{fontFamily:"Gill Sans"});Cufon.replace(".search .options h2",{fontFamily:"Gill Sans"});Cufon.replace(".search .options .distance .currency-bar h3, .email-shortlist .list .thead p",{fontFamily:"Gill Sans"});Cufon.replace(".search .select-country-menu h2, .lightbox .title h2, .vehicle-details .main-col h1, .vehicle-details #vehicle-details-content h2, .comparison-table .section h3",{fontFamily:"Gill Sans Light"});Cufon.replace(".locate .town-details h2",{fontFamily:"Gill Sans"});Cufon.replace(".locate .search-tab h2",{fontFamily:"Gill Sans"});}var hasFlash=function(){var a=6;if(navigator.appVersion.indexOf("MSIE")!=-1&&navigator.appVersion.indexOf("Windows")>-1){document.write('<script language="VBScript"> \non error resume next \nhasFlash = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & '+a+"))) \n<\/script> \n");if(window.hasFlash!=null){return window.hasFlash;}}if(navigator.mimeTypes&&navigator.mimeTypes["application/x-shockwave-flash"]&&navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){var b=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;return parseInt(b.substr(b.indexOf(".")-2,2),10)>=a;}return false;}();String.prototype.normalize=function(){return this.replace(/\s+/g," ");};if(Array.prototype.push==null){Array.prototype.push=function(){var i=0,a=this.length,b=arguments.length;while(i<b){this[a++]=arguments[i++];}return this.length;};}if(!Function.prototype.apply){Function.prototype.apply=function(a,b){var c=[];var d,e;if(!a){a=window;}if(!b){b=[];}for(var i=0;i<b.length;i++){c[i]="b["+i+"]";}e="a.__applyTemp__("+c.join(",")+");";a.__applyTemp__=this;d=eval(e);a.__applyTemp__=null;return d;};}function named(a){return new named.Arguments(a);}named.Arguments=function(a){this.oArgs=a;};named.Arguments.prototype.constructor=named.Arguments;named.extract=function(a,b){var c,d;var i=a.length;while(i--){d=a[i];if(d!=null&&d.constructor!=null&&d.constructor==named.Arguments){c=a[i].oArgs;break;}}if(c==null){return;}for(e in c){if(b[e]!=null){b[e](c[e]);}}return;};var parseSelector=function(){var a=/^([^#.>`]*)(#|\.|\>|\`)(.+)$/;function r(s,t){var u=s.split(/\s*\,\s*/);var v=[];for(var i=0;i<u.length;i++){v=v.concat(b(u[i],t));}return v;}function b(c,d,e){c=c.normalize().replace(" ","`");var f=c.match(a);var g,h,i,j,k,n;var l=[];if(f==null){f=[c,c];}if(f[1]==""){f[1]="*";}if(e==null){e="`";}if(d==null){d=document;}switch(f[2]){case"#":k=f[3].match(a);if(k==null){k=[null,f[3]];}g=document.getElementById(k[1]);if(g==null||(f[1]!="*"&&!o(g,f[1]))){return l;}if(k.length==2){l.push(g);return l;}return b(k[3],g,k[2]);case".":if(e!=">"){h=m(d,f[1]);}else{h=d.childNodes;}for(i=0,n=h.length;i<n;i++){g=h[i];if(g.nodeType!=1){continue;}k=f[3].match(a);if(k!=null){if(g.className==null||g.className.match("(\\s|^)"+k[1]+"(\\s|$)")==null){continue;}j=b(k[3],g,k[2]);l=l.concat(j);}else{if(g.className!=null&&g.className.match("(\\s|^)"+f[3]+"(\\s|$)")!=null){l.push(g);}}}return l;case">":if(e!=">"){h=m(d,f[1]);}else{h=d.childNodes;}for(i=0,n=h.length;i<n;i++){g=h[i];if(g.nodeType!=1){continue;}if(!o(g,f[1])){continue;}j=b(f[3],g,">");l=l.concat(j);}return l;case"`":h=m(d,f[1]);for(i=0,n=h.length;i<n;i++){g=h[i];j=b(f[3],g,"`");l=l.concat(j);}return l;default:if(e!=">"){h=m(d,f[1]);}else{h=d.childNodes;}for(i=0,n=h.length;i<n;i++){g=h[i];if(g.nodeType!=1){continue;}if(!o(g,f[1])){continue;}l.push(g);}return l;}}function m(d,o){if(o=="*"&&d.all!=null){return d.all;}return d.getElementsByTagName(o);}function o(p,q){return q=="*"?true:p.nodeName.toLowerCase().replace("html:","")==q.toLowerCase();}return r;}();var sIFR=function(){var a="http://www.w3.org/1999/xhtml";var b=false;var c=false;var d;var ah=[];var al=document;var ak=al.documentElement;var am=window;var au=al.addEventListener;var av=am.addEventListener;var f=function(){var g=navigator.userAgent.toLowerCase();var f={a:g.indexOf("applewebkit")>-1,b:g.indexOf("safari")>-1,c:navigator.product!=null&&navigator.product.toLowerCase().indexOf("konqueror")>-1,d:g.indexOf("opera")>-1,e:al.contentType!=null&&al.contentType.indexOf("xml")>-1,f:true,g:true,h:null,i:null,j:null,k:null};f.l=f.a||f.c;f.m=!f.a&&navigator.product!=null&&navigator.product.toLowerCase()=="gecko";if(f.m&&g.match(/.*gecko\/(\d{8}).*/)){f.j=new Number(g.match(/.*gecko\/(\d{8}).*/)[1]);}f.n=g.indexOf("msie")>-1&&!f.d&&!f.l&&!f.m;f.o=f.n&&g.match(/.*mac.*/)!=null;if(f.d&&g.match(/.*opera(\s|\/)(\d+\.\d+)/)){f.i=new Number(g.match(/.*opera(\s|\/)(\d+\.\d+)/)[2]);}if(f.n||(f.d&&f.i<7.6)){f.g=false;}if(f.a&&g.match(/.*applewebkit\/(\d+).*/)){f.k=new Number(g.match(/.*applewebkit\/(\d+).*/)[1]);}if(am.hasFlash&&(!f.n||f.o)){var aj=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;f.h=parseInt(aj.substr(aj.indexOf(".")-2,2),10);}if(g.match(/.*(windows|mac).*/)==null||f.o||f.c||(f.d&&(f.i<7.6))||(f.b&&f.h<7)||(!f.b&&f.a&&f.k<312)||(f.m&&f.j<20020523)){f.f=false;}if(!f.o&&!f.m&&al.createElementNS){try{al.createElementNS(a,"i").innerHTML="";}catch(e){f.e=true;}}f.p=f.c||(f.a&&f.k<312);return f;}();function at(){return{bIsWebKit:f.a,bIsSafari:f.b,bIsKonq:f.c,bIsOpera:f.d,bIsXML:f.e,bHasTransparencySupport:f.f,bUseDOM:f.g,nFlashVersion:f.h,nOperaVersion:f.i,nGeckoBuildDate:f.j,nWebKitVersion:f.k,bIsKHTML:f.l,bIsGecko:f.m,bIsIE:f.n,bIsIEMac:f.o,bUseInnerHTMLHack:f.p};}if(am.hasFlash==false||!al.getElementsByTagName||!al.getElementById||(f.e&&(f.p||f.n))){return{UA:at()};}function af(e){if((!k.bAutoInit&&(am.event||e)!=null)||!l(e)){return;}b=true;for(var i=0,h=ah.length;i<h;i++){j.apply(null,ah[i]);}ah=[];}var k=af;function l(e){if(c==false||k.bIsDisabled==true||((f.e&&f.m||f.l)&&e==null&&b==false)||al.getElementsByTagName("body").length==0){return false;}return true;}function m(n){if(f.n){return n.replace(new RegExp("%\d{0}","g"),"%25");}return n.replace(new RegExp("%(?!\d)","g"),"%25");}function as(p,q){return q=="*"?true:p.nodeName.toLowerCase().replace("html:","")==q.toLowerCase();}function o(p,q,r,s,t){var u="";var v=p.firstChild;var w,x,y,z;if(s==null){s=0;}if(t==null){t="";}while(v){if(v.nodeType==3){z=v.nodeValue.replace("<","&lt;");switch(r){case"lower":u+=z.toLowerCase();break;case"upper":u+=z.toUpperCase();break;default:u+=z;}}else{if(v.nodeType==1){if(as(v,"a")&&!v.getAttribute("href")==false){if(v.getAttribute("target")){t+="&sifr_url_"+s+"_target="+v.getAttribute("target");}t+="&sifr_url_"+s+"="+m(v.getAttribute("href")).replace(/&/g,"%26");u+='<a href="asfunction:_root.launchURL,'+s+'">';s++;}else{if(as(v,"br")){u+="<br/>";}}if(v.hasChildNodes()){y=o(v,null,r,s,t);u+=y.u;s=y.s;t=y.t;}if(as(v,"a")){u+="</a>";}}}w=v;v=v.nextSibling;if(q!=null){x=w.parentNode.removeChild(w);q.appendChild(x);}}return{"u":u,"s":s,"t":t};}function A(B){if(al.createElementNS&&f.g){return al.createElementNS(a,B);}return al.createElement(B);}function C(D,E,z){var p=A("param");p.setAttribute("name",E);p.setAttribute("value",z);D.appendChild(p);}function F(p,G){var H=p.className;if(H==null){H=G;}else{H=H.normalize()+(H==""?"":" ")+G;}p.className=H;}function aq(ar){var a=ak;if(k.bHideBrowserText==false){a=al.getElementsByTagName("body")[0];}if((k.bHideBrowserText==false||ar)&&a){if(a.className==null||a.className.match(/\bsIFR\-hasFlash\b/)==null){F(a,"sIFR-hasFlash");}}}function j(I,J,K,L,M,N,O,P,Q,R,S,r,T){if(!l()){return ah.push(arguments);}aq();named.extract(arguments,{sSelector:function(ap){I=ap;},sFlashSrc:function(ap){J=ap;},sColor:function(ap){K=ap;},sLinkColor:function(ap){L=ap;},sHoverColor:function(ap){M=ap;},sBgColor:function(ap){N=ap;},nPaddingTop:function(ap){O=ap;},nPaddingRight:function(ap){P=ap;},nPaddingBottom:function(ap){Q=ap;},nPaddingLeft:function(ap){R=ap;},sFlashVars:function(ap){S=ap;},sCase:function(ap){r=ap;},sWmode:function(ap){T=ap;}});var U=parseSelector(I);if(U.length==0){return false;}if(S!=null){S="&"+S.normalize();}else{S="";}if(K!=null){S+="&textcolor="+K;}if(M!=null){S+="&hovercolor="+M;}if(M!=null||L!=null){S+="&linkcolor="+(L||K);}if(O==null){O=0;}if(P==null){P=0;}if(Q==null){Q=0;}if(R==null){R=0;}if(N==null){N="#FFFFFF";}if(T=="transparent"){if(!f.f){T="opaque";}else{N="transparent";}}if(T==null){T="";}var p,V,W,X,Y,Z,aa,ab,ac;var ad=null;for(var i=0,h=U.length;i<h;i++){p=U[i];if(p.className!=null&&p.className.match(/\bsIFR\-replaced\b/)!=null){continue;}V=p.offsetWidth-R-P;W=p.offsetHeight-O-Q;aa=A("span");aa.className="sIFR-alternate";ac=o(p,aa,r);Z="txt="+m(ac.u).replace(/\+/g,"%2B").replace(/&/g,"%26").replace(/\"/g,"%22").normalize()+S+"&w="+V+"&h="+W+ac.t;F(p,"sIFR-replaced");if(ad==null||!f.g){if(!f.g){if(!f.n){p.innerHTML=['<embed class="sIFR-flash" type="application/x-shockwave-flash" src="',J,'" quality="best" wmode="',T,'" bgcolor="',N,'" flashvars="',Z,'" width="',V,'" height="',W,'" sifr="true"></embed>'].join("");}else{p.innerHTML=['<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" sifr="true" width="',V,'" height="',W,'" class="sIFR-flash"><param name="movie" value="',J,'"></param><param name="flashvars" value="',Z,'"></param><param name="quality" value="best"></param><param name="wmode" value="',T,'"></param><param name="bgcolor" value="',N,'"></param> </object>'].join("");}}else{if(f.d){ab=A("object");ab.setAttribute("data",J);C(ab,"quality","best");C(ab,"wmode",T);C(ab,"bgcolor",N);}else{ab=A("embed");ab.setAttribute("src",J);ab.setAttribute("quality","best");ab.setAttribute("flashvars",Z);ab.setAttribute("wmode",T);ab.setAttribute("bgcolor",N);}ab.setAttribute("sifr","true");ab.setAttribute("type","application/x-shockwave-flash");ab.className="sIFR-flash";if(!f.l||!f.e){ad=ab.cloneNode(true);}}}else{ab=ad.cloneNode(true);}if(f.g){if(f.d){C(ab,"flashvars",Z);}else{ab.setAttribute("flashvars",Z);}ab.setAttribute("width",V);ab.setAttribute("height",W);ab.style.width=V+"px";ab.style.height=W+"px";p.appendChild(ab);}p.appendChild(aa);if(f.p){p.innerHTML+="";}}if(f.n&&k.bFixFragIdBug){setTimeout(function(){al.title=d;},0);}}function ai(){d=al.title;}function ae(){if(k.bIsDisabled==true){return;}c=true;if(k.bHideBrowserText){aq(true);}if(am.attachEvent){am.attachEvent("onload",af);}else{if(!f.c&&(al.addEventListener||am.addEventListener)){if(f.a&&f.k>=132&&am.addEventListener){am.addEventListener("load",function(){setTimeout("sIFR({})",1);},false);}else{if(al.addEventListener){al.addEventListener("load",af,false);}if(am.addEventListener){am.addEventListener("load",af,false);}}}else{if(typeof am.onload=="function"){var ag=am.onload;am.onload=function(){ag();af();};}else{am.onload=af;}}}if(!f.n||am.location.hash==""){k.bFixFragIdBug=false;}else{ai();}}k.UA=at();k.bAutoInit=true;k.bFixFragIdBug=true;k.replaceElement=j;k.updateDocumentTitle=ai;k.appendToClassName=F;k.setup=ae;k.debug=function(){aq(true);};k.debug.replaceNow=function(){ae();k();};k.bIsDisabled=false;k.bHideBrowserText=true;return k;}();if(typeof sIFR=="function"&&!sIFR.UA.bIsIEMac&&(!sIFR.UA.bIsWebKit||sIFR.UA.nWebKitVersion>=100)){sIFR.setup();}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".article h1 span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#666666",sCase:"upper",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".article h2 span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#666666",sCase:"upper",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".result-welcome-text h1 span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#767676",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".result-welcome-text h2 span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#666666",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".search .search-welcome  h1 span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#767676",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".locate .locate-welcome  h1 span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#767676",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".search .search-welcome p span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#666666",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){sIFR.replaceElement(named({sSelector:".locate .locate-welcome p span",sFlashSrc:siteUrl+"swf/gill-sans-light.swf",sColor:"#666666",sWmode:"transparent",sFlashVars:"textalign=left"}));}if(typeof sIFR=="function"){(function(){var j=document;var h=j.documentElement;sIFR.removeDecoyClasses=function(){function a(b){if(b&&b.className!=null){b.className=b.className.replace(/\bsIFR-hasFlash\b/,"");}}return function(){a(h);a(j.getElementsByTagName("body")[0]);};}();sIFR.preferenceManager={storage:{sCookieId:"sifr",set:function(a){var b=new Date();b.setFullYear(b.getFullYear()+3);j.cookie=[this.sCookieId,"=",a,";expires=",b.toGMTString(),";path=/"].join("");},get:function(){var a=j.cookie.match(new RegExp(";?"+this.sCookieId+"=([^;]+);?"));if(a!=null&&a[1]=="false"){return false;}else{return true;}},reset:function(){var a=new Date();a.setFullYear(a.getFullYear()-1);j.cookie=[this.sCookieId,"=true;expires=",a.toGMTString(),";path=/"].join("");}},disable:function(){this.storage.set(false);},enable:function(){this.storage.set(true);},test:function(){return this.storage.get();}};if(sIFR.preferenceManager.test()==false){sIFR.bIsDisabled=true;sIFR.removeDecoyClasses();}sIFR.rollback=function(){function a(b){var c,d,e,f,g,h;var l=parseSelector(b);var i=l.length-1;var m=false;while(i>=0){c=l[i];l.length--;d=c.parentNode;if(c.getAttribute("sifr")=="true"){h=0;while(h<d.childNodes.length){c=d.childNodes[h];if(c.className=="sIFR-alternate"){e=c;h++;continue;}d.removeChild(c);}if(e!=null){f=e.firstChild;while(f!=null){g=f.nextSibling;d.appendChild(e.removeChild(f));f=g;}d.removeChild(e);}if(!sIFR.UA.bIsXML&&sIFR.UA.bUseInnerHTMLHack){d.innerHTML+="";}d.className=d.className.replace(/\bsIFR\-replaced\b/,"");}m=true;i--;}return m;}return function(k){named.extract(arguments,{sSelector:function(a){k=a;}});if(k==null){k="";}else{k+=">";}sIFR.removeDecoyClasses();sIFR.bHideBrowserText=false;if(a(k+"embed")==false){a(k+"object");}};}();})();}var swfobject=function(){var Z="undefined",P="object",B="Shockwave Flash",h="ShockwaveFlash.ShockwaveFlash",W="application/x-shockwave-flash",K="SWFObjectExprInst",G=window,g=document,N=navigator,f=[],H=[],Q=null,L=null,T=null,S=false,C=false;var a=function(){var l=typeof g.getElementById!=Z&&typeof g.getElementsByTagName!=Z&&typeof g.createElement!=Z&&typeof g.appendChild!=Z&&typeof g.replaceChild!=Z&&typeof g.removeChild!=Z&&typeof g.cloneNode!=Z,t=[0,0,0],n=null;if(typeof N.plugins!=Z&&typeof N.plugins[B]==P){n=N.plugins[B].description;if(n){n=n.replace(/^.*\s+(\S+\s+\S+$)/,"$1");t[0]=parseInt(n.replace(/^(.*)\..*$/,"$1"),10);t[1]=parseInt(n.replace(/^.*\.(.*)\s.*$/,"$1"),10);t[2]=/r/.test(n)?parseInt(n.replace(/^.*r(.*)$/,"$1"),10):0;}}else{if(typeof G.ActiveXObject!=Z){var o=null,s=false;try{o=new ActiveXObject(h+".7");}catch(k){try{o=new ActiveXObject(h+".6");t=[6,0,21];o.AllowScriptAccess="always";}catch(k){if(t[0]==6){s=true;}}if(!s){try{o=new ActiveXObject(h);}catch(k){}}}if(!s&&o){try{n=o.GetVariable("$version");if(n){n=n.split(" ")[1].split(",");t=[parseInt(n[0],10),parseInt(n[1],10),parseInt(n[2],10)];}}catch(k){}}}}var v=N.userAgent.toLowerCase(),j=N.platform.toLowerCase(),r=/webkit/.test(v)?parseFloat(v.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,i=false,q=j?/win/.test(j):/win/.test(v),m=j?/mac/.test(j):/mac/.test(v);
/*@cc_on i=true;@if(@_win32)q=true;@elif(@_mac)m=true;@end@*/
return{w3cdom:l,pv:t,webkit:r,ie:i,win:q,mac:m};}();var e=function(){if(!a.w3cdom){return;}J(I);if(a.ie&&a.win){try{g.write("<script id=__ie_ondomload defer=true src=//:><\/script>");var i=c("__ie_ondomload");if(i){i.onreadystatechange=function(){if(this.readyState=="complete"){this.parentNode.removeChild(this);V();}};}}catch(j){}}if(a.webkit&&typeof g.readyState!=Z){Q=setInterval(function(){if(/loaded|complete/.test(g.readyState)){V();}},10);}if(typeof g.addEventListener!=Z){g.addEventListener("DOMContentLoaded",V,null);}M(V);}();function V(){if(S){return;}if(a.ie&&a.win){var m=Y("span");try{var l=g.getElementsByTagName("body")[0].appendChild(m);l.parentNode.removeChild(l);}catch(n){return;}}S=true;if(Q){clearInterval(Q);Q=null;}var j=f.length;for(var k=0;k<j;k++){f[k]();}}function J(i){if(S){i();}else{f[f.length]=i;}}function M(j){if(typeof G.addEventListener!=Z){G.addEventListener("load",j,false);}else{if(typeof g.addEventListener!=Z){g.addEventListener("load",j,false);}else{if(typeof G.attachEvent!=Z){G.attachEvent("onload",j);}else{if(typeof G.onload=="function"){var i=G.onload;G.onload=function(){i();j();};}else{G.onload=j;}}}}}function I(){var l=H.length;for(var j=0;j<l;j++){var m=H[j].id;if(a.pv[0]>0){var k=c(m);if(k){H[j].width=k.getAttribute("width")?k.getAttribute("width"):"0";H[j].height=k.getAttribute("height")?k.getAttribute("height"):"0";if(O(H[j].swfVersion)){if(a.webkit&&a.webkit<312){U(k);}X(m,true);}else{if(H[j].expressInstall&&!C&&O("6.0.65")&&(a.win||a.mac)){D(H[j]);}else{d(k);}}}}else{X(m,true);}}}function U(m){var k=m.getElementsByTagName(P)[0];if(k){var p=Y("embed"),r=k.attributes;if(r){var o=r.length;for(var n=0;n<o;n++){if(r[n].nodeName.toLowerCase()=="data"){p.setAttribute("src",r[n].nodeValue);}else{p.setAttribute(r[n].nodeName,r[n].nodeValue);}}}var q=k.childNodes;if(q){var s=q.length;for(var l=0;l<s;l++){if(q[l].nodeType==1&&q[l].nodeName.toLowerCase()=="param"){p.setAttribute(q[l].getAttribute("name"),q[l].getAttribute("value"));}}}m.parentNode.replaceChild(p,m);}}function F(i){if(a.ie&&a.win&&O("8.0.0")){G.attachEvent("onunload",function(){var k=c(i);if(k){for(var j in k){if(typeof k[j]=="function"){k[j]=function(){};}}k.parentNode.removeChild(k);}});}}function D(j){C=true;var o=c(j.id);if(o){if(j.altContentId){var l=c(j.altContentId);if(l){L=l;T=j.altContentId;}}else{L=b(o);}if(!(/%$/.test(j.width))&&parseInt(j.width,10)<310){j.width="310";}if(!(/%$/.test(j.height))&&parseInt(j.height,10)<137){j.height="137";}g.title=g.title.slice(0,47)+" - Flash Player Installation";var n=a.ie&&a.win?"ActiveX":"PlugIn",k=g.title,m="MMredirectURL="+G.location+"&MMplayerType="+n+"&MMdoctitle="+k,p=j.id;if(a.ie&&a.win&&o.readyState!=4){var i=Y("div");p+="SWFObjectNew";i.setAttribute("id",p);o.parentNode.insertBefore(i,o);o.style.display="none";G.attachEvent("onload",function(){o.parentNode.removeChild(o);});}R({data:j.expressInstall,id:K,width:j.width,height:j.height},{flashvars:m},p);}}function d(j){if(a.ie&&a.win&&j.readyState!=4){var i=Y("div");j.parentNode.insertBefore(i,j);i.parentNode.replaceChild(b(j),i);j.style.display="none";G.attachEvent("onload",function(){j.parentNode.removeChild(j);});}else{j.parentNode.replaceChild(b(j),j);}}function b(n){var m=Y("div");if(a.win&&a.ie){m.innerHTML=n.innerHTML;}else{var k=n.getElementsByTagName(P)[0];if(k){var o=k.childNodes;if(o){var j=o.length;for(var l=0;l<j;l++){if(!(o[l].nodeType==1&&o[l].nodeName.toLowerCase()=="param")&&!(o[l].nodeType==8)){m.appendChild(o[l].cloneNode(true));}}}}}return m;}function R(AE,AC,q){var p,t=c(q);if(typeof AE.id==Z){AE.id=q;}if(a.ie&&a.win){var AD="";for(var z in AE){if(AE[z]!=Object.prototype[z]){if(z=="data"){AC.movie=AE[z];}else{if(z.toLowerCase()=="styleclass"){AD+=' class="'+AE[z]+'"';}else{if(z!="classid"){AD+=" "+z+'="'+AE[z]+'"';}}}}}var AB="";for(var y in AC){if(AC[y]!=Object.prototype[y]){AB+='<param name="'+y+'" value="'+AC[y]+'" />';}}t.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AD+">"+AB+"</object>";F(AE.id);p=c(AE.id);}else{if(a.webkit&&a.webkit<312){var AA=Y("embed");AA.setAttribute("type",W);for(var x in AE){if(AE[x]!=Object.prototype[x]){if(x=="data"){AA.setAttribute("src",AE[x]);}else{if(x.toLowerCase()=="styleclass"){AA.setAttribute("class",AE[x]);}else{if(x!="classid"){AA.setAttribute(x,AE[x]);}}}}}for(var w in AC){if(AC[w]!=Object.prototype[w]){if(w!="movie"){AA.setAttribute(w,AC[w]);}}}t.parentNode.replaceChild(AA,t);p=AA;}else{var s=Y(P);s.setAttribute("type",W);for(var v in AE){if(AE[v]!=Object.prototype[v]){if(v.toLowerCase()=="styleclass"){s.setAttribute("class",AE[v]);}else{if(v!="classid"){s.setAttribute(v,AE[v]);}}}}for(var u in AC){if(AC[u]!=Object.prototype[u]&&u!="movie"){E(s,u,AC[u]);}}t.parentNode.replaceChild(s,t);p=s;}}return p;}function E(k,i,j){var l=Y("param");l.setAttribute("name",i);l.setAttribute("value",j);k.appendChild(l);}function c(i){return g.getElementById(i);}function Y(i){return g.createElement(i);}function O(k){var j=a.pv,i=k.split(".");i[0]=parseInt(i[0],10);i[1]=parseInt(i[1],10);i[2]=parseInt(i[2],10);return(j[0]>i[0]||(j[0]==i[0]&&j[1]>i[1])||(j[0]==i[0]&&j[1]==i[1]&&j[2]>=i[2]))?true:false;}function A(m,j){if(a.ie&&a.mac){return;}var l=g.getElementsByTagName("head")[0],k=Y("style");k.setAttribute("type","text/css");k.setAttribute("media","screen");if(!(a.ie&&a.win)&&typeof g.createTextNode!=Z){k.appendChild(g.createTextNode(m+" {"+j+"}"));}l.appendChild(k);if(a.ie&&a.win&&typeof g.styleSheets!=Z&&g.styleSheets.length>0){var i=g.styleSheets[g.styleSheets.length-1];if(typeof i.addRule==P){i.addRule(m,j);}}}function X(k,i){var j=i?"visible":"hidden";if(S){c(k).style.visibility=j;}else{A("#"+k,"visibility:"+j);}}return{registerObject:function(l,i,k){if(!a.w3cdom||!l||!i){return;}var j={};j.id=l;j.swfVersion=i;j.expressInstall=k?k:false;H[H.length]=j;X(l,false);},getObjectById:function(l){var i=null;if(a.w3cdom&&S){var j=c(l);if(j){var k=j.getElementsByTagName(P)[0];if(!k||(k&&typeof j.SetVariable!=Z)){i=j;}else{if(typeof k.SetVariable!=Z){i=k;}}}}return i;},embedSWF:function(n,u,r,t,j,m,k,p,s){if(!a.w3cdom||!n||!u||!r||!t||!j){return;}r+="";t+="";if(O(j)){X(u,false);var q=(typeof s==P)?s:{};q.data=n;q.width=r;q.height=t;var o=(typeof p==P)?p:{};if(typeof k==P){for(var l in k){if(k[l]!=Object.prototype[l]){if(typeof o.flashvars!=Z){o.flashvars+="&"+l+"="+k[l];}else{o.flashvars=l+"="+k[l];}}}}J(function(){R(q,o,u);if(q.id==u){X(u,true);}});}else{if(m&&!C&&O("6.0.65")&&(a.win||a.mac)){X(u,false);J(function(){var i={};i.id=i.altContentId=u;i.width=r;i.height=t;i.expressInstall=m;D(i);});}}},getFlashPlayerVersion:function(){return{major:a.pv[0],minor:a.pv[1],release:a.pv[2]};},hasFlashPlayerVersion:O,createSWF:function(k,j,i){if(a.w3cdom&&S){return R(k,j,i);}else{return undefined;}},createCSS:function(j,i){if(a.w3cdom){A(j,i);}},addDomLoadEvent:J,addLoadEvent:M,getQueryParamValue:function(m){var l=g.location.search||g.location.hash;if(m==null){return l;}if(l){var k=l.substring(1).split("&");for(var j=0;j<k.length;j++){if(k[j].substring(0,k[j].indexOf("="))==m){return k[j].substring((k[j].indexOf("=")+1));}}}return"";},expressInstallCallback:function(){if(C&&L){var i=c(K);if(i){i.parentNode.replaceChild(L,i);if(T){X(T,true);if(a.ie&&a.win){L.style.display="block";}}L=null;T=null;C=false;}}}};}();function ReadCookie(name){var nameEQ=name+"=";var ca=document.cookie.split(";");for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==" "){c=c.substring(1,c.length);}if(c.indexOf(nameEQ)==0){return c.substring(nameEQ.length,c.length);}}return"";}function WriteCookie(name,value,date){document.cookie=name+"="+value+"; expires="+date+"; path=/";}