jQuery()
var featuredcontentglider={leftrightkeys:[37,39],csszindex:100,ajaxloadingmsg:'<b>Fetching Content. Please wait...</b>',glide:function(config,showpage,isprev){var selected=parseInt(showpage)
if(selected>=config.$contentdivs.length){alert("No content exists at page "+(selected+1)+"! Loading 1st page instead.")
selected=0}
var $target=config.$contentdivs.eq(selected)
if(config.$togglerdiv.attr('lastselected')==null||parseInt(config.$togglerdiv.attr('lastselected'))!=selected){var $selectedlink=config.$toc.eq(selected)
config.nextslideindex=(selected<config.$contentdivs.length-1)?selected+1:0
config.prevslideindex=(selected==0)?config.$contentdivs.length-1:selected-1
config.$next.attr('loadpage',config.nextslideindex+"pg")
config.$prev.attr('loadpage',config.prevslideindex+'pg')
var startpoint=(isprev=="previous")?-config.startpoint:config.startpoint
$target.css(config.leftortop,startpoint).css("zIndex",this.csszindex++)
var endpoint=(config.leftortop=="left")?{left:0}:{top:0}
$target.animate(endpoint,config.speed)
config.$toc.removeClass('selected')
$selectedlink.addClass('selected')
config.$togglerdiv.attr('lastselected',selected+'pg')}},getremotecontent:function($,config){config.$glider.html(this.ajaxloadingmsg)
$.ajax({url:config.remotecontent,error:function(ajaxrequest){config.$glider.html('Error fetching content.<br />Server Response: '+ajaxrequest.responseText)},success:function(content){config.$glider.html(content)
featuredcontentglider.setuptoggler($,config)}})},aligncontents:function($,config){config.$contentdivs=$("#"+config.gliderid+" ."+config.contentclass)
config.$contentdivs.css(config.leftortop,config.startpoint).css({height:config.$glider.height(),visibility:'visible'})},setuptoggler:function($,config){this.aligncontents($,config)
config.$togglerdiv.hide()
config.$toc.each(function(index){$(this).attr('pagenumber',index+'pg')
if(index>(config.$contentdivs.length-1))
$(this).css({display:'none'})})
var $nextandprev=$("#"+config.togglerid+" .next, #"+config.togglerid+" .prev")
$nextandprev.click(function(event){featuredcontentglider.glide(config,this.getAttribute('loadpage'),this.getAttribute('buttontype'))
event.preventDefault()})
config.$toc.click(function(event){featuredcontentglider.glide(config,this.getAttribute('pagenumber'))
event.preventDefault()})
config.$togglerdiv.fadeIn(1000,function(){featuredcontentglider.glide(config,config.selected)
if(config.autorotate==true){config.stepcount=0
config.totalsteps=config.$contentdivs.length*config.autorotateconfig[1]
featuredcontentglider.autorotate(config)}})
config.$togglerdiv.click(function(){featuredcontentglider.cancelautorotate(config.togglerid)})
if(this.leftrightkeys.length==2){$(document).bind('keydown',function(e){featuredcontentglider.keyboardnav(config,e.keyCode)})}},autorotate:function(config){var rotatespeed=config.speed+config.autorotateconfig[0]
window[config.togglerid+"timer"]=setInterval(function(){if(config.totalsteps>0&&config.stepcount>=config.totalsteps){clearInterval(window[config.togglerid+"timer"])}
else{featuredcontentglider.glide(config,config.nextslideindex,"next")
config.stepcount++}},rotatespeed)},cancelautorotate:function(togglerid){if(window[togglerid+"timer"])
clearInterval(window[togglerid+"timer"])},keyboardnav:function(config,keycode){if(keycode==this.leftrightkeys[0])
featuredcontentglider.glide(config,config.prevslideindex,"previous")
else if(keycode==this.leftrightkeys[1])
featuredcontentglider.glide(config,config.nextslideindex,"next")
if(keycode==this.leftrightkeys[0]||keycode==this.leftrightkeys[1])
featuredcontentglider.cancelautorotate(config.togglerid)},getCookie:function(Name){var re=new RegExp(Name+"=[^;]+","i")
if(document.cookie.match(re))
return document.cookie.match(re)[0].split("=")[1]
return null},setCookie:function(name,value){document.cookie=name+"="+value},init:function(config){jQuery(document).ready(function($){config.$glider=$("#"+config.gliderid)
config.$togglerdiv=$("#"+config.togglerid)
config.$toc=config.$togglerdiv.find('.toc')
config.$next=config.$togglerdiv.find('.next')
config.$prev=config.$togglerdiv.find('.prev')
config.$prev.attr('buttontype','previous')
var selected=(config.persiststate)?featuredcontentglider.getCookie(config.gliderid):config.selected
config.selected=(isNaN(parseInt(selected)))?config.selected:selected
config.leftortop=(/up/i.test(config.direction))?"top":"left"
config.heightorwidth=(/up/i.test(config.direction))?config.$glider.height():config.$glider.width()
config.startpoint=(/^(left|up)/i.test(config.direction))?-config.heightorwidth:config.heightorwidth
if(typeof config.remotecontent!="undefined"&&config.remotecontent.length>0)
featuredcontentglider.getremotecontent($,config)
else
featuredcontentglider.setuptoggler($,config)
$(window).bind('unload',function(){config.$togglerdiv.unbind('click')
config.$toc.unbind('click')
config.$next.unbind('click')
config.$prev.unbind('click')
if(config.persiststate)
featuredcontentglider.setCookie(config.gliderid,config.$togglerdiv.attr('lastselected'))
config=null})})}};(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:true,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a trademark of Linotype AG and/or its subsidiaries.
 * 
 * Full name:
 * HelveticaNeueLT-MediumCond
 */
Cufon.registerFont({"w":480,"face":{"font-family":"Helvetica Neue LT","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"14","bbox":"-24 -778 771 186.003","underline-thickness":"50","underline-position":"-75","stemh":"86","stemv":"108","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":240,"k":{"Y":37,"W":37,"V":37,"T":37,"A":37}},"!":{"d":"99,-192r-17,-296r0,-226r114,0v3,183,-6,353,-17,522r-80,0xm82,0r0,-114r114,0r0,114r-114,0","w":278},"\"":{"d":"264,-428r0,-286r86,0r0,286r-86,0xm76,-428r0,-286r86,0r0,286r-86,0","w":426},"#":{"d":"177,-274r106,0r20,-146r-106,0xm-3,-200r0,-74r97,0r20,-146r-88,0r0,-74r98,0r28,-200r83,0r-28,200r106,0r28,-200r83,0r-28,200r87,0r0,74r-97,0r-20,146r88,0r0,74r-98,0r-28,200r-83,0r28,-200r-106,0r-28,200r-83,0r28,-200r-87,0"},"$":{"d":"260,-287r0,215v60,-9,90,-55,90,-100v0,-66,-29,-97,-90,-115xm216,-418r0,-204v-42,4,-76,37,-76,100v0,47,22,80,76,104xm216,100r0,-86v-177,-14,-202,-117,-200,-228r114,0v-3,81,18,131,86,142r0,-232v-109,-34,-190,-91,-190,-208v0,-115,83,-196,190,-196r0,-70r44,0r0,70v158,6,192,110,190,198r-114,0v2,-62,-13,-105,-76,-112r0,221r63,22v97,35,141,89,141,184v0,138,-80,202,-204,209r0,86r-44,0"},"%":{"d":"173,-646v-41,0,-51,37,-51,130v0,93,10,130,51,130v41,0,51,-37,51,-130v0,-93,-10,-130,-51,-130xm497,-708r77,0r-319,722r-75,0xm586,-308v-41,0,-51,37,-51,130v0,93,10,130,51,130v41,0,51,-37,51,-130v0,-93,-10,-130,-51,-130xm173,-708v79,0,137,43,137,192v0,149,-58,192,-137,192v-79,0,-137,-43,-137,-192v0,-149,58,-192,137,-192xm586,-370v79,0,137,43,137,192v0,149,-58,192,-137,192v-79,0,-137,-43,-137,-192v0,-149,58,-192,137,-192","w":759},"&":{"d":"296,-392r125,176v19,-32,30,-76,28,-123r90,0v1,52,-10,126,-61,203r97,136r-121,0r-43,-61v-46,42,-99,75,-180,75v-165,0,-210,-122,-210,-197v0,-100,73,-174,145,-221v-29,-42,-74,-104,-73,-157v0,-102,75,-153,170,-153v53,0,157,26,157,145v0,83,-65,137,-124,177xm247,-458v31,-30,76,-63,77,-115v0,-42,-26,-67,-68,-67v-29,0,-67,15,-67,62v0,46,34,89,58,120xm216,-336v-44,34,-87,82,-87,145v0,64,55,114,121,114v48,0,84,-26,111,-55","w":574},"(":{"d":"184,-714r75,0v-154,256,-154,636,0,898r-77,0v-79,-104,-145,-266,-145,-449v0,-183,68,-345,147,-449","w":259},")":{"d":"75,184r-75,0v154,-256,154,-636,0,-898r77,0v79,104,145,266,145,449v0,183,-68,345,-147,449","w":259},"*":{"d":"152,-714r68,0r0,124r111,-43r23,66r-114,33r78,103r-56,43r-76,-105r-74,105r-56,-43r76,-103r-116,-33r23,-66r113,44r0,-125","w":370},"+":{"d":"257,-296r0,-210r86,0r0,210r210,0r0,86r-210,0r0,210r-86,0r0,-210r-210,0r0,-86r210,0","w":600},",":{"d":"63,0r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0","w":240,"k":{" ":37}},"-":{"d":"45,-238r0,-102r262,0r0,102r-262,0","w":352},".":{"d":"63,0r0,-132r114,0r0,132r-114,0","w":240},"\/":{"d":"-10,14r227,-742r89,0r-227,742r-89,0","w":296},"0":{"d":"142,-347v0,206,20,281,98,281v78,0,98,-75,98,-281v0,-206,-20,-281,-98,-281v-78,0,-98,75,-98,281xm28,-347v0,-275,76,-361,212,-361v136,0,212,86,212,361v0,275,-76,361,-212,361v-136,0,-212,-86,-212,-361"},"1":{"d":"321,0r-114,0r0,-514r-147,0r0,-74v80,1,167,-14,178,-120r83,0r0,708"},"2":{"d":"447,-96r0,96r-414,0v0,-308,297,-301,297,-521v0,-58,-25,-107,-88,-107v-85,0,-99,76,-99,148r-108,0v0,-141,58,-228,209,-228v145,0,200,86,200,189v0,235,-230,250,-284,423r287,0"},"3":{"d":"31,-197r108,0v0,62,20,131,97,131v71,0,99,-57,99,-127v0,-105,-50,-141,-159,-132r0,-80v98,11,143,-36,143,-121v0,-51,-23,-102,-82,-102v-70,0,-90,60,-90,124r-108,0v0,-132,69,-204,204,-204v85,0,190,39,190,181v0,73,-43,144,-113,155r0,3v73,6,129,65,129,164v0,140,-70,219,-216,219v-128,0,-202,-63,-202,-211"},"4":{"d":"21,-159r0,-98r245,-451r116,0r0,458r77,0r0,91r-77,0r0,159r-108,0r0,-159r-253,0xm274,-250r0,-292r-2,0r-159,292r161,0"},"5":{"d":"230,14v-131,0,-203,-70,-198,-205r108,0v-4,67,22,119,93,119v79,0,101,-78,101,-161v0,-82,-22,-151,-95,-151v-48,0,-83,26,-93,65r-101,-4r35,-371r341,0r0,91r-256,0r-23,186r2,2v30,-34,73,-55,119,-55v148,0,185,125,185,234v0,142,-65,250,-218,250"},"6":{"d":"442,-536r-114,0v0,-41,-19,-92,-76,-92v-107,0,-113,141,-113,244r3,2v28,-51,76,-75,138,-75v97,0,175,70,175,211v0,163,-67,260,-217,260v-179,0,-213,-136,-213,-339v0,-212,39,-383,226,-383v124,0,191,56,191,172xm149,-213v0,82,31,147,98,147v70,0,94,-69,94,-152v0,-98,-29,-153,-94,-153v-83,0,-98,73,-98,158"},"7":{"d":"30,-592r0,-102r420,0r0,90v-111,145,-207,391,-223,604r-120,0v16,-211,120,-447,233,-592r-310,0"},"8":{"d":"151,-522v0,57,18,108,89,108v71,0,89,-51,89,-108v0,-56,-18,-106,-89,-106v-71,0,-89,50,-89,106xm140,-200v0,74,20,134,100,134v80,0,100,-60,100,-134v0,-75,-20,-134,-100,-134v-80,0,-100,59,-100,134xm240,14v-145,0,-214,-73,-214,-212v0,-108,55,-160,121,-179v-61,-21,-98,-68,-98,-153v0,-110,73,-178,191,-178v118,0,191,68,191,178v0,87,-41,129,-98,155v70,14,121,72,121,177v0,139,-69,212,-214,212"},"9":{"d":"38,-158r114,0v0,41,19,92,76,92v107,0,113,-141,113,-244r-3,-2v-28,51,-76,75,-138,75v-97,0,-175,-70,-175,-211v0,-163,67,-260,217,-260v179,0,213,136,213,339v0,212,-39,383,-226,383v-124,0,-191,-56,-191,-172xm331,-481v0,-82,-31,-147,-98,-147v-70,0,-94,69,-94,152v0,98,29,153,94,153v83,0,98,-73,98,-158"},":":{"d":"63,-380r0,-132r114,0r0,132r-114,0xm63,0r0,-132r114,0r0,132r-114,0","w":240,"k":{" ":37}},";":{"d":"63,0r0,-132r114,0v-1,139,21,264,-114,286r0,-58v35,-9,53,-45,50,-96r-50,0xm63,-380r0,-132r114,0r0,132r-114,0","w":240},"<":{"d":"47,-216r0,-74r506,-226r0,86r-404,177r404,177r0,86","w":600},"=":{"d":"47,-314r0,-86r506,0r0,86r-506,0xm47,-106r0,-86r506,0r0,86r-506,0","w":600},">":{"d":"553,-290r0,74r-506,226r0,-86r404,-177r-404,-177r0,-86","w":600},"?":{"d":"169,-192r0,-60v0,-144,145,-140,145,-284v0,-56,-19,-106,-81,-106v-68,0,-90,57,-90,141r-108,0v0,-126,53,-227,197,-227v124,0,196,69,196,192v0,170,-157,198,-157,302r0,42r-102,0xm162,0r0,-114r114,0r0,114r-114,0","w":463},"@":{"d":"490,-397v0,-68,-31,-96,-81,-96v-83,0,-141,101,-141,181v0,61,29,101,93,101v69,0,129,-113,129,-186xm539,-549r71,0r-75,270v-6,31,-31,71,22,71v56,0,123,-91,123,-202v0,-142,-125,-238,-264,-238v-174,0,-296,138,-296,294v0,175,135,288,288,288v106,0,192,-34,247,-88r84,0v-53,97,-168,168,-331,168v-212,0,-379,-138,-379,-372v0,-208,155,-370,387,-370v202,0,355,124,355,305v0,200,-157,286,-254,286v-53,0,-67,-29,-72,-59v-28,31,-71,59,-124,59v-77,0,-139,-63,-139,-162v0,-142,107,-268,223,-268v49,0,89,24,115,77","w":800},"A":{"d":"177,-266r169,0r-82,-352r-2,0xm-9,0r203,-714r146,0r188,714r-119,0r-44,-175r-209,0r-46,175r-119,0","w":519,"k":{"y":18,"w":18,"v":18,"Y":55,"W":30,"V":30,"T":55}},"B":{"d":"173,-413r90,0v69,0,105,-46,105,-113v-1,-118,-92,-101,-195,-102r0,215xm173,-86r113,0v68,0,105,-44,105,-126v0,-77,-46,-121,-112,-121r-106,0r0,247xm59,0r0,-714r231,0v106,0,192,47,192,173v0,89,-38,137,-105,164v78,14,128,61,128,182v0,119,-86,195,-220,195r-226,0","w":537,"k":{".":30,",":30}},"C":{"d":"384,-256r114,0v3,142,-46,270,-220,270v-180,0,-236,-116,-236,-371v0,-255,56,-371,237,-371v209,0,215,146,215,237r-114,0v2,-75,-16,-152,-102,-151v-84,0,-122,52,-122,282v0,230,38,288,122,288v99,0,107,-109,106,-184","w":519,"k":{".":18,",":18}},"D":{"d":"173,-628r0,542v184,9,227,-8,227,-271v0,-201,-34,-271,-133,-271r-94,0xm59,0r0,-714r203,0v224,0,252,146,252,357v0,211,-28,357,-252,357r-203,0","w":556,"k":{"Y":18,".":40,",":40}},"E":{"d":"59,0r0,-714r386,0r0,96r-272,0r0,198r256,0r0,96r-256,0r0,228r280,0r0,96r-394,0","w":481},"F":{"d":"59,0r0,-714r381,0r0,96r-267,0r0,198r251,0r0,96r-251,0r0,324r-114,0","w":463,"k":{"A":37,".":129,",":129}},"G":{"d":"412,0v-2,-26,4,-61,-2,-83v-31,66,-72,97,-156,97v-156,0,-212,-116,-212,-371v0,-255,72,-371,237,-371v185,0,211,136,209,219r-108,0v2,-68,-15,-133,-100,-133v-81,0,-124,54,-124,282v0,230,38,288,115,288v87,1,119,-62,119,-218r-120,0r0,-86r228,0r0,376r-86,0","w":537,"k":{".":18,",":18}},"H":{"d":"59,0r0,-714r114,0r0,286r210,0r0,-286r114,0r0,714r-114,0r0,-332r-210,0r0,332r-114,0","w":556},"I":{"d":"54,0r0,-714r114,0r0,714r-114,0","w":222},"J":{"d":"16,-215r108,0v-1,74,-1,143,76,143v76,0,76,-70,76,-142r0,-500r114,0r0,517v0,157,-78,214,-192,211v-165,-5,-186,-99,-182,-229","w":444,"k":{".":40,",":40}},"K":{"d":"59,0r0,-714r114,0r0,311r2,0r216,-311r125,0r-206,301r228,413r-129,0r-173,-321r-63,90r0,231r-114,0","w":519},"L":{"d":"46,0r0,-714r114,0r0,618r276,0r0,96r-390,0","w":444,"k":{"y":37,"Y":92,"W":74,"V":74,"T":92}},"M":{"d":"59,0r0,-714r178,0r126,529r2,0r124,-529r174,0r0,714r-108,0r0,-594r-2,0r-144,594r-96,0r-144,-594r-2,0r0,594r-108,0","w":722},"N":{"d":"59,0r0,-714r139,0r207,532r2,0r0,-532r108,0r0,714r-139,0r-207,-546r-2,0r0,546r-108,0","w":574,"k":{".":18,",":18}},"O":{"d":"278,14v-164,0,-236,-116,-236,-371v0,-255,72,-371,236,-371v164,0,236,116,236,371v0,255,-72,371,-236,371xm278,-72v68,0,122,-42,122,-288v0,-240,-54,-282,-122,-282v-68,0,-122,42,-122,282v0,246,54,288,122,288","w":556,"k":{"Y":40,"X":18,"V":18,"T":30,"A":18,".":40,",":40}},"P":{"d":"173,-628r0,247v112,4,195,3,195,-123v0,-77,-31,-124,-122,-124r-73,0xm59,0r0,-714r226,0v137,0,197,86,197,208v0,128,-75,211,-209,211r-100,0r0,295r-114,0","w":500,"k":{"A":37,".":150,",":150}},"Q":{"d":"463,64r-73,-74v-29,17,-67,24,-112,24v-164,0,-236,-116,-236,-371v0,-255,72,-371,236,-371v164,0,236,116,236,371v0,132,-24,231,-56,283r73,77xm265,-132r65,-65r47,47v16,-43,23,-110,23,-210v0,-240,-54,-282,-122,-282v-68,0,-122,42,-122,282v0,246,54,288,122,288v15,0,28,-2,41,-7","w":556,"k":{".":18,",":18}},"R":{"d":"59,0r0,-714r252,0v100,0,181,50,181,184v0,95,-45,160,-119,177v71,7,107,46,112,146v4,73,-11,184,38,207r-129,0v-29,-44,-21,-124,-24,-198v-3,-78,-26,-112,-104,-112r-93,0r0,310r-114,0xm173,-396r91,0v73,0,114,-44,114,-116v0,-76,-33,-116,-108,-116r-97,0r0,232","w":537,"k":{"Y":18,"T":18}},"S":{"d":"33,-221r114,0v-4,95,32,149,117,149v72,0,108,-51,108,-104v0,-111,-99,-123,-180,-154v-104,-39,-149,-94,-149,-196v0,-130,88,-202,222,-202v191,0,203,111,202,204r-114,0v3,-74,-23,-118,-100,-118v-49,0,-96,27,-96,103v0,88,106,122,184,149v101,36,145,91,145,189v0,152,-92,215,-236,215v-184,0,-220,-117,-217,-235","w":519,"k":{".":30,",":30}},"T":{"d":"176,0r0,-618r-170,0r0,-96r451,0r0,96r-167,0r0,618r-114,0","w":463,"k":{"y":74,"w":74,"u":74,"r":74,"o":74,"i":18,"e":74,"a":74,"O":30,"A":55,";":74,":":74,".":92,"-":74,",":92}},"U":{"d":"50,-714r114,0r0,512v0,90,36,130,105,130v68,0,104,-40,104,-130r0,-512r114,0r0,503v0,165,-82,225,-218,225v-137,0,-219,-60,-219,-225r0,-503","w":537,"k":{".":30,",":30}},"V":{"d":"162,0r-168,-714r121,0r121,570r2,0r128,-570r121,0r-180,714r-145,0","w":481,"k":{"u":18,"o":18,"e":18,"a":18,"A":37,";":18,":":18,".":92,"-":18,",":92}},"W":{"d":"144,0r-138,-714r115,0r94,555r2,0r94,-555r120,0r96,558r2,0r93,-558r113,0r-142,714r-132,0r-92,-538r-2,0r-91,538r-132,0","w":741,"k":{"y":18,"o":18,"e":18,"a":18,"A":30,".":74,"-":18,",":74}},"X":{"d":"0,0r188,-363r-172,-351r126,0r114,237r112,-237r123,0r-173,351r182,363r-126,0r-124,-258r-127,258r-123,0","w":500},"Y":{"d":"180,0r0,-279r-184,-435r127,0r120,308r123,-308r119,0r-191,435r0,279r-114,0","w":481,"k":{"u":50,"o":55,"i":18,"e":55,"a":55,"S":18,"O":40,"A":55,";":37,":":37,".":111,"-":74,",":111}},"Z":{"d":"18,0r0,-90r299,-528r-281,0r0,-96r406,0r0,96r-299,522r302,0r0,96r-427,0","w":463},"[":{"d":"77,184r0,-898r203,0r0,80r-101,0r0,738r101,0r0,80r-203,0","w":278},"\\":{"d":"217,14r-227,-742r89,0r227,742r-89,0","w":296},"]":{"d":"-2,184r0,-80r101,0r0,-738r-101,0r0,-80r203,0r0,898r-203,0","w":278},"^":{"d":"457,-280r-157,-328r-157,328r-86,0r204,-414r76,0r206,414r-86,0","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"a":{"d":"405,-420r0,308v-1,28,21,46,46,35r0,70v-52,26,-144,14,-144,-58r-2,0v-29,53,-71,79,-134,79v-86,0,-140,-48,-140,-151v0,-161,100,-158,209,-192v39,-12,63,-22,63,-69v0,-49,-17,-80,-74,-80v-72,0,-82,51,-82,103r-102,0v0,-114,47,-177,189,-177v95,0,171,37,171,132xm303,-194r0,-90v-28,22,-88,36,-120,50v-63,27,-62,168,23,168v65,0,97,-49,97,-128","w":463,"k":{"v":6}},"b":{"d":"52,0r0,-714r108,0r0,239r2,0v20,-48,64,-77,122,-77v82,0,166,37,166,276v0,185,-50,290,-176,290v-80,0,-101,-48,-120,-80r0,66r-102,0xm154,-263v0,115,17,191,91,191v75,0,91,-77,91,-199v0,-145,-22,-195,-84,-195v-83,0,-98,74,-98,203","w":481,"k":{"y":12,".":37,",":37}},"c":{"d":"313,-196r102,0v-7,129,-51,210,-184,210v-156,0,-200,-116,-200,-283v0,-167,44,-283,200,-283v161,0,185,126,185,193r-108,0v0,-50,-14,-113,-77,-113v-78,0,-92,84,-92,203v0,119,14,203,92,203v60,0,82,-49,82,-130","w":444,"k":{"y":18,"k":6,"h":6,".":37,",":37}},"d":{"d":"327,0v-2,-21,4,-49,-2,-66v-14,35,-41,80,-118,80v-126,0,-176,-105,-176,-290v0,-239,84,-276,166,-276v60,0,100,33,124,77r0,-239r108,0r0,714r-102,0xm327,-263v0,-129,-15,-203,-98,-203v-62,0,-84,50,-84,195v0,122,16,199,91,199v74,0,91,-76,91,-191","w":481,"k":{"y":6}},"e":{"d":"426,-255r-281,0v-1,87,-1,195,90,195v77,0,86,-88,86,-120r102,0v0,119,-72,194,-189,194v-88,0,-197,-26,-197,-275v0,-141,30,-291,199,-291v171,0,196,123,190,297xm145,-329r173,0v4,-80,-12,-150,-83,-149v-72,1,-92,73,-90,149","w":463,"k":{"x":6,".":37,",":37}},"f":{"d":"85,0r0,-458r-75,0r0,-80r75,0r0,-50v-5,-126,85,-143,196,-131r0,83v-50,-3,-92,3,-88,51r0,47r88,0r0,80r-88,0r0,458r-108,0","w":278,"k":{".":37,",":37}},"g":{"d":"58,46r102,0v0,33,30,64,78,64v56,0,91,-39,91,-101v0,-28,4,-63,-2,-87v-20,47,-70,74,-122,74v-126,0,-161,-124,-161,-271v0,-118,18,-277,171,-277v66,0,105,44,120,80r0,-66r102,0r0,512v0,131,-56,210,-201,210v-160,0,-178,-94,-178,-138xm152,-286v0,92,4,196,84,196v84,0,93,-106,93,-191v0,-88,-11,-185,-86,-185v-78,0,-91,80,-91,180","w":481,"k":{"r":-6,".":18,",":18}},"h":{"d":"52,0r0,-714r108,0r0,234r3,2v64,-108,266,-112,266,72r0,406r-108,0r0,-369v0,-70,-21,-97,-75,-97v-44,0,-86,35,-86,105r0,361r-108,0","w":481,"k":{"y":6}},"i":{"d":"57,0r0,-538r108,0r0,538r-108,0xm57,-614r0,-108r108,0r0,108r-108,0","w":222},"j":{"d":"57,-538r108,0r0,573v3,131,-72,159,-189,146r0,-83v57,2,81,-4,81,-73r0,-563xm57,-722r108,0r0,108r-108,0r0,-108","w":222},"k":{"d":"52,0r0,-714r108,0r0,401r2,0r163,-225r125,-1r-162,208r183,331r-118,0r-132,-245r-61,74r0,171r-108,0","w":463,"k":{"y":6,"o":6,"e":6}},"l":{"d":"57,0r0,-714r108,0r0,714r-108,0","w":222},"m":{"d":"57,0r0,-538r102,0r0,63r3,0v27,-48,78,-77,129,-77v77,0,109,37,125,82v54,-116,267,-122,267,61r0,409r-108,0r0,-369v0,-70,-21,-97,-65,-97v-44,0,-86,35,-86,105r0,361r-108,0r0,-369v0,-70,-21,-97,-66,-97v-43,0,-85,35,-85,105r0,361r-108,0","w":740},"n":{"d":"52,0r0,-538r102,0r0,63r3,0v27,-48,78,-77,138,-77v82,0,134,37,134,146r0,406r-108,0r0,-369v0,-70,-21,-97,-75,-97v-44,0,-86,35,-86,105r0,361r-108,0","w":481},"o":{"d":"31,-269v0,-167,44,-283,200,-283v157,0,201,116,201,283v0,167,-51,283,-201,283v-149,0,-200,-116,-200,-283xm139,-269v0,137,14,203,92,203v79,0,93,-66,93,-203v0,-119,-14,-203,-93,-203v-78,0,-92,84,-92,203","w":463,"k":{"y":6,"w":6,"v":6,".":18,",":18}},"p":{"d":"52,176r0,-714r102,0v2,21,-4,49,2,66v22,-48,62,-80,121,-80v123,0,173,105,173,290v0,226,-92,276,-166,276v-60,0,-100,-33,-124,-77r0,239r-108,0xm154,-275v0,129,16,203,92,203v62,0,90,-46,90,-195v0,-122,-16,-199,-91,-199v-74,0,-91,76,-91,191","w":481,"k":{"y":6,".":18,",":18}},"q":{"d":"321,176r0,-239r-2,0v-20,48,-64,77,-123,77v-84,0,-165,-58,-165,-276v0,-185,50,-290,176,-290v80,0,101,48,120,80r0,-66r102,0r0,714r-108,0xm327,-275v0,-115,-17,-191,-91,-191v-75,0,-91,77,-91,199v0,145,29,195,84,195v83,0,98,-74,98,-203","w":481},"r":{"d":"52,0r0,-538r108,0v2,27,-4,61,2,84v27,-67,75,-110,151,-94r0,110v-76,-16,-153,-5,-153,116r0,322r-108,0","w":315,"k":{"y":-18,"v":-18,"q":12,"n":-10,"m":-10,"g":6,"e":6,"d":6,"c":6,"a":6,".":92,"-":55,",":92}},"s":{"d":"386,-381r-102,0v2,-53,-10,-97,-71,-97v-43,0,-77,20,-77,70v0,65,90,83,145,103v79,29,117,70,117,155v0,115,-84,164,-193,164v-144,-1,-181,-68,-177,-187r96,0v-3,70,16,113,84,113v109,0,112,-129,29,-158r-88,-31v-81,-28,-115,-69,-115,-155v0,-101,73,-148,184,-148v148,0,171,79,168,171","w":426},"t":{"d":"4,-458r0,-80r74,0r0,-153r108,0r0,153r88,0r0,80r-88,0r0,321v-7,60,42,62,88,54r0,80v-23,6,-53,9,-87,9v-73,0,-109,-20,-109,-130r0,-334r-74,0","w":278},"u":{"d":"327,0r0,-63r-3,0v-27,48,-78,77,-138,77v-80,0,-134,-37,-134,-176r0,-376r108,0r0,386v0,60,27,80,73,80v46,0,88,-30,88,-90r0,-376r108,0r0,538r-102,0","w":481},"v":{"d":"151,0r-144,-538r116,0r94,424r2,0r85,-424r115,0r-142,538r-126,0","w":426,"k":{"a":12,".":74,",":74}},"w":{"d":"137,0r-122,-538r112,0r75,424r2,0r80,-424r122,0r80,424r2,0r74,-424r108,0r-123,538r-121,0r-84,-418r-2,0r-77,418r-126,0","w":685,"k":{"o":6,"a":12,".":55,",":55}},"x":{"d":"3,0r147,-279r-139,-259r118,0r84,178r88,-178r116,0r-140,259r146,279r-117,0r-94,-199r-94,199r-115,0","w":426},"y":{"d":"8,-538r116,0r93,404r2,0r86,-404r113,0r-148,558v-45,165,-93,172,-231,160r0,-86v47,8,95,7,108,-38r14,-44","w":426,"k":{"e":6,".":74,",":74}},"z":{"d":"25,0r0,-84r235,-363r-221,0r0,-91r343,0r0,89r-226,358r226,0r0,91r-357,0","w":407},"{":{"d":"7,-232r0,-66v43,-2,81,-48,81,-102r0,-183v6,-116,73,-141,183,-131r0,62v-57,-6,-81,13,-81,69r0,183v1,97,-70,125,-92,136v25,6,92,40,92,134r0,183v-3,56,23,76,81,69r0,62v-110,9,-183,-14,-183,-131r0,-183v0,-54,-38,-100,-81,-102","w":278},"|":{"d":"68,14r0,-742r86,0r0,742r-86,0","w":222},"}":{"d":"271,-298r0,66v-43,2,-81,48,-81,102r0,183v-6,116,-73,141,-183,131r0,-62v57,6,81,-13,81,-69r0,-183v-1,-97,70,-125,92,-136v-25,-6,-92,-40,-92,-134r0,-183v3,-56,-23,-76,-81,-69r0,-62v110,-9,183,14,183,131r0,183v0,54,38,100,81,102","w":278},"~":{"d":"406,-174v-68,0,-155,-72,-213,-72v-31,0,-59,25,-88,77r-36,-76v29,-57,77,-87,125,-87v68,0,155,72,213,72v31,0,59,-25,88,-77r36,76v-31,53,-77,87,-125,87","w":600},"'":{"d":"77,-428r0,-286r86,0r0,286r-86,0","w":240},"`":{"d":"92,-608r-106,-144r120,0r60,144r-74,0","w":222},"\u00a0":{"w":240,"k":{"Y":37,"W":37,"V":37,"T":37,"A":37}}}});;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -323 360 76.2176","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100,"k":{"Y":7,"T":7,"A":20}},"\u00a0":{"w":100},"!":{"d":"41,-64r-10,-137r0,-57r39,0v1,69,-5,130,-9,194r-20,0xm32,0r0,-36r37,0r0,36r-37,0","w":100},"\"":{"d":"25,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-8,92r-20,0xm83,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-9,92r-19,0","w":127},"#":{"d":"18,4r15,-74r-29,0r0,-27r35,0r13,-63r-48,0r0,-27r53,0r15,-75r27,0r-16,75r56,0r15,-75r27,0r-16,75r31,0r0,27r-36,0r-13,63r49,0r0,27r-54,0r-16,74r-26,0r15,-74r-55,0r-16,74r-26,0xm65,-97r55,0r13,-63r-55,0"},"$":{"d":"183,-73v2,43,-32,78,-75,78r0,32r-18,0r0,-32v-49,-4,-73,-29,-77,-77r32,-6v3,33,19,53,45,57r0,-101v-35,-7,-74,-27,-72,-72v1,-41,27,-69,72,-72r0,-15r18,0r0,15v40,4,64,26,69,63r-33,5v-3,-24,-15,-37,-36,-42r0,92v48,10,72,26,75,75xm90,-240v-32,2,-52,44,-31,70v6,7,17,14,31,18r0,-88xm108,-21v34,-1,56,-49,34,-78v-6,-7,-17,-13,-34,-19r0,97"},"%":{"d":"75,-126v-37,0,-55,-29,-54,-70v0,-34,18,-66,54,-66v35,0,56,29,56,68v0,39,-22,67,-56,68xm104,-195v0,-27,-7,-45,-28,-45v-22,0,-27,18,-27,47v0,28,6,45,27,45v22,0,28,-18,28,-47xm76,9r141,-271r26,0r-141,271r-26,0xm242,9v-36,0,-54,-29,-54,-69v0,-37,18,-67,54,-67v34,1,56,29,56,68v0,39,-21,68,-56,68xm270,-60v0,-27,-6,-45,-27,-45v-22,0,-28,19,-28,48v0,26,7,45,28,45v22,0,27,-19,27,-48","w":320},"&":{"d":"112,-262v34,0,60,24,60,55v0,24,-17,46,-49,63r46,59v5,-10,10,-22,13,-36r32,7v-6,22,-12,40,-22,55v12,16,25,29,40,40r-21,25v-13,-8,-26,-20,-40,-36v-18,20,-40,33,-74,34v-45,2,-83,-33,-82,-75v1,-40,29,-60,62,-77v-18,-21,-27,-30,-29,-57v-2,-32,30,-57,64,-57xm110,-236v-30,0,-39,38,-17,55r14,16v21,-13,29,-18,32,-41v1,-17,-13,-30,-29,-30xm50,-73v-2,35,40,65,77,41v10,-6,18,-14,24,-23r-58,-72v-26,16,-41,26,-43,54","w":240},"'":{"d":"24,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-9,92r-19,0","w":68},"(":{"d":"107,-262v-66,97,-72,231,0,338r-23,0v-31,-40,-62,-101,-62,-169v1,-74,27,-121,62,-169r23,0","w":119},")":{"d":"107,-93v1,68,-32,129,-63,169r-22,0v71,-107,66,-242,0,-338r22,0v35,49,62,96,63,169","w":119},"*":{"d":"11,-210r8,-25v19,7,33,12,41,17v-2,-21,-4,-36,-4,-44r26,0v0,12,-2,27,-4,44v12,-6,25,-12,41,-17r8,25v-15,5,-29,7,-43,9v7,6,17,18,30,34r-21,15v-7,-9,-15,-22,-24,-38v-9,17,-16,29,-23,38r-21,-15v14,-17,23,-29,29,-34v-15,-3,-29,-5,-43,-9","w":140},"+":{"d":"90,-42r0,-70r-70,0r0,-30r70,0r0,-70r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0","w":210},",":{"d":"32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"-":{"d":"11,-77r0,-32r98,0r0,32r-98,0","w":119},"\u00ad":{"d":"11,-77r0,-32r98,0r0,32r-98,0","w":119},".":{"d":"33,0r0,-36r36,0r0,36r-36,0","w":100},"\/":{"d":"0,4r75,-266r25,0r-75,266r-25,0","w":100},"0":{"d":"99,4v-67,0,-84,-54,-84,-131v0,-75,16,-132,84,-132v67,0,84,56,84,132v0,74,-16,131,-84,131xm99,-233v-46,6,-52,44,-52,106v0,65,8,98,52,105v44,-6,51,-40,51,-105v0,-65,-6,-99,-51,-106"},"1":{"d":"39,-194v32,-13,61,-39,75,-65r20,0r0,259r-32,0r0,-202v-14,14,-43,31,-63,39r0,-31","k":{"1":27}},"2":{"d":"181,-187v0,78,-96,103,-126,157r126,0r0,30r-170,0v6,-90,131,-106,137,-188v2,-26,-21,-46,-48,-45v-31,0,-51,20,-51,52r-32,-3v3,-47,35,-75,84,-75v46,0,80,30,80,72"},"3":{"d":"136,-140v88,26,42,150,-39,145v-45,-3,-78,-32,-82,-73r32,-4v6,31,18,50,50,50v30,1,54,-23,53,-53v0,-37,-34,-60,-72,-47r3,-28v28,4,58,-12,58,-42v0,-23,-19,-41,-42,-41v-28,0,-43,20,-47,47r-32,-6v7,-38,36,-64,78,-67v71,-6,103,95,40,119"},"4":{"d":"116,0r0,-62r-111,0r0,-29r117,-167r26,0r0,167r35,0r0,29r-35,0r0,62r-32,0xm116,-91r0,-116r-80,116r80,0"},"5":{"d":"186,-87v0,102,-163,129,-171,19r33,-2v3,29,21,48,50,48v31,0,54,-28,54,-63v0,-60,-78,-75,-102,-33r-29,-4r25,-132r128,0r0,30r-103,0r-14,69v54,-41,129,2,129,68"},"6":{"d":"14,-121v0,-103,66,-171,142,-121v14,9,20,27,23,47r-31,3v-4,-35,-42,-53,-70,-32v-23,18,-33,45,-33,91v13,-20,34,-34,63,-34v43,-1,77,38,76,83v-2,50,-31,88,-81,88v-63,0,-89,-47,-89,-125xm101,-139v-29,0,-52,24,-51,56v1,33,19,61,52,61v29,0,49,-26,49,-60v0,-33,-19,-57,-50,-57"},"7":{"d":"53,0v4,-86,46,-174,90,-224r-126,0r0,-30r167,0r0,24v-47,54,-92,133,-98,230r-33,0"},"8":{"d":"15,-75v1,-36,19,-57,49,-65v-71,-23,-35,-126,35,-119v70,-9,105,99,37,119v29,9,47,30,48,66v1,46,-38,78,-85,78v-48,0,-85,-33,-84,-79xm99,-233v-23,0,-42,18,-42,40v0,24,18,41,43,41v23,0,41,-18,41,-40v0,-23,-19,-41,-42,-41xm99,-126v-29,0,-53,23,-52,52v2,30,22,52,53,52v29,1,52,-22,52,-51v0,-30,-23,-53,-53,-53"},"9":{"d":"184,-134v0,81,-20,135,-92,138v-42,2,-68,-26,-72,-64r30,-2v5,25,16,40,43,40v49,0,58,-49,60,-99v-11,18,-35,34,-62,34v-43,0,-76,-38,-76,-85v0,-49,34,-90,81,-87v64,4,88,47,88,125xm99,-115v31,-1,50,-24,50,-58v0,-33,-19,-60,-49,-60v-30,1,-53,29,-53,62v0,31,22,56,52,56"},":":{"d":"33,-151r0,-36r36,0r0,36r-36,0xm33,0r0,-36r36,0r0,36r-36,0","w":100},";":{"d":"32,-151r0,-36r36,0r0,36r-36,0xm32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"\u037e":{"d":"32,-151r0,-36r36,0r0,36r-36,0xm32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"<":{"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":"182,-192v0,61,-74,60,-69,129r-30,0v-10,-71,61,-75,67,-127v3,-24,-25,-47,-50,-46v-31,2,-47,20,-52,52r-32,-4v6,-45,33,-74,83,-74v46,0,83,28,83,70xm81,0r0,-36r36,0r0,36r-36,0"},"@":{"d":"238,1v-22,0,-33,-7,-34,-30v-13,16,-30,30,-54,30v-108,0,-62,-192,28,-192v25,0,42,14,53,33r6,-27r31,0r-30,145v0,7,5,11,12,11v38,-8,68,-51,68,-97v0,-70,-56,-111,-126,-111v-89,0,-145,64,-146,152v-1,91,61,134,151,135v57,0,101,-22,124,-53r31,0v-26,46,-78,80,-155,79v-107,-1,-177,-53,-177,-158v0,-107,64,-180,174,-180v88,0,146,52,150,137v3,58,-51,127,-106,126xm180,-164v-61,-1,-88,129,-23,139v41,-6,61,-45,64,-89v1,-28,-16,-50,-41,-50","w":365},"A":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240,"k":{"\u2019":27,"y":7,"w":7,"v":7,"Y":27,"W":13,"V":27,"T":27," ":20}},"B":{"d":"221,-75v1,89,-104,75,-195,75r0,-258v82,0,182,-14,182,66v0,27,-15,46,-36,55v29,8,48,29,49,62xm175,-188v0,-52,-64,-37,-115,-39r0,78v50,-2,115,12,115,-39xm186,-75v0,-55,-70,-43,-126,-44r0,89v56,-2,126,12,126,-45","w":240},"C":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259},"D":{"d":"241,-130v0,82,-35,130,-120,130r-93,0r0,-258r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-21,-99,-90,-96r-54,0r0,197r55,0v68,2,89,-37,89,-101","w":259},"E":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"F":{"d":"30,0r0,-258r173,0r0,31r-139,0r0,80r121,0r0,30r-121,0r0,117r-34,0","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"H":{"d":"29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0","w":259},"I":{"d":"34,0r0,-258r34,0r0,258r-34,0","w":100},"J":{"d":"152,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":180},"K":{"d":"26,0r0,-258r34,0r0,128r128,-128r47,0r-108,105r112,153r-45,0r-91,-130r-43,41r0,89r-34,0","w":240},"L":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0","k":{"\u2019":20,"y":13,"Y":27,"W":27,"V":27,"T":27," ":13}},"M":{"d":"27,0r0,-258r51,0r73,221r76,-221r46,0r0,258r-33,0r0,-216r-75,216r-31,0r-74,-219r0,219r-33,0","w":299},"N":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"O":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"P":{"d":"224,-183v0,78,-78,83,-162,78r0,105r-34,0r0,-258v90,1,196,-17,196,75xm189,-182v0,-59,-69,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240,"k":{"A":27,".":46,",":46," ":7}},"Q":{"d":"262,-129v0,45,-14,77,-39,101v16,11,31,19,44,24r-10,24v-19,-7,-38,-18,-56,-32v-89,47,-191,-16,-186,-117v4,-77,45,-133,124,-133v77,0,123,53,123,133xm51,-129v0,75,53,122,122,97v-11,-7,-21,-11,-33,-14r8,-25v20,6,36,13,49,24v55,-50,34,-192,-58,-186v-55,3,-88,41,-88,104","w":280},"R":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43","w":259,"k":{"Y":7,"W":7,"V":7,"T":7}},"S":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57","w":240},"T":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0","w":219,"k":{"y":20,"w":20,"u":13,"s":40,"r":13,"o":40,"i":13,"e":40,"c":40,"a":40,"O":7,"A":27,";":40,":":40,".":40,"-":20,",":40," ":7}},"U":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"V":{"d":"101,0r-99,-258r36,0r81,230r83,-230r35,0r-101,258r-35,0","w":240,"k":{"y":13,"u":13,"r":13,"o":20,"i":7,"e":20,"a":27,"A":27,";":13,":":13,".":33,"-":20,",":33}},"W":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0","w":339,"k":{"y":3,"u":7,"r":7,"o":7,"e":7,"a":13,"A":13,";":7,":":7,".":20,"-":7,",":20}},"X":{"d":"2,0r99,-134r-88,-124r41,0r67,98r73,-98r37,0r-91,122r98,136r-42,0r-76,-109r-77,109r-41,0","w":240},"Y":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0","w":240,"k":{"v":20,"u":20,"q":33,"p":27,"o":33,"i":13,"e":33,"a":27,"A":27,";":23,":":20,".":46,"-":33,",":46," ":7}},"Z":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0","w":219},"[":{"d":"24,72r0,-330r70,0r0,26r-38,0r0,277r38,0r0,27r-70,0","w":100},"\\":{"d":"75,4r-75,-266r25,0r75,266r-25,0","w":100},"]":{"d":"77,72r-70,0r0,-27r38,0r0,-277r-38,0r0,-26r70,0r0,330","w":100},"^":{"d":"42,-121r-33,0r63,-141r25,0r62,141r-31,0r-44,-105","w":168},"_":{"d":"-5,72r0,-23r209,0r0,23r-209,0"},"`":{"d":"82,-210r-26,0r-40,-49r42,0","w":119},"a":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"b":{"d":"185,-96v10,81,-84,134,-132,73r0,23r-29,0r0,-258r31,0r0,92v47,-57,140,-8,130,70xm104,-165v-33,0,-51,31,-51,70v0,44,15,73,49,73v33,0,51,-31,51,-72v0,-41,-16,-71,-49,-71"},"c":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180},"d":{"d":"91,-191v24,0,41,12,52,26r0,-93r31,0r0,258r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v32,0,49,-29,49,-69v0,-44,-16,-74,-51,-74"},"e":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"f":{"d":"108,-231v-33,-9,-51,6,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-7,-60,24,-85,81,-72","w":100,"k":{"\u2019":-7,"f":7}},"g":{"d":"176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69"},"h":{"d":"105,-164v-69,0,-47,96,-50,164r-31,0r0,-258r31,0r0,93v38,-46,121,-31,121,47r0,118r-32,0v-8,-60,25,-164,-39,-164"},"i":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0","w":79},"j":{"d":"24,-221r0,-37r31,0r0,37r-31,0xm55,10v4,55,-26,74,-72,62r6,-26v28,7,35,-3,35,-37r0,-196r31,0r0,197","w":79},"k":{"d":"24,0r0,-258r32,0r0,147r74,-76r41,0r-71,70r79,117r-39,0r-62,-95r-22,21r0,74r-32,0","w":180},"l":{"d":"23,0r0,-258r32,0r0,258r-32,0","w":79},"m":{"d":"102,-163v-67,0,-42,97,-47,163r-31,0r0,-187r28,0r0,27v15,-38,98,-44,109,2v28,-52,116,-43,116,30r0,128r-32,0r0,-118v1,-31,-8,-44,-33,-45v-67,-2,-41,99,-46,163r-31,0r0,-121v-1,-26,-7,-42,-33,-42","w":299},"n":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163"},"o":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"p":{"d":"186,-95v8,78,-84,130,-131,76r0,91r-31,0r0,-259r29,0r0,25v12,-17,27,-29,54,-29v54,1,74,43,79,96xm104,-166v-32,0,-52,34,-52,74v0,41,17,70,50,70v34,0,51,-31,51,-73v0,-41,-16,-71,-49,-71"},"q":{"d":"13,-95v-11,-82,88,-129,133,-67r0,-25r28,0r0,259r-31,0r0,-92v-45,55,-141,3,-130,-75xm94,-166v-32,0,-49,31,-49,72v0,41,18,72,52,72v31,0,49,-30,49,-69v0,-42,-18,-75,-52,-75"},"r":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23","w":119,"k":{"\u2019":-13,".":20,",":20}},"s":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42","w":180},"t":{"d":"61,-53v-2,25,10,28,32,25r4,28v-45,6,-67,0,-67,-55r0,-107r-24,0r0,-25r24,0r0,-46r31,-19r0,65r32,0r0,25r-32,0r0,109","w":100},"u":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"v":{"d":"76,0r-71,-187r33,0r52,150r53,-150r33,0r-71,187r-29,0","w":180,"k":{".":27,",":27}},"w":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0","w":259,"k":{".":20,",":20}},"x":{"d":"3,0r68,-97r-63,-90r39,0r42,65v15,-24,30,-42,46,-65r37,0r-64,88r69,99r-38,0r-49,-74r-49,74r-38,0","w":180},"y":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26","w":180,"k":{".":27,",":27}},"z":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0","w":180},"{":{"d":"46,-9v0,-44,-1,-66,-36,-70r0,-29v34,-3,37,-25,36,-67v-2,-63,6,-89,66,-87r0,28v-30,-1,-37,4,-36,36v0,67,1,84,-37,105v29,13,36,33,37,79v1,48,-6,61,36,62r0,28v-59,3,-67,-25,-66,-85","w":120},"|":{"d":"33,76r0,-338r28,0r0,338r-28,0","w":93},"}":{"d":"74,-178v0,44,1,66,36,70r0,29v-34,3,-37,26,-36,68v1,63,-6,89,-66,87r0,-28v30,1,37,-4,36,-36v0,-64,1,-86,37,-105v-29,-15,-37,-32,-37,-79v0,-48,7,-62,-36,-62r0,-28v58,-3,67,25,66,84","w":120},"~":{"d":"61,-122v-23,0,-30,10,-46,24r0,-36v34,-42,92,-8,135,3v19,0,35,-14,45,-25r0,38v-14,12,-26,19,-49,20v-28,1,-59,-24,-85,-24","w":210},"\u00c4":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm67,-273r0,-36r33,0r0,36r-33,0xm132,-273r0,-36r33,0r0,36r-33,0","w":240},"\u00c5":{"d":"116,-249v-18,0,-31,-14,-31,-32v0,-18,13,-32,31,-32v17,0,32,14,32,32v1,18,-14,33,-32,32xm117,-300v-10,0,-20,9,-19,19v-1,11,9,19,19,19v10,0,19,-9,18,-19v1,-10,-9,-19,-18,-19xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u00c7":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm137,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":259},"\u00c9":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm99,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u00d1":{"d":"159,-274v-15,3,-58,-37,-60,0r-23,0v-1,-23,14,-40,35,-40v13,-3,57,35,59,0r23,0v0,23,-12,40,-34,40xm27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"\u00d6":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm91,-273r0,-36r33,0r0,36r-33,0xm156,-273r0,-36r33,0r0,36r-33,0","w":280},"\u00dc":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm80,-273r0,-36r33,0r0,36r-33,0xm145,-273r0,-36r33,0r0,36r-33,0","w":259},"\u00e1":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm81,-210r23,-49r42,0r-39,49r-26,0"},"\u00e0":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm126,-210r-26,0r-40,-49r42,0"},"\u00e2":{"d":"99,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"\u00e4":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00e3":{"d":"77,-231v-9,0,-14,6,-13,17r-24,0v-1,-23,15,-40,36,-40v14,-4,57,33,59,-1r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16xm175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"\u00e5":{"d":"99,-202v-17,0,-32,-16,-32,-33v0,-17,15,-31,32,-32v17,0,32,16,32,33v0,17,-15,31,-32,32xm99,-254v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,19,-10,19,-19v0,-9,-10,-19,-19,-19xm175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"\u00e7":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm100,35v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":180},"\u00e9":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm82,-210r23,-49r42,0r-39,49r-26,0"},"\u00e8":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm121,-210r-26,0r-40,-49r42,0"},"\u00ea":{"d":"100,-240r-20,30r-36,0r38,-49r33,0r40,49r-36,0xm102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"\u00eb":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00ed":{"d":"35,0r0,-187r31,0r0,187r-31,0xm33,-210r23,-49r42,0r-39,49r-26,0","w":100},"\u00ec":{"d":"35,0r0,-187r31,0r0,187r-31,0xm73,-210r-26,0r-40,-49r42,0","w":100},"\u00ee":{"d":"53,-240r-20,30r-36,0r38,-49r34,0r39,49r-36,0xm35,0r0,-187r31,0r0,187r-31,0","w":100},"\u00ef":{"d":"35,0r0,-187r31,0r0,187r-31,0xm2,-223r0,-36r33,0r0,36r-33,0xm67,-223r0,-36r33,0r0,36r-33,0","w":100},"\u00f1":{"d":"129,-215v-15,3,-59,-37,-60,1r-23,0v-1,-23,15,-40,36,-40v14,-3,57,33,59,-1r23,0v0,24,-12,40,-35,40xm105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163"},"\u00f3":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm82,-210r23,-49r42,0r-39,49r-26,0"},"\u00f2":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm121,-210r-26,0r-40,-49r42,0"},"\u00f4":{"d":"100,-240r-20,30r-36,0r38,-49r33,0r40,49r-36,0xm99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"\u00f6":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00f5":{"d":"124,-215v-15,3,-59,-37,-60,1r-23,0v-1,-23,14,-40,35,-40v14,-4,57,34,59,-1r23,0v0,23,-12,40,-34,40xm99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"\u00fa":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm80,-210r23,-49r42,0r-39,49r-26,0"},"\u00f9":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm128,-210r-26,0r-40,-49r42,0"},"\u00fb":{"d":"99,-240r-20,30r-36,0r38,-49r34,0r39,49r-36,0xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u00fc":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164xm50,-223r0,-36r33,0r0,36r-33,0xm115,-223r0,-36r33,0r0,36r-33,0"},"\u00b0":{"d":"71,-165v-25,-1,-49,-21,-49,-48v0,-26,23,-49,49,-49v28,0,49,22,49,49v0,25,-24,49,-49,48xm71,-243v-15,0,-29,14,-29,30v0,16,13,29,29,29v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30","w":143},"\u00a2":{"d":"19,-92v0,-64,35,-105,100,-98r20,-68r19,6r-19,68v23,10,34,25,39,52r-30,5v-3,-13,-9,-23,-17,-30r-39,135v33,6,55,-16,58,-46r32,3v-8,45,-46,79,-97,67r-21,70r-20,-6r21,-70v-27,-13,-46,-45,-46,-88xm112,-165v-68,-14,-77,98,-39,134"},"\u00a3":{"d":"190,-7v-55,33,-123,-30,-173,12r-12,-30v26,-14,49,-50,37,-91r-34,0r0,-26r27,0v-27,-60,6,-120,71,-120v44,0,73,28,78,67r-32,4v0,-56,-94,-59,-92,-2v0,13,3,30,10,51r55,0r0,26r-50,0v10,34,-9,61,-28,82v49,-15,93,26,133,-2"},"\u00a7":{"d":"172,18v2,57,-85,74,-123,41v-13,-11,-21,-27,-24,-47r32,-4v-1,48,80,56,83,10v-9,-52,-126,-61,-126,-131v0,-25,18,-44,40,-50v-44,-30,-17,-103,41,-99v44,3,69,21,74,61r-33,3v3,-47,-70,-49,-74,-10v9,53,122,58,122,126v0,28,-15,40,-40,51v15,12,28,26,28,49xm69,-151v-21,10,-34,32,-18,55v11,15,60,39,77,53v21,-8,35,-33,17,-54v-10,-12,-62,-42,-76,-54"},"\u00b6":{"d":"0,-184v0,-49,32,-74,83,-74r112,0r0,31r-26,0r0,299r-30,0r0,-299r-39,0r0,299r-29,0r0,-184v-41,-2,-71,-30,-71,-72","w":193},"\u00df":{"d":"101,-236v-33,2,-43,19,-42,62r0,174r-32,0r0,-176v-2,-57,24,-84,75,-86v35,-1,65,20,65,50v1,28,-23,49,-27,72v10,34,69,40,69,85v0,48,-62,77,-103,48v-11,-8,-19,-19,-25,-31r27,-13v9,36,68,39,68,-1v0,-40,-68,-44,-68,-83v0,-28,29,-46,28,-73v0,-16,-15,-30,-35,-28","w":219},"\u00ae":{"d":"1,-129v0,-77,57,-133,132,-133v76,0,133,57,133,133v0,75,-56,132,-133,132v-76,0,-132,-56,-132,-132xm244,-129v0,-63,-47,-111,-111,-111v-64,0,-111,48,-111,111v0,62,47,110,111,110v64,-1,111,-48,111,-110xm124,-199v70,-14,79,75,20,79v24,11,36,41,51,64r-28,0v-20,-27,-22,-68,-69,-61r0,61r-23,0r0,-143r49,0xm161,-158v0,-26,-34,-21,-63,-21r0,43v28,0,63,4,63,-22","w":265},"\u00a9":{"d":"1,-129v0,-77,57,-133,132,-133v76,0,133,57,133,133v0,75,-56,132,-133,132v-76,0,-132,-56,-132,-132xm244,-129v0,-63,-47,-111,-111,-111v-64,0,-111,48,-111,111v0,62,47,110,111,110v64,-1,111,-48,111,-110xm88,-128v-9,62,78,70,88,20r21,6v-7,28,-30,49,-64,49v-43,0,-69,-30,-69,-76v0,-78,110,-104,131,-33r-21,5v-17,-46,-95,-28,-86,29","w":265},"\u2122":{"d":"86,-114r0,-122r-46,0r0,-22r117,0r0,22r-47,0r0,122r-24,0xm173,-114r0,-144r35,0r36,115r35,-115r34,0r0,144r-21,0r0,-121r-37,121r-22,0r-38,-122r0,122r-22,0","w":360},"\u00b4":{"d":"39,-210r23,-49r42,0r-39,49r-26,0","w":119},"\u00a8":{"d":"11,-223r0,-36r33,0r0,36r-33,0xm76,-223r0,-36r33,0r0,36r-33,0","w":119},"\u00c6":{"d":"0,0r124,-258r212,0r0,31r-130,0r0,79r120,0r0,30r-120,0r0,88r134,0r0,30r-168,0r0,-74r-100,0r-35,74r-37,0xm87,-105r85,0r0,-122r-26,0","w":360},"\u00d8":{"d":"140,-262v38,2,55,10,80,28r29,-33r18,15r-31,34v59,81,18,222,-95,222v-37,0,-55,-8,-79,-27r-30,33r-17,-14r31,-35v-63,-78,-19,-230,94,-223xm199,-210v-57,-52,-156,-9,-147,81v3,29,4,43,16,65xm82,-46v58,50,146,5,146,-82v0,-24,-5,-45,-15,-64","w":280},"\u00b1":{"d":"84,-46r0,-71r-70,0r0,-29r70,0r0,-70r30,0r0,70r70,0r0,29r-70,0r0,71r-30,0xm184,0r-170,0r0,-30r170,0r0,30","w":197},"\u00a5":{"d":"84,0r0,-57r-73,0r0,-25r73,0r0,-25r-73,0r0,-26r60,0r-72,-125r36,0r64,118v17,-37,43,-81,63,-118r37,0r-71,125r60,0r0,26r-73,0r0,25r73,0r0,25r-73,0r0,57r-31,0"},"\u00b5":{"d":"102,-24v66,1,41,-97,46,-163r31,0r0,187r-28,0r0,-22v-15,32,-75,36,-92,3r0,91r-31,0r0,-259r31,0v5,65,-19,162,43,163","w":207},"\u00aa":{"d":"67,-262v75,0,40,80,59,128r-26,0v-2,-5,-4,-10,-4,-16v-34,44,-119,1,-77,-46v13,-15,54,-12,75,-19v1,-21,-10,-26,-28,-27v-17,-1,-27,8,-29,22r-24,-6v3,-23,24,-36,54,-36xm34,-170v4,32,56,16,58,-6v1,-2,2,-8,2,-18v-12,6,-63,2,-60,24","w":133},"\u00ba":{"d":"8,-195v0,-39,21,-67,58,-67v36,0,57,28,57,66v0,38,-22,66,-57,66v-36,0,-58,-26,-58,-65xm97,-197v0,-24,-10,-42,-31,-42v-22,0,-32,17,-32,43v0,26,11,43,32,43v21,0,31,-18,31,-44","w":131},"\u00e6":{"d":"305,-57v-9,66,-121,82,-152,26v-21,20,-41,35,-77,35v-37,1,-63,-20,-64,-53v0,-61,77,-55,127,-69v1,-33,-8,-48,-41,-47v-30,1,-46,8,-50,36r-31,-4v2,-63,113,-77,146,-33v15,-16,31,-24,60,-25v59,0,86,48,82,106r-135,0v-11,72,91,83,102,24xm273,-111v2,-49,-55,-70,-87,-40v-9,9,-15,23,-16,40r103,0xm46,-50v5,49,85,28,91,-6v1,-6,2,-19,2,-38v-15,12,-97,5,-93,44","w":320},"\u00f8":{"d":"23,-91v-6,-84,76,-123,139,-85r17,-22r17,12r-19,24v44,57,17,166,-67,166v-19,0,-36,-5,-50,-14r-18,24r-17,-13r19,-24v-15,-17,-19,-39,-21,-68xm144,-152v-42,-33,-89,2,-89,59v0,18,3,32,9,44xm78,-33v56,40,111,-35,79,-102","w":219},"\u00bf":{"d":"129,-187r0,36r-36,0r0,-36r36,0xm28,5v0,-61,74,-59,68,-128r31,0v10,71,-61,73,-67,126v-3,24,24,48,50,46v32,-1,47,-20,52,-52r32,4v-6,45,-33,74,-83,74v-46,0,-83,-28,-83,-70","w":219},"\u00a1":{"d":"79,-187r0,36r-37,0r0,-36r37,0xm70,-123r10,137r0,57r-39,0v-1,-69,5,-130,9,-194r20,0","w":119},"\u00ac":{"d":"190,-75r-30,0r0,-77r-140,0r0,-29r170,0r0,106","w":210},"\u00ab":{"d":"60,-93r45,80r-25,0r-56,-80r56,-80r26,0xm128,-93r46,80r-27,0r-55,-80r55,-80r27,0"},"\u00bb":{"d":"139,-93r-46,-80r26,0r56,80r-56,80r-26,0xm71,-93r-46,-80r26,0r55,80r-55,80r-26,0"},"\u2026":{"d":"42,0r0,-36r36,0r0,36r-36,0xm162,0r0,-36r36,0r0,36r-36,0xm282,0r0,-36r36,0r0,36r-36,0","w":360},"\u00c0":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm145,-274r-26,0r-40,-49r42,0","w":240},"\u00c3":{"d":"98,-290v-9,0,-14,6,-13,16r-24,0v-1,-23,15,-40,36,-40v13,-3,56,35,59,0r23,0v0,24,-12,40,-35,40v-9,2,-35,-15,-46,-16xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u00d5":{"d":"165,-274v-15,3,-57,-36,-60,0r-23,0v-1,-23,15,-38,36,-40v13,-1,56,34,59,0r23,0v-1,23,-13,40,-35,40xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"\u0152":{"d":"23,-129v0,-73,31,-134,104,-133v31,0,54,13,70,39r0,-35r146,0r0,31r-114,0r0,78r105,0r0,31r-105,0r0,88r120,0r0,30r-152,0r0,-37v-16,28,-39,41,-70,41v-70,1,-104,-59,-104,-133xm195,-131v0,-59,-21,-103,-68,-103v-52,0,-69,46,-69,107v0,60,22,104,69,104v49,0,68,-45,68,-108","w":360},"\u0153":{"d":"324,-56v-7,67,-123,79,-152,25v-16,21,-38,34,-70,35v-54,0,-88,-39,-88,-95v0,-59,31,-100,89,-100v32,-1,57,16,69,36v22,-40,99,-49,131,-9v15,19,23,44,23,79r-137,0v0,36,21,63,55,63v27,0,41,-16,48,-39xm101,-165v-36,0,-54,33,-54,71v0,43,19,72,54,72v35,0,55,-31,55,-72v0,-42,-20,-71,-55,-71xm293,-111v2,-48,-56,-71,-87,-39v-10,10,-15,22,-16,39r103,0","w":339},"\u2013":{"d":"-1,-81r0,-25r201,0r0,25r-201,0"},"\u2014":{"d":"0,-81r0,-25r360,0r0,25r-360,0","w":360},"\u201c":{"d":"49,-214r0,36r-34,0v-1,-40,-2,-74,29,-84r7,12v-13,7,-19,16,-19,36r17,0xm103,-214r0,36r-34,0v-1,-41,0,-74,29,-84r8,12v-13,7,-19,16,-20,36r17,0","w":119},"\u201d":{"d":"15,-224r0,-36r34,0v1,40,2,74,-29,84r-8,-12v13,-6,20,-17,20,-36r-17,0xm70,-224r0,-36r34,0v1,41,0,74,-29,84r-8,-12v13,-6,19,-17,19,-36r-16,0","w":119},"\u2018":{"d":"56,-214r0,36r-34,0v-1,-41,0,-74,30,-84r7,12v-13,7,-19,16,-19,36r16,0","w":79,"k":{"\u2018":7}},"\u2019":{"d":"22,-224r0,-36r34,0v1,41,0,74,-29,84r-8,-12v13,-6,19,-17,19,-36r-16,0","w":79,"k":{"\u2019":7,"s":7," ":13}},"\u00f7":{"d":"81,-162r0,-36r36,0r0,36r-36,0xm184,-112r-170,0r0,-30r170,0r0,30xm81,-56r0,-36r36,0r0,36r-36,0","w":197},"\u00ff":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm43,-223r0,-36r33,0r0,36r-33,0xm108,-223r0,-36r33,0r0,36r-33,0","w":180},"\u0178":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm70,-273r0,-36r33,0r0,36r-33,0xm135,-273r0,-36r33,0r0,36r-33,0","w":240},"\u00c2":{"d":"117,-303r-20,29r-36,0r38,-49r33,0r40,49r-36,0xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u00ca":{"d":"124,-303r-20,29r-36,0r38,-49r34,0r39,49r-35,0xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u00c1":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125xm95,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u00cb":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm75,-273r0,-36r33,0r0,36r-33,0xm140,-273r0,-36r33,0r0,36r-33,0","w":240},"\u00c8":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0xm150,-274r-26,0r-40,-49r42,0","w":240},"\u00cd":{"d":"34,0r0,-258r34,0r0,258r-34,0xm25,-274r23,-49r42,0r-39,49r-26,0","w":100},"\u00ce":{"d":"50,-303r-19,29r-37,0r38,-49r34,0r40,49r-36,0xm34,0r0,-258r34,0r0,258r-34,0","w":100},"\u00cf":{"d":"34,0r0,-258r34,0r0,258r-34,0xm1,-273r0,-36r33,0r0,36r-33,0xm66,-273r0,-36r33,0r0,36r-33,0","w":100},"\u00cc":{"d":"34,0r0,-258r34,0r0,258r-34,0xm76,-274r-26,0r-40,-49r42,0","w":100},"\u00d3":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm119,-274r23,-49r42,0r-39,49r-26,0","w":280},"\u00d4":{"d":"140,-303r-20,29r-36,0r38,-49r34,0r39,49r-35,0xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"\u00d2":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104xm161,-274r-26,0r-40,-49r42,0","w":280},"\u00da":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm108,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u00db":{"d":"129,-303r-19,29r-37,0r38,-49r34,0r40,49r-36,0xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u00d9":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232xm150,-274r-26,0r-40,-49r42,0","w":259},"\u0131":{"d":"35,0r0,-187r31,0r0,187r-31,0","w":100},"\u00b8":{"d":"66,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":119},"\u0141":{"d":"25,-99r-25,21r0,-29r25,-22r0,-129r35,0r0,100r58,-49r0,29r-58,50r0,98r128,0r0,30r-163,0r0,-99"},"\u0142":{"d":"23,-101r-22,19r0,-27r22,-20r0,-129r32,0r0,103r24,-21r0,28r-24,20r0,128r-32,0r0,-101","w":79},"\u0160":{"d":"115,-292r19,-30r36,0r-39,50r-34,0r-38,-50r36,0xm177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57","w":240},"\u0161":{"d":"89,-229r19,-30r36,0r-39,49r-34,0r-38,-49r36,0xm138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42","w":180},"\u017d":{"d":"112,-292r19,-30r36,0r-40,50r-33,0r-38,-50r36,0xm7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0","w":219},"\u017e":{"d":"95,-229r20,-30r36,0r-40,49r-34,0r-38,-49r37,0xm7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0","w":180},"\u00a6":{"d":"61,-262r0,139r-28,0r0,-139r28,0xm61,-63r0,139r-28,0r0,-139r28,0","w":93},"\u00d0":{"d":"241,-130v0,81,-34,130,-120,130r-93,0r0,-117r-29,0r0,-23r29,0r0,-118r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-22,-98,-90,-96r-54,0r0,87r71,0r0,23r-71,0r0,87r55,0v68,2,89,-36,89,-101","w":259},"\u00f0":{"d":"130,-176v-10,-18,-13,-23,-25,-38r-49,23r-7,-19r42,-19v-11,-11,-24,-20,-37,-29r38,0v8,6,16,12,22,18r38,-18r8,18r-30,15v38,43,56,87,56,133v1,56,-34,96,-87,96v-51,0,-86,-36,-86,-95v0,-69,57,-119,117,-85xm99,-21v34,0,54,-32,54,-72v0,-39,-20,-69,-55,-69v-36,0,-53,30,-53,72v0,41,20,69,54,69"},"\u00dd":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0xm98,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u00fd":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26xm74,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u00de":{"d":"224,-131v0,78,-77,84,-162,79r0,52r-34,0r0,-258r34,0r0,53v83,-2,162,-6,162,74xm189,-130v0,-58,-70,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240},"\u00fe":{"d":"186,-95v7,78,-81,130,-131,76r0,91r-31,0r0,-330r31,0r0,91v17,-16,25,-24,52,-24v54,0,74,43,79,96xm104,-166v-32,0,-52,34,-52,74v0,41,17,70,50,70v34,0,51,-31,51,-73v0,-41,-16,-71,-49,-71"},"\u00d7":{"d":"28,-72r56,-55r-56,-55r22,-22r55,55r55,-55r21,22r-55,55r56,55r-22,21r-55,-55r-55,55","w":210},"\u00b9":{"d":"19,-228v15,-5,36,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22","w":119},"\u00b2":{"d":"113,-225v1,37,-45,52,-67,75r68,0r0,21r-110,0v5,-41,73,-56,82,-92v-1,-12,-10,-20,-25,-19v-17,0,-22,6,-26,20r-27,-3v2,-49,104,-52,105,-2","w":119},"\u00b3":{"d":"114,-166v1,50,-105,56,-108,3r25,-3v6,28,55,26,55,-4v0,-17,-19,-22,-37,-18r3,-20v30,6,39,-35,7,-33v-15,0,-19,6,-25,18r-25,-4v5,-44,98,-47,98,-1v0,15,-10,25,-24,28v18,5,30,15,31,34","w":119},"\u00bd":{"d":"40,10r194,-272r27,0r-193,272r-28,0xm19,-228v15,-5,36,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22xm293,-91v1,37,-45,52,-67,75r68,0r0,21r-110,0v5,-40,72,-57,82,-91v0,-13,-11,-20,-25,-20v-17,0,-22,6,-26,20r-27,-2v2,-49,104,-54,105,-3","w":300},"\u00bc":{"d":"44,10r194,-272r27,0r-193,272r-28,0xm19,-228v15,-5,36,-21,46,-33r19,0r0,132r-26,0r0,-97v-12,9,-25,16,-39,20r0,-22xm251,5r0,-27r-67,0r0,-21r71,-84r22,0r0,86r18,0r0,19r-18,0r0,27r-26,0xm251,-41r0,-46r-40,46r40,0","w":300},"\u00be":{"d":"44,10r194,-272r27,0r-193,272r-28,0xm114,-166v1,50,-105,56,-108,3r25,-3v6,28,55,26,55,-4v0,-17,-20,-21,-37,-18r3,-20v30,6,39,-35,7,-33v-15,0,-19,6,-25,18r-25,-4v5,-44,98,-47,98,-1v0,15,-10,25,-24,28v18,5,30,15,31,34xm251,5r0,-27r-67,0r0,-21r71,-84r22,0r0,86r18,0r0,19r-18,0r0,27r-26,0xm251,-41r0,-46r-40,46r40,0","w":300},"\u011e":{"d":"122,-319v2,32,59,32,61,0r21,0v1,42,-56,58,-87,34v-9,-8,-14,-19,-16,-34r21,0xm54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"\u011f":{"d":"70,-257v2,30,59,32,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69"},"\u0130":{"d":"31,-274r0,-39r39,0r0,39r-39,0xm34,0r0,-258r34,0r0,258r-34,0","w":100},"\u015e":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57xm126,37v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":240},"\u015f":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42xm94,35v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":180},"\u0106":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106xm117,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u0107":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71xm75,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u010c":{"d":"139,-292r19,-30r36,0r-39,50r-34,0r-38,-50r36,0xm136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259},"\u010d":{"d":"99,-229r19,-30r36,0r-40,49r-33,0r-38,-49r36,0xm47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180},"\u0111":{"d":"91,-191v24,0,41,12,52,26r0,-49r-61,0r0,-23r61,0r0,-21r31,0r0,21r26,0r0,23r-26,0r0,214r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v32,0,49,-29,49,-69v0,-44,-16,-74,-51,-74"},"\u00af":{"d":"-5,-275r0,-23r209,0r0,23r-209,0","w":198},"\u00b7":{"d":"42,-112r0,-36r36,0r0,36r-36,0","w":119},"\u0102":{"d":"89,-319v2,32,59,32,61,0r21,0v1,42,-56,58,-87,34v-9,-8,-14,-19,-16,-34r21,0xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u0103":{"d":"73,-257v2,30,59,32,60,0r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"\u0104":{"d":"218,76v-47,2,-41,-61,-12,-76r23,0v-18,7,-35,49,-3,51v6,0,12,-2,16,-4r0,22v-9,4,-17,7,-24,7xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u0105":{"d":"167,76v-47,2,-41,-61,-12,-76r23,0v-18,7,-35,49,-3,51v6,0,12,-2,16,-4r0,22v-9,4,-17,7,-24,7xm175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"\u010e":{"d":"105,-292r20,-30r36,0r-40,50r-34,0r-38,-50r37,0xm241,-130v0,82,-35,130,-120,130r-93,0r0,-258r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-21,-99,-90,-96r-54,0r0,197r55,0v68,2,89,-37,89,-101","w":259},"\u010f":{"d":"189,-225r0,-33r33,0v1,37,2,70,-27,79r-7,-12v12,-7,17,-14,17,-34r-16,0xm91,-191v24,0,41,12,52,26r0,-93r31,0r0,258r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v33,0,50,-29,50,-69v0,-44,-17,-74,-52,-74","w":221},"\u0110":{"d":"241,-130v0,81,-34,130,-120,130r-93,0r0,-117r-29,0r0,-23r29,0r0,-118r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-22,-98,-90,-96r-54,0r0,87r71,0r0,23r-71,0r0,87r55,0v68,2,89,-36,89,-101","w":259},"\u0118":{"d":"188,34v0,18,22,20,33,13r0,22v-26,15,-63,5,-60,-26v2,-23,13,-49,48,-43v-11,6,-21,18,-21,34xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u0119":{"d":"117,76v-46,1,-40,-61,-11,-76r23,0v-17,7,-35,48,-4,51v6,1,13,-2,16,-4r0,22v-9,4,-17,7,-24,7xm102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"\u011a":{"d":"117,-292r19,-30r36,0r-39,50r-34,0r-38,-50r36,0xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u011b":{"d":"102,-229r20,-30r36,0r-40,49r-34,0r-38,-49r37,0xm102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"\u0139":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0xm53,-274r23,-49r42,0r-39,49r-26,0"},"\u013a":{"d":"23,0r0,-258r32,0r0,258r-32,0xm12,-271r23,-49r42,0r-39,49r-26,0","w":79},"\u013d":{"d":"125,-222r0,-36r36,0v1,40,2,77,-29,87r-9,-13v15,-6,19,-17,20,-38r-18,0xm26,0r0,-258r34,0r0,228r127,0r0,30r-161,0"},"\u013e":{"d":"72,-225r0,-33r33,0v1,37,1,69,-27,79r-8,-12v12,-7,19,-14,18,-34r-16,0xm24,0r0,-258r32,0r0,258r-32,0","w":104},"\u013f":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0xm82,-112r0,-36r36,0r0,36r-36,0"},"\u0140":{"d":"23,0r0,-258r32,0r0,258r-32,0xm37,-112r0,-36r36,0r0,36r-36,0","w":120},"\u0143":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0xm100,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u0144":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm79,-210r23,-49r42,0r-39,49r-26,0"},"\u0147":{"d":"129,-293r19,-30r36,0r-39,49r-34,0r-38,-49r36,0xm27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"\u0148":{"d":"103,-229r19,-30r36,0r-40,49r-33,0r-38,-49r36,0xm105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163"},"\u0150":{"d":"83,-274r21,-49r42,0r-38,49r-25,0xm144,-274r22,-49r41,0r-36,49r-27,0xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"\u0151":{"d":"50,-210r21,-49r41,0r-37,49r-25,0xm111,-210r22,-49r41,0r-37,49r-26,0xm99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"\u0154":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43xm88,-274r23,-49r42,0r-39,49r-26,0","w":259},"\u0155":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23xm43,-210r23,-49r42,0r-39,49r-26,0","w":119},"\u0158":{"d":"114,-292r19,-30r36,0r-39,50r-34,0r-38,-50r36,0xm234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43","w":259},"\u0159":{"d":"67,-229r19,-30r36,0r-40,49r-33,0r-38,-49r36,0xm114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23","w":119},"\u015a":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57xm86,-274r23,-49r42,0r-39,49r-26,0","w":240},"\u015b":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42xm69,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u0162":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0xm119,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":219},"\u0163":{"d":"61,-53v-2,25,10,28,32,25r4,28v-45,6,-67,0,-67,-55r0,-107r-24,0r0,-25r24,0r0,-46r31,-19r0,65r32,0r0,25r-32,0r0,109xm77,39v-1,-12,-13,-11,-28,-12r9,-31r24,0r-6,19v17,1,30,11,30,26v0,30,-43,38,-76,31r2,-21v21,2,41,2,45,-12","w":100},"\u0164":{"d":"111,-292r19,-30r36,0r-40,50r-33,0r-38,-50r36,0xm93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0","w":219},"\u0165":{"d":"102,-225r0,-33r32,0v1,36,2,70,-26,79r-8,-12v12,-7,18,-15,18,-34r-16,0xm61,-53v-3,26,10,28,32,25r4,28v-46,6,-68,-1,-68,-55r0,-107r-23,0r0,-25r23,0r0,-46r32,-19r0,65r32,0r0,25r-32,0r0,109","w":135},"\u016e":{"d":"130,-258v-18,0,-32,-15,-32,-33v0,-17,14,-32,31,-32v18,0,32,15,32,33v0,17,-14,32,-31,32xm130,-310v-9,0,-19,10,-19,19v0,11,9,20,19,20v9,1,19,-10,18,-20v1,-10,-9,-19,-18,-19xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u016f":{"d":"99,-202v-18,0,-32,-15,-32,-33v0,-17,15,-31,32,-32v17,0,31,15,31,33v0,17,-14,32,-31,32xm99,-254v-9,0,-19,9,-18,19v-1,11,8,19,18,19v10,0,19,-10,19,-19v0,-9,-10,-19,-19,-19xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u0170":{"d":"82,-274r21,-49r41,0r-37,49r-25,0xm143,-274r22,-49r41,0r-37,49r-26,0xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u0171":{"d":"42,-210r21,-49r41,0r-37,49r-25,0xm103,-210r22,-49r41,0r-37,49r-26,0xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u0179":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0xm83,-274r23,-49r42,0r-39,49r-26,0","w":219},"\u017a":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0xm69,-210r23,-49r42,0r-39,49r-26,0","w":180},"\u017b":{"d":"94,-274r0,-39r39,0r0,39r-39,0xm7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0","w":219},"\u017c":{"d":"70,-210r0,-39r39,0r0,39r-39,0xm7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0","w":180},"\u0132":{"d":"34,0r0,-258r34,0r0,258r-34,0xm246,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":264},"\u0133":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0xm108,-221r0,-37r31,0r0,37r-31,0xm139,10v4,55,-26,74,-72,62r6,-26v28,7,35,-3,35,-37r0,-196r31,0r0,197","w":159},"\u0149":{"d":"147,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163xm22,-224r0,-36r34,0v1,41,0,74,-29,84r-8,-12v13,-6,19,-17,19,-36r-16,0","w":217},"\u2032":{"d":"22,-166v1,-34,5,-64,12,-92r36,0v-6,34,-16,64,-28,92r-20,0","w":67},"\u2033":{"d":"22,-166v1,-34,5,-64,12,-92r36,0v-6,34,-16,64,-28,92r-20,0xm72,-166v1,-34,5,-64,12,-92r36,0v-6,34,-16,64,-28,92r-20,0","w":127},"\u0100":{"d":"63,-277r0,-26r110,0r0,26r-110,0xm-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240},"\u0101":{"d":"48,-216r0,-26r110,0r0,26r-110,0xm175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"\u0108":{"d":"136,-302r-19,30r-37,0r38,-50r34,0r40,50r-36,0xm136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259},"\u0109":{"d":"104,-240r-19,30r-37,0r38,-49r34,0r40,49r-36,0xm47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180},"\u010a":{"d":"116,-280r0,-40r39,0r0,40r-39,0xm136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259},"\u010b":{"d":"82,-210r0,-39r40,0r0,39r-40,0xm47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180},"\u0112":{"d":"73,-279r0,-26r109,0r0,26r-109,0xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u0113":{"d":"44,-216r0,-26r110,0r0,26r-110,0xm102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"\u0114":{"d":"123,-297v19,0,27,-8,31,-24r22,0v1,43,-58,59,-88,34v-9,-8,-14,-19,-16,-34r22,0v3,16,12,24,29,24xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u0115":{"d":"102,-234v19,1,27,-8,31,-23r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0v3,15,12,23,29,23xm102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"\u0116":{"d":"108,-274r0,-39r39,0r0,39r-39,0xm28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"\u0117":{"d":"84,-210r0,-39r39,0r0,39r-39,0xm102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"\u011c":{"d":"153,-301r-20,29r-36,0r38,-49r34,0r39,49r-36,0xm54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"\u011d":{"d":"96,-240r-20,30r-36,0r38,-49r33,0r40,49r-36,0xm176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69"},"\u0120":{"d":"133,-272r0,-39r39,0r0,39r-39,0xm54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"\u0121":{"d":"80,-210r0,-39r40,0r0,39r-40,0xm176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69"},"\u0122":{"d":"186,40v0,31,-40,39,-76,32r2,-21v17,2,48,1,45,-12v1,-9,-13,-13,-28,-12r0,-18v29,-4,57,7,57,31xm54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"\u0123":{"d":"111,-236r0,30r-37,0v-1,-36,3,-62,30,-71r9,15v-11,5,-17,13,-19,26r17,0xm176,-25v2,70,-23,99,-84,101v-44,2,-74,-20,-74,-61r31,5v0,43,87,36,92,0v1,-8,3,-23,3,-44v-49,57,-132,5,-132,-70v0,-54,28,-98,81,-97v22,0,40,9,54,27r0,-23r29,0r0,162xm95,-165v-34,0,-51,30,-51,68v0,43,17,71,51,71v34,0,52,-29,52,-70v0,-36,-18,-69,-52,-69"},"\u0124":{"d":"136,-303r-20,29r-36,0r38,-49r34,0r39,49r-36,0xm29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0","w":259},"\u0125":{"d":"113,-303r-20,29r-36,0r38,-49r34,0r39,49r-35,0xm105,-164v-69,0,-47,96,-50,164r-31,0r0,-258r31,0r0,93v38,-46,121,-31,121,47r0,118r-32,0v-8,-60,25,-164,-39,-164"},"\u0126":{"d":"29,-193r-24,0r0,-26r24,0r0,-39r34,0r0,39r134,0r0,-39r34,0r0,39r23,0r0,26r-23,0r0,193r-34,0r0,-121r-134,0r0,121r-34,0r0,-193xm63,-193r0,41r134,0r0,-41r-134,0","w":259},"\u0127":{"d":"105,-164v-69,-2,-46,97,-50,164r-31,0r0,-211r-23,0r0,-23r23,0r0,-24r31,0r0,24r65,0r0,23r-65,0r0,46v37,-44,121,-35,121,47r0,118r-32,0v-7,-59,24,-162,-39,-164"},"\u0128":{"d":"72,-278v-16,3,-57,-38,-60,0r-23,0v-1,-23,15,-40,36,-40v9,-2,34,15,46,15v10,0,11,-6,13,-16r23,0v-1,23,-12,41,-35,41xm34,0r0,-258r34,0r0,258r-34,0","w":100},"\u0129":{"d":"75,-215v-15,3,-59,-37,-60,1r-23,0v-1,-23,15,-40,36,-40v14,-3,57,33,59,-1r23,0v0,24,-12,40,-35,40xm35,0r0,-187r31,0r0,187r-31,0","w":100},"\u012a":{"d":"-5,-275r0,-26r110,0r0,26r-110,0xm34,0r0,-258r34,0r0,258r-34,0","w":100},"\u012b":{"d":"-4,-216r0,-26r110,0r0,26r-110,0xm35,0r0,-187r31,0r0,187r-31,0","w":100},"\u012c":{"d":"51,-293v19,1,27,-8,31,-23r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r21,0v3,15,13,23,30,23xm34,0r0,-258r34,0r0,258r-34,0","w":100},"\u012d":{"d":"50,-234v19,1,27,-8,31,-23r22,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0v3,15,12,23,29,23xm35,0r0,-187r31,0r0,187r-31,0","w":100},"\u012e":{"d":"40,34v0,18,22,20,33,13r0,22v-26,15,-63,5,-60,-26v2,-23,13,-49,48,-43v-11,6,-21,18,-21,34xm34,0r0,-258r34,0r0,258r-34,0","w":100},"\u012f":{"d":"31,34v0,18,22,20,33,13r0,22v-26,15,-59,4,-60,-26v4,-23,14,-48,48,-43v-11,6,-21,18,-21,34xm24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0","w":79},"\u0134":{"d":"140,-303r-20,29r-37,0r38,-49r34,0r40,49r-36,0xm152,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":180},"\u0135":{"d":"40,-240r-19,30r-36,0r37,-49r34,0r40,49r-36,0xm55,10v5,54,-25,75,-72,62r6,-26v28,7,35,-4,35,-37r0,-196r31,0r0,197","w":79},"\u0136":{"d":"176,40v0,30,-39,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31xm26,0r0,-258r34,0r0,128r128,-128r47,0r-108,105r112,153r-45,0r-91,-130r-43,41r0,89r-34,0","w":240},"\u0137":{"d":"146,40v0,30,-39,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31xm24,0r0,-258r32,0r0,147r74,-76r41,0r-71,70r79,117r-39,0r-62,-95r-22,21r0,74r-32,0","w":180},"\u0138":{"d":"24,0r0,-187r31,0r0,76r75,-76r41,0r-71,70r78,117r-39,0r-61,-95r-23,21r0,74r-31,0","w":180},"\u013b":{"d":"155,40v0,30,-39,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31xm26,0r0,-258r34,0r0,228r127,0r0,30r-161,0"},"\u013c":{"d":"76,40v0,31,-40,39,-77,32r2,-21v17,2,48,1,45,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31xm23,0r0,-258r32,0r0,258r-32,0","w":79},"\u0145":{"d":"180,40v0,31,-40,39,-76,32r2,-21v17,2,48,1,45,-12v1,-9,-13,-13,-28,-12r0,-18v29,-4,57,7,57,31xm27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"\u0146":{"d":"139,40v0,30,-39,39,-76,32r2,-21v17,2,47,1,44,-12v1,-10,-13,-13,-28,-12r0,-18v30,-4,58,6,58,31xm105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163"},"\u014a":{"d":"136,-233v-53,0,-73,29,-73,92r0,141r-34,0r0,-258r34,0r0,32v23,-26,43,-36,82,-36v73,0,93,51,96,129v4,95,-47,165,-128,125r16,-27v58,31,78,-35,78,-97v0,-68,-24,-101,-71,-101","w":260},"\u014b":{"d":"53,-160v33,-54,135,-37,123,45v-11,77,33,216,-72,187r6,-26v28,7,34,-4,34,-37r0,-123v0,-32,-8,-49,-39,-49v-69,0,-45,97,-49,163r-32,0r0,-187r29,0r0,27"},"\u014c":{"d":"89,-281r0,-26r109,0r0,26r-109,0xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"\u014d":{"d":"46,-216r0,-26r110,0r0,26r-110,0xm99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"\u014e":{"d":"113,-321v2,32,59,32,61,0r21,0v1,43,-57,59,-87,34v-9,-8,-14,-19,-16,-34r21,0xm141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"\u014f":{"d":"71,-257v3,30,60,31,61,0r21,0v0,42,-58,58,-88,33v-9,-8,-14,-18,-16,-33r22,0xm99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"\u0156":{"d":"180,40v0,31,-40,39,-76,32r2,-21v17,2,48,1,45,-12v1,-9,-13,-13,-28,-12r0,-18v29,-4,57,7,57,31xm234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43","w":259},"\u0157":{"d":"101,40v-1,31,-40,39,-76,32r2,-21v17,2,48,1,45,-12v1,-10,-13,-13,-28,-12r0,-18v29,-4,57,6,57,31xm114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23","w":119},"\u015c":{"d":"119,-302r-20,30r-36,0r38,-50r33,0r40,50r-36,0xm177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57","w":240},"\u015d":{"d":"94,-240r-20,30r-36,0r38,-49r34,0r39,49r-36,0xm138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42","w":180},"\u0166":{"d":"93,-111r-58,0r0,-23r58,0r0,-93r-85,0r0,-31r205,0r0,31r-86,0r0,93r58,0r0,23r-58,0r0,111r-34,0r0,-111","w":219},"\u0167":{"d":"93,0v-45,7,-74,-4,-68,-55r0,-35r-23,0r0,-24r23,0r0,-48r-23,0r0,-25r23,0r0,-46r32,-19r0,65r32,0r0,25r-32,0r0,48r30,0r0,24r-30,0v2,30,-12,74,32,62","w":100},"\u0168":{"d":"158,-277v-16,3,-57,-38,-60,0r-23,0v-1,-23,15,-40,36,-40v13,-3,56,35,59,0r23,0v0,24,-12,40,-35,40xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u0169":{"d":"126,-215v-15,3,-59,-37,-60,1r-23,0v-1,-23,14,-40,35,-40v14,-4,57,34,59,-1r23,0v0,23,-12,40,-34,40xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u016a":{"d":"79,-278r0,-26r110,0r0,26r-110,0xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u016b":{"d":"47,-216r0,-26r109,0r0,26r-109,0xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u016c":{"d":"100,-320v2,32,59,32,61,0r21,0v1,43,-58,59,-88,34v-9,-8,-14,-19,-16,-34r22,0xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u016d":{"d":"101,-234v19,1,27,-8,31,-23r21,0v0,42,-57,58,-87,33v-9,-8,-14,-18,-16,-33r21,0v3,15,13,23,30,23xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u0172":{"d":"141,34v0,18,22,20,33,13r0,22v-26,15,-59,4,-60,-26v4,-23,14,-48,48,-43v-11,6,-21,18,-21,34xm127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"\u0173":{"d":"150,34v-1,17,22,21,34,13r0,22v-26,15,-62,5,-60,-26v2,-24,13,-48,48,-43v-12,6,-21,19,-22,34xm93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"\u0174":{"d":"169,-303r-19,29r-37,0r38,-49r34,0r40,49r-36,0xm73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0","w":339},"\u0175":{"d":"133,-240r-20,30r-37,0r38,-49r34,0r40,49r-36,0xm58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0","w":259},"\u0176":{"d":"125,-303r-20,29r-36,0r38,-49r33,0r40,49r-36,0xm100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0","w":240},"\u0177":{"d":"98,-240r-20,30r-36,0r38,-49r34,0r39,49r-35,0xm22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26","w":180},"\u017f":{"d":"101,-231v-25,-5,-45,-2,-45,27r0,204r-32,0r0,-207v-4,-50,35,-62,81,-52","w":79},"\u00a4":{"d":"37,-169r-24,-24r20,-21r25,25v24,-17,59,-17,83,0r24,-25r21,21r-25,24v17,25,17,58,0,83r25,24r-21,21r-24,-25v-24,17,-59,18,-83,0r-25,25r-20,-21r24,-24v-16,-25,-16,-58,0,-83xm99,-173v-25,0,-45,20,-45,45v0,25,20,46,45,46v25,0,46,-21,46,-46v0,-24,-21,-45,-46,-45"}}});;var tmp=navigator.appName=='Microsoft Internet Explorer'&&navigator.userAgent.indexOf('Opera')<1?1:0;if(tmp)var isIE=document.namespaces?1:0;if(isIE){if(document.namespaces['v']==null){var e=["shape","shapetype","group","background","path","formulas","handles","fill","stroke","shadow","textbox","textpath","imagedata","line","polyline","curve","roundrect","oval","rect","arc","image"],s=document.createStyleSheet();for(var i=0;i<e.length;i++){s.addRule("v\\:"+e[i],"behavior: url(#default#VML);");}document.namespaces.add("v","urn:schemas-microsoft-com:vml");}}
function getImages(className){var children=document.getElementsByTagName('img');var elements=new Array();var i=0;var child;var classNames;var j=0;for(i=0;i<children.length;i++){child=children[i];classNames=child.className.split(' ');for(var j=0;j<classNames.length;j++){if(classNames[j]==className){elements.push(child);break;}}}
return elements;}
function getClasses(classes,string){var temp='';for(var j=0;j<classes.length;j++){if(classes[j]!=string){if(temp){temp+=' '}
temp+=classes[j];}}
return temp;}
function getClassValue(classes,string){var temp=0;var pos=string.length;for(var j=0;j<classes.length;j++){if(classes[j].indexOf(string)==0){temp=Math.min(classes[j].substring(pos),100);break;}}
return Math.max(0,temp);}
function getClassColor(classes,string){var temp=0;var str='';var pos=string.length;for(var j=0;j<classes.length;j++){if(classes[j].indexOf(string)==0){temp=classes[j].substring(pos);str='#'+temp.toLowerCase();break;}}
if(str.match(/^#[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]$/i)){return str;}else{return 0;}}
function getClassAttribute(classes,string){var temp=0;var pos=string.length;for(var j=0;j<classes.length;j++){if(classes[j].indexOf(string)==0){temp=1;break;}}
return temp;}
function clipPolyRight(ctx,x,y,w,h,t,d,s){var z=(h-t-t)/h;ctx.beginPath();ctx.moveTo(x,y);ctx.lineTo(w,y+t);ctx.lineTo(w,y+h-t);ctx.lineTo(x,y+h);if(d>0){ctx.lineTo(x,y+h-s);ctx.lineTo(w,y+h-t-(z*s));ctx.lineTo(w,y+h-t-(z*(s+d)));ctx.lineTo(x,y+h-s-d);}
ctx.closePath();}
function clipPolyLeft(ctx,x,y,w,h,t,d,s){var z=(h-t-t)/h;ctx.beginPath();ctx.moveTo(x,y+t);ctx.lineTo(w,y+1);ctx.lineTo(w,y+h);ctx.lineTo(x,y+h-t);if(d>0){ctx.lineTo(x,y+h-t-(z*s));ctx.lineTo(w,y+h-s);ctx.lineTo(w,y+h-s-d);ctx.lineTo(x,y+h-t-(z*(s+d)));}
ctx.closePath();}
function strokePolyRight(ctx,x,y,w,h,t,d,s,b){var z=(h-t-t)/h;var n=(b>=1?1:0);ctx.beginPath();ctx.moveTo(x+b,y+b);ctx.lineTo(w-b,y+t+b-n);ctx.lineTo(w-b,y+h-t-(z*(s+d))-b);ctx.lineTo(x+b,y+h-s-d-b);ctx.closePath();}
function strokePolyLeft(ctx,x,y,w,h,t,d,s,b){var z=(h-t-t)/h;var n=(b>=1?1:0);ctx.beginPath();ctx.moveTo(x+b,y+t+b-n);ctx.lineTo(w-b,y+b);ctx.lineTo(w-b,y+h-s-d-b);ctx.lineTo(x+b,y+h-t-(z*(s+d))-b);ctx.closePath();}
function clipReflex(ctx,x,y,w,h,t,d,s,o){var z=(h-t-t)/h;ctx.beginPath();if(o=='r'){ctx.moveTo(x,y+h-s);ctx.lineTo(w,y+h-t-(z*s));ctx.lineTo(w,y+h-t+2);ctx.lineTo(x,y+h+2);}else{ctx.moveTo(w,y+h+2);ctx.lineTo(w,y+h-s);ctx.lineTo(x,y+h-t-(z*s));ctx.lineTo(x,y+h-t+2);}
ctx.closePath();}
function clearReflex(ctx,x,y,w,h,t,d,s,o){var z=(h-t-t)/h;ctx.beginPath();if(o=='r'){ctx.moveTo(x,y+h-1);ctx.lineTo(w,y+h-t-1);ctx.lineTo(w,y+h-t+1);ctx.lineTo(x,y+h+1);}else{ctx.moveTo(w,y+h-1);ctx.lineTo(x,y+h-t-1);ctx.lineTo(x,y+h-t+1);ctx.lineTo(w,y+h+1);}
ctx.closePath();}
function addIEReflex(){var theimages=getImages('reflex');var image,object,vml,display,flt,classes,newClasses,head,fill,flex,foot;var i,j,z,q,p,dist,stl,iter,rest,radi,higt,divs,opac,colr,bord,wide,half,ih,iw,ww,hh,fb,xb;var itiltright,itiltnone,itiltleft,iheight,iopacity,idistance,iborder,icolor,iradius;var children=document.getElementsByTagName('img');var tilt='r';for(i=0;i<theimages.length;i++){image=theimages[i];object=image.parentNode;j=0;itiltright=0;itiltnone=0;itiltleft=0;iheight=33;iopacity=33;idistance=0;iborder=0;icolor='#000000';iradius=0;if(image.width>=32&&image.height>=32){classes=image.className.split(' ');iradius=getClassValue(classes,"iradius");iborder=getClassValue(classes,"iborder");iheight=getClassValue(classes,"iheight");iopacity=getClassValue(classes,"iopacity");idistance=getClassValue(classes,"idistance");icolor=getClassColor(classes,"icolor");itiltleft=getClassAttribute(classes,"itiltleft");itiltright=getClassAttribute(classes,"itiltright");itiltnone=getClassAttribute(classes,"itiltnone");if(itiltright==true)tilt='r';if(itiltnone==true)tilt='n';if(itiltleft==true)tilt='l';newClasses=getClasses(classes,"reflex");ih=image.height;iw=image.width;dist=idistance;radi=Math.min(iradius,Math.max(iw,ih)/10);colr=(icolor!=0?icolor:'#000000');opac=(iopacity>0?iopacity:33);divs=100/(iheight>=10?iheight:33);p=(iheight>=10?iheight:33)/100;higt=Math.floor(ih/divs);wide=12;if(iborder==1){bord=0;}else{iborder=Math.floor(Math.round(Math.min(Math.min(iborder,higt/4),Math.max(iw,ih)/20))/2)*2;bord=(iborder>0?iborder/2:0);}
ww=parseInt(iw/20);q=1;iter=Math.floor((iw-ww-ww)/wide);rest=((iw-ww-ww)%wide);half=(((iw-ww-ww)/wide)-1)/2;hh=iter+(rest>0?1:0);z=(ih-hh-hh)/ih;display=(image.currentStyle.display.toLowerCase()=='block')?'block':'inline-block';vml=document.createElement(['<var style="overflow:hidden;display:'+display+';width:'+iw+'px;height:'+(ih+higt+dist)+'px;padding:0;">'].join(''));flt=image.currentStyle.styleFloat.toLowerCase();display=(flt=='left'||flt=='right')?'inline':display;head='<v:group style="zoom:1; display:'+display+'; margin:-1px 0 0 -1px; padding:0; position:relative; width:'+iw+'px;height:'+(ih+higt+dist)+'px;" coordsize="'+iw+','+(ih+higt+dist)+'">';if(tilt=='n'){fill='<v:rect strokeweight="0" filled="t" stroked="f" fillcolor="#ffffff" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:0px; left:0px; width:'+iw+'px;height:'+ih+'px;"><v:fill src="'+image.src+'" type="frame" /></v:rect>';fb='<v:rect strokeweight="'+iborder+'" strokecolor="'+colr+'" filled="f" stroked="'+(bord>0||iborder>0?'t':'f')+'" fillcolor="#ffffff" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+bord+'px; left:'+bord+'px; width:'+(iw-bord-bord)+'px;height:'+(ih-bord-bord)+'px;"></v:rect>';xb='<v:rect strokeweight="'+iborder+'" strokecolor="'+colr+'" filled="f" stroked="'+(bord>0||iborder>0?'t':'f')+'" fillcolor="#ffffff" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+(ih+dist+bord)+'px; left:'+bord+'px; width:'+(iw-bord-bord)+'px;height:'+(higt-bord-bord)+'px; filter: progid:DXImageTransform.Microsoft.Alpha(opacity='+opac+',style=1,finishOpacity=0,startx=0,starty=0,finishx=0,finishy='+parseInt(ih*0.66)+');"></v:rect>';flex='<v:rect strokeweight="0" filled="t" stroked="f" fillcolor="#ffffff" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+(ih+dist)+'px; left:0px; width:'+iw+'px;height:'+higt+'px; filter:flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+opac+',style=1,finishOpacity=0,startx=0,starty=0,finishx=0,finishy='+ih+');"><v:fill origin="0,0" position="0,-'+(divs/2-0.5)+'" size="1,'+(1*divs)+'" src="'+image.src+'" type="frame" /></v:rect>';}else if(tilt=='r'){fill='<v:rect strokeweight="0" filled="t" stroked="f" fillcolor="#808080" style="position:absolute; margin:-1px 0 0 -1px;padding:0 ;width:'+iw+'px;height:'+(ih+higt+dist)+'px;"><v:fill color="#808080" opacity="0.0" /></v:rect><v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#ffffff" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+ww+',0 l '+ww+','+ih+','+(iw-ww)+','+(ih-hh)+','+(iw-ww)+','+hh+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:0px; left:0px; width:'+iw+'px;height:'+ih+'px;"><v:fill src="'+image.src+'" type="frame" /></v:shape>';for(j=0;j<iter;j++){if(j==(iter-1))q=(rest>0?1:0);fill+='<v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#808080" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+(ww+(j*wide))+','+j+' l '+(q+ww+((j+1)*wide))+','+(j+1)+','+(q+ww+((j+1)*wide))+','+(ih-1-j)+','+(ww+(j*wide))+','+(ih-j)+' x e" style="position:absolute; margin: -1px 0 0 -1px; padding:0px; top:0px; left:0px; width:'+iw+'px; height:'+ih+'px;"><v:fill origin="0,0" position="'+(half-j)+',0" size="'+((iw-ww-ww)/wide)+',1" type="frame" src="'+image.src+'" /></v:shape>';}
if(rest>0){fill+='<v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#808080" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+(ww+(j*wide))+','+j+' l '+(ww+((j+1)*wide))+','+(j+1)+','+(ww+((j+1)*wide))+','+(ih-1-j)+','+(ww+(j*wide))+','+(ih-j)+' x e" style="position:absolute; margin: -1px 0 0 -1px; padding:0px; top:0px; left:0px; width:'+iw+'px; height:'+ih+'px;"><v:fill origin="0,0" position="'+(half-j)+',0" size="'+((iw-ww-ww)/wide)+',1" type="frame" src="'+image.src+'" /></v:shape>';}
q=((iter*z)/(ih/100))/2;if(bord>0||iborder>0){fb='<v:shape strokeweight="'+iborder+'" strokecolor="'+colr+'" filled="f" stroked="'+(bord>0||iborder>0?'t':'f')+'" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+(ww+bord)+','+bord+' l '+(ww+bord)+','+(ih-bord)+','+(iw-ww-bord)+','+(ih-hh-bord)+','+(iw-ww-bord)+','+(hh+bord)+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:0px; left:0px; width:'+iw+'px;height:'+ih+'px;"></v:shape>';xb='<v:shape strokeweight="'+iborder+'" strokecolor="'+colr+'" stroked="'+(bord>0||iborder>0?'t':'f')+'" filled="f" coordorigin="0,0" coordsize="'+iw+','+(hh+higt+dist)+'" path="m '+(ww+bord)+','+(hh+dist+bord)+' l '+(ww+bord)+','+(higt+hh+dist-bord)+','+(iw-ww-bord)+','+(parseInt((higt+dist)*z)-bord)+','+(iw-ww-bord)+','+(parseInt(dist*z)+bord)+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+(ih-hh+dist)+'px; left:0px; width:'+iw+'px;height:'+(hh+higt+dist)+'px; flip: y; filter:flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+opac+',style=1,finishOpacity=0,startx=0,starty=0,finishx='+q+',finishy=80);"></v:shape>';}else{fb='';xb='';}
flex='<v:shape strokeweight="0" stroked="f" filled="t" fillcolor="#808080" coordorigin="0,0" coordsize="'+iw+','+(hh+higt+dist)+'" path="m '+ww+','+(hh+dist)+' l '+ww+','+(higt+hh+dist)+','+(iw-ww)+','+parseInt((higt+dist)*z)+','+(iw-ww)+','+parseInt(dist*z)+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+(ih-hh+dist)+'px; left:0px; width:'+iw+'px;height:'+(hh+higt+dist)+'px; flip: y; filter:flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+opac+',style=1,finishOpacity=0,startx=0,starty=0,finishx='+q+',finishy=90);"><v:fill origin="0,0" position="0,-'+((divs/2)-0.5)+'" size="1,'+(divs)+'" src="'+image.src+'" type="frame" /></v:shape>';}else if(tilt=='l'){fill='<v:rect strokeweight="0" filled="t" stroked="f" fillcolor="#808080" style="position:absolute; margin:-1px 0 0 -1px;padding:0 ;width:'+iw+'px;height:'+(ih+higt+dist)+'px;"><v:fill color="#808080" opacity="0.0" /></v:rect><v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#ffffff" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+ww+','+hh+' l '+ww+','+(ih-hh)+','+(iw-ww)+','+ih+','+(iw-ww)+',0 x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:0px; left:0px; width:'+iw+'px;height:'+ih+'px;"><v:fill src="'+image.src+'" type="frame" /></v:shape>';for(j=0;j<iter;j++){if(j==(iter-1))q=(rest>0?1:0);fill+='<v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#808080" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+(ww+(j*wide))+','+(iter-j)+' l '+(q+ww+((j+1)*wide))+','+(iter-1-j)+','+(q+ww+((j+1)*wide))+','+(ih-1-iter+j)+','+(ww+(j*wide))+','+(ih-iter+j)+' x e" style="position:absolute; margin: -1px 0 0 -1px; padding:0px; top:0px; left:0px; width:'+iw+'px; height:'+ih+'px;"><v:fill origin="0,0" position="'+(half-j)+',0" size="'+((iw-ww-ww)/wide)+',1" type="frame" src="'+image.src+'" /></v:shape>';}
if(rest>0){fill+='<v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#808080" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+(ww+(j*wide))+','+(iter-j)+' l '+(ww+((j+1)*wide))+','+(iter-1-j)+','+(ww+((j+1)*wide))+','+(ih-1-iter+j)+','+(ww+(j*wide))+','+(ih-iter+j)+' x e" style="position:absolute; margin: -1px 0 0 -1px; padding:0px; top:0px; left:0px; width:'+iw+'px; height:'+ih+'px;"><v:fill origin="0,0" position="'+(half-j)+',0" size="'+((iw-ww-ww)/wide)+',1" type="frame" src="'+image.src+'" /></v:shape>';}
q=100-(((iter*z)/(ih/100))/2);if(bord>0||iborder>0){fb='<v:shape strokeweight="'+iborder+'" strokecolor="'+colr+'" filled="f" stroked="'+(bord>0||iborder>0?'t':'f')+'" coordorigin="0,0" coordsize="'+iw+','+ih+'" path="m '+(ww+bord)+','+(hh+bord)+' l '+(ww+bord)+','+(ih-hh-bord)+','+(iw-ww-bord)+','+(ih-bord)+','+(iw-ww-bord)+','+bord+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:0px; left:0px; width:'+iw+'px;height:'+ih+'px;"></v:shape>';xb='<v:shape strokeweight="'+iborder+'" strokecolor="'+colr+'" stroked="'+(bord>0||iborder>0?'t':'f')+'" filled="f" coordorigin="0,0" coordsize="'+iw+','+(hh+higt+dist)+'" path="m '+(ww+bord)+','+(parseInt(dist*z)+bord)+' l '+(ww+bord)+','+(parseInt((higt+dist)*z)-bord)+','+(iw-ww-bord)+','+(higt+hh+dist-bord)+','+(iw-ww-bord)+','+(hh+dist+bord)+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+(ih-hh+dist)+'px; left:0px; width:'+iw+'px;height:'+(hh+higt+dist)+'px; flip: y; filter:flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+opac+',style=1,finishOpacity=0,startx=100,starty=0,finishx='+q+',finishy=80);"></v:shape>';}else{fb='';xb='';}
flex='<v:shape strokeweight="0" filled="t" stroked="f" fillcolor="#808080" coordorigin="0,0" coordsize="'+iw+','+(hh+higt+dist)+'" path="m '+ww+','+parseInt(dist*z)+' l '+ww+','+parseInt((higt+dist)*z)+','+(iw-ww)+','+(higt+hh+dist)+','+(iw-ww)+','+(hh+dist)+' x e" style="position:absolute; margin:-1px 0 0 -1px; padding:0; top:'+(ih-hh+dist)+'px; left:0px; width:'+iw+'px;height:'+(hh+higt+dist)+'px; flip: y; filter:flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+opac+',style=1,finishOpacity=0,startx=100,starty=0,finishx='+q+',finishy=90);"><v:fill origin="0,0" position="0,-'+((divs/2)-0.5)+'" size="1,'+(divs)+'" src="'+image.src+'" type="frame" /></v:shape>';}
foot='</v:group>';vml.innerHTML=head+flex+xb+fill+fb+foot;vml.className=newClasses;vml.style.cssText=image.style.cssText;vml.style.height=ih+higt+dist+'px';vml.width=iw;vml.height=ih+higt+dist;vml.style.width=iw+'px';vml.src=image.src;vml.alt=image.alt;if(image.id!='')vml.id=image.id;if(image.title!='')vml.title=image.title;if(image.getAttribute('onclick')!='')vml.setAttribute('onclick',image.getAttribute('onclick'));object.replaceChild(vml,image);if(tilt=='r'){tilt='n';}else if(tilt=='n'){tilt='l';}else if(tilt=='l'){tilt='r';}
vml.style.visibility='visible';}}}
function addReflex(){var theimages=getImages('reflex');var image,object,canvas,context,classes,newClasses,resource,tmp;var i,j,dist,stl,iter,rest,radi,higt,divs,opac,colr,bord,wide,ih,iw;var itiltright,itiltnone,itiltleft,iheight,iopacity,idistance,iborder,icolor,iradius;var children=document.getElementsByTagName('img');var tilt='r';var tmp=navigator.userAgent.indexOf('WebKit')!=-1?true:false;var isWK=(tmp==true?window.postMessage?false:window.external?false:true:false);var isCR=(tmp==true&&window.external?true:false);for(i=0;i<theimages.length;i++){image=theimages[i];object=image.parentNode;tmp=0;itiltright=0;itiltnone=0;itiltleft=0;iheight=33;iopacity=33;idistance=0;iborder=0;icolor='#000000';iradius=0;canvas=document.createElement('canvas');if(canvas.getContext&&image.width>=32&&image.height>=32){classes=image.className.split(' ');iradius=getClassValue(classes,"iradius");iborder=getClassValue(classes,"iborder");iheight=getClassValue(classes,"iheight");iopacity=getClassValue(classes,"iopacity");idistance=getClassValue(classes,"idistance");icolor=getClassColor(classes,"icolor");itiltleft=getClassAttribute(classes,"itiltleft");itiltright=getClassAttribute(classes,"itiltright");itiltnone=getClassAttribute(classes,"itiltnone");if(itiltright==true)tilt='r';if(itiltnone==true)tilt='n';if(itiltleft==true)tilt='l';newClasses=getClasses(classes,"reflex");ih=image.height;iw=image.width;dist=idistance;radi=Math.min(iradius,Math.max(iw,ih)/10);colr=(icolor!=0?icolor:'#000000');opac=(100-(iopacity>0?iopacity:33))/100;divs=100/(iheight>=10?iheight:33);higt=Math.floor(image.height/divs);iborder=Math.round(Math.min(Math.min(iborder,higt/4),Math.max(iw,ih)/20));wide=12;bord=(iborder>0?iborder/2:0);canvas.className=newClasses;canvas.style.cssText=image.style.cssText;canvas.style.height=ih+higt+dist+'px';canvas.width=iw;canvas.style.width=iw+'px';canvas.height=ih+higt+dist;canvas.src=image.src;canvas.alt=image.alt;if(image.id!='')canvas.id=image.id;if(image.title!='')canvas.title=image.title;if(image.getAttribute('onclick')!='')canvas.setAttribute('onclick',image.getAttribute('onclick'));iter=Math.floor(canvas.width/wide);rest=(canvas.width%wide);if(tilt=='l'||tilt=='r'){resource=document.createElement('canvas');if(resource.getContext){resource.style.position='fixed';resource.style.left=-9999+'px';resource.style.top=0+'px';resource.height=canvas.height;resource.width=canvas.width;resource.style.height=canvas.height+'px';resource.style.width=canvas.width+'px';if(isWK){object.appendChild(resource);}}}
context=canvas.getContext("2d");object.replaceChild(canvas,image);context.clearRect(0,0,canvas.width,canvas.height);if(!isCR){context.globalCompositeOperation="source-over";context.fillStyle="rgba(0,0,0,0)";context.fillRect(0,0,canvas.width,canvas.height);}
context.save();context.translate(0,canvas.height);context.scale(1,-1);context.drawImage(image,0,-(canvas.height-higt-higt-dist),canvas.width,canvas.height-higt-dist);context.restore();if(iborder>0){context.strokeStyle=colr;context.lineWidth=iborder;context.beginPath();context.rect(bord,canvas.height-higt+bord,canvas.width-iborder,higt);context.closePath();context.stroke();}
if(!isWK||tilt=='n'){context.globalCompositeOperation="destination-out";stl=context.createLinearGradient(0,canvas.height-higt,0,canvas.height);stl.addColorStop(1,"rgba(0,0,0,1.0)");stl.addColorStop(0,"rgba(0,0,0,"+opac+")");context.fillStyle=stl;}
if(isWK){context.beginPath();context.rect(0,canvas.height-higt,canvas.width,higt);context.closePath();context.fill();}else{context.fillRect(0,canvas.height-higt,canvas.width,higt);}
context.globalCompositeOperation="source-over";context.drawImage(image,0,0,iw,ih);context.save();if(isWK&&dist>0&&tilt!='n'){context.fillStyle='#808080';context.fillRect(0,canvas.height-higt-dist,canvas.width,dist);}
if(iborder>0){if(tilt=='n'){context.beginPath();context.rect(bord,bord,canvas.width-iborder,canvas.height-higt-dist-iborder);context.closePath();context.stroke();}}
if(tilt=='l'||tilt=='r'){if(resource.getContext){context=resource.getContext("2d");context.globalCompositeOperation="source-over";context.clearRect(0,0,resource.width,resource.height);if(tilt=='r'){for(j=0;j<iter;j++){context.drawImage(canvas,j*wide,0,wide,resource.height,j*wide,j*1,wide,resource.height-(j*2));}
if(rest>0){rest=canvas.width-(iter*wide);context.drawImage(canvas,j*wide,0,rest,resource.height,j*wide,j*1,rest,resource.height-(j*2));}}else{for(j=0;j<iter;j++){context.drawImage(canvas,j*wide,0,wide,resource.height,j*wide,(iter-j)*1,wide,resource.height-((iter-j)*2));}
if(rest>0){rest=canvas.width-(iter*wide);context.drawImage(canvas,j*wide,0,rest,resource.height,j*wide,0,rest,resource.height);}}
context.save();if(canvas.getContext){context=canvas.getContext("2d");context.clearRect(0,0,canvas.width,canvas.height);if(tilt=='r'){clipPolyRight(context,canvas.width/20,0,canvas.width*0.95,canvas.height,iter+(rest>0?1:0),dist,higt);}else{clipPolyLeft(context,canvas.width/20,0,canvas.width*0.95,canvas.height,iter+(rest>0?1:1),dist,higt);}
context.clip();context.drawImage(resource,parseInt(canvas.width/20),0,parseInt(canvas.width*0.9),canvas.height);context.save();if(iborder>0){context.lineWidth=iborder;if(tilt=='r'){strokePolyRight(context,canvas.width/20,0,canvas.width*0.95,canvas.height,iter+(rest>0?1:0),dist,higt,bord);context.stroke();}else{strokePolyLeft(context,canvas.width/20,0,canvas.width*0.95,canvas.height,iter+(rest>0?1:0),dist,higt,bord);context.stroke();}}
if(isWK){context.globalCompositeOperation="destination-out";stl=context.createLinearGradient((tilt=='l'?canvas.width:0),canvas.height-higt,(tilt=='l'?canvas.width-parseInt(wide/divs):parseInt(wide/divs)),canvas.height);stl.addColorStop(1,"rgba(255,0,0,1.0)");stl.addColorStop(0,"rgba(255,0,0,"+opac+")");context.fillStyle=stl;clipReflex(context,canvas.width/20,0,canvas.width*0.95,canvas.height,iter+(rest>0?1:0),dist,higt,tilt);context.fill();globalCompositeOperation="source-in";clearReflex(context,canvas.width/20,0,canvas.width*0.95,canvas.height,iter+(rest>0?1:0),dist,higt,tilt);context.clip();context.clearRect(0,0,canvas.width,canvas.height);context.clearRect(0,0,canvas.width,canvas.height);context.clearRect(0,0,canvas.width,canvas.height);context.clearRect(0,0,canvas.width,canvas.height);if(isWK){object.removeChild(resource);}}}}}
if(tilt=='r'){tilt='n';}else if(tilt=='n'){tilt='l';}else if(tilt=='l'){tilt='r';}
context.save();canvas.style.visibility='visible';}}}
if(window.attachEvent&&!window.opera)window.attachEvent("onload",addIEReflex);else window.addEventListener("load",addReflex,false);;VarienForm=Class.create();VarienForm.prototype={initialize:function(formId,firstFieldFocus){this.form=$(formId);if(!this.form){return;}
this.cache=$A();this.currLoader=false;this.currDataIndex=false;this.validator=new Validation(this.form);this.elementFocus=this.elementOnFocus.bindAsEventListener(this);this.elementBlur=this.elementOnBlur.bindAsEventListener(this);this.childLoader=this.onChangeChildLoad.bindAsEventListener(this);this.highlightClass='highlight';this.extraChildParams='';this.firstFieldFocus=firstFieldFocus||false;this.bindElements();if(this.firstFieldFocus){try{Form.Element.focus(Form.findFirstElement(this.form))}
catch(e){}}},submit:function(url){if(this.validator&&this.validator.validate()){this.form.submit();}
return false;},bindElements:function(){var elements=Form.getElements(this.form);for(var row in elements){if(elements[row].id){Event.observe(elements[row],'focus',this.elementFocus);Event.observe(elements[row],'blur',this.elementBlur);}}},elementOnFocus:function(event){var element=Event.findElement(event,'fieldset');if(element){Element.addClassName(element,this.highlightClass);}},elementOnBlur:function(event){var element=Event.findElement(event,'fieldset');if(element){Element.removeClassName(element,this.highlightClass);}},setElementsRelation:function(parent,child,dataUrl,first){if(parent=$(parent)){if(!this.cache[parent.id]){this.cache[parent.id]=$A();this.cache[parent.id]['child']=child;this.cache[parent.id]['dataUrl']=dataUrl;this.cache[parent.id]['data']=$A();this.cache[parent.id]['first']=first||false;}
Event.observe(parent,'change',this.childLoader);}},onChangeChildLoad:function(event){element=Event.element(event);this.elementChildLoad(element);},elementChildLoad:function(element,callback){this.callback=callback||false;if(element.value){this.currLoader=element.id;this.currDataIndex=element.value;if(this.cache[element.id]['data'][element.value]){this.setDataToChild(this.cache[element.id]['data'][element.value]);}
else{new Ajax.Request(this.cache[this.currLoader]['dataUrl'],{method:'post',parameters:{"parent":element.value},onComplete:this.reloadChildren.bind(this)});}}},reloadChildren:function(transport){var data=eval('('+transport.responseText+')');this.cache[this.currLoader]['data'][this.currDataIndex]=data;this.setDataToChild(data);},setDataToChild:function(data){if(data.length){var child=$(this.cache[this.currLoader]['child']);if(child){var html='<select name="'+child.name+'" id="'+child.id+'" class="'+child.className+'" title="'+child.title+'" '+this.extraChildParams+'>';if(this.cache[this.currLoader]['first']){html+='<option value="">'+this.cache[this.currLoader]['first']+'</option>';}
for(var i in data){if(data[i].value){html+='<option value="'+data[i].value+'"';if(child.value&&(child.value==data[i].value||child.value==data[i].label)){html+=' selected';}
html+='>'+data[i].label+'</option>';}}
html+='</select>';Element.insert(child,{before:html});Element.remove(child);}}
else{var child=$(this.cache[this.currLoader]['child']);if(child){var html='<input type="text" name="'+child.name+'" id="'+child.id+'" class="'+child.className+'" title="'+child.title+'" '+this.extraChildParams+'>';Element.insert(child,{before:html});Element.remove(child);}}
this.bindElements();if(this.callback){this.callback();}}}
RegionUpdater=Class.create();RegionUpdater.prototype={initialize:function(countryEl,regionTextEl,regionSelectEl,regions,disableAction,zipEl)
{this.countryEl=$(countryEl);this.regionTextEl=$(regionTextEl);this.regionSelectEl=$(regionSelectEl);this.zipEl=$(zipEl);this.regions=regions;this.disableAction=(typeof disableAction=='undefined')?'hide':disableAction;this.zipOptions=(typeof zipOptions=='undefined')?false:zipOptions;if(this.regionSelectEl.options.length<=1){this.update();}
Event.observe(this.countryEl,'change',this.update.bind(this));},update:function()
{if(this.regions[this.countryEl.value]){var i,option,region,def;if(this.regionTextEl){def=this.regionTextEl.value.toLowerCase();this.regionTextEl.value='';}
if(!def){def=this.regionSelectEl.getAttribute('defaultValue');}
this.regionSelectEl.options.length=1;for(regionId in this.regions[this.countryEl.value]){region=this.regions[this.countryEl.value][regionId];option=document.createElement('OPTION');option.value=regionId;option.text=region.name;if(this.regionSelectEl.options.add){this.regionSelectEl.options.add(option);}else{this.regionSelectEl.appendChild(option);}
if(regionId==def||region.name.toLowerCase()==def||region.code.toLowerCase()==def){this.regionSelectEl.value=regionId;}}
if(this.disableAction=='hide'){if(this.regionTextEl){this.regionTextEl.style.display='none';}
this.regionSelectEl.style.display='';}else if(this.disableAction=='disable'){if(this.regionTextEl){this.regionTextEl.disabled=true;}
this.regionSelectEl.disabled=false;}
this.setMarkDisplay(this.regionSelectEl,true);}else{if(this.disableAction=='hide'){if(this.regionTextEl){this.regionTextEl.style.display='';}
this.regionSelectEl.style.display='none';Validation.reset(this.regionSelectEl);}else if(this.disableAction=='disable'){if(this.regionTextEl){this.regionTextEl.disabled=false;}
this.regionSelectEl.disabled=true;}else if(this.disableAction=='nullify'){this.regionSelectEl.options.length=1;this.regionSelectEl.value='';this.regionSelectEl.selectedIndex=0;this.lastCountryId='';}
this.setMarkDisplay(this.regionSelectEl,false);}
var zipUpdater=new ZipUpdater(this.countryEl.value,this.zipEl);zipUpdater.update();},setMarkDisplay:function(elem,display){elem=$(elem);var labelElement=elem.up(0).down('label > span.required')||elem.up(1).down('label > span.required')||elem.up(0).down('label.required > em')||elem.up(1).down('label.required > em');if(labelElement){inputElement=labelElement.up().next('input');if(display){labelElement.show();if(inputElement){inputElement.addClassName('required-entry');}}else{labelElement.hide();if(inputElement){inputElement.removeClassName('required-entry');}}}}}
ZipUpdater=Class.create();ZipUpdater.prototype={initialize:function(country,zipElement)
{this.country=country;this.zipElement=$(zipElement);},update:function()
{if(typeof optionalZipCountries=='undefined'){return false;}
if(this.zipElement!=undefined){this._setPostcodeOptional();}else{Event.observe(window,"load",this._setPostcodeOptional.bind(this));}},_setPostcodeOptional:function()
{this.zipElement=$(this.zipElement);if(this.zipElement==undefined){return false;}
var label=$$('label[for="'+this.zipElement.id+'"]')[0];if(label!=undefined){var wildCard=label.down('em')||label.down('span.required');}
if(optionalZipCountries.indexOf(this.country)!=-1){while(this.zipElement.hasClassName('required-entry')){this.zipElement.removeClassName('required-entry');}
if(wildCard!=undefined){wildCard.hide();}}else{this.zipElement.addClassName('required-entry');if(wildCard!=undefined){wildCard.show();}}}};var mainNav=function(){var main={obj_nav:$(arguments[0])||$("nav"),settings:{show_delay:0,hide_delay:0,_ie6:/MSIE 6.+Win/.test(navigator.userAgent),_ie7:/MSIE 7.+Win/.test(navigator.userAgent)},init:function(obj,level){obj.lists=obj.childElements();obj.lists.each(function(el,ind){main.handlNavElement(el);if((main.settings._ie6||main.settings._ie7)&&level){main.ieFixZIndex(el,ind,obj.lists.size());}});if(main.settings._ie6&&!level){document.execCommand("BackgroundImageCache",false,true);}},handlNavElement:function(list){if(list!==undefined){list.onmouseover=function(){main.fireNavEvent(this,true);};list.onmouseout=function(){main.fireNavEvent(this,false);};if(list.down("ul")){main.init(list.down("ul"),true);}}},ieFixZIndex:function(el,i,l){if(el.tagName.toString().toLowerCase().indexOf("iframe")==-1){el.style.zIndex=l-i;}else{el.onmouseover="null";el.onmouseout="null";}},fireNavEvent:function(elm,ev){if(ev){elm.addClassName("over");elm.down("a").addClassName("over");if(elm.childElements()[1]){main.show(elm.childElements()[1]);}}else{elm.removeClassName("over");elm.down("a").removeClassName("over");if(elm.childElements()[1]){main.hide(elm.childElements()[1]);}}},show:function(sub_elm){if(sub_elm.hide_time_id){clearTimeout(sub_elm.hide_time_id);}
sub_elm.show_time_id=setTimeout(function(){if(!sub_elm.hasClassName("shown-sub")){sub_elm.addClassName("shown-sub");}},main.settings.show_delay);},hide:function(sub_elm){if(sub_elm.show_time_id){clearTimeout(sub_elm.show_time_id);}
sub_elm.hide_time_id=setTimeout(function(){if(sub_elm.hasClassName("shown-sub")){sub_elm.removeClassName("shown-sub");}},main.settings.hide_delay);}};if(arguments[1]){main.settings=Object.extend(main.settings,arguments[1]);}
if(main.obj_nav){main.init(main.obj_nav,false);}};document.observe("dom:loaded",function(){mainNav("nav",{"show_delay":"100","hide_delay":"100"});});;function popWin(url,win,para){var win=window.open(url,win,para);win.focus();}
function setLocation(url){window.location.href=url;}
function setPLocation(url,setFocus){if(setFocus){window.opener.focus();}
window.opener.location.href=url;}
function setLanguageCode(code,fromCode){var href=window.location.href;var after='',dash;if(dash=href.match(/\#(.*)$/)){href=href.replace(/\#(.*)$/,'');after=dash[0];}
if(href.match(/[?]/)){var re=/([?&]store=)[a-z0-9_]*/;if(href.match(re)){href=href.replace(re,'$1'+code);}else{href+='&store='+code;}
var re=/([?&]from_store=)[a-z0-9_]*/;if(href.match(re)){href=href.replace(re,'');}}else{href+='?store='+code;}
if(typeof(fromCode)!='undefined'){href+='&from_store='+fromCode;}
href+=after;setLocation(href);}
function decorateGeneric(elements,decorateParams)
{var allSupportedParams=['odd','even','first','last'];var _decorateParams={};var total=elements.length;if(total){if(typeof(decorateParams)=='undefined'){decorateParams=allSupportedParams;}
if(!decorateParams.length){return;}
for(var k in allSupportedParams){_decorateParams[allSupportedParams[k]]=false;}
for(var k in decorateParams){_decorateParams[decorateParams[k]]=true;}
if(_decorateParams.first){Element.addClassName(elements[0],'first');}
if(_decorateParams.last){Element.addClassName(elements[total-1],'last');}
for(var i=0;i<total;i++){if((i+1)%2==0){if(_decorateParams.even){Element.addClassName(elements[i],'even');}}
else{if(_decorateParams.odd){Element.addClassName(elements[i],'odd');}}}}}
function decorateTable(table,options){var table=$(table);if(table){var _options={'tbody':false,'tbody tr':['odd','even','first','last'],'thead tr':['first','last'],'tfoot tr':['first','last'],'tr td':['last']};if(typeof(options)!='undefined'){for(var k in options){_options[k]=options[k];}}
if(_options['tbody']){decorateGeneric(table.select('tbody'),_options['tbody']);}
if(_options['tbody tr']){decorateGeneric(table.select('tbody tr'),_options['tbody tr']);}
if(_options['thead tr']){decorateGeneric(table.select('thead tr'),_options['thead tr']);}
if(_options['tfoot tr']){decorateGeneric(table.select('tfoot tr'),_options['tfoot tr']);}
if(_options['tr td']){var allRows=table.select('tr');if(allRows.length){for(var i=0;i<allRows.length;i++){decorateGeneric(allRows[i].getElementsByTagName('TD'),_options['tr td']);}}}}}
function decorateList(list,nonRecursive){if($(list)){if(typeof(nonRecursive)=='undefined'){var items=$(list).select('li')}
else{var items=$(list).childElements();}
decorateGeneric(items,['odd','even','last']);}}
function decorateDataList(list){list=$(list);if(list){decorateGeneric(list.select('dt'),['odd','even','last']);decorateGeneric(list.select('dd'),['odd','even','last']);}}
function parseSidUrl(baseUrl,urlExt){sidPos=baseUrl.indexOf('/?SID=');sid='';urlExt=(urlExt!=undefined)?urlExt:'';if(sidPos>-1){sid='?'+baseUrl.substring(sidPos+2);baseUrl=baseUrl.substring(0,sidPos+1);}
return baseUrl+urlExt+sid;}
function formatCurrency(price,format,showPlus){precision=isNaN(format.precision=Math.abs(format.precision))?2:format.precision;requiredPrecision=isNaN(format.requiredPrecision=Math.abs(format.requiredPrecision))?2:format.requiredPrecision;precision=requiredPrecision;integerRequired=isNaN(format.integerRequired=Math.abs(format.integerRequired))?1:format.integerRequired;decimalSymbol=format.decimalSymbol==undefined?",":format.decimalSymbol;groupSymbol=format.groupSymbol==undefined?".":format.groupSymbol;groupLength=format.groupLength==undefined?3:format.groupLength;if(showPlus==undefined||showPlus==true){s=price<0?"-":(showPlus?"+":"");}else if(showPlus==false){s='';}
i=parseInt(price=Math.abs(+price||0).toFixed(precision))+"";pad=(i.length<integerRequired)?(integerRequired-i.length):0;while(pad){i='0'+i;pad--;}
j=(j=i.length)>groupLength?j%groupLength:0;re=new RegExp("(\\d{"+groupLength+"})(?=\\d)","g");r=(j?i.substr(0,j)+groupSymbol:"")+i.substr(j).replace(re,"$1"+groupSymbol)+(precision?decimalSymbol+Math.abs(price-i).toFixed(precision).replace(/-/,0).slice(2):"")
if(format.pattern.indexOf('{sign}')==-1){pattern=s+format.pattern;}else{pattern=format.pattern.replace('{sign}',s);}
return pattern.replace('%s',r).replace(/^\s\s*/,'').replace(/\s\s*$/,'');};function expandDetails(el,childClass){if(Element.hasClassName(el,'show-details')){$$(childClass).each(function(item){item.hide()});Element.removeClassName(el,'show-details');}
else{$$(childClass).each(function(item){item.show()});Element.addClassName(el,'show-details');}}
var isIE=navigator.appVersion.match(/MSIE/)=="MSIE";if(!window.Varien)
var Varien=new Object();Varien.showLoading=function(){Element.show('loading-process');}
Varien.hideLoading=function(){Element.hide('loading-process');}
Varien.GlobalHandlers={onCreate:function(){Varien.showLoading();},onComplete:function(){if(Ajax.activeRequestCount==0){Varien.hideLoading();}}};Ajax.Responders.register(Varien.GlobalHandlers);Varien.searchForm=Class.create();Varien.searchForm.prototype={initialize:function(form,field,emptyText){this.form=$(form);this.field=$(field);this.emptyText=emptyText;Event.observe(this.form,'submit',this.submit.bind(this));Event.observe(this.field,'focus',this.focus.bind(this));Event.observe(this.field,'blur',this.blur.bind(this));this.blur();},submit:function(event){if(this.field.value==this.emptyText||this.field.value==''){Event.stop(event);return false;}
return true;},focus:function(event){if(this.field.value==this.emptyText){this.field.value='';}},blur:function(event){if(this.field.value==''){this.field.value=this.emptyText;}},initAutocomplete:function(url,destinationElement){new Ajax.Autocompleter(this.field,destinationElement,url,{paramName:this.field.name,method:'get',minChars:2,updateElement:this._selectAutocompleteItem.bind(this),onShow:function(element,update){if(!update.style.position||update.style.position=='absolute'){update.style.position='absolute';Position.clone(element,update,{setHeight:false,offsetTop:element.offsetHeight});}
Effect.Appear(update,{duration:0});}});},_selectAutocompleteItem:function(element){if(element.title){this.field.value=element.title;}
this.form.submit();}}
Varien.Tabs=Class.create();Varien.Tabs.prototype={initialize:function(selector){var self=this;$$(selector+' a').each(this.initTab.bind(this));},initTab:function(el){el.href='javascript:void(0)';if($(el.parentNode).hasClassName('active')){this.showContent(el);}
el.observe('click',this.showContent.bind(this,el));},showContent:function(a){var li=$(a.parentNode),ul=$(li.parentNode);ul.getElementsBySelector('li','ol').each(function(el){var contents=$(el.id+'_contents');if(el==li){el.addClassName('active');contents.show();}else{el.removeClassName('active');contents.hide();}});}}
Varien.DOB=Class.create();Varien.DOB.prototype={initialize:function(selector,required,format){var el=$$(selector)[0];this.day=Element.select($(el),'.dob-day input')[0];this.month=Element.select($(el),'.dob-month input')[0];this.year=Element.select($(el),'.dob-year input')[0];this.dob=Element.select($(el),'.dob-full input')[0];this.advice=Element.select($(el),'.validation-advice')[0];this.required=required;this.format=format;this.day.validate=this.validate.bind(this);this.month.validate=this.validate.bind(this);this.year.validate=this.validate.bind(this);this.year.setAttribute('autocomplete','off');this.advice.hide();},validate:function(){var error=false;if(this.day.value==''&&this.month.value==''&&this.year.value==''){if(this.required){error='This date is a required value.';}else{this.dob.value='';}}else if(this.day.value==''||this.month.value==''||this.year.value==''){error='Please enter a valid full date.';}else{var date=new Date();if(this.day.value<1||this.day.value>31){error='Please enter a valid day (1-31).';}else if(this.month.value<1||this.month.value>12){error='Please enter a valid month (1-12).';}else if(this.year.value<1900||this.year.value>date.getFullYear()){error='Please enter a valid year (1900-'+date.getFullYear()+').';}else{this.dob.value=this.format.replace(/(%m|%b)/i,this.month.value).replace(/(%d|%e)/i,this.day.value).replace(/%y/i,this.year.value);var testDOB=this.month.value+'/'+this.day.value+'/'+this.year.value;var test=new Date(testDOB);if(isNaN(test)){error='Please enter a valid date.';}}}
if(error!==false){try{this.advice.innerHTML=Translator.translate(error);}
catch(e){this.advice.innerHTML=error;}
this.advice.show();return false;}
this.advice.hide();return true;}}
Validation.addAllThese([['validate-custom',' ',function(v,elm){return elm.validate();}]]);function truncateOptions(){$$('.truncated').each(function(element){Event.observe(element,'mouseover',function(){if(element.down('div.truncated_full_value')){element.down('div.truncated_full_value').addClassName('show')}});Event.observe(element,'mouseout',function(){if(element.down('div.truncated_full_value')){element.down('div.truncated_full_value').removeClassName('show')}});});}
Event.observe(window,'load',function(){truncateOptions();});Element.addMethods({getInnerText:function(element)
{element=$(element);if(element.innerText&&!Prototype.Browser.Opera){return element.innerText}
return element.innerHTML.stripScripts().unescapeHTML().replace(/[\n\r\s]+/g,' ').strip();}});if(!("console"in window)||!("firebug"in console))
{var names=["log","debug","info","warn","error","assert","dir","dirxml","group","groupEnd","time","timeEnd","count","trace","profile","profileEnd"];window.console={};for(var i=0;i<names.length;++i)
window.console[names[i]]=function(){}}
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);}};Cufon.replace('h1',{fontFamily:'Helvetica Neue LT'});Cufon.replace('.promoBoxes .box p',{fontFamily:'Arial'});Cufon.replace('.boxLeftCol p',{fontFamily:'Arial'});jQuery(function($){var k=$("#max_cat_id").val();for(i=5;i<=k;i++)
{$('#drop'+i).attr("style","display:none; position:absolute; left:0; top:29px; z-index:1000;");}
$(".hSliderHolder #images").jCarouselLite({btnNext:".h_next",btnPrev:".h_prev",speed:500,visible:1.5});});var constructed=new Array();constructed[0]=1;constructed[1]=0;constructed[2]=0;constructed[3]=0;constructed[4]=0;jQuery(document).ready(function($){$('.details').hide();$('.listItem2 .details').show();$('#details_2').show();$('#catContent1').show();$('a.image_sec').colorbox();if(document.getElementById('customer-reviews'))
{$('#details_3').slideDown(400);$('.tabs').hide();}
else
{$('#revi').click(function(){$('.tabs a').removeClass('active');$(this).addClass('active');$('.details').slideUp(400);$('#details_4').slideDown(400);return false;});$('#high').click(function(){$('.tabs a').removeClass('active');$(this).addClass('active');$('.details').slideUp(400);$('#details_1').slideDown(400);return false;});$('#desc').click(function(){$('.tabs a').removeClass('active');$(this).addClass('active');$('.details').slideUp(400);$('#details_2').slideDown(400);return false;});$('#tags').click(function(){$('.tabs a').removeClass('active');$(this).addClass('active');$('.details').slideUp(400);$('#details_3').slideDown(400);return false;});}
$('.image_sec').mouseenter(function(){$('#image').attr('src',$(this).attr('href'));});$('.catTab').click(function(){if(!$(this).hasClass('active'))
{$('.active').removeClass('active');$(this).addClass('active');$('.specs .details').hide();'.specs .details'
k=$(this).attr('id');k=k.substr(6);$('#catContent'+k).show();carousel('#images'+k);}});function carousel(item)
{var id=item.substr(7);if(constructed[id]!=1)
{$(item).jCarouselLite({btnNext:".h_next",btnPrev:".h_prev",speed:500,visible:5,circular:true,start:0});$(item+' img').each(function(){$(this).addClass('reflex');$(this).addClass('iopacity25');});if(window.attachEvent&&!window.opera)addIEReflex();else addReflex();constructed[id]=1;}}
featuredcontentglider.init({gliderid:"canadaprovinces",contentclass:"glidecontent",togglerid:"p-select",remotecontent:"",selected:0,persiststate:false,speed:950,direction:"rightleft",autorotate:true,autorotateconfig:[5000,99]})});optionalZipCountries=[];var aw_ajaxcartpro_proganim='center';var aw_ajaxcartpro_cartanim='opacity';var aw_base_url='http://magento.theirtoys.com/';AW_ACP={cartURL:'http://magento.theirtoys.com/checkout/cart/',useConfirmation:1,isCartPage:0,theme:'default',onRender:[]}
if(window.location.href.match('https://')&&!AW_ACP.cartURL.match('https://')){AW_ACP.cartURL=AW_ACP.cartURL.replace('http://','https://')}
var aw_cartDivClass='#mini-cart';updateCartView=function(resp){var __cartObj=$$(aw_cartDivClass)[0];if(__cartObj){if(typeof(__cartObj.length)=='number')__cartObj=__cartObj[0];var oldHeight=__cartObj.offsetHeight;var tmpDiv=win.document.createElement('div');tmpDiv.innerHTML=resp.cart.replace('\n<!-- -->\n','');var tmpParent=__cartObj.parentNode;tmpParent.replaceChild(tmpDiv.firstChild,__cartObj);var __cartObj=$$(aw_cartDivClass)[0];var newHeight=__cartObj.offsetHeight;updateDeleteLinks();updateTopLinks(resp);}
updateBigCartView(resp);};;Prototype.Browser.IE6=Prototype.Browser.IE&&parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5))==6;Prototype.Browser.IE7=Prototype.Browser.IE&&parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5))==7;Prototype.Browser.IE8=Prototype.Browser.IE&&!Prototype.Browser.IE6&&!Prototype.Browser.IE7;window.ACPTop=200;if(!Prototype.Browser.IE6){setLocation=function(url){if(window.location.href.match('https://')&&!url.match('https://')){url=url.replace('http://','https://')}
if(AW_ACP.isCartPage&&((url.search('/add')!=-1)||(url.search('/remove')!=-1))){ajaxcartsend(url+'awacp/1/is_checkout/1','url','','');}else if(url.search('checkout/cart/add')!=-1){ajaxcartsend(url+'awacp/1','url','','');}else if(url.search('wishlist/index/cart')!=-1){ajaxcartsendwishlist(url+'awwishl/1/awacp/1','url','','');}else{window.location.href=url;}}}
if(!Prototype.Browser.IE6){var cnt1=20;__intId=setInterval(function(){cnt1--;if(typeof productAddToCartForm!='undefined'){try{$$('#product_addtocart_form '+aw_addToCartButtonClass).each(function(el){el.setAttribute('type','button')})}catch(err){}
productAddToCartForm.submit=function(url){if(this.validator&&this.validator.validate()){ajaxcartsend('?awacp=1','form',this,'');}
return false;}
productAddToCartForm.form.onsubmit=function(){productAddToCartForm.submit();return false;};clearInterval(__intId);}
if(!cnt1)clearInterval(__intId);},500);var cnt2=20;__intId2=setInterval(function(){cnt2--;if(typeof aw_cartDivClass!='undefined'&&$$(aw_cartDivClass).length||((typeof AW_ACP!=='undefined')&&AW_ACP.isCartPage)){updateDeleteLinks();clearInterval(__intId2);}
if(!cnt2)clearInterval(__intId);},500);}
function setPLocation(url,setFocus){if(url.search('checkout/cart/add')!=-1){window.opener.focus();if(url[url.length-1]=='/')delim='';else delim='/';if(window.opener.location.pathname.search('checkout/cart')==-1)
window.opener.ajaxcartsend(url+delim+'awacp/1','url','');else
window.opener.ajaxcartsend(url+delim+'awacp/1/is_checkout/1','url','');}
else{if(setFocus){window.opener.focus();}
window.opener.location.href=url;}}
function ajaxcartsendwishlist(url,type,obj){url=getCommonUrl(url);showProgressAnimation();new Ajax.Request(url,{onSuccess:function(resp){try{if(typeof(resp.responseText)=='string')eval('resp = '+resp.responseText);}catch(e){win.location.href=url;hideProgressAnimation();return;}
hideProgressAnimation();if(resp.r!='success'){win.location.href=url;}
else{if(AW_ACP.useConfirmation){showConfirmDialog();}
__onACPRender();updateCartView(resp);updateTopLinks(resp);updateWishlist(resp);updateWishlistTopLinks(resp)}}});}
function ajaxcartsend(url,type,obj){url=getCommonUrl(url)
showProgressAnimation();if(type=='form'){$('product_addtocart_form').action+=url;$('product_addtocart_form').request({onComplete:function(resp){if(typeof(resp.responseText)=='string'){try{eval('resp = '+resp.responseText);}catch(e){return obj.form.submit();}}
hideProgressAnimation();if(resp.r!='success'){obj.form.submit();}
else{__onACPRender();if(AW_ACP.useConfirmation&&(url.search('is_checkout/1')!=1)){showConfirmDialog();}
updateCartView(resp);}}})}
if(type=='url'){new Ajax.Request(url,{onSuccess:function(resp){try{if(typeof(resp.responseText)=='string')eval('resp = '+resp.responseText);}catch(e){win.location.href=url;hideProgressAnimation();return;}
hideProgressAnimation();if(resp.r!='success'){win.location.href=url;}
else{if(AW_ACP.useConfirmation&&(url.search('is_checkout/1')==-1)){showConfirmDialog();}
__onACPRender();updateCartView(resp);}}});}}
function __onACPRender(){if(AW_ACP.onRender&&AW_ACP.onRender.length){$A(AW_ACP.onRender).each(function(h){h(AW_ACP)})}}
function addEffectACP(obj,effect)
{if(effect=='opacity'){$(obj).hide();new Effect.Appear(obj);}
if(effect=='grow'){$(obj).hide();new Effect.BlindDown(obj);}
if(effect=='blink'){new Effect.Pulsate(obj);}}
function updateDeleteLinks(){var tmpLinks=document.links;for(i=0;i<tmpLinks.length;i++){if(tmpLinks[i].href.search('checkout/cart/delete')!=-1){url=tmpLinks[i].href.replace(/\/uenc\/.+,/g,"");var del=url.match(/delete\/id\/\d+\//g);var id=del[0].match(/\d+/g);if(window.location.protocol=='https:'){aw_base_url=aw_base_url.replace("http:","https:");}
if(!AW_ACP.isCartPage){tmpLinks[i].href='javascript:ajaxcartprodelete("'+aw_base_url+'ajaxcartpro/cart/remove/id/'+id+'")';}else{tmpLinks[i].href='javascript:ajaxcartprodelete("'+aw_base_url+'ajaxcartpro/cart/remove/id/'+id+'/is_checkout/1")';}}}}
function updateTopLinks(resp){if($$(aw_topLinkCartClass).length){$$(aw_topLinkCartClass)[0].title=$$(aw_topLinkCartClass)[0].innerHTML=resp.links;}}
function updateWishlistTopLinks(resp){if($$(aw_topWishlistLinkCartClass).length){$$(aw_topWishlistLinkCartClass)[0].innerHTML=resp.wishlist_links;}}
window.updateBigCartView=function(resp){$$(aw_bigCartClass)[0].innerHTML=resp.cart
if($('shopping-cart-table')){decorateTable('shopping-cart-table')}
updateDeleteLinks();updateTopLinks(resp);updateAddLinks();var scripts=resp.cart.match(/<script[^>]*>([^<]+)<\/script>/gim);if(scripts)
{for(var i=0;i<scripts.length;i++){var code=scripts[i].match(/<script[^>]*>([^<]+)<\/script>/im)[1].replace(/var\s+/g,'');try{eval(code)}catch(e){}}}}
function showProgressAnimation(){var pW=260;var pH=50;var p=$$('.ajaxcartpro_progress')[0];p.style.width=pW+'px';p.style.height=pH+'px';if(Prototype.Browser.IE&&!navigator.appVersion.match("8")){p.style.position='absolute';window.ACPTop=200;}
if(aw_ajaxcartpro_proganim=='center'){if(!(Prototype.Browser.IE&&!navigator.appVersion.match("8"))){p.style.top=(screen.height/2)-(pH)+'px';}else{window.ACPTop=200;}}
if(aw_ajaxcartpro_proganim=='top'){if(!(Prototype.Browser.IE&&!navigator.appVersion.match("8"))){p.style.top='0px';}else{window.ACPTop=0;}}
if(aw_ajaxcartpro_proganim=='bottom'){p.style.bottom='0px';}
if(aw_ajaxcartpro_proganim!='none'){p.style.display='block';}}
var beginCounter;Event.observe(window,'load',function()
{if(typeof $$('#ACPcountdown')[0]!='undefined')
beginCounter=parseInt($$('#ACPcountdown')[0].innerHTML);});function showConfirmDialog(){var pW=260;var pH=104;var p=$$('.ajaxcartpro_confirm')[0];p.style.width=pW+'px';p.style.height=pH+'px';if(Prototype.Browser.IE&&!navigator.appVersion.match("8")){p.style.position='absolute';}else{p.style.position='fixed';if(aw_ajaxcartpro_proganim=='center'){p.style.top=(screen.height/2)-(pH)+'px';}
if(aw_ajaxcartpro_proganim=='top'){p.style.top='0px';}
if(aw_ajaxcartpro_proganim=='bottom'){p.style.bottom='0px';}
if(aw_ajaxcartpro_proganim=='none'){p.style.top=(screen.height/2)-(pH)+'px';}}
p.style.display='block';var ACPcountdown=$$('#ACPcountdown')[0];if(typeof ACPcountdown!='undefined')
{ACPcountdown.innerHTML=beginCounter;if(typeof __intId3!='undefined')clearInterval(__intId3);__intId3=setInterval(function(){if(parseInt(ACPcountdown.innerHTML)){ACPcountdown.innerHTML=parseInt(ACPcountdown.innerHTML)-1;}
else
{clearInterval(__intId3);p.style.display="none";ACPcountdown.innerHTML=beginCounter;}},1000);}}
function hideProgressAnimation(){$$('.ajaxcartpro_progress')[0].style.display='none';}
if(!Prototype.Browser.IE6){window.onload=function(){updateAddLinks()
$('aw_acp_continue').onclick=function(e){e=e||event;if(e.preventDefault)
e.preventDefault()
$$('.ajaxcartpro_confirm')[0].style.display='none';return false;}
$('aw_acp_checkout').onclick=function(e){$$('.ajaxcartpro_confirm')[0].style.display='none';return true;}
if((typeof aw_cartDivClass!='undefined')&&($$(aw_cartDivClass).length||((typeof AW_ACP!=='undefined')&&AW_ACP.isCartPage))){updateDeleteLinks();}}}
function updateAddLinks(){var ats=document.links;for(i=ats.length-1;i>=0;i--){if(ats[i].href.search('checkout/cart/add')!=-1){ats[i].onclick=function(link){return function(){setLocation(link)}}(ats[i].href);ats[i].href="javascript:void(0)";}}}
function getCommonUrl(url){if(window.location.href.match('www.')&&url.match('http://')&&!url.match('www.')){url=url.replace('http://','http://www.');}else if(!window.location.href.match('www.')&&url.match('http://')&&url.match('www.')){url=url.replace('www.','');}
return url;};window.intPrevious=setInterval(function(){if(typeof AW_ACP!='undefined'&&document.body){if(typeof aw_cartDivClass=='undefined'){aw_cartDivClass=AW_ACP.theme=='blank'?'.block-cart':'.mini-cart';if(!$$(aw_cartDivClass).length||!$$(aw_cartDivClass)[0].tagName){aw_cartDivClass='.block-cart'}}
if(typeof aw_topLinkCartClass=='undefined'){aw_topLinkCartClass='.top-link-cart';}
if(typeof aw_addToCartButtonClass=='undefined'){aw_addToCartButtonClass='.form-button';}
if(typeof aw_bigCartClass=='undefined'){aw_bigCartClass=AW_ACP.theme=='modern'?'.layout-1column':'.col-main';}
if(typeof aw_wishlistClass=='undefined'){aw_wishlistClass='.my-wishlist';}
if(typeof aw_topWishlistLinkCartClass=='undefined'){aw_topWishlistLinkCartClass='.top-link-wishlist';}
if(window.location.toString().search('/product_compare/')!=-1){win=window.opener;}
else{win=window;}
clearInterval(intPrevious)}},500);function ajaxcartprodelete(url){showProgressAnimation();url=getCommonUrl(url)
new Ajax.Request(url,{onSuccess:function(resp){try{if(typeof(resp.responseText)=='string')eval('resp = '+resp.responseText);}catch(e){return;}
hideProgressAnimation();__onACPRender()
updateCartView(resp,'');}});}
function ajaxgetcartpro(url){url=getCommonUrl(url)
new Ajax.Request(url,{onSuccess:function(resp){try{if(typeof(resp.responseText)=='string')eval('resp = '+resp.responseText);}catch(e){return;}
__onACPRender()
updateCartView(resp,'');}});}
function updateCartViewNoEffect(resp){if(AW_ACP.isCartPage)return updateBigCartView(resp);var __cartObj=$$(aw_cartDivClass)[0];if(!__cartObj)return false;if(typeof(__cartObj.length)=='number')__cartObj=__cartObj[0];var oldHeight=__cartObj.offsetHeight;var tmpDiv=win.document.createElement('div');tmpDiv.innerHTML=resp.cart;var tmpParent=__cartObj.parentNode;tmpParent.replaceChild(tmpDiv.firstChild,__cartObj);var __cartObj=$$(aw_cartDivClass)[0];var newHeight=__cartObj.offsetHeight;__cartObj.style.display="block";updateDeleteLinks();updateTopLinks(resp);}
function updateCartView(resp){if(AW_ACP.isCartPage)return updateBigCartView(resp);var __cartObj=$$(aw_cartDivClass)[0];if(!__cartObj)return false;if(typeof(__cartObj.length)=='number')__cartObj=__cartObj[0];var oldHeight=__cartObj.offsetHeight;var tmpDiv=win.document.createElement('div');tmpDiv.innerHTML=resp.cart;var tmpParent=__cartObj.parentNode;tmpParent.replaceChild(tmpDiv.firstChild,__cartObj);var __cartObj=$$(aw_cartDivClass)[0];var newHeight=__cartObj.offsetHeight;addEffectACP(__cartObj,aw_ajaxcartpro_cartanim);updateDeleteLinks();updateTopLinks(resp);}
function updateWishlist(resp)
{var wishlistObj=$$(aw_wishlistClass)[0];if(wishlistObj){var tmpDiv=win.document.createElement('div');tmpDiv.innerHTML=resp.wishlist;var tmpParent=wishlistObj.parentNode;tmpParent.replaceChild(tmpDiv.firstChild,wishlistObj);}};function distilledCheckAnalyticsCookie(){var cookiename="__utma";var cookiecheck=0;var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){while(cookies[i].charAt(0)==' ')cookies[i]=cookies[i].substring(1,cookies[i].length);if(cookies[i].indexOf(cookiename+'=')==0){cookiecheck=1;}}
return cookiecheck;}
function distilledTruncate(input){var byteLength=63;if(encodeURIComponent(input).substr(byteLength-2,1)=="%"){truncatedInput=decodeURIComponent(encodeURIComponent(input).substr(0,byteLength-2));}else if(encodeURIComponent(input).substr(byteLength-1,1)=="%"){truncatedInput=decodeURIComponent(encodeURIComponent(input).substr(0,byteLength-1));}else{truncatedInput=decodeURIComponent(encodeURIComponent(input).substr(0,byteLength));}
return truncatedInput;}
function distilledFirstTouch(pageTracker){try{if(distilledCheckAnalyticsCookie()===0){pageTracker._setCustomVar(1,"l",distilledTruncate(window.location.pathname),1);pageTracker._setCustomVar(2,"s",distilledTruncate(window.location.search),1);pageTracker._setCustomVar(3,"r",distilledTruncate(document.referrer.substr(7,document.referrer.length)),1);pageTracker._setCustomVar(4,"q",distilledTruncate(document.referrer.match(/(?:([#]|[?]|[&]))(?:(encquery|k|p|q|qs|qt|query|rdata|search_word|szukaj|terms|text|wd|words))=[^&]*/i)[0]),1);}}catch(err){}}
function asyncDistilledFirstTouch(asyncStack){try{if(distilledCheckAnalyticsCookie()===0){asyncStack.push(['_setCustomVar',1,"l",distilledTruncate(window.location.pathname),1]);asyncStack.push(['_setCustomVar',2,"s",distilledTruncate(window.location.search),1]);asyncStack.push(['_setCustomVar',3,"r",distilledTruncate(document.referrer.substr(7,document.referrer.length)),1]);asyncStack.push(['_setCustomVar',4,"q",distilledTruncate(document.referrer.match(/(?:([#]|[?]|[&]))(?:(encquery|k|p|q|qs|qt|query|rdata|search_word|szukaj|terms|text|wd|words))=[^&]*/i)[0]),1]);}}catch(err){}}
function asyncDistilledFirstTouchOverwrite(){if(distilledCheckAnalyticsCookie()!=0){var savedReferrer=readCookie('__utmv');console.log(savedReferrer);}}
function readCookie(cookiename){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){while(cookies[i].charAt(0)==' ')cookies[i]=cookies[i].substring(1,cookies[i].length);if(cookies[i].indexOf(cookiename+'=')==0){return unescape(cookies[i]);}}
return false;}
