var dayHost="www.qa.appliedbiosystems.com";
/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context)},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this}if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){selector=jQuery.clean([match[1]],context)}else{var elem=document.getElementById(match[3]);if(elem&&elem.id!=match[3]){return jQuery().find(selector)}var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret}}else{return jQuery(context).find(selector)}}else{if(jQuery.isFunction(selector)){return jQuery(document).ready(selector)}}if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context}return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num]},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector}else{if(name){ret.selector=this.selector+"."+name+"("+selector+")"}}return ret},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this},each:function(callback,args){return jQuery.each(this,callback,args)},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this)},attr:function(name,value,type){var options=name;if(typeof name==="string"){if(value===undefined){return this[0]&&jQuery[type||"attr"](this[0],name)}else{options={};options[name]=value}}return this.each(function(i){for(name in options){jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name))}})},css:function(key,value){if((key=="width"||key=="height")&&parseFloat(value)<0){value=undefined}return this.attr(key,value,"curCSS")},text:function(text){if(typeof text!=="object"&&text!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text))}var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8){ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this])}})});return ret},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode){wrap.insertBefore(this[0])}wrap.map(function(){var elem=this;while(elem.firstChild){elem=elem.firstChild}return elem}).append(this)}return this},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html)})},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html)})},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1){this.appendChild(elem)}})},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1){this.insertBefore(elem,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this)})},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)})},end:function(){return this.prevObject||jQuery([])},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem)})),"find",selector)}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML}return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName){return }var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data)}}i++})}return ret},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i)})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1})),"filter",selector)},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur}cur=cur.parentNode;closer++}})},not:function(selector){if(typeof selector==="string"){if(isSimple.test(selector)){return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector)}else{selector=jQuery.multiFilter(selector,this)}}var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector})},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))))},is:function(selector){return !!selector&&jQuery.multiFilter(selector,this).length>0},hasClass:function(selector){return !!selector&&this.is("."+selector)},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text}if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0){return null}for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one){return value}values.push(value)}}return values}return(elem.value||"").replace(/\r/g,"")}return undefined}if(typeof value==="number"){value+=""}return this.each(function(){if(this.nodeType!=1){return }if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type)){this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0)}else{if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0)});if(!values.length){this.selectedIndex=-1}}else{this.value=value}}})},html:function(value){return value===undefined?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(value)},replaceWith:function(value){return this.after(value).remove()},eq:function(i){return this.slice(i,+i+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first){for(var i=0,l=this.length;i<l;i++){callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment)}}if(scripts){jQuery.each(scripts,evalScript)}}return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"})}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"")}if(elem.parentNode){elem.parentNode.removeChild(elem)}}function now(){return +new Date}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2}if(typeof target!=="object"&&!jQuery.isFunction(target)){target={}}if(length==i){target=this;--i}for(;i<length;i++){if((options=arguments[i])!=null){for(var name in options){var src=target[name],copy=options[name];if(target===copy){continue}if(deep&&copy&&typeof copy==="object"&&!copy.nodeType){target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy)}else{if(copy!==undefined){target[name]=copy}}}}}return target};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery}return jQuery},isFunction:function(obj){return toString.call(obj)==="[object Function]"},isArray:function(obj){return toString.call(obj)==="[object Array]"},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument)},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval){script.appendChild(document.createTextNode(data))}else{script.text=data}head.insertBefore(script,head.firstChild);head.removeChild(script)}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase()},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object){if(callback.apply(object[name],args)===false){break}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break}}}}else{if(length===undefined){for(name in object){if(callback.call(object[name],name,object[name])===false){break}}}else{for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}}return object},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value)){value=value.call(elem,i)}return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className)){elem.className+=(elem.className?" ":"")+className}})},remove:function(elem,classNames){if(elem.nodeType==1){elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return !jQuery.className.has(classNames,className)}).join(" "):""}},has:function(elem,className){return elem&&jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name]}callback.call(elem);for(var name in options){elem.style[name]=old[name]}},css:function(elem,name,force,extra){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return }jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0}if(extra==="margin"){val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0}else{val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0}})}if(elem.offsetWidth!==0){getWH()}else{jQuery.swap(elem,props,getWH)}return Math.max(0,Math.round(val))}return jQuery.curCSS(elem,name,force)},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret}if(name.match(/float/i)){name=styleFloat}if(!force&&style&&style[name]){ret=style[name]}else{if(defaultView.getComputedStyle){if(name.match(/float/i)){name="float"}name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle){ret=computedStyle.getPropertyValue(name)}if(name=="opacity"&&ret==""){ret="1"}}else{if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase()});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft}}}}return ret},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document}if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match){return[context.createElement(match[1])]}}var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number"){elem+=""}if(!elem){return }if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">"});var tags=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--){div=div.lastChild}if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j])}}}if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem)){div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild)}elem=jQuery.makeArray(div.childNodes)}if(elem.nodeType){ret.push(elem)}else{ret=jQuery.merge(ret,elem)}});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i])}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))))}fragment.appendChild(ret[i])}}return scripts}return ret},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8){return undefined}var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode){elem.parentNode.selectedIndex}if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode){throw"type property can't be changed"}elem[name]=value}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue}if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined}return elem[name]}if(!jQuery.support.style&&notxml&&name=="style"){return jQuery.attr(elem.style,"cssText",value)}if(set){elem.setAttribute(name,""+value)}var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr}if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+""=="NaN"?"":"alpha(opacity="+value*100+")")}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase()});if(set){elem[name]=value}return elem[name]},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"")},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval){ret[0]=array}else{while(i){ret[--i]=array[i]}}}return ret},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i}}return -1},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null){if(elem.nodeType!=8){first[pos++]=elem}}}else{while((elem=second[i++])!=null){first[pos++]=elem}}return first},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i])}}}catch(e){ret=array}return ret},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++){if(!inv!=!callback(elems[i],i)){ret.push(elems[i])}}return ret},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null){ret[ret.length]=value}}return ret.concat.apply([],ret)}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode},parents:function(elem){return jQuery.dir(elem,"parentNode")},next:function(elem){return jQuery.nth(elem,2,"nextSibling")},prev:function(elem){return jQuery.nth(elem,2,"previousSibling")},nextAll:function(elem){return jQuery.dir(elem,"nextSibling")},prevAll:function(elem){return jQuery.dir(elem,"previousSibling")},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem)},children:function(elem){return jQuery.sibling(elem.firstChild)},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string"){ret=jQuery.multiFilter(selector,ret)}return this.pushStack(jQuery.unique(ret),name,selector)}});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems)}return this.pushStack(ret,name,selector)}});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1){this.removeAttribute(name)}},addClass:function(classNames){jQuery.className.add(this,classNames)},removeClass:function(classNames){jQuery.className.remove(this,classNames)},toggleClass:function(classNames,state){if(typeof state!=="boolean"){state=!jQuery.className.has(this,classNames)}jQuery.className[state?"add":"remove"](this,classNames)},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){jQuery(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments)}});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0}var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id){id=elem[expando]=++uuid}if(name&&!jQuery.cache[id]){jQuery.cache[id]={}}if(data!==undefined){jQuery.cache[id][name]=data}return name?jQuery.cache[id][name]:id},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id]){break}if(!name){jQuery.removeData(elem)}}}else{try{delete elem[expando]}catch(e){if(elem.removeAttribute){elem.removeAttribute(expando)}}delete jQuery.cache[id]}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data))}else{if(data){q.push(data)}}}return q},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx"){fn=queue[0]}if(fn!==undefined){fn.call(elem)}}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key)}return data===undefined&&parts[1]?this.data(parts[0]):data}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value)})}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key)})},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx"}if(data===undefined){return jQuery.queue(this[0],type)}return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1){queue[0].call(this)}})},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[]}if(!selector||typeof selector!=="string"){return results}var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift()}set=posProcess(selector,set)}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set)}else{prune=false}while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur=""}else{pop=parts.pop()}if(pop==null){pop=context}Expr.relative[cur](checkSet,pop,isXML(context))}}if(!checkSet){checkSet=set}if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector)}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)}else{if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])}}}}}else{makeArray(checkSet,results)}if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1)}}}}}return results};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[]}for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break}}}}if(!set){set=context.getElementsByTagName("*")}return{set:set,expr:expr}};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[]}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true}else{if(match===true){continue}}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true}else{curLoop[i]=false}}else{if(pass){result.push(item);anyFound=true}}}}}if(found!==undefined){if(!inplace){curLoop=result}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[]}break}}}if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr}else{break}}old=expr}return curLoop};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase()}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part}}if(isPartStr){Sizzle.filter(part,checkSet,true)}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[]}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])}}return ret.length===0?null:ret}},TAG:function(match,context){return context.getElementsByTagName(match[1])}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace){result.push(elem)}}else{if(inplace){curLoop[i]=false}}}}return false},ID:function(match){return match[1].replace(/\\/g,"")},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase()},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0}match[0]=done++;return match},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]}if(match[2]==="~="){match[4]=" "+match[4]+" "}return match},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret)}return false}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true}}return match},POS:function(match){match.unshift(true);return match}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"},disabled:function(elem){return elem.disabled===true},checked:function(elem){return elem.checked===true},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true},parent:function(elem){return !!elem.firstChild},empty:function(elem){return !elem.firstChild},has:function(elem,i,match){return !!Sizzle(match[3],elem).length},header:function(elem){return/h\d/i.test(elem.nodeName)},text:function(elem){return"text"===elem.type},radio:function(elem){return"radio"===elem.type},checkbox:function(elem){return"checkbox"===elem.type},file:function(elem){return"file"===elem.type},password:function(elem){return"password"===elem.type},submit:function(elem){return"submit"===elem.type},image:function(elem){return"image"===elem.type},reset:function(elem){return"reset"===elem.type},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON"},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)}},setFilters:{first:function(elem,i){return i===0},last:function(elem,i,match,array){return i===array.length-1},even:function(elem,i){return i%2===0},odd:function(elem,i){return i%2===1},lt:function(elem,i,match){return i<match[3]-0},gt:function(elem,i,match){return i>match[3]-0},nth:function(elem,i,match){return match[3]-0==i},eq:function(elem,i,match){return match[3]-0==i}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array)}else{if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0}else{if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false}}return true}}}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while(node=node.previousSibling){if(node.nodeType===1){return false}}if(type=="first"){return true}node=elem;case"last":while(node=node.nextSibling){if(node.nodeType===1){return false}}return true;case"nth":var first=match[2],last=match[3];if(first==1&&last==0){return true}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count}}parent.sizcache=doneName}var diff=elem.nodeIndex-last;if(first==0){return diff==0}else{return(diff%first==0&&diff/first>=0)}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array)}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results}return array};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i])}}else{for(var i=0;array[i];i++){ret.push(array[i])}}}return ret}}var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true}return ret}}else{if("sourceIndex" in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true}return ret}}else{if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true}return ret}}}}(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match}}root.removeChild(form)})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i])}}results=tmp}return results}}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return }Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)}catch(e){}}return oldSizzle(query,context,extra,seed)};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0){return }div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return }Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])}}})()}function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i}elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i}if(elem.nodeName===cur){match=elem;break}elem=elem[dir]}checkSet[i]=match}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i}elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i}if(typeof cur!=="string"){if(elem===cur){match=true;break}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;break}}}elem=elem[dir]}checkSet[i]=match}}}var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument)};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"")}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet)}return Sizzle.filter(later,tmpSet)};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem}).length};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")"}return Sizzle.matches(expr,elems)};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1){matched.push(cur)}cur=cur[dir]}return matched};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType==1&&++num==result){break}}return cur};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem){r.push(n)}}return r};return ;window.Sizzle=Sizzle})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8){return }if(elem.setInterval&&elem!=window){elem=window}if(!handler.guid){handler.guid=this.guid++}if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type]){jQuery.event.specialAll[type].setup.call(elem,data,namespaces)}if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener){elem.addEventListener(type,handle,false)}else{if(elem.attachEvent){elem.attachEvent("on"+type,handle)}}}}handlers[handler.guid]=handler;jQuery.event.global[type]=true});elem=null},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8){return }var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)==".")){for(var type in events){this.remove(elem,type+(types||""))}}else{if(types.type){handler=types.handler;types=types.type}jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler){delete events[type][handler.guid]}else{for(var handle in events[type]){if(namespace.test(events[type][handle].type)){delete events[type][handle]}}}if(jQuery.event.specialAll[type]){jQuery.event.specialAll[type].teardown.call(elem,namespaces)}for(ret in events[type]){break}if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener){elem.removeEventListener(type,jQuery.data(elem,"handle"),false)}else{if(elem.detachEvent){elem.detachEvent("on"+type,jQuery.data(elem,"handle"))}}}ret=null;delete events[type]}}})}for(ret in events){break}if(!ret){var handle=jQuery.data(elem,"handle");if(handle){handle.elem=null}jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle")}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true}if(!elem){event.stopPropagation();if(this.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem)}})}}if(!elem||elem.nodeType==3||elem.nodeType==8){return undefined}event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event)}event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle){handle.apply(elem,data)}if((!elem[type]||(jQuery.nodeName(elem,"a")&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false}if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,"a")&&type=="click")){this.triggered=true;try{elem[type]()}catch(e){}}this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent){jQuery.event.trigger(event,data,parent,true)}}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation()}}if(event.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event}var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop]}if(!event.target){event.target=event.srcElement||document}if(event.target.nodeType==3){event.target=event.target.parentNode}if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement}if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0)}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode}if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey}if(!event.which&&event.button){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)))}return event},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments)};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler)},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type)){remove++}});if(remove<1){jQuery.event.remove(this,namespaces[0],liveHandler)}}}}}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src)}if(src&&src.type){this.originalEvent=src;this.type=src.type}else{this.type=src}this.timeStamp=now();this[expando]=true};function returnFalse(){return false}function returnTrue(){return true}jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return }if(e.preventDefault){e.preventDefault()}e.returnValue=false},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return }if(e.stopPropagation){e.stopPropagation()}e.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation()},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this){try{parent=parent.parentNode}catch(e){parent=this}}if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments)}};jQuery.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix)},teardown:function(){jQuery.event.remove(this,orig,withinElement)}}});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data)})},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments)});return this.each(function(){jQuery.event.add(this,type,one,fn&&data)})},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn)})},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this)})},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.event.proxy(fn,args[i++])}return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false}))},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut)},ready:function(fn){bindReady();if(jQuery.isReady){fn.call(document,jQuery)}else{jQuery.readyList.push(fn)}return this},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem){elems.push({elem:elem,fn:fn})}}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest")});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false){return(stop=false)}});return stop}function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".")}jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery)});jQuery.readyList=null}jQuery(document).triggerHandler("ready")}}});var readyBound=false;function bindReady(){if(readyBound){return }readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready()}});if(document.documentElement.doScroll&&window==window.top){(function(){if(jQuery.isReady){return }try{document.documentElement.doScroll("left")}catch(error){setTimeout(arguments.callee,0);return }jQuery.ready()})()}}}jQuery.event.add(window,"load",jQuery.ready)}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name)}});jQuery(window).bind("unload",function(){for(var id in jQuery.cache){if(id!=1&&jQuery.cache[id].handle){jQuery.event.remove(jQuery.cache[id].handle.elem)}}});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return }jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"))}catch(e){}root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id]}root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee)});div.cloneNode(true).fireEvent("onclick")}jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display="none"})})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string"){return this._load(url)}var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off)}var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null}else{if(typeof params==="object"){params=jQuery.param(params);type="POST"}}}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified"){self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText)}if(callback){self.each(callback,[res.responseText,status,res])}}});return this},serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val}}):{name:elem.name,value:val}}).get()}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f)}});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type})},getScript:function(url,callback){return jQuery.get(url,null,callback,"script")},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json")},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={}}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type})},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data)}if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre)){s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?"}}else{if(!s.data||!s.data.match(jsre)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?"}}s.dataType="json"}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data){s.data=(s.data+"").replace(jsre,"="+jsonp+"$1")}s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp]}catch(e){}if(head){head.removeChild(script)}}}if(s.dataType=="script"&&s.cache==null){s.cache=false}if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"")}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null}if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart")}var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset){script.charset=s.scriptCharset}if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;head.removeChild(script)}}}head.appendChild(script);return undefined}var requestDone=false;var xhr=s.xhr();if(s.username){xhr.open(type,s.url,s.async,s.username,s.password)}else{xhr.open(type,s.url,s.async)}try{if(s.data){xhr.setRequestHeader("Content-Type",s.contentType)}if(s.ifModified){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default)}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}xhr.abort();return false}if(s.global){jQuery.event.trigger("ajaxSend",[xhr,s])}var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}}}else{if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null}status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s)}catch(e){status="parsererror"}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified")}catch(e){}if(s.ifModified&&modRes){jQuery.lastModified[s.url]=modRes}if(!jsonp){success()}}else{jQuery.handleError(s,xhr,status)}complete();if(isTimeout){xhr.abort()}if(s.async){xhr=null}}}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout")}},s.timeout)}}try{xhr.send(s.data)}catch(e){jQuery.handleError(s,xhr,null,e)}if(!s.async){onreadystatechange()}function success(){if(s.success){s.success(data,status)}if(s.global){jQuery.event.trigger("ajaxSuccess",[xhr,s])}}function complete(){if(s.complete){s.complete(xhr,status)}if(s.global){jQuery.event.trigger("ajaxComplete",[xhr,s])}if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}}return xhr},handleError:function(s,xhr,status,e){if(s.error){s.error(xhr,status,e)}if(s.global){jQuery.event.trigger("ajaxError",[xhr,s,e])}},active:0,httpSuccess:function(xhr){try{return !xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223}catch(e){}return false},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]}catch(e){}return false},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror"){throw"parsererror"}if(s&&s.dataFilter){data=s.dataFilter(data,type)}if(typeof data==="string"){if(type=="script"){jQuery.globalEval(data)}if(type=="json"){data=window["eval"]("("+data+")")}}return data},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value)}if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value)})}else{for(var j in a){if(jQuery.isArray(a[j])){jQuery.each(a[j],function(){add(j,this)})}else{add(j,jQuery.isFunction(a[j])?a[j]():a[j])}}}return s.join("&").replace(/%20/g,"+")}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type});return obj}jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback)}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName]}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none"){display="block"}elem.remove();elemdisplay[tagName]=display}jQuery.data(this[i],"olddisplay",display)}}for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||""}return this}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback)}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none"){jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"))}}for(var i=0,l=this.length;i<l;i++){this[i].style.display="none"}return this}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]()}):this.animate(genFx("toggle",3),fn,fn2)},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback)},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden){return opt.complete.call(this)}if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow}}if(opt.overflow!=null){this.style.overflow="hidden"}opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val)){e[val=="toggle"?hidden?"show":"hide":val](prop)}else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit}if(parts[1]){end=((parts[1]=="-="?-1:1)*end)+start}e.custom(start,end,unit)}else{e.custom(start,val,"")}}});return true})},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([])}this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem==this){if(gotoEnd){timers[i](true)}timers.splice(i,1)}}});if(!gotoEnd){this.dequeue()}return this}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback)}});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue()}if(jQuery.isFunction(opt.old)){opt.old.call(this)}};return opt},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={}}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd)}t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1)}}if(!timers.length){clearInterval(timerId);timerId=undefined}},13)}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show()},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false}}if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){jQuery(this.elem).hide()}if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.attr(this.elem.style,p,this.options.orig[p])}}this.options.complete.call(this.elem)}return false}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now)},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=fx.now+fx.unit}else{fx.elem[fx.prop]=fx.now}}}});if(document.documentElement.getBoundingClientRect){jQuery.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return jQuery.offset.bodyOffset(this[0])}var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left}}}else{jQuery.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return jQuery.offset.bodyOffset(this[0])}jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName))){top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0}prevOffsetParent=offsetParent,offsetParent=elem.offsetParent}if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0}prevComputedStyle=computedStyle}if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop,left+=body.offsetLeft}if(prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft)}return{top:top,left:left}}}jQuery.offset={initialize:function(){if(this.initialized){return }var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(prop in rules){container.style[prop]=rules[prop]}container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow="hidden",innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseInt(jQuery.curCSS(body,"marginTop",true),10)||0,left+=parseInt(jQuery.curCSS(body,"marginLeft",true),10)||0}return{top:top,left:left}}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,"marginTop");offset.left-=num(this,"marginLeft");parentOffset.top+=num(offsetParent,"borderTopWidth");parentOffset.left+=num(offsetParent,"borderLeftWidth");results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left}}return results},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,"position")=="static")){offsetParent=offsetParent.offsetParent}return jQuery(offsetParent)}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){if(!this[0]){return null}return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val}):this[0]==window||this[0]==document?self[i?"pageYOffset":"pageXOffset"]||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method]}});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px")}})})();(function(E){E.fn.jqm=function(F){var A={overlay:60,overlayClass:"jqmOverlay",closeClass:"jqmClose",trigger:".jqModal",ajax:O,ajaxText:"",target:O,modal:O,toTop:O,onShow:O,onHide:O,onLoad:O};return this.each(function(){if(this._jqm){return N[this._jqm].c=E.extend({},N[this._jqm].c,F)}P++;this._jqm=P;N[P]={c:E.extend(A,E.jqm.params,F),a:O,w:E(this).addClass("jqmID"+P),s:P};if(A.trigger){E(this).jqmAddTrigger(A.trigger)}})};E.fn.jqmAddClose=function(A){return M(this,A,"jqmHide")};E.fn.jqmAddTrigger=function(A){return M(this,A,"jqmShow")};E.fn.jqmShow=function(A){return this.each(function(){A=A||window.event;E.jqm.open(this._jqm,A)})};E.fn.jqmHide=function(A){return this.each(function(){A=A||window.event;E.jqm.close(this._jqm,A)})};E.jqm={hash:{},open:function(V,U){var L=N[V],Q=L.c,H="."+Q.closeClass,R=(parseInt(L.w.css("z-index"))),R=(R>0)?R:6000,F=E("<div></div>").css({height:"100%",width:"100%",position:"fixed",left:0,top:0,"z-index":R-1,opacity:Q.overlay/100});if(L.a){return O}L.t=U;L.a=true;L.w.css("z-index",R);if(Q.modal){if(!B[0]){K("bind")}B.push(V)}else{if(Q.overlay>0){L.w.jqmAddClose(F)}else{F=O}}L.o=(F)?F.addClass(Q.overlayClass).prependTo("body"):O;if(D){E("html,body").css({height:"100%",width:"100%"});if(F){F=F.css({position:"absolute"})[0];for(var S in {Top:1,Left:1}){F.style.setExpression(S.toLowerCase(),"(_=(document.documentElement.scroll"+S+" || document.body.scroll"+S+"))+'px'")}}}if(Q.ajax){var A=Q.target||L.w,T=Q.ajax,A=(typeof A=="string")?E(A,L.w):E(A),T=(T.substr(0,1)=="@")?E(U).attr(T.substring(1)):T;A.html(Q.ajaxText).load(T,function(){if(Q.onLoad){Q.onLoad.call(this,L)}if(H){L.w.jqmAddClose(E(H,L.w))}J(L)})}else{if(H){L.w.jqmAddClose(E(H,L.w))}}if(Q.toTop&&L.o){L.w.before('<span id="jqmP'+L.w[0]._jqm+'"></span>').insertAfter(L.o)}(Q.onShow)?Q.onShow(L):L.w.show();J(L);return O},close:function(F){var A=N[F];if(!A.a){return O}A.a=O;if(B[0]){B.pop();if(!B[0]){K("unbind")}}if(A.c.toTop&&A.o){E("#jqmP"+A.w[0]._jqm).after(A.w).remove()}if(A.c.onHide){A.c.onHide(A)}else{A.w.hide();if(A.o){A.o.remove()}}return O},params:{}};var P=0,N=E.jqm.hash,B=[],D=E.browser.msie&&(E.browser.version=="6.0"),O=false,G=E('<iframe src="javascript:false;document.write(\'\');" class="jqm"></iframe>').css({opacity:0}),J=function(A){if(D){if(A.o){A.o.html('<p style="width:100%;height:100%"/>').prepend(G)}else{if(!E("iframe.jqm",A.w)[0]){A.w.prepend(G)}}}I(A)},I=function(F){try{E(":input:visible",F.w)[0].focus()}catch(A){}},K=function(A){E()[A]("keypress",C)[A]("keydown",C)[A]("mousedown",C)},C=function(H){var A=N[B[B.length-1]],F=(!E(H.target).parents(".jqmID"+A.s)[0]);if(F){I(A)}return !F},M=function(A,F,H){return A.each(function(){var L=this._jqm;E(F).each(function(){if(!this[H]){this[H]=[];E(this).click(function(){for(var Q in {jqmShow:1,jqmHide:1}){for(var R in this[Q]){if(N[this[Q][R]]){N[this[Q][R]].w[Q](this)}}}return O})}this[H].push(L)})})}})(jQuery);var Cufon=(function(){var P=function(){return P.replace.apply(null,arguments)};var D=P.DOM={ready:(function(){var b=false,A={loaded:1,complete:1};var c=[],a=function(){if(b){return }b=true;for(var d;d=c.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){A[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(d){setTimeout(arguments.callee,1)}})()}K(window,"load",a);return function(d){if(!arguments.length){a()}else{b?d():c.push(d)}}})(),root:function(){return document.documentElement||document.body}};var O=P.CSS={Size:function(A,a){this.value=parseFloat(A);this.unit=String(A).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/a*this.value};this.convertFrom=function(b){return b/this.value*a};this.toString=function(){return this.value+this.unit}},addClass:function(a,b){var A=a.className;a.className=A+(A&&" ")+b;return a},color:S(function(A){var a={};a.color=A.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,d,b){a.opacity=parseFloat(b);return"rgb("+d+")"});return a}),fontStretch:S(function(A){if(typeof A=="number"){return A}if(/%$/.test(A)){return parseFloat(A)/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}[A]||1}),getStyle:function(A){var a=document.defaultView;if(a&&a.getComputedStyle){return new AB(a.getComputedStyle(A,null))}if(A.currentStyle){return new AB(A.currentStyle)}return new AB(A.style)},gradient:S(function(a){var A={id:a,type:a.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},d=a.substr(a.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var b=0,e=d.length,c;b<e;++b){c=d[b].split("=",2).reverse();A.stops.push([c[1]||b/(e-1),c[0]])}return A}),quotedList:S(function(A){var a=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,c;while(c=b.exec(A)){a.push(c[3]||c[1])}return a}),recognizesMedia:S(function(A){var b=document.createElement("style"),c,d,e;b.type="text/css";b.media=A;try{b.appendChild(document.createTextNode("/**/"))}catch(a){}d=V("head")[0];d.insertBefore(b,d.firstChild);c=(b.sheet||b.styleSheet);e=c&&!c.disabled;d.removeChild(b);return e}),removeClass:function(A,a){var b=RegExp("(?:^|\\s+)"+a+"(?=\\s|$)","g");A.className=A.className.replace(b,"");return A},supports:function(A,a){var b=document.createElement("span").style;if(b[A]===undefined){return false}b[A]=a;return b[A]===a},textAlign:function(A,a,c,b){if(a.get("textAlign")=="right"){if(c>0){A=" "+A}}else{if(c<b-1){A+=" "}}return A},textShadow:S(function(a){if(a=="none"){return null}var b=[],A={},e,d=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(e=c.exec(a)){if(e[0]==","){b.push(A);A={};d=0}else{if(e[1]){A.color=e[1]}else{A[["offX","offY","blur"][d++]]=e[2]}}}b.push(A);return b}),textTransform:(function(){var A={uppercase:function(a){return a.toUpperCase()},lowercase:function(a){return a.toLowerCase()},capitalize:function(a){return a.replace(/\b./g,function(b){return b.toUpperCase()})}};return function(a,b){var c=A[b.get("textTransform")];return c?c(a):a}})(),whiteSpace:(function(){var A={inline:1,"inline-block":1,"run-in":1};var a=/^\s+/,b=/\s+$/;return function(c,e,d,f){if(f){if(f.nodeName.toLowerCase()=="br"){c=c.replace(a,"")}}if(A[e.get("display")]){return c}if(!d.previousSibling){c=c.replace(a,"")}if(!d.nextSibling){c=c.replace(b,"")}return c}})()};O.ready=(function(){var b=!O.recognizesMedia("all"),h=false;var A=[],e=function(){b=true;for(var j;j=A.shift();j()){}};var d=V("link"),c=V("style");function a(j){return j.disabled||f(j.sheet,j.media||"screen")}function f(p,m){if(!O.recognizesMedia(m||"all")){return true}if(!p||p.disabled){return false}try{var l=p.cssRules,n;if(l){search:for(var j=0,k=l.length;n=l[j],j<k;++j){switch(n.type){case 2:break;case 3:if(!f(n.styleSheet,n.media.mediaText)){return false}break;default:break search}}}}catch(o){}return true}function g(){if(document.createStyleSheet){return true}var j,k;for(k=0;j=d[k];++k){if(j.rel.toLowerCase()=="stylesheet"&&!a(j)){return false}}for(k=0;j=c[k];++k){if(!a(j)){return false}}return true}D.ready(function(){if(!h){h=O.getStyle(document.body).isUsable()}if(b||(h&&g())){e()}else{setTimeout(arguments.callee,10)}});return function(j){if(b){j()}else{A.push(j)}}})();function I(A){var a=this.face=A.face,b={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=A.glyphs;this.w=A.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var c=a.bbox.split(/\s+/);var d={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};d.width=d.maxX-d.minX;d.height=d.maxY-d.minY;d.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return d})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(g,e,o){var d=this.glyphs,f,h,m,c=[],n=0,j=-1,k=-1,l;while(l=g[++j]){f=d[l]||this.missingGlyph;if(!f){continue}if(h){n-=m=h[l]||0;c[k]-=m}n+=c[++k]=~~(f.w||this.w)+e+(b[l]?o:0);h=f.k}c.total=n;return c}}function W(){var A={},a={oblique:"italic",italic:"oblique"};this.add=function(b){(A[b.style]||(A[b.style]={}))[b.weight]=b};this.get=function(e,d){var f=A[e]||A[a[e]]||A.normal||A.italic||A.oblique;if(!f){return null}d={normal:400,bold:700}[d]||parseInt(d,10);if(f[d]){return f[d]}var h={1:1,99:0}[d%100],b=[],g,j;if(h===undefined){h=d>400}if(d==500){d=400}for(var c in f){if(!R(f,c)){continue}c=parseInt(c,10);if(!g||c<g){g=c}if(!j||c>j){j=c}b.push(c)}if(d<g){d=g}if(d>j){d=j}b.sort(function(l,k){return(h?(l>=d&&k>=d)?l<k:l>k:(l<=d&&k<=d)?l>k:l<k)?-1:1});return f[b[0]]}}function J(){function a(e,d){if(e.contains){return e.contains(d)}return e.compareDocumentPosition(d)&16}function c(d){var e=d.relatedTarget;if(!e||a(this,e)){return }b(this,d.type=="mouseover")}function A(d){b(this,d.type=="mouseenter")}function b(e,d){setTimeout(function(){var f=Y.get(e).options;P.replace(e,d?U(f,f.hover):f,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){K(d,"mouseover",c);K(d,"mouseout",c)}else{K(d,"mouseenter",A);K(d,"mouseleave",A)}}}function G(){var a=[],A={};function b(c){var f=[],d;for(var e=0;d=c[e];++e){f[e]=a[A[d]]}return f}this.add=function(c,d){A[c]=a.push(d)-1};this.repeat=function(){var e=arguments.length?b(arguments):a,d;for(var c=0;d=e[c++];){P.replace(d[0],d[1],true)}}}function M(){var A={},b=0;function a(c){return c.cufid||(c.cufid=++b)}this.get=function(d){var c=a(d);return A[c]||(A[c]={})}}function AB(b){var A={},a={};this.extend=function(d){for(var c in d){if(R(d,c)){A[c]=d[c]}}return this};this.get=function(c){return A[c]!=undefined?A[c]:b[c]};this.getSize=function(c,d){return a[c]||(a[c]=new O.Size(this.get(c),d))};this.isUsable=function(){return !!b}}function K(a,b,A){if(a.addEventListener){a.addEventListener(b,A,false)}else{if(a.attachEvent){a.attachEvent("on"+b,function(){return A.call(a,window.event)})}}}function F(a,b){var A=Y.get(a);if(A.options){return a}if(b.hover&&b.hoverables[a.nodeName.toLowerCase()]){AA.attach(a)}A.options=b;return a}function S(a){var A={};return function(b){if(!R(A,b)){A[b]=a.apply(null,arguments)}return A[b]}}function Z(A,a){var d=O.quotedList(a.get("fontFamily").toLowerCase()),b;for(var c=0;b=d[c];++c){if(T[b]){return T[b].get(a.get("fontStyle"),a.get("fontWeight"))}}return null}function V(A){return document.getElementsByTagName(A)}function R(A,a){return A.hasOwnProperty(a)}function U(){var c={},d,A;for(var a=0,b=arguments.length;d=arguments[a],a<b;++a){for(A in d){if(R(d,A)){c[A]=d[A]}}}return c}function N(m,d,a,c,l,A){var f=document.createDocumentFragment(),j;if(d===""){return f}var e=c.separate;var h=d.split(L[e]),b=(e=="words");if(b&&H){if(/^\s/.test(d)){h.unshift("")}if(/\s$/.test(d)){h.push("")}}for(var g=0,k=h.length;g<k;++g){j=B[c.engine](m,b?O.textAlign(h[g],a,g,k):h[g],a,c,l,A,g<k-1);if(j){f.appendChild(j)}}return f}function Q(A,c){var a=A.nodeName.toLowerCase();if(c.ignore[a]){return }var l=!c.textless[a];var b=O.getStyle(F(A,c)).extend(c);var k=Z(A,b),j,e,g,h,d,f;if(!k){return }for(j=A.firstChild;j;j=g){e=j.nodeType;g=j.nextSibling;if(l&&e==3){if(h){h.appendData(j.data);A.removeChild(j)}else{h=j}if(g){continue}}if(h){A.replaceChild(N(k,O.whiteSpace(h.data,b,h,f),b,c,j,A),h);h=null}if(e==1){if(j.firstChild){if(j.nodeName.toLowerCase()=="cufon"){B[c.engine](k,null,b,c,j,A)}else{arguments.callee(j,c)}}f=j}}}var H=" ".split(/\s+/).length==0;var Y=new M();var AA=new J();var C=new G();var X=false;var B={},T={},E={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(A){return jQuery(A)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(A){return $$(A)})||(window.$&&function(A){return $(A)})||(document.querySelectorAll&&function(A){return document.querySelectorAll(A)})||V),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var L={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};P.now=function(){D.ready();return P};P.refresh=function(){C.repeat.apply(C,arguments);return P};P.registerEngine=function(A,a){if(!a){return P}B[A]=a;return P.set("engine",A)};P.registerFont=function(A){if(!A){return P}var b=new I(A),a=b.family;if(!T[a]){T[a]=new W()}T[a].add(b);return P.set("fontFamily",'"'+a+'"')};P.replace=function(A,a,b){a=U(E,a);if(!a.engine){return P}if(!X){O.addClass(D.root(),"cufon-active cufon-loading");O.ready(function(){O.addClass(O.removeClass(D.root(),"cufon-loading"),"cufon-ready")});X=true}if(a.hover){a.forceHitArea=true}if(a.autoDetect){delete a.fontFamily}if(typeof a.textShadow=="string"){a.textShadow=O.textShadow(a.textShadow)}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=O.gradient(a.color)}else{delete a.textGradient}if(!b){C.add(A,arguments)}if(A.nodeType||typeof A=="string"){A=[A]}O.ready(function(){for(var d=0,e=A.length;d<e;++d){var c=A[d];if(typeof c=="string"){P.replace(a.selector(c),a,true)}else{Q(c,a)}}});return P};P.set=function(a,A){E[a]=A;return P};return P})();Cufon.registerEngine("canvas",(function(){var A=document.createElement("canvas");if(!A||!A.getContext||!A.getContext.apply){return }A=null;var B=Cufon.CSS.supports("display","inline-block");var D=!B&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var C=document.createElement("style");C.type="text/css";C.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(D?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(B?"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(C);function E(G,N){var I=0,J=0;var O=[],H=/([mrvxe])([^a-z]*)/g,L;generate:for(var M=0;L=H.exec(G);++M){var K=L[2].split(",");switch(L[1]){case"v":O[M]={m:"bezierCurveTo",a:[I+~~K[0],J+~~K[1],I+~~K[2],J+~~K[3],I+=~~K[4],J+=~~K[5]]};break;case"r":O[M]={m:"lineTo",a:[I+=~~K[0],J+=~~K[1]]};break;case"m":O[M]={m:"moveTo",a:[I=~~K[0],J=~~K[1]]};break;case"x":O[M]={m:"closePath"};break;case"e":break generate}N[O[M].m].apply(N,O[M].a)}return O}function F(G,H){for(var I=0,J=G.length;I<J;++I){var K=G[I];H[K.m].apply(H,K.a)}}return function(e,AS,AA,AV,AN,d){var Ad=(AS===null);if(Ad){AS=AN.getAttribute("alt")}var AP=e.viewBox;var Ac=AA.getSize("fontSize",e.baseSize);var AO=0,AB=0,AC=0,AU=0;var AR=AV.textShadow,AE=[];if(AR){for(var f=AR.length;f--;){var AK=AR[f];var AF=Ac.convertFrom(parseFloat(AK.offX));var AH=Ac.convertFrom(parseFloat(AK.offY));AE[f]=[AF,AH];if(AH<AO){AO=AH}if(AF>AB){AB=AF}if(AH>AC){AC=AH}if(AF<AU){AU=AF}}}var a=Cufon.CSS.textTransform(AS,AA).split("");var AL=e.spacing(a,~~Ac.convertFrom(parseFloat(AA.get("letterSpacing"))||0),~~Ac.convertFrom(parseFloat(AA.get("wordSpacing"))||0));if(!AL.length){return null}var Af=AL.total;AB+=AP.width-AL[AL.length-1];AU+=AP.minX;var AW,Ab;if(Ad){AW=AN;Ab=AN.firstChild}else{AW=document.createElement("cufon");AW.className="cufon cufon-canvas";AW.setAttribute("alt",AS);Ab=document.createElement("canvas");AW.appendChild(Ab);if(AV.printable){var l=document.createElement("cufontext");l.appendChild(document.createTextNode(AS));AW.appendChild(l)}}var AQ=AW.style;var AI=Ab.style;var Ae=Ac.convert(AP.height);var b=Math.ceil(Ae);var AD=b/Ae;var AJ=AD*Cufon.CSS.fontStretch(AA.get("fontStretch"));var AG=Af*AJ;var y=Math.ceil(Ac.convert(AG+AB-AU));var Aa=Math.ceil(Ac.convert(AP.height-AO+AC));Ab.width=y;Ab.height=Aa;AI.width=y+"px";AI.height=Aa+"px";AO+=AP.minY;AI.top=Math.round(Ac.convert(AO-e.ascent))+"px";AI.left=Math.round(Ac.convert(AU))+"px";var AX=Math.max(Math.ceil(Ac.convert(AG)),0)+"px";if(B){AQ.width=AX;AQ.height=Ac.convert(e.height)+"px"}else{AQ.paddingLeft=AX;AQ.paddingBottom=(Ac.convert(e.height)-1)+"px"}var c=Ab.getContext("2d"),AM=Ae/AP.height;c.scale(AM,AM*AD);c.translate(-AU,-AO);c.save();function g(){var G=e.glyphs,J,H=-1,I=-1,K;c.scale(AJ,1);while(K=a[++H]){var J=G[a[H]]||e.missingGlyph;if(!J){continue}if(J.d){c.beginPath();if(J.code){F(J.code,c)}else{J.code=E("m"+J.d,c)}c.fill()}c.translate(AL[++I],0)}c.restore()}if(AR){for(var f=AR.length;f--;){var AK=AR[f];c.save();c.fillStyle=AK.color;c.translate.apply(c,AE[f]);g()}}var AY=AV.textGradient;if(AY){var AT=AY.stops,AZ=c.createLinearGradient(0,AP.minY,0,AP.maxY);for(var f=0,x=AT.length;f<x;++f){AZ.addColorStop.apply(AZ,AT[f])}c.fillStyle=AZ}else{c.fillStyle=AA.get("color")}g();return AW}})());Cufon.registerEngine("vml",(function(){var F=document.namespaces;if(!F){return }F.add("cvml","urn:schemas-microsoft-com:vml");F=null;var A=document.createElement("cvml:shape");A.style.behavior="url(#default#VML)";if(!A.coordsize){return }A=null;var C=(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:'+(C?"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 H(J,I){return B(J,/(?:em|ex|%)$|^[a-z-]+$/i.test(I)?"1em":I)}function B(J,I){if(I==="0"){return 0}if(/px$/i.test(I)){return parseFloat(I)}var K=J.style.left,L=J.runtimeStyle.left;J.runtimeStyle.left=J.currentStyle.left;J.style.left=I.replace("%","em");var M=J.style.pixelLeft;J.style.left=K;J.runtimeStyle.left=L;return M}function E(J,K,L,N){var M="computed"+N,I=K[M];if(isNaN(I)){I=K.get(N);K[M]=I=(I=="normal")?0:~~L.convertFrom(B(J,I))}return I}var D={};function G(M){var L=M.id;if(!D[L]){var O=M.stops,N=document.createElement("cvml:fill"),K=[];N.type="gradient";N.angle=180;N.focus="0";N.method="sigma";N.color=O[0][1];for(var I=1,J=O.length-1;I<J;++I){K.push(O[I][0]*100+"% "+O[I][1])}N.colors=K.join(",");N.color2=O[J][1];D[L]=N}return D[L]}return function(AW,AM,b,AU,AG,AT,d){var Am=(AM===null);if(Am){AM=AG.alt}var AI=AW.viewBox;var Ak=b.computedFontSize||(b.computedFontSize=new Cufon.CSS.Size(H(AT,b.get("fontSize"))+"px",AW.baseSize));var Ab,Aj;if(Am){Ab=AG;Aj=AG.firstChild}else{Ab=document.createElement("cufon");Ab.className="cufon cufon-vml";Ab.alt=AM;Aj=document.createElement("cufoncanvas");Ab.appendChild(Aj);if(AU.printable){var a=document.createElement("cufontext");a.appendChild(document.createTextNode(AM));Ab.appendChild(a)}if(!d){Ab.appendChild(document.createElement("cvml:shape"))}}var AJ=Ab.style;var j=Aj.style;var Ao=Ak.convert(AI.height),AQ=Math.ceil(Ao);var e=AQ/Ao;var AB=e*Cufon.CSS.fontStretch(b.get("fontStretch"));var f=AI.minX,g=AI.minY;j.height=AQ;j.top=Math.round(Ak.convert(g-AW.ascent));j.left=Math.round(Ak.convert(f));AJ.height=Ak.convert(AW.height)+"px";var AO=b.get("color");var AN=Cufon.CSS.textTransform(AM,b).split("");var AF=AW.spacing(AN,E(AT,b,Ak,"letterSpacing"),E(AT,b,Ak,"wordSpacing"));if(!AF.length){return null}var Ap=AF.total;var Ac=-f+Ap+(AI.width-AF[AF.length-1]);var AL=Ak.convert(Ac*AB),c=Math.round(AL);var AC=Ac+","+AI.height,An;var AH="r"+AC+"ns";var Af=AU.textGradient&&G(AU.textGradient);var Al=AW.glyphs,h=0;var AK=AU.textShadow;var AY=-1,AZ=0,Ad;while(Ad=AN[++AY]){var AS=Al[AN[AY]]||AW.missingGlyph,Ae;if(!AS){continue}if(Am){Ae=Aj.childNodes[AZ];while(Ae.firstChild){Ae.removeChild(Ae.firstChild)}}else{Ae=document.createElement("cvml:shape");Aj.appendChild(Ae)}Ae.stroked="f";Ae.coordsize=AC;Ae.coordorigin=An=(f-h)+","+g;Ae.path=(AS.d?"m"+AS.d+"xe":"")+"m"+An+AH;Ae.fillcolor=AO;if(Af){Ae.appendChild(Af.cloneNode(false))}var AR=Ae.style;AR.width=c;AR.height=AQ;if(AK){var Ah=AK[0],Ai=AK[1];var AV=Cufon.CSS.color(Ah.color),Aa;var AD=document.createElement("cvml:shadow");AD.on="t";AD.color=AV.color;AD.offset=Ah.offX+","+Ah.offY;if(Ai){Aa=Cufon.CSS.color(Ai.color);AD.type="double";AD.color2=Aa.color;AD.offset2=Ai.offX+","+Ai.offY}AD.opacity=AV.opacity||(Aa&&Aa.opacity)||1;Ae.appendChild(AD)}h+=AF[AZ++]}var AE=Ae.nextSibling,Ag,AX;if(AU.forceHitArea){if(!AE){AE=document.createElement("cvml:rect");AE.stroked="f";AE.className="cufon-vml-cover";Ag=document.createElement("cvml:fill");Ag.opacity=0;AE.appendChild(Ag);Aj.appendChild(AE)}AX=AE.style;AX.width=c;AX.height=AQ}else{if(AE){Aj.removeChild(AE)}}AJ.width=Math.max(Math.ceil(Ak.convert(Ap*AB)),0);if(C){var AA=b.computedYAdjust;if(AA===undefined){var AP=b.get("lineHeight");if(AP=="normal"){AP="1em"}else{if(!isNaN(AP)){AP+="em"}}b.computedYAdjust=AA=0.5*(B(AT,AP)-parseFloat(AJ.height))}if(AA){AJ.marginTop=Math.ceil(AA)+"px";AJ.marginBottom=AA+"px"}}return Ab}})());
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2005 Albert-Jan Pool published by FSI Fonts und Software GmbH
 * 
 * Trademark:
 * DIN is a trademark of FSI Fonts und Software GmbH
 * 
 * Manufacturer:
 * FSI Fonts und Software GmbH
 * 
 * Designer:
 * Albert-Jan Pool
 * 
 * Vendor URL:
 * http://www.fontfont.com
 * 
 * License information:
 * http://www.fontfont.com/eula/license.html
 */
Cufon.registerFont({w:231,face:{"font-family":"DIN Pro Light","font-weight":300,"font-stretch":"normal","units-per-em":"450","panose-1":"2 0 5 4 4 0 0 2 0 3",ascent:"344",descent:"-106","x-height":"3",bbox:"-13 -439 380 106","underline-thickness":"22.95","underline-position":"-38.25",stemh:"20",stemv:"23","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:114},"!":{d:"86,-86r-22,0r-1,-234r24,0xm60,0r0,-30r30,0r0,30r-30,0",w:136},'"':{d:"43,-250r0,-70r28,0r0,70r-28,0xm112,-250r0,-70r29,0r0,70r-29,0",w:183},"#":{d:"220,-197r-12,69r44,0r0,20r-47,0r-17,108r-23,0r18,-108r-79,0r-17,108r-23,0r17,-108r-43,0r0,-20r46,0r11,-69r-44,0r0,-20r47,0r16,-103r24,0r-17,103r79,0r16,-103r22,0r-16,103r43,0r0,20r-45,0xm118,-197r-11,69r78,0r12,-69r-79,0",w:287},"$":{d:"210,-148v57,51,21,155,-70,150r0,49r-21,0r0,-48v-42,-2,-69,-16,-96,-43r17,-17v26,26,47,36,79,38r0,-133v-51,-6,-89,-30,-89,-83v0,-51,33,-84,89,-88r0,-40r21,0r0,40v34,2,56,13,81,35r-15,15v-18,-16,-35,-27,-66,-29r0,131v30,4,57,11,70,23xm140,-19v65,3,95,-70,56,-111v-16,-16,-34,-14,-56,-18r0,129xm119,-302v-59,-2,-85,71,-49,108v13,13,32,17,49,19r0,-127",w:264},"%":{d:"342,-105v0,58,-5,108,-59,108v-55,0,-60,-49,-60,-108v0,-36,24,-61,60,-61v35,0,59,25,59,61xm149,-263v0,58,-5,108,-59,108v-55,0,-59,-49,-59,-108v0,-36,23,-61,59,-61v35,0,59,25,59,61xm322,-58v0,0,7,-90,-39,-90v-46,0,-41,46,-40,90v0,27,12,44,40,44v28,0,39,-17,39,-44xm130,-216v0,-44,6,-90,-40,-90v-46,0,-39,47,-39,90v0,27,11,44,39,44v27,0,40,-17,40,-44xm122,0r-20,0r149,-320r20,0",w:372},"&":{d:"206,-259v0,40,-31,54,-61,74r92,111v14,-22,19,-39,19,-79r24,0v0,40,-8,72,-28,97r46,56r-31,0r-31,-38v-12,12,-46,41,-99,41v-59,0,-99,-38,-99,-92v0,-51,36,-73,73,-99v-17,-20,-35,-43,-35,-71v0,-36,29,-64,65,-64v36,0,65,28,65,64xm125,-172v-30,21,-63,41,-63,82v0,80,104,95,160,36xm182,-259v0,-25,-18,-43,-41,-43v-23,0,-41,18,-41,42v0,16,6,29,31,59v23,-16,51,-28,51,-58",w:335},"'":{d:"43,-250r0,-70r28,0r0,70r-28,0",w:113},"(":{d:"67,-38v-1,35,12,48,31,65r-16,15v-23,-20,-39,-41,-38,-78r0,-249v-1,-37,15,-58,38,-78r16,16v-19,17,-32,30,-31,65r0,244",w:127},")":{d:"46,-363v23,20,38,41,38,78r0,249v2,37,-16,58,-38,78r-17,-16v18,-17,31,-30,31,-64r0,-244v1,-34,-13,-47,-31,-64",w:127},"*":{d:"168,-197r-54,-33r1,64r-20,0r1,-64r-54,33r-10,-17r56,-31r-56,-30r10,-17r54,32r-1,-63r20,0r-1,63r54,-32r10,17r-56,30r56,31",w:210},"+":{d:"126,-108r0,81r-21,0r0,-81r-81,0r0,-21r81,0r0,-81r21,0r0,81r81,0r0,21r-81,0"},",":{d:"43,61r0,-92r30,0r0,62",w:116},"-":{d:"37,-108r0,-21r118,0r0,21r-118,0",w:191},".":{d:"43,0r0,-33r33,0r0,33r-33,0",w:118},"/":{d:"24,33r-24,0r128,-387r24,0",w:152},"0":{d:"200,-83v0,50,-34,86,-84,86v-49,0,-84,-36,-84,-86r0,-155v0,-50,35,-85,84,-85v50,0,84,35,84,85r0,155xm177,-85v0,-86,31,-218,-61,-218v-92,0,-62,132,-62,218v0,38,22,67,62,67v40,0,61,-29,61,-67"},"1":{d:"118,0r0,-294r-58,51r0,-27r58,-50r23,0r0,320r-23,0"},"2":{d:"32,0r0,-20r129,-169v36,-41,17,-114,-44,-114v-33,0,-61,19,-61,64r-23,0v0,-48,31,-84,84,-84v78,0,107,88,63,146r-120,157r142,0r0,20r-170,0"},"3":{d:"201,-86v0,57,-39,89,-91,89v-50,0,-87,-26,-91,-81r23,0v4,44,34,61,68,61v38,0,68,-26,68,-69v0,-45,-23,-70,-75,-68r0,-20v46,2,69,-21,69,-64v0,-42,-27,-65,-62,-65v-38,0,-60,22,-64,58r-23,0v5,-50,40,-79,87,-79v87,0,119,129,39,158v36,12,52,39,52,80"},"4":{d:"169,-53r0,53r-23,0r0,-53r-127,0r0,-20r118,-247r25,0r-118,247r102,0r0,-102r23,0r0,102r43,0r0,20r-43,0"},"5":{d:"123,-211v58,0,80,56,80,106v0,55,-26,108,-86,108v-52,0,-80,-27,-84,-74r23,0v5,34,23,54,61,54v48,0,63,-46,63,-88v0,-40,-8,-85,-60,-85v-29,0,-51,11,-58,33r-20,0r0,-163r154,0r0,20r-134,0r0,113v14,-16,34,-24,61,-24"},"6":{d:"202,-90v0,51,-31,93,-85,93v-81,0,-102,-87,-67,-157r82,-166r23,0r-74,148v61,-27,121,18,121,82xm179,-89v0,-38,-21,-71,-62,-71v-38,0,-62,28,-62,71v0,43,24,71,62,71v38,0,62,-28,62,-71"},"7":{d:"93,0r-23,0r113,-300r-121,0r0,50r-23,0r0,-70r168,0r0,20"},"8":{d:"207,-86v0,51,-39,89,-91,89v-52,0,-92,-38,-92,-89v0,-37,20,-64,51,-80v-75,-34,-48,-157,41,-157v88,0,115,123,41,157v31,16,50,43,50,80xm184,-86v0,-39,-29,-70,-68,-70v-39,0,-69,31,-69,70v0,40,30,68,69,68v39,0,68,-28,68,-68xm177,-239v0,-37,-25,-64,-61,-64v-36,0,-62,27,-62,64v0,37,26,63,62,63v36,0,61,-26,61,-63"},"9":{d:"114,-323v81,0,102,87,67,157r-82,166r-23,0r74,-148v-62,27,-120,-18,-120,-82v0,-51,30,-93,84,-93xm176,-232v0,-43,-24,-71,-62,-71v-38,0,-61,28,-61,71v0,38,20,71,61,71v38,0,62,-28,62,-71"},":":{d:"55,0r0,-33r34,0r0,33r-34,0xm55,-140r0,-34r34,0r0,34r-34,0",w:131},";":{d:"56,61r0,-92r31,0r0,62xm55,-140r0,-34r34,0r0,34r-34,0",w:131},"<":{d:"184,-35r-137,-73r0,-21r137,-73r0,25r-114,59r114,58r0,25"},"=":{d:"24,-73r0,-21r183,0r0,21r-183,0xm24,-142r0,-21r183,0r0,21r-183,0"},">":{d:"184,-108r-137,73r0,-25r115,-58r-115,-59r0,-25r137,73r0,21"},"?":{d:"117,-323v69,0,104,83,60,133v-17,32,-51,52,-46,104r-23,0v-8,-78,66,-91,66,-158v0,-34,-24,-59,-57,-59v-35,0,-58,27,-58,59r-23,0v0,-43,33,-79,81,-79xm104,0r0,-30r31,0r0,30r-31,0",w:219},"@":{d:"190,-320v55,-1,90,38,89,92r0,228r-23,0r0,-27v-15,20,-33,30,-62,30v-58,0,-82,-40,-82,-111v0,-73,21,-112,81,-112v27,0,47,10,63,31v6,-67,-9,-113,-70,-113v-71,0,-128,1,-128,72r0,159v0,31,6,41,28,58r-16,16v-27,-19,-35,-35,-35,-74r0,-157v-1,-56,33,-92,88,-92r67,0xm256,-108v0,-44,-7,-92,-61,-92v-54,0,-60,48,-60,92v0,44,6,91,60,91v54,0,61,-47,61,-91",w:313},A:{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,"\u00dd":16,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},B:{d:"265,-87v0,57,-38,87,-94,87r-121,0r0,-320r117,0v53,0,93,30,93,83v0,34,-19,62,-50,72v35,12,55,41,55,78xm241,-87v0,-41,-29,-66,-73,-66r-94,0r0,131v76,1,167,12,167,-65xm236,-237v0,-78,-88,-60,-162,-62r0,124v74,-2,162,16,162,-62",w:301,k:{J:9}},C:{d:"61,-160v0,101,16,141,86,141v43,0,76,-27,85,-72r24,0v-11,58,-52,94,-109,94v-82,0,-110,-52,-110,-163v0,-112,27,-163,110,-163v58,0,98,35,109,93r-25,0v-9,-45,-41,-72,-84,-72v-69,0,-86,42,-86,142",w:289,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:9,A:4}},D:{d:"268,-165v0,43,0,103,-31,136v-36,39,-116,27,-187,29r0,-320v71,2,151,-10,187,29v31,33,31,83,31,126xm244,-165v0,-36,1,-82,-24,-109v-32,-35,-87,-23,-146,-25r0,277v58,-2,114,11,146,-24v25,-27,24,-83,24,-119",w:305,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:12,A:4}},E:{d:"50,0r0,-320r194,0r0,21r-170,0r0,127r145,0r0,21r-145,0r0,129r170,0r0,22r-194,0",w:269,k:{J:1}},F:{d:"74,-299r0,132r145,0r0,22r-145,0r0,145r-24,0r0,-320r194,0r0,21r-170,0",w:259,k:{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00f1":14,"\u00eb":15,"\u00ea":15,"\u00e9":15,"\u00e8":15,"\u00e7":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u00c6":8,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,z:14,x:14,u:14,r:14,p:14,o:15,n:14,m:14,e:15,c:15,a:15,S:4,Q:9,O:9,J:57,G:9,C:9,A:27,".":42}},G:{d:"147,-19v57,0,96,-51,86,-123r-86,0r0,-22r110,0r0,52v4,70,-49,115,-110,115v-82,0,-110,-52,-110,-163v0,-112,27,-163,110,-163v56,0,100,37,109,93r-24,0v-9,-45,-42,-72,-85,-72v-69,0,-86,42,-86,142v0,101,16,141,86,141",w:292,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},H:{d:"241,0r0,-151r-167,0r0,151r-24,0r0,-320r24,0r0,148r167,0r0,-148r24,0r0,320r-24,0",w:314},I:{d:"50,0r0,-320r24,0r0,320r-24,0",w:123},J:{d:"179,-94v8,90,-110,127,-165,69r16,-16v12,12,26,22,54,22v46,0,71,-28,71,-80r0,-221r24,0r0,226",w:224,k:{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,A:4}},K:{d:"253,0r-103,-180r-76,93r0,87r-24,0r0,-320r24,0r0,200r162,-200r30,0r-100,122r116,198r-29,0",w:290,k:{"\u00fd":16,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,y:16,Q:4,O:4,J:-2,G:4,C:4}},L:{d:"50,0r0,-320r24,0r0,298r170,0r0,22r-194,0",w:257,k:{"\u201d":68,"\u2019":68,"\u00fd":27,"\u00dd":36,"\u00dc":5,"\u00db":5,"\u00da":5,"\u00d9":5,"\u00d8":12,"\u00d6":12,"\u00d5":12,"\u00d4":12,"\u00d3":12,"\u00d2":12,"\u00c7":12,y:27,Y:36,W:18,V:32,U:5,T:36,Q:12,O:12,J:-2,G:12,C:12}},M:{d:"294,0r0,-264r-97,219r-24,0r-99,-219r0,264r-24,0r0,-320r24,0r111,247r109,-247r25,0r0,320r-25,0",w:368},N:{d:"259,0r-185,-279r0,279r-24,0r0,-320r24,0r185,277r0,-277r24,0r0,320r-24,0",w:332},O:{d:"147,-323v81,8,109,51,109,163v0,113,-27,154,-109,163v-81,-8,-110,-52,-110,-163v0,-112,28,-153,110,-163xm147,-19v68,-9,85,-42,85,-141v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142v0,101,17,131,86,141",w:293,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},P:{d:"264,-228v0,58,-42,92,-97,92r-93,0r0,136r-24,0r0,-320r117,0v55,0,97,33,97,92xm239,-228v0,-83,-86,-71,-165,-71r0,141v78,0,165,14,165,-70",w:283,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":22,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,s:4,q:4,o:4,g:4,e:4,d:4,c:4,a:4,J:54,A:22,".":50}},Q:{d:"147,-323v81,8,109,51,109,163v0,66,0,96,-22,122r37,38r-16,16r-38,-38v-20,16,-44,25,-70,25v-82,0,-110,-52,-110,-163v0,-112,28,-153,110,-163xm61,-160v0,101,16,141,86,141v20,0,38,-6,54,-19r-45,-45r16,-16r45,45v14,-20,15,-48,15,-106v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142",w:292},R:{d:"238,0r-76,-148r-88,0r0,148r-24,0r0,-320r121,0v52,0,92,30,92,86v0,48,-29,78,-74,86r78,148r-29,0xm239,-234v0,-81,-89,-64,-165,-65r0,130v76,-1,165,16,165,-65",w:295,k:{J:4}},S:{d:"210,-148v59,55,18,151,-80,151v-47,0,-78,-14,-107,-43r17,-17v43,58,173,52,173,-28v0,-107,-183,-24,-183,-150v0,-95,138,-114,191,-53r-15,15v-34,-44,-152,-41,-152,37v0,81,117,52,156,88",w:264,k:{"\u00dd":9,Y:9,S:3}},T:{d:"133,-299r0,299r-24,0r0,-299r-95,0r0,-21r215,0r0,21r-96,0",w:242,k:{"\u00fd":18,"\u00fc":14,"\u00fb":18,"\u00fa":18,"\u00f9":18,"\u00f8":30,"\u00f6":18,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00f1":18,"\u00eb":18,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e6":30,"\u00e5":30,"\u00e4":18,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u00c6":27,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,z:18,y:18,x:18,w:18,v:18,u:18,s:30,r:18,q:30,p:18,o:30,n:18,m:18,g:30,e:30,d:30,c:30,a:30,Q:9,O:9,J:36,G:9,C:9,A:27,".":36}},U:{d:"265,-104v0,63,-46,107,-110,107v-64,0,-110,-44,-110,-107r0,-216r24,0r0,213v0,53,34,88,86,88v52,0,85,-35,85,-88r0,-213r25,0r0,216",w:309,k:{J:5}},V:{d:"130,0r-20,0r-106,-320r26,0r90,277r90,-277r26,0",w:240,k:{"\u00fd":4,"\u00fc":9,"\u00fb":9,"\u00fa":9,"\u00f9":9,"\u00f8":18,"\u00f6":14,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":9,"\u00eb":14,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":14,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":16,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,z:9,y:4,x:9,u:9,s:18,r:9,q:18,p:9,o:18,n:9,m:9,g:18,e:18,d:18,c:18,a:18,Q:4,O:4,G:4,C:4,A:16,".":36}},W:{d:"290,0r-25,0r-76,-279r-75,279r-25,0r-80,-320r26,0r67,278r75,-278r25,0r75,278r67,-278r26,0",w:378,k:{"\u00f8":18,"\u00f6":14,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00eb":14,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":14,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,s:18,q:18,o:18,g:18,e:18,d:18,c:18,a:18,Q:4,O:4,G:4,C:4,A:7,".":22}},X:{d:"203,0r-84,-143r-83,143r-28,0r98,-164r-92,-156r29,0r76,134r77,-134r28,0r-92,156r99,164r-28,0",w:239,k:{"\u00fd":14,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,y:14,Q:4,O:4,J:-2,G:4,C:4}},Y:{d:"123,-133r0,133r-24,0r0,-133r-95,-187r27,0r81,162r80,-162r26,0",w:222,k:{"\u00fc":18,"\u00fb":18,"\u00fa":18,"\u00f9":18,"\u00f8":36,"\u00f6":22,"\u00f5":36,"\u00f4":36,"\u00f3":36,"\u00f2":36,"\u00f1":18,"\u00eb":22,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":36,"\u00e6":36,"\u00e5":36,"\u00e4":22,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":18,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,z:18,x:18,u:18,s:36,r:18,q:36,p:18,o:36,n:18,m:18,g:36,e:36,d:36,c:36,a:36,Q:4,O:4,J:18,G:4,C:4,A:18,".":36}},Z:{d:"28,0r0,-26r169,-273r-162,0r0,-21r188,0r0,21r-170,277r170,0r0,22r-195,0",w:251},"[":{d:"44,33r0,-387r66,0r0,21r-43,0r0,346r43,0r0,20r-66,0",w:130},"\\":{d:"128,33r-128,-387r24,0r128,387r-24,0",w:152},"]":{d:"20,33r0,-19r45,0r0,-349r-45,0r0,-19r67,0r0,387r-67,0",w:130},"^":{d:"174,-190r-58,-109r-59,109r-23,0r71,-133r21,0r71,133r-23,0"},_:{d:"0,72r0,-17r231,0r0,17r-231,0"},"`":{d:"108,-266r-48,-66r30,0r44,66r-26,0",w:225},a:{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42",w:235},b:{d:"131,-220v63,-2,81,56,81,112v0,55,-18,113,-81,111v-25,0,-45,-6,-64,-31r0,28r-23,0r0,-320r23,0r0,131v19,-25,39,-31,64,-31xm189,-108v0,-45,-8,-91,-61,-91v-53,0,-61,46,-61,91v0,45,8,90,61,90v53,0,61,-45,61,-90",w:243},c:{d:"54,-108v-10,83,81,119,128,63r16,14v-59,71,-167,27,-167,-77v0,-104,107,-149,167,-78r-16,14v-47,-58,-139,-19,-128,64",w:221,k:{"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,w:9,o:8,e:8,d:4,c:8,a:2}},d:{d:"31,-108v0,-55,18,-114,81,-112v25,0,45,6,64,31r0,-131r23,0r0,320r-23,0r0,-28v-19,25,-39,31,-64,31v-63,1,-81,-55,-81,-111xm176,-108v0,-45,-8,-91,-61,-91v-53,0,-61,46,-61,91v0,45,8,90,61,90v53,0,61,-45,61,-90",w:243},e:{d:"54,-104v-8,85,84,111,130,60r18,13v-22,22,-43,34,-79,34v-60,0,-92,-39,-92,-111v0,-70,33,-112,87,-112v57,-1,90,44,87,116r-151,0xm182,-122v9,-79,-93,-103,-120,-41v-5,14,-7,20,-8,41r128,0",w:235,k:{"\u00fd":4,y:4,x:3,w:4,v:4}},f:{d:"73,-200r0,200r-23,0r0,-200r-29,0r0,-17r29,0v-4,-62,4,-112,72,-103r0,20v-52,-9,-52,35,-49,83r49,0r0,17r-49,0",w:136,k:{"\u201d":-9,"\u2019":-9,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,o:7,e:7,c:7,a:7,".":22}},g:{d:"31,-108v0,-55,18,-114,81,-112v25,0,45,6,64,31r0,-28r23,0r0,229v0,54,-32,94,-88,94v-32,0,-50,-9,-72,-29r15,-15v17,16,30,24,57,24v60,0,69,-52,65,-114v-19,25,-39,31,-64,31v-63,1,-81,-55,-81,-111xm176,-108v0,-45,-8,-91,-61,-91v-53,0,-61,46,-61,91v0,45,8,90,61,90v53,0,61,-45,61,-90",w:243},h:{d:"188,0v-6,-79,28,-199,-60,-199v-88,0,-55,119,-61,199r-23,0r0,-320r23,0r0,129v41,-55,144,-28,144,52r0,139r-23,0",w:251},i:{d:"44,0r0,-217r23,0r0,217r-23,0xm41,-292r0,-28r28,0r0,28r-28,0",w:110},j:{d:"67,47v1,41,-25,62,-72,57r0,-21v32,2,49,-5,49,-36r0,-264r23,0r0,264xm41,-292r0,-28r28,0r0,28r-28,0",w:110},k:{d:"191,0r-75,-119r-49,57r0,62r-23,0r0,-320r23,0r0,226r107,-123r29,0r-71,81r87,136r-28,0",w:237,k:{"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00e6":3,q:3,o:3,g:3,e:3,d:3,c:3}},l:{d:"115,0v-47,4,-72,-14,-72,-56r0,-264r23,0r0,263v-2,32,16,39,49,37r0,20",w:129,k:{"\u201d":27,"\u2019":27,"\u00fd":15,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,y:15,w:9,v:18,o:9,e:11,c:11}},m:{d:"201,-180v34,-66,153,-47,153,41r0,139r-22,0v-6,-79,28,-199,-60,-199v-89,0,-55,119,-61,199r-23,0v-6,-79,28,-199,-60,-199v-88,0,-55,119,-61,199r-23,0r0,-217r23,0r0,26v31,-42,113,-38,134,11",w:395},n:{d:"67,-191v42,-55,144,-28,144,52r0,139r-23,0v-6,-79,28,-199,-60,-199v-88,0,-55,119,-61,199r-23,0r0,-217r23,0r0,26",w:251},o:{d:"118,-220v60,0,88,57,88,112v0,55,-29,111,-88,111v-58,0,-87,-56,-87,-111v0,-55,28,-112,87,-112xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},p:{d:"131,-220v63,-2,81,56,81,112v0,55,-18,113,-81,111v-25,0,-45,-6,-64,-31r0,132r-23,0r0,-321r23,0r0,28v19,-25,39,-31,64,-31xm189,-108v0,-45,-8,-91,-61,-91v-53,0,-61,46,-61,91v0,45,8,90,61,90v53,0,61,-45,61,-90",w:243},q:{d:"31,-108v0,-55,18,-114,81,-112v25,0,45,6,64,31r0,-28r23,0r0,321r-23,0r0,-132v-19,25,-39,31,-64,31v-63,1,-81,-55,-81,-111xm176,-108v0,-45,-8,-91,-61,-91v-53,0,-61,46,-61,91v0,45,8,90,61,90v53,0,61,-45,61,-90",w:243},r:{d:"166,-182v-36,-40,-99,-5,-99,48r0,134r-23,0r0,-217r23,0r0,29v23,-35,83,-46,115,-11",w:184,k:{"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e7":14,"\u00e6":14,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,s:4,q:14,o:14,g:14,e:14,d:14,c:14,a:4,".":54,",":54}},s:{d:"197,-62v0,75,-136,83,-175,34r16,-16v25,37,137,38,137,-18v0,-36,-43,-37,-78,-39v-44,-4,-65,-23,-65,-57v0,-69,112,-77,154,-39r-15,16v-30,-27,-119,-29,-117,23v3,68,143,7,143,96",w:222,k:{"\u2019":8,v:4,t:4,s:3}},t:{d:"121,0v-46,5,-72,-16,-72,-57r0,-143r-30,0r0,-17r30,0r0,-69r23,0r0,69r49,0r0,17r-49,0r0,144v-1,29,18,39,49,36r0,20",w:146,k:{"\u00f8":1,"\u00f6":1,"\u00f5":1,"\u00f4":1,"\u00f3":1,"\u00f2":1,"\u00eb":1,"\u00ea":1,"\u00e9":1,"\u00e8":1,"\u00e7":1,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,o:1,e:1,c:1,a:1}},u:{d:"185,-26v-42,54,-144,29,-144,-52r0,-139r23,0v6,79,-28,199,60,199v88,0,55,-119,61,-199r23,0r0,217r-23,0r0,-26",w:251},v:{d:"108,0r-22,0r-80,-217r26,0r65,190r65,-190r25,0",w:193,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,s:4,o:4,e:4,c:4,a:4,".":28}},w:{d:"245,0r-24,0r-61,-181r-61,181r-23,0r-70,-217r26,0r55,190r62,-190r22,0r63,190r55,-190r25,0",w:320,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,o:4,e:4,c:4,".":18}},x:{d:"161,0r-57,-91r-58,91r-28,0r73,-111r-70,-106r28,0r55,87r54,-87r28,0r-70,106r73,111r-28,0",w:207,k:{"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":9,o:9,e:9,c:9}},y:{d:"86,59v-8,30,-32,41,-66,39r0,-20v52,7,49,-46,66,-78r-80,-217r26,0r65,190r65,-190r25,0",w:193,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,o:4,e:4,c:4,a:4,".":28,",":54}},z:{d:"24,0r0,-22r131,-175r-123,0r0,-20r147,0r0,22r-131,175r131,0r0,20r-155,0",w:203},"{":{d:"81,-22v0,34,7,35,39,35r0,20v-45,0,-62,-7,-62,-55v0,-48,24,-132,-36,-128r0,-20v92,6,-31,-199,98,-184r0,21v-33,-1,-39,1,-39,35v0,53,16,122,-27,138v44,16,27,85,27,138",w:142},"|":{d:"60,33r0,-387r23,0r0,387r-23,0",w:142},"}":{d:"22,-354v130,-16,3,182,98,184r0,20v-92,-7,31,198,-98,183r0,-20v32,0,39,-1,39,-35v0,-53,-16,-123,28,-138v-44,-16,-28,-85,-28,-138v0,-34,-6,-36,-39,-35r0,-21",w:142},"~":{d:"24,-115v54,-79,115,40,170,-24r13,14v-53,78,-114,-38,-169,24"},"\u00a0":{w:114},"\u00a1":{d:"50,104r1,-234r22,0r1,234r-24,0xm47,-187r0,-30r30,0r0,30r-30,0",w:136},"\u00a2":{d:"198,-87v-22,24,-40,32,-67,33r0,54r-19,0r0,-54v-51,-7,-81,-48,-81,-111v0,-63,30,-103,81,-110r0,-45r19,0r0,44v27,1,45,9,67,33r-16,15v-18,-19,-31,-27,-51,-28r0,182v20,-1,33,-8,51,-27xm112,-254v-60,2,-73,104,-43,151v10,15,25,25,43,28r0,-179",w:224},"\u00a3":{d:"51,0r0,-154r-29,0r0,-17r29,0v-9,-87,17,-152,96,-152v28,0,52,9,70,27r-17,17v-12,-12,-25,-23,-53,-23v-65,0,-76,60,-71,131r71,0r0,17r-71,0r0,132r141,0r0,22r-166,0",w:241},"\u00a4":{d:"243,-10r-34,-33v-33,28,-90,28,-123,0r-33,33r-15,-14r34,-34v-29,-33,-29,-90,0,-123r-34,-33r15,-15r33,33v33,-28,90,-28,123,0r34,-33r14,15r-33,33v28,33,28,90,0,123r33,34xm224,-119v0,-42,-34,-76,-76,-76v-42,0,-76,34,-76,76v0,42,34,76,76,76v42,0,76,-34,76,-76",w:295},"\u00a5":{d:"144,-174r49,0r0,17r-58,0v-7,13,-15,25,-12,48r70,0r0,17r-70,0r0,92r-24,0r0,-92r-70,0r0,-17r70,0v2,-22,-5,-35,-12,-48r-58,0r0,-17r49,0r-74,-146r26,0r82,162r80,-162r25,0",w:221},"\u00a6":{d:"60,33r0,-157r23,0r0,157r-23,0xm60,-196r0,-158r23,0r0,158r-23,0",w:147},"\u00a7":{d:"151,-193v75,16,77,136,11,158v28,9,46,34,46,66v0,44,-34,75,-81,75v-45,0,-78,-25,-82,-70r24,0v3,32,24,49,58,49v34,0,57,-19,57,-54v0,-40,-45,-54,-80,-61v-76,-16,-76,-136,-11,-158v-28,-12,-44,-30,-44,-63v0,-45,35,-72,78,-72v42,0,78,24,80,68r-23,0v-3,-34,-24,-47,-57,-47v-34,0,-55,17,-55,51v0,43,43,50,79,58xm127,-47v35,0,60,-25,60,-64v0,-35,-26,-64,-60,-64v-35,0,-60,28,-59,64v1,38,24,64,59,64",w:254},"\u00a8":{d:"53,-270r0,-35r26,0r0,35r-26,0xm146,-270r0,-35r26,0r0,35r-26,0",w:225},"\u00a9":{d:"364,-160v0,90,-73,163,-163,163v-90,0,-163,-73,-163,-163v0,-90,73,-163,163,-163v90,0,163,73,163,163xm342,-160v0,-77,-64,-143,-141,-143v-77,0,-141,66,-141,143v0,77,64,143,141,143v77,0,141,-66,141,-143xm262,-91v-18,16,-34,23,-59,23v-55,0,-80,-42,-80,-92v0,-50,25,-93,80,-93v25,0,41,6,59,23r-14,14v-16,-14,-27,-19,-45,-19v-45,0,-59,35,-59,75v0,40,14,74,59,74v18,0,29,-4,45,-18",w:402},"\u00aa":{d:"141,-163v-31,33,-114,23,-114,-31v0,-52,59,-52,114,-50v2,-38,-5,-61,-47,-60v-24,0,-36,5,-47,21r-15,-12v30,-46,128,-33,128,30r0,118r-19,0r0,-16xm90,-162v37,0,57,-21,51,-67v-41,0,-95,-7,-95,34v0,22,13,33,44,33",w:201},"\u00ab":{d:"19,-119r88,-88r0,29r-58,59r58,58r0,30xm112,-119r88,-88r0,29r-58,59r58,58r0,30",w:237},"\u00ac":{d:"186,-48r0,-60r-162,0r0,-21r183,0r0,81r-21,0"},"\u00ad":{d:"37,-108r0,-21r118,0r0,21r-118,0",w:191},"\u00ae":{d:"364,-160v0,90,-73,163,-163,163v-90,0,-163,-73,-163,-163v0,-90,73,-163,163,-163v90,0,163,73,163,163xm343,-160v0,-78,-64,-144,-142,-144v-78,0,-142,66,-142,144v0,78,64,143,142,143v78,0,142,-65,142,-143xm244,-70r-44,-75r-30,0r0,75r-20,0r0,-181v57,-3,112,-1,113,53v0,27,-17,44,-41,51r46,77r-24,0xm243,-198v0,-33,-37,-37,-73,-34r0,69v37,3,73,-2,73,-35",w:402},"\u00af":{d:"179,-274r-133,0r0,-21r133,0r0,21",w:225},"\u00b0":{d:"174,-253v0,39,-32,71,-71,71v-39,0,-71,-32,-71,-71v0,-39,32,-71,71,-71v39,0,71,32,71,71xm153,-253v0,-29,-21,-52,-50,-52v-29,0,-50,22,-50,52v0,30,21,52,50,52v29,0,50,-22,50,-52",w:206},"\u00b1":{d:"126,-122r0,82r-21,0r0,-82r-81,0r0,-21r81,0r0,-81r21,0r0,81r81,0r0,21r-81,0xm24,0r0,-21r183,0r0,21r-183,0"},"\u00b2":{d:"22,-128r0,-18r76,-96v19,-22,11,-64,-22,-62v-18,0,-34,9,-34,34r-20,0v0,-31,22,-52,54,-52v50,0,65,55,37,91r-67,85r83,0r0,18r-107,0",w:151},"\u00b3":{d:"136,-181v0,36,-24,55,-56,55v-31,0,-57,-16,-58,-51r21,0v3,47,73,42,73,-4v0,-24,-13,-37,-41,-36r0,-18v25,1,37,-12,37,-35v0,-23,-15,-34,-33,-34v-20,0,-32,12,-34,31r-20,0v2,-31,25,-49,54,-49v54,0,72,76,28,95v19,7,29,22,29,46",w:158},"\u00b4":{d:"117,-266r-26,0r44,-66r30,0",w:225},"\u00b5":{d:"184,0r0,-26v-25,35,-91,39,-121,8r0,122r-23,0r0,-321r23,0v6,78,-28,199,59,199v88,0,57,-119,62,-199r23,0r0,217r-23,0",w:250},"\u00b6":{d:"188,104r0,-403r-55,0r0,403r-23,0r0,-253v-58,0,-90,-44,-90,-86v0,-44,33,-85,95,-85r96,0r0,424r-23,0",w:260},"\u00b7":{d:"43,-102r0,-33r33,0r0,33r-33,0",w:118},"\u00b8":{d:"110,99r-29,0r33,-67r25,0",w:225},"\u00b9":{d:"56,-128r0,-170r-36,32r0,-23v18,-11,23,-35,56,-31r0,192r-20,0",w:112},"\u00ba":{d:"102,-322v46,0,69,45,69,88v0,43,-23,89,-69,89v-46,0,-70,-45,-70,-89v0,-44,24,-88,70,-88xm102,-163v36,0,54,-37,50,-71v3,-33,-14,-70,-50,-70v-36,0,-54,36,-50,70v-3,34,13,71,50,71",w:203},"\u00bb":{d:"37,-31r0,-30r58,-58r-58,-59r0,-29r88,88xm130,-31r0,-30r59,-58r-59,-59r0,-29r88,88",w:237},"\u00bc":{d:"299,-30r0,30r-20,0r0,-30r-77,0r0,-18r70,-144r21,0r-69,144r55,0r0,-54r20,0r0,54r23,0r0,18r-23,0xm96,0r-20,0r149,-320r20,0xm56,-128r0,-170r-36,32r0,-23v18,-11,23,-35,56,-31r0,192r-20,0",w:340},"\u00bd":{d:"215,0r0,-18r76,-96v19,-23,10,-64,-23,-62v-18,0,-33,9,-33,34r-20,0v0,-31,21,-52,53,-52v50,0,66,55,38,91r-67,85r82,0r0,18r-106,0xm89,0r-20,0r149,-320r20,0xm56,-128r0,-170r-36,32r0,-23v18,-11,23,-35,56,-31r0,192r-20,0",w:343},"\u00be":{d:"136,-181v0,36,-24,55,-56,55v-31,0,-57,-16,-58,-51r21,0v3,47,73,42,73,-4v0,-24,-13,-37,-41,-36r0,-18v25,1,37,-12,37,-35v0,-23,-15,-34,-33,-34v-20,0,-32,12,-34,31r-20,0v2,-31,25,-49,54,-49v54,0,72,76,28,95v19,7,29,22,29,46xm321,-30r0,30r-19,0r0,-30r-77,0r0,-18r69,-144r21,0r-68,144r55,0r0,-54r19,0r0,54r24,0r0,18r-24,0xm123,0r-20,0r149,-320r20,0",w:362},"\u00bf":{d:"184,27v0,43,-33,79,-81,79v-69,0,-106,-82,-61,-133v17,-32,52,-51,47,-104r23,0v7,78,-67,92,-67,158v0,34,25,59,58,59v35,0,58,-27,58,-59r23,0xm85,-187r0,-30r30,0r0,30r-30,0",w:219},"\u00c0":{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0xm130,-351r-47,-66r30,0r44,66r-27,0",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c1":{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0xm140,-351r-26,0r44,-66r30,0",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c2":{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0xm177,-351r-42,-49r-41,49r-26,0r55,-66r25,0r55,66r-26,0",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c3":{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0xm66,-376v48,-63,76,30,123,-16r13,13v-49,62,-77,-32,-122,16",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c4":{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0xm76,-356r0,-34r26,0r0,34r-26,0xm169,-356r0,-34r26,0r0,34r-26,0",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c5":{d:"238,0r-28,-78r-149,0r-28,78r-26,0r118,-320r21,0r118,320r-26,0xm135,-288r-67,189r134,0xm187,-387v0,28,-24,51,-52,51v-28,0,-51,-23,-51,-51v0,-28,23,-52,51,-52v28,0,52,24,52,52xm168,-387v0,-18,-15,-33,-33,-33v-18,0,-32,15,-32,33v0,18,14,32,32,32v18,0,33,-14,33,-32",w:270,k:{"\u201d":36,"\u2019":36,"\u00fd":11,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c6":{d:"186,0r0,-78r-114,0r-41,78r-27,0r170,-320r206,0r0,21r-170,0r0,128r145,0r0,22r-145,0r0,127r170,0r0,22r-194,0xm186,-299r-104,200r104,0r0,-200",w:405},"\u00c7":{d:"61,-160v0,101,16,141,86,141v43,0,76,-27,85,-72r24,0v-11,58,-52,94,-109,94v-82,0,-110,-52,-110,-163v0,-112,27,-163,110,-163v58,0,98,35,109,93r-25,0v-9,-45,-41,-72,-84,-72v-69,0,-86,42,-86,142xm136,99r-28,0r32,-67r25,0",w:289,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:9,A:4}},"\u00c8":{d:"50,0r0,-320r194,0r0,21r-170,0r0,127r145,0r0,21r-145,0r0,129r170,0r0,22r-194,0xm136,-351r-47,-66r30,0r43,66r-26,0",w:269,k:{J:1}},"\u00c9":{d:"50,0r0,-320r194,0r0,21r-170,0r0,127r145,0r0,21r-145,0r0,129r170,0r0,22r-194,0xm146,-351r-26,0r44,-66r30,0",w:269,k:{J:1}},"\u00ca":{d:"50,0r0,-320r194,0r0,21r-170,0r0,127r145,0r0,21r-145,0r0,129r170,0r0,22r-194,0xm183,-351r-42,-49r-42,49r-25,0r55,-66r24,0r56,66r-26,0",w:269,k:{J:1}},"\u00cb":{d:"50,0r0,-320r194,0r0,21r-170,0r0,127r145,0r0,21r-145,0r0,129r170,0r0,22r-194,0xm81,-356r0,-34r27,0r0,34r-27,0xm175,-356r0,-34r26,0r0,34r-26,0",w:269,k:{J:1}},"\u00cc":{d:"50,0r0,-320r24,0r0,320r-24,0xm57,-351r-48,-66r30,0r44,66r-26,0",w:123},"\u00cd":{d:"50,0r0,-320r24,0r0,320r-24,0xm67,-351r-27,0r44,-66r30,0",w:123},"\u00ce":{d:"50,0r0,-320r24,0r0,320r-24,0xm104,-351r-41,-49r-42,49r-26,0r55,-66r25,0r55,66r-26,0",w:123},"\u00cf":{d:"50,0r0,-320r24,0r0,320r-24,0xm2,-356r0,-34r26,0r0,34r-26,0xm95,-356r0,-34r27,0r0,34r-27,0",w:123},"\u00d0":{d:"256,-269v25,14,23,210,0,218v-18,29,-50,51,-97,51r-105,0r0,-152r-36,0r0,-19r36,0r0,-149v87,1,171,-13,202,51xm79,-21v116,2,185,0,170,-137v13,-135,-51,-146,-170,-141r0,128r80,0r0,19r-80,0r0,131",w:310,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:12,A:4}},"\u00d1":{d:"259,0r-185,-279r0,279r-24,0r0,-320r24,0r185,277r0,-277r24,0r0,320r-24,0xm97,-376v48,-63,76,30,123,-16r14,13v-48,62,-78,-31,-123,16",w:332},"\u00d2":{d:"147,-323v81,8,109,51,109,163v0,113,-27,154,-109,163v-81,-8,-110,-52,-110,-163v0,-112,28,-153,110,-163xm147,-19v68,-9,85,-42,85,-141v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142v0,101,17,131,86,141xm142,-351r-48,-66r30,0r44,66r-26,0",w:293,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d3":{d:"147,-323v81,8,109,51,109,163v0,113,-27,154,-109,163v-81,-8,-110,-52,-110,-163v0,-112,28,-153,110,-163xm147,-19v68,-9,85,-42,85,-141v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142v0,101,17,131,86,141xm152,-351r-26,0r43,-66r30,0",w:293,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d4":{d:"147,-323v81,8,109,51,109,163v0,113,-27,154,-109,163v-81,-8,-110,-52,-110,-163v0,-112,28,-153,110,-163xm147,-19v68,-9,85,-42,85,-141v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142v0,101,17,131,86,141xm189,-351r-42,-49r-42,49r-26,0r56,-66r24,0r55,66r-25,0",w:293,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d5":{d:"147,-323v81,8,109,51,109,163v0,113,-27,154,-109,163v-81,-8,-110,-52,-110,-163v0,-112,28,-153,110,-163xm147,-19v68,-9,85,-42,85,-141v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142v0,101,17,131,86,141xm77,-376v48,-63,76,30,123,-16r14,13v-48,62,-77,-32,-123,16",w:293,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d6":{d:"147,-323v81,8,109,51,109,163v0,113,-27,154,-109,163v-81,-8,-110,-52,-110,-163v0,-112,28,-153,110,-163xm147,-19v68,-9,85,-42,85,-141v0,-101,-16,-131,-85,-142v-69,9,-86,42,-86,142v0,101,17,131,86,141xm87,-356r0,-34r26,0r0,34r-26,0xm180,-356r0,-34r27,0r0,34r-27,0",w:293,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d7":{d:"185,-35r-69,-70r-70,70r-14,-14r70,-70r-70,-70r14,-13r70,69r69,-69r14,13r-69,70r69,70"},"\u00d8":{d:"37,-160v0,-112,27,-163,110,-163v21,0,40,6,58,16r16,-33r24,0r-22,46v32,29,33,59,33,134v0,113,-26,163,-109,163v-21,0,-41,-6,-59,-16r-16,33r-23,0r22,-46v-32,-30,-34,-59,-34,-134xm147,-302v-69,0,-86,42,-86,142v0,63,1,89,20,111r114,-238v-14,-10,-30,-15,-48,-15xm147,-19v68,0,85,-42,85,-141v0,-63,-1,-90,-20,-112r-114,238v14,10,31,15,49,15",w:293,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d9":{d:"265,-104v0,63,-46,107,-110,107v-64,0,-110,-44,-110,-107r0,-216r24,0r0,213v0,53,34,88,86,88v52,0,85,-35,85,-88r0,-213r25,0r0,216xm150,-351r-48,-66r30,0r44,66r-26,0",w:309,k:{J:5}},"\u00da":{d:"265,-104v0,63,-46,107,-110,107v-64,0,-110,-44,-110,-107r0,-216r24,0r0,213v0,53,34,88,86,88v52,0,85,-35,85,-88r0,-213r25,0r0,216xm160,-351r-26,0r43,-66r30,0",w:309,k:{J:5}},"\u00db":{d:"265,-104v0,63,-46,107,-110,107v-64,0,-110,-44,-110,-107r0,-216r24,0r0,213v0,53,34,88,86,88v52,0,85,-35,85,-88r0,-213r25,0r0,216xm197,-351r-42,-49r-42,49r-26,0r56,-66r24,0r55,66r-25,0",w:309,k:{J:5}},"\u00dc":{d:"265,-104v0,63,-46,107,-110,107v-64,0,-110,-44,-110,-107r0,-216r24,0r0,213v0,53,34,88,86,88v52,0,85,-35,85,-88r0,-213r25,0r0,216xm95,-356r0,-34r26,0r0,34r-26,0xm189,-356r0,-34r26,0r0,34r-26,0",w:309,k:{J:5}},"\u00dd":{d:"123,-133r0,133r-24,0r0,-133r-95,-187r27,0r81,162r80,-162r26,0xm116,-351r-26,0r44,-66r30,0",w:222,k:{"\u00fc":18,"\u00fb":18,"\u00fa":18,"\u00f9":18,"\u00f8":36,"\u00f6":36,"\u00f5":36,"\u00f4":36,"\u00f3":36,"\u00f2":36,"\u00f1":18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":36,"\u00e6":36,"\u00e5":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u00d8":4,"\u00c6":18,z:18,x:18,u:18,s:36,r:18,q:36,p:18,o:36,n:18,m:18,g:36,e:36,d:36,c:36,a:36,Q:4,O:4,J:18,G:4,C:4,A:18,".":36}},"\u00de":{d:"264,-162v0,58,-42,93,-97,93r-93,0r0,69r-24,0r0,-320r24,0r0,66r93,0v55,0,97,33,97,92xm239,-162v0,-83,-86,-70,-165,-70r0,141v79,0,165,13,165,-71",w:290},"\u00df":{d:"190,-251v0,-34,-24,-53,-63,-52v-43,0,-60,27,-60,67r0,236r-23,0r0,-236v0,-54,32,-88,86,-88v45,0,82,23,82,73v0,24,-9,42,-28,55v44,18,29,81,29,136v0,45,-33,66,-85,60r0,-20v37,3,63,-8,62,-43v-2,-60,20,-137,-62,-121r0,-21v38,4,62,-12,62,-46",w:247},"\u00e0":{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm107,-266r-48,-66r31,0r43,66r-26,0",w:235},"\u00e1":{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm117,-266r-26,0r44,-66r30,0",w:235},"\u00e2":{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm154,-266r-42,-49r-42,49r-25,0r55,-66r24,0r56,66r-26,0",w:235},"\u00e3":{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm43,-291v49,-62,77,32,123,-16r13,13v-48,62,-76,-29,-123,16",w:235},"\u00e4":{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm52,-270r0,-35r26,0r0,35r-26,0xm146,-270r0,-35r26,0r0,35r-26,0",w:235},"\u00e5":{d:"171,-22v-37,43,-146,33,-146,-37v0,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v34,-59,161,-41,161,38r0,148r-23,0r0,-22xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm163,-305v0,28,-23,52,-51,52v-28,0,-51,-24,-51,-52v0,-28,23,-51,51,-51v28,0,51,23,51,51xm145,-305v0,-18,-15,-32,-33,-32v-18,0,-33,14,-33,32v0,18,15,33,33,33v18,0,33,-15,33,-33",w:235},"\u00e6":{d:"105,3v-51,1,-77,-19,-80,-62v-3,-66,76,-66,146,-63v3,-50,-5,-78,-61,-77v-31,0,-46,7,-60,27r-17,-14v27,-50,138,-44,155,5v48,-75,173,-35,157,77r-151,0v-8,85,84,111,130,60r18,13v-35,46,-131,47,-157,-7v-18,29,-40,41,-80,41xm105,-18v48,0,75,-27,66,-86v-53,0,-123,-9,-123,44v0,29,17,42,57,42xm322,-122v9,-79,-93,-103,-120,-41v-5,14,-7,20,-8,41r128,0",w:375},"\u00e7":{d:"54,-108v-10,83,81,119,128,63r16,14v-59,71,-167,27,-167,-77v0,-104,107,-149,167,-78r-16,14v-47,-58,-139,-19,-128,64xm139,32r-29,67r-29,0r33,-67r25,0",w:221,k:{"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,w:9,o:8,e:8,d:4,c:8,a:2}},"\u00e8":{d:"54,-104v-8,85,84,111,130,60r18,13v-22,22,-43,34,-79,34v-60,0,-92,-39,-92,-111v0,-70,33,-112,87,-112v57,-1,90,44,87,116r-151,0xm182,-122v9,-79,-93,-103,-120,-41v-5,14,-7,20,-8,41r128,0xm114,-266r-48,-66r30,0r44,66r-26,0",w:235,k:{"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00e9":{d:"54,-104v-8,85,84,111,130,60r18,13v-22,22,-43,34,-79,34v-60,0,-92,-39,-92,-111v0,-70,33,-112,87,-112v57,-1,90,44,87,116r-151,0xm182,-122v9,-79,-93,-103,-120,-41v-5,14,-7,20,-8,41r128,0xm124,-266r-26,0r43,-66r30,0",w:235,k:{"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00ea":{d:"54,-104v-8,85,84,111,130,60r18,13v-22,22,-43,34,-79,34v-60,0,-92,-39,-92,-111v0,-70,33,-112,87,-112v57,-1,90,44,87,116r-151,0xm182,-122v9,-79,-93,-103,-120,-41v-5,14,-7,20,-8,41r128,0xm161,-266r-42,-49r-42,49r-26,0r56,-66r24,0r55,66r-25,0",w:235,k:{"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00eb":{d:"54,-104v-8,85,84,111,130,60r18,13v-22,22,-43,34,-79,34v-60,0,-92,-39,-92,-111v0,-70,33,-112,87,-112v57,-1,90,44,87,116r-151,0xm182,-122v9,-79,-93,-103,-120,-41v-5,14,-7,20,-8,41r128,0xm59,-270r0,-35r26,0r0,35r-26,0xm153,-270r0,-35r26,0r0,35r-26,0",w:235,k:{"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00ec":{d:"44,0r0,-217r23,0r0,217r-23,0xm40,-266r-47,-66r30,0r44,66r-27,0",w:110},"\u00ed":{d:"44,0r0,-217r23,0r0,217r-23,0xm70,-266r-26,0r43,-66r30,0",w:110},"\u00ee":{d:"44,0r0,-217r23,0r0,217r-23,0xm97,-266r-42,-49r-42,49r-26,0r56,-66r24,0r55,66r-25,0",w:110},"\u00ef":{d:"44,0r0,-217r23,0r0,217r-23,0xm-5,-270r0,-35r26,0r0,35r-26,0xm89,-270r0,-35r26,0r0,35r-26,0",w:110},"\u00f0":{d:"31,-108v-8,-67,49,-138,121,-104r-30,-51r-53,0r0,-17r43,0r-24,-40r24,0r23,40r36,0r0,17r-26,0v24,42,67,100,61,155v5,55,-29,111,-88,111v-58,0,-92,-57,-87,-111xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90",w:236},"\u00f1":{d:"67,-191v42,-55,144,-28,144,52r0,139r-23,0v-6,-79,28,-199,-60,-199v-88,0,-55,119,-61,199r-23,0r0,-217r23,0r0,26xm58,-291v49,-62,78,31,123,-16r14,13v-48,62,-76,-29,-123,16",w:251},"\u00f2":{d:"118,-220v60,0,88,57,88,112v0,55,-29,111,-88,111v-58,0,-87,-56,-87,-111v0,-55,28,-112,87,-112xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90xm116,-266r-48,-66r30,0r44,66r-26,0",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f3":{d:"118,-220v60,0,88,57,88,112v0,55,-29,111,-88,111v-58,0,-87,-56,-87,-111v0,-55,28,-112,87,-112xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90xm123,-266r-26,0r44,-66r30,0",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f4":{d:"118,-220v60,0,88,57,88,112v0,55,-29,111,-88,111v-58,0,-87,-56,-87,-111v0,-55,28,-112,87,-112xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90xm160,-266r-42,-49r-42,49r-25,0r55,-66r24,0r56,66r-26,0",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f5":{d:"118,-220v60,0,88,57,88,112v0,55,-29,111,-88,111v-58,0,-87,-56,-87,-111v0,-55,28,-112,87,-112xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90xm49,-291v49,-62,77,32,123,-16r13,13v-48,62,-76,-29,-122,16",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f6":{d:"118,-220v60,0,88,57,88,112v0,55,-29,111,-88,111v-58,0,-87,-56,-87,-111v0,-55,28,-112,87,-112xm118,-18v46,0,65,-46,65,-90v0,-44,-18,-91,-65,-91v-46,0,-69,47,-64,91v-5,44,18,90,64,90xm58,-270r0,-35r27,0r0,35r-27,0xm152,-270r0,-35r26,0r0,35r-26,0",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f7":{d:"24,-108r0,-21r183,0r0,21r-183,0xm100,-179r0,-31r31,0r0,31r-31,0xm100,-27r0,-31r31,0r0,31r-31,0"},"\u00f8":{d:"57,-22v-53,-66,-30,-200,61,-198v18,0,34,5,48,14r18,-31r21,0r-25,43v53,66,30,200,-62,197v-18,0,-33,-4,-47,-13r-18,30r-21,0xm68,-42r87,-146v-90,-52,-127,77,-87,146xm82,-29v85,49,129,-69,86,-146",w:236,k:{"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f9":{d:"185,-26v-42,54,-144,29,-144,-52r0,-139r23,0v6,79,-28,199,60,199v88,0,55,-119,61,-199r23,0r0,217r-23,0r0,-26xm119,-266r-47,-66r30,0r43,66r-26,0",w:251},"\u00fa":{d:"185,-26v-42,54,-144,29,-144,-52r0,-139r23,0v6,79,-28,199,60,199v88,0,55,-119,61,-199r23,0r0,217r-23,0r0,-26xm129,-266r-26,0r44,-66r30,0",w:251},"\u00fb":{d:"185,-26v-42,54,-144,29,-144,-52r0,-139r23,0v6,79,-28,199,60,199v88,0,55,-119,61,-199r23,0r0,217r-23,0r0,-26xm166,-266r-42,-49r-42,49r-25,0r55,-66r24,0r56,66r-26,0",w:251},"\u00fc":{d:"185,-26v-42,54,-144,29,-144,-52r0,-139r23,0v6,79,-28,199,60,199v88,0,55,-119,61,-199r23,0r0,217r-23,0r0,-26xm64,-270r0,-35r26,0r0,35r-26,0xm158,-270r0,-35r26,0r0,35r-26,0",w:251},"\u00fd":{d:"86,59v-8,30,-32,41,-66,39r0,-20v52,7,49,-46,66,-78r-80,-217r26,0r65,190r65,-190r25,0xm102,-266r-26,0r43,-66r30,0",w:193,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,o:4,e:4,c:4,a:4,".":28,",":54}},"\u00fe":{d:"131,-220v63,-2,81,56,81,112v0,55,-18,113,-81,111v-25,0,-45,-6,-64,-31r0,132r-23,0r0,-424r23,0r0,131v19,-25,39,-31,64,-31xm189,-108v0,-45,-8,-91,-61,-91v-53,0,-61,46,-61,91v0,45,8,90,61,90v53,0,61,-45,61,-90",w:243},"\u00ff":{d:"86,59v-8,30,-32,41,-66,39r0,-20v52,7,49,-46,66,-78r-80,-217r26,0r65,190r65,-190r25,0xm37,-270r0,-35r26,0r0,35r-26,0xm130,-270r0,-35r27,0r0,35r-27,0",w:193},"\u2013":{d:"24,-108r0,-21r183,0r0,21r-183,0"},"\u2014":{d:"37,-108r0,-21r319,0r0,21r-319,0",w:392},"\u2018":{d:"43,-289r0,-31r31,-32r0,63r-31,0",w:117,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,s:27,J:54,A:36}},"\u2019":{d:"43,-257r0,-63r31,0r0,31",w:117,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,s:27,J:54,A:36}},"\u201c":{d:"43,-289r0,-31r31,-32r0,63r-31,0xm113,-289r0,-31r31,-32r0,63r-31,0",w:187,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,J:54,A:36}},"\u201d":{d:"43,-257r0,-63r31,0r0,31xm113,-257r0,-63r31,0r0,31",w:187,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,J:54,A:36}},"\u2026":{d:"146,0r0,-33r34,0r0,33r-34,0xm250,0r0,-33r33,0r0,33r-33,0xm43,0r0,-33r33,0r0,33r-33,0",w:325},"\u2122":{d:"319,-128r0,-148r-49,98r-21,0r-50,-98r0,148r-19,0r0,-192r19,0r60,121r60,-121r20,0r0,192r-20,0xm89,-302r0,174r-20,0r0,-174r-55,0r0,-18r130,0r0,18r-55,0",w:364}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2005 Albert-Jan Pool published by FSI Fonts und Software GmbH
 * 
 * Trademark:
 * DIN is a trademark of FSI Fonts und Software GmbH
 * 
 * Manufacturer:
 * FSI Fonts und Software GmbH
 * 
 * Designer:
 * Albert-Jan Pool
 * 
 * Vendor URL:
 * http://www.fontfont.com
 * 
 * License information:
 * http://www.fontfont.com/eula/license.html
 */
Cufon.registerFont({w:238,face:{"font-family":"DIN Pro Medium","font-weight":500,"font-stretch":"normal","units-per-em":"448","panose-1":"2 0 5 3 3 0 0 2 0 4",ascent:"342",descent:"-106","x-height":"3",bbox:"-17 -448 405 95.2313","underline-thickness":"22.848","underline-position":"-38.08",stemh:"43",stemv:"46","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:107},"!":{d:"110,-319r-10,224r-36,0r-10,-224r56,0xm107,0r-50,0r0,-49r50,0r0,49",w:148},'"':{d:"164,-233r-45,0r0,-86r45,0r0,86xm80,-233r-45,0r0,-86r45,0r0,86",w:198},"#":{d:"279,-191r-41,0r-9,56r35,0r0,42r-42,0r-15,93r-47,0r15,-93r-62,0r-14,93r-48,0r15,-93r-36,0r0,-42r43,0r9,-56r-37,0r0,-42r43,0r14,-88r48,0r-14,88r61,0r14,-88r47,0r-14,88r35,0r0,42xm190,-191r-61,0r-9,56r61,0",w:301},"$":{d:"223,-156v55,56,16,159,-71,157r0,50r-36,0r0,-48v-43,-2,-75,-13,-103,-42r33,-32v22,22,45,29,74,30r0,-99v-56,-6,-96,-30,-96,-88v0,-51,35,-88,92,-93r0,-40r36,0r0,40v35,2,62,13,86,36r-31,30v-16,-15,-36,-22,-59,-24r0,97v32,3,61,12,75,26xm148,-42v48,0,69,-50,41,-81v-11,-12,-26,-12,-41,-14r0,95xm120,-185r0,-94v-43,2,-64,50,-37,79v9,9,23,13,37,15",w:272},"%":{d:"351,-103v0,60,-9,106,-62,106v-52,0,-63,-45,-63,-106v0,-39,28,-62,63,-62v35,0,62,23,62,62xm151,-261v0,60,-8,106,-62,106v-53,0,-63,-45,-63,-106v0,-39,28,-61,63,-61v35,0,62,22,62,61xm282,-319r-150,319r-37,0r151,-319r36,0xm289,-27v34,1,28,-42,28,-75v0,-20,-9,-32,-28,-32v-35,0,-29,40,-29,74v0,21,10,33,29,33xm89,-185v35,2,28,-41,28,-74v0,-20,-9,-33,-28,-33v-35,0,-29,41,-29,75v0,21,10,32,29,32",w:377},"&":{d:"214,-250v0,38,-28,52,-57,72r67,80v12,-17,17,-35,17,-64r44,0v-1,41,-10,73,-32,98r53,64r-58,0r-26,-31v-14,12,-40,34,-88,34v-66,0,-104,-37,-104,-95v0,-44,33,-69,64,-90v-14,-17,-34,-39,-34,-69v0,-41,31,-71,78,-71v45,0,76,31,76,72xm194,-64r-75,-90v-23,16,-43,31,-43,61v1,59,80,71,118,29xm132,-207v18,-12,37,-21,38,-43v0,-18,-13,-32,-32,-32v-44,0,-37,49,-6,75",w:327},"'":{d:"80,-233r-45,0r0,-86r45,0r0,86",w:115},"(":{d:"84,-55v0,36,13,49,32,66r-31,31v-25,-22,-46,-49,-46,-94r0,-215v-3,-44,21,-72,46,-94r31,31v-19,18,-32,29,-32,66r0,209",w:142},")":{d:"57,-361v25,22,47,50,47,94r0,215v2,43,-22,72,-47,94r-31,-31v18,-18,32,-29,31,-66r0,-209v1,-37,-13,-48,-31,-66",w:142},"*":{d:"190,-209r-17,29r-49,-31r1,59r-33,0r2,-59r-50,31r-17,-29r52,-27r-52,-28r17,-29r50,31r-2,-58r33,0r-1,58r49,-31r17,29r-52,28",w:217},"+":{d:"216,-101r-75,0r0,75r-43,0r0,-75r-75,0r0,-42r75,0r0,-75r43,0r0,75r75,0r0,42"},",":{d:"87,27r-52,42r0,-121r52,0r0,79",w:121},"-":{d:"161,-103r-131,0r0,-43r131,0r0,43",w:190},".":{d:"90,0r-55,0r0,-55r55,0r0,55",w:124},"/":{d:"172,-352r-128,385r-44,0r128,-385r44,0",w:170},"0":{d:"211,-89v0,57,-41,92,-92,92v-51,0,-92,-35,-92,-92r0,-141v0,-57,41,-92,92,-92v51,0,92,35,92,92r0,141xm119,-38v75,0,47,-120,47,-191v0,-31,-18,-52,-47,-52v-74,0,-46,121,-46,191v0,31,17,52,46,52"},"1":{d:"159,0r-46,0r0,-269r-62,54r0,-50r62,-54r46,0r0,319"},"2":{d:"214,0r-186,0r0,-41r123,-149v30,-31,20,-92,-30,-91v-24,0,-47,13,-47,49r-45,0v0,-54,38,-90,92,-90v87,0,115,96,63,159r-100,122r130,0r0,41"},"3":{d:"214,-90v0,61,-45,93,-98,93v-51,0,-95,-27,-97,-89r46,0v2,34,25,48,51,48v30,0,52,-19,52,-53v0,-34,-20,-54,-60,-52r0,-40v37,2,56,-18,56,-49v0,-32,-22,-49,-48,-49v-28,0,-45,18,-47,46r-46,0v3,-54,42,-87,93,-87v89,0,127,123,53,157v27,12,45,36,45,75"},"4":{d:"223,-48r-34,0r0,48r-44,0r0,-48r-129,0r0,-42r112,-229r49,0r-112,229r80,0r0,-75r44,0r0,75r34,0r0,42"},"5":{d:"129,-212v62,0,86,54,86,105v0,61,-27,110,-94,110v-57,0,-91,-35,-93,-85r46,0v4,28,18,44,47,44v36,0,48,-32,48,-69v0,-38,-10,-66,-47,-66v-26,0,-40,12,-45,28r-42,0r0,-174r172,0r0,41r-130,0r0,84v11,-11,29,-18,52,-18"},"6":{d:"214,-95v0,59,-39,98,-94,98v-89,0,-108,-97,-71,-174r72,-148r49,0r-68,137v60,-20,112,21,112,87xm168,-94v0,-31,-19,-55,-49,-55v-29,0,-48,21,-48,55v0,34,19,56,48,56v29,0,49,-22,49,-56"},"7":{d:"218,-278r-106,278r-50,0r107,-278r-97,0r0,50r-44,0r0,-91r190,0r0,41"},"8":{d:"218,-90v0,58,-44,93,-99,93v-55,0,-98,-35,-98,-93v0,-38,22,-62,44,-75v-21,-13,-39,-34,-39,-68v0,-53,41,-89,93,-89v52,0,93,36,93,89v0,34,-17,55,-38,68v22,13,44,37,44,75xm172,-91v0,-30,-23,-53,-53,-53v-30,0,-52,23,-52,53v0,30,22,53,52,53v30,0,53,-23,53,-53xm167,-232v0,-28,-20,-49,-48,-49v-28,0,-47,21,-47,49v0,28,19,48,47,48v28,0,48,-20,48,-48"},"9":{d:"119,-322v89,0,109,97,71,174r-73,148r-48,0r68,-137v-60,20,-112,-21,-112,-87v0,-59,39,-98,94,-98xm168,-225v0,-34,-20,-56,-49,-56v-29,0,-48,22,-48,56v0,31,18,55,48,55v29,0,49,-21,49,-55"},":":{d:"101,-128r-54,0r0,-54r54,0r0,54xm101,0r-54,0r0,-55r54,0r0,55",w:135},";":{d:"99,27r-52,42r0,-121r52,0r0,79xm101,-128r-54,0r0,-54r54,0r0,54",w:135},"<":{d:"202,-25r-165,-79r0,-41r165,-79r0,48r-110,52r110,51r0,48"},"=":{d:"216,-146r-193,0r0,-43r193,0r0,43xm216,-60r-193,0r0,-42r193,0r0,42"},">":{d:"202,-104r-165,79r0,-48r109,-51r-109,-52r0,-48r165,79r0,41"},"?":{d:"121,-322v73,0,118,88,68,141v-15,27,-45,44,-43,86r-45,0v-8,-70,64,-83,64,-141v0,-25,-18,-45,-44,-45v-28,0,-43,21,-43,45r-46,0v0,-51,38,-86,89,-86xm149,0r-51,0r0,-49r51,0r0,49",w:228},"@":{d:"198,-320v65,-2,103,39,103,105r0,216r-43,-1r0,-22v-14,17,-31,25,-57,25v-57,0,-79,-40,-79,-108v0,-68,21,-108,79,-108v25,0,42,8,56,25v7,-56,-15,-92,-64,-92v-66,0,-120,2,-120,65r0,140v0,25,5,35,22,49r-31,31v-57,-36,-30,-137,-35,-220v-4,-67,37,-107,103,-105r66,0xm257,-105v0,-39,-8,-69,-46,-69v-38,0,-45,30,-45,69v0,39,7,69,45,69v38,0,46,-30,46,-69",w:329},A:{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0",w:280,k:{"\u201d":36,"\u2019":36,"\u00ff":11,"\u00fd":11,"\u00dd":16,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},B:{d:"267,-90v0,59,-40,90,-96,90r-129,0r0,-319r124,0v59,0,96,33,96,87v0,34,-21,59,-43,68v25,10,48,34,48,74xm219,-92v0,-28,-19,-49,-53,-49r-76,0r0,98r76,0v34,0,53,-21,53,-49xm214,-230v0,-57,-69,-46,-124,-46r0,92v55,-1,124,11,124,-46",w:297,k:{J:9}},C:{d:"78,-159v0,92,8,106,67,118v35,0,57,-22,65,-54r48,0v-11,64,-55,98,-113,98v-82,0,-126,-63,-115,-162v-9,-100,31,-163,115,-163v59,0,102,34,113,98r-49,0v-8,-32,-29,-54,-64,-54v-60,0,-67,28,-67,119",w:281,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:9,A:4}},D:{d:"268,-162v0,46,1,97,-32,132v-39,42,-119,27,-194,30r0,-319v74,3,155,-12,194,30v33,35,32,81,32,127xm149,-43v62,-1,71,-45,71,-119v0,-73,-11,-112,-71,-114r-59,0r0,233r59,0",w:298,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:12,A:4}},E:{d:"246,0r-204,0r0,-319r204,0r0,43r-156,0r0,94r133,0r0,43r-133,0r0,96r156,0r0,43",w:270,k:{J:1}},F:{d:"246,-276r-156,0r0,98r133,0r0,43r-133,0r0,135r-48,0r0,-319r204,0r0,43",w:262,k:{"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u00f8":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00f1":13,"\u00eb":15,"\u00ea":15,"\u00e9":15,"\u00e8":15,"\u00e7":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u00c6":8,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,z:13,x:13,u:13,r:13,p:13,o:15,n:13,m:13,e:15,c:15,a:15,S:4,Q:9,O:9,J:56,G:9,C:9,A:27,".":42}},G:{d:"145,-41v46,-1,75,-35,68,-90r-68,0r0,-41r116,0r0,48v5,79,-49,127,-116,127v-82,0,-126,-63,-115,-162v-9,-100,30,-163,115,-163v68,0,107,44,116,99r-49,0v-8,-35,-31,-55,-67,-55v-58,12,-68,27,-67,119v0,92,8,106,67,118",w:290,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},H:{d:"268,0r-48,0r0,-139r-130,0r0,139r-48,0r0,-319r48,0r0,136r130,0r0,-136r48,0r0,319",w:309},I:{d:"90,0r-48,0r0,-319r48,0r0,319",w:131},J:{d:"190,-101v5,100,-124,136,-184,73r32,-32v30,35,103,21,103,-44r0,-215r49,0r0,218",w:226,k:{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,A:4}},K:{d:"290,0r-57,0r-89,-157r-54,64r0,93r-48,0r0,-319r48,0r0,160r130,-160r60,0r-104,125",w:294,k:{"\u00ff":16,"\u00fd":16,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,y:16,Q:4,O:4,J:-2,G:4,C:4}},L:{d:"244,0r-202,0r0,-319r48,0r0,276r154,0r0,43",w:257,k:{"\u201d":67,"\u2019":67,"\u00ff":27,"\u00fd":27,"\u00dd":36,"\u00dc":5,"\u00db":5,"\u00da":5,"\u00d9":5,"\u00d8":12,"\u00d6":12,"\u00d5":12,"\u00d4":12,"\u00d3":12,"\u00d2":12,"\u00c7":12,y:27,Y:36,W:18,V:31,U:5,T:36,Q:12,O:12,J:-2,G:12,C:12}},M:{d:"323,0r-48,0r0,-213r-74,155r-36,0r-75,-155r0,213r-48,0r0,-319r48,0r93,198r92,-198r48,0r0,319",w:364},N:{d:"282,0r-45,0r-147,-224r0,224r-48,0r0,-319r44,0r147,224r0,-224r49,0r0,319",w:323},O:{d:"145,-322v84,0,124,64,114,163v10,100,-30,162,-114,162v-83,0,-115,-62,-115,-162v0,-100,30,-163,115,-163xm145,-41v59,-11,67,-26,66,-118v0,-64,-3,-82,-19,-99v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119v0,93,7,106,67,118",w:289,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},P:{d:"265,-222v0,56,-40,97,-102,97r-73,0r0,125r-48,0r0,-319r121,0v62,0,102,41,102,97xm216,-222v0,-61,-66,-55,-126,-54r0,107v60,1,126,9,126,-53",w:281,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":22,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,s:4,q:4,o:4,g:4,e:4,d:4,c:4,a:4,J:54,A:22,".":49}},Q:{d:"145,-322v84,0,114,63,114,163v0,54,1,87,-20,116r31,30r-27,27r-32,-31v-18,13,-41,20,-66,20v-83,-3,-115,-62,-115,-162v0,-100,30,-163,115,-163xm78,-159v0,93,6,118,67,118v12,0,23,-3,32,-10r-33,-34r27,-27r31,31v14,-29,15,-171,-10,-177v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119",w:289},R:{d:"274,0r-56,0r-67,-134r-61,0r0,134r-48,0r0,-319r123,0v60,0,99,39,99,93v0,46,-27,75,-63,85xm216,-225v0,-59,-67,-52,-126,-51r0,100v57,0,126,10,126,-49",w:293,k:{J:4}},S:{d:"241,-91v0,106,-171,122,-228,52r33,-32v34,43,147,44,147,-19v0,-71,-113,-37,-146,-77v-51,-61,-10,-155,84,-155v42,0,72,11,99,37r-31,30v-34,-39,-128,-33,-128,25v0,67,118,36,144,74v17,15,26,38,26,65",w:264,k:{"\u00dd":9,Y:9,S:3,J:9}},T:{d:"237,-276r-87,0r0,276r-49,0r0,-276r-88,0r0,-43r224,0r0,43",w:250,k:{"\u00ff":17,"\u00fd":17,"\u00fc":17,"\u00fb":17,"\u00fa":17,"\u00f9":17,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00f1":17,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e6":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"\u00c6":27,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,z:17,y:17,x:17,w:17,v:17,u:17,s:30,r:17,q:30,p:17,o:30,n:17,m:17,g:30,e:30,d:30,c:30,a:30,Q:9,O:9,J:36,G:9,C:9,A:27,".":36}},U:{d:"266,-108v0,66,-50,111,-115,111v-65,0,-114,-45,-114,-111r0,-211r48,0r0,209v0,43,26,69,66,69v40,0,66,-26,66,-69r0,-209r49,0r0,211",w:302,k:{J:5}},V:{d:"250,-319r-105,319r-38,0r-105,-319r50,0r74,232r73,-232r51,0",w:252,k:{"\u00ff":4,"\u00fd":4,"\u00fc":9,"\u00fb":9,"\u00fa":9,"\u00f9":9,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":9,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":16,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,z:9,y:4,x:9,u:9,s:18,r:9,q:18,p:9,o:18,n:9,m:9,g:18,e:18,d:18,c:18,a:18,Q:4,O:4,G:4,C:4,A:16,".":36}},W:{d:"385,-319r-83,319r-42,0r-65,-224r-65,224r-42,0r-83,-319r51,0r56,228r64,-228r39,0r64,228r55,-228r51,0",w:390,k:{"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,s:18,q:18,o:18,g:18,e:18,d:18,c:18,a:18,Q:4,O:4,G:4,C:4,A:7,".":22}},X:{d:"254,0r-56,0r-69,-122r-69,122r-56,0r99,-164r-92,-155r55,0r63,114r63,-114r56,0r-93,155",w:258,k:{"\u00ff":14,"\u00fd":14,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,y:14,Q:4,O:4,J:-2,G:4,C:4}},Y:{d:"241,-319r-95,188r0,131r-48,0r0,-131r-96,-188r53,0r67,140r67,-140r52,0",w:243,k:{"\u00fc":18,"\u00fb":18,"\u00fa":18,"\u00f9":18,"\u00f8":36,"\u00f6":36,"\u00f5":36,"\u00f4":36,"\u00f3":36,"\u00f2":36,"\u00f1":18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":36,"\u00e6":36,"\u00e5":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":18,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,z:18,x:18,u:18,s:36,r:18,q:36,p:18,o:36,n:18,m:18,g:36,e:36,d:36,c:36,a:36,Q:4,O:4,J:18,G:4,C:4,A:18,".":36}},Z:{d:"226,0r-204,0r0,-42r147,-234r-141,0r0,-43r198,0r0,39r-148,237r148,0r0,43",w:247},"[":{d:"136,33r-97,0r0,-385r97,0r0,41r-52,0r0,303r52,0r0,41",w:155},"\\":{d:"170,33r-44,0r-126,-382r44,0",w:170},"]":{d:"117,33r-98,0r0,-40r53,0r0,-305r-53,0r0,-40r98,0r0,385",w:155},"^":{d:"225,-180r-47,0r-50,-92r-50,92r-48,0r77,-142r42,0",w:255},_:{d:"256,77r-256,0r0,-31r256,0r0,31",w:255},"`":{d:"135,-268r-34,0r-50,-73r51,0",w:224},a:{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33",w:237},b:{d:"142,-230v63,0,80,59,80,116v0,57,-17,117,-81,117v-25,0,-43,-6,-60,-27r0,24r-45,0r0,-319r46,0r0,115v17,-20,36,-26,60,-26xm177,-114v0,-40,-7,-75,-48,-75v-41,0,-47,35,-47,75v0,40,6,76,47,76v41,0,48,-36,48,-76",w:247},c:{d:"70,-114v-9,67,61,101,99,54r32,30v-63,64,-176,38,-176,-84v0,-122,112,-146,176,-84r-32,30v-38,-46,-108,-12,-99,54",w:217,k:{"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,w:9,o:8,e:8,d:4,c:8,a:2}},d:{d:"26,-114v0,-57,17,-116,80,-116v24,0,43,6,60,26r0,-115r45,0r0,319r-44,0r0,-24v-17,21,-35,27,-60,27v-64,0,-81,-59,-81,-117xm166,-114v0,-40,-6,-75,-47,-75v-41,0,-48,35,-48,75v0,40,7,76,48,76v41,0,47,-36,47,-76",w:247},e:{d:"217,-100r-147,0v-7,66,80,81,113,40r29,27v-60,63,-187,49,-187,-81v0,-73,38,-116,96,-116v68,0,101,53,96,130xm172,-132v9,-62,-77,-80,-96,-31v-4,10,-6,17,-6,31r102,0",w:241,k:{"\u00ff":4,"\u00fd":4,y:4,x:3,w:4,v:4}},f:{d:"134,-188r-45,0r0,188r-46,0r0,-188r-26,0r0,-35r26,0v-8,-66,16,-106,91,-98r0,39v-25,-1,-45,1,-45,26r0,33r45,0r0,35",w:146,k:{"\u201d":-9,"\u2019":-9,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,o:7,e:7,c:7,a:7,".":22}},g:{d:"26,-118v0,-62,18,-113,80,-112v24,0,42,6,59,27r0,-24r45,0r0,226v8,91,-120,127,-178,66r29,-30v14,13,28,21,50,21v50,-2,56,-39,53,-87v-17,20,-36,26,-59,26v-60,-1,-79,-51,-79,-113xm164,-118v0,-36,-5,-71,-46,-71v-41,0,-47,35,-47,71v0,36,6,71,47,71v41,0,46,-35,46,-71",w:245},h:{d:"220,0r-46,0r0,-139v0,-34,-20,-50,-46,-50v-26,0,-46,16,-46,50r0,139r-46,0r0,-319r46,0r0,115v47,-53,138,-19,138,58r0,146",w:253},i:{d:"82,0r-46,0r0,-227r46,0r0,227xm83,-272r-48,0r0,-48r48,0r0,48",w:118},j:{d:"82,30v2,44,-35,70,-91,63r0,-39v26,2,45,-1,45,-27r0,-254r46,0r0,257xm83,-272r-48,0r0,-48r48,0r0,48",w:118},k:{d:"236,0r-57,0r-63,-105r-34,38r0,67r-46,0r0,-319r46,0r0,197r88,-105r56,0r-79,89",w:245,k:{"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00e6":3,q:3,o:3,g:3,e:3,d:3,c:3}},l:{d:"125,0v-56,6,-90,-18,-90,-63r0,-256r46,0r0,254v-3,25,19,28,44,26r0,39",w:139,k:{"\u201d":27,"\u2019":27,"\u00ff":15,"\u00fd":15,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,y:15,w:9,v:18,o:9,e:11,c:11}},m:{d:"206,-197v43,-61,153,-32,153,52r0,145r-46,0r0,-138v0,-35,-20,-51,-46,-51v-25,0,-47,15,-47,48r0,141r-45,0r0,-138v0,-35,-20,-51,-46,-51v-26,0,-47,16,-47,51r0,138r-46,0r0,-227r45,0r0,23v31,-36,101,-35,125,7",w:392},n:{d:"81,-204v47,-53,139,-19,139,59r0,145r-45,0r0,-138v0,-35,-20,-51,-46,-51v-26,0,-47,16,-47,51r0,138r-46,0r0,-227r45,0r0,23",w:254},o:{d:"120,-230v68,0,95,48,95,116v0,69,-27,117,-95,117v-68,0,-94,-47,-94,-117v0,-68,27,-116,94,-116xm120,-38v37,0,49,-35,49,-76v0,-40,-11,-75,-49,-75v-37,0,-49,36,-49,75v0,40,12,76,49,76",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},p:{d:"141,-230v63,0,81,58,81,116v0,57,-16,117,-80,117v-24,0,-43,-6,-60,-26r0,115r-46,0r0,-319r45,0r0,24v17,-21,35,-27,60,-27xm177,-114v0,-40,-7,-75,-48,-75v-41,0,-47,35,-47,75v0,40,6,76,47,76v41,0,48,-36,48,-76",w:247},q:{d:"26,-114v0,-57,17,-116,81,-116v25,0,43,6,60,27r0,-24r44,0r0,319r-45,0r0,-115v-17,20,-36,26,-60,26v-63,0,-80,-60,-80,-117xm166,-114v0,-40,-6,-75,-47,-75v-41,0,-48,35,-48,75v0,40,7,76,48,76v41,0,47,-36,47,-76",w:247},r:{d:"196,-208r-35,34v-26,-31,-79,-12,-79,36r0,138r-46,0r0,-227r45,0r0,25v22,-31,86,-41,115,-6",w:196,k:{"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e7":14,"\u00e6":14,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,s:4,q:14,o:14,g:14,e:14,d:14,c:14,a:4,".":54,",":45}},s:{d:"204,-69v1,84,-140,93,-190,39r30,-30v18,19,44,24,66,24v49,0,72,-55,19,-59v-54,-4,-103,-11,-103,-65v0,-78,122,-88,169,-44r-28,29v-21,-23,-98,-26,-98,12v0,25,41,27,68,29v43,3,67,25,67,65",w:223,k:{"\u2019":8,v:4,t:4,s:3}},t:{d:"131,0v-55,6,-89,-20,-89,-63r0,-125r-26,0r0,-35r26,0r0,-69r45,0r0,69r44,0r0,35r-44,0r0,123v-1,25,19,28,44,26r0,39",w:153,k:{"\u00f8":1,"\u00f6":1,"\u00f5":1,"\u00f4":1,"\u00f3":1,"\u00f2":1,"\u00eb":1,"\u00ea":1,"\u00e9":1,"\u00e8":1,"\u00e7":1,"\u00e6":1,"\u00e5":1,"\u00e4":1,"\u00e3":1,"\u00e2":1,"\u00e1":1,"\u00e0":1,o:1,e:1,c:1,a:1}},u:{d:"173,-23v-47,54,-139,18,-139,-59r0,-145r46,0r0,138v0,35,19,51,45,51v26,0,47,-16,47,-51r0,-138r46,0r0,227r-45,0r0,-23",w:254},v:{d:"207,-227r-83,227r-37,0r-83,-227r48,0r54,160r53,-160r48,0",w:211,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,s:4,o:4,e:4,c:4,a:4,".":28}},w:{d:"329,-227r-71,227r-38,0r-54,-159r-53,159r-39,0r-70,-227r48,0r44,160r53,-160r35,0r53,160r43,-160r49,0",w:332,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,o:4,e:4,c:4,".":17}},x:{d:"215,0r-55,0r-47,-78r-48,78r-55,0r78,-116r-75,-111r55,0r45,74r44,-74r55,0r-74,111",w:225,k:{"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":9,o:9,e:9,c:9}},y:{d:"208,-227r-100,272v-10,34,-39,49,-82,45r0,-41v44,8,45,-32,57,-60r-79,-216r48,0r54,160r53,-160r49,0",w:209,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,o:4,e:4,c:4,a:4,".":28,",":27}},z:{d:"189,0r-170,0r0,-36r113,-150r-106,0r0,-41r163,0r0,36r-114,150r114,0r0,41",w:210},"{":{d:"82,-159v73,20,-24,172,80,151r0,41v-57,4,-96,-7,-96,-62v0,-48,21,-122,-46,-110r0,-41v102,18,-14,-184,110,-172r32,0r0,41v-33,0,-52,-2,-50,35v2,46,6,112,-30,117",w:182},"|":{d:"99,33r-46,0r0,-385r46,0r0,385",w:151},"}":{d:"116,-290v0,48,-21,121,46,110r0,41v-30,-2,-47,5,-46,35v0,68,12,143,-64,137r-32,0r0,-41v33,0,52,3,50,-35v-3,-45,-7,-112,30,-116v-14,-6,-30,-16,-30,-45v0,-41,22,-114,-32,-107r-18,0r0,-41v57,-4,96,7,96,62",w:182},"~":{d:"85,-160v44,-1,86,55,124,6r29,29v-26,26,-42,35,-66,35v-44,0,-86,-55,-124,-6r-29,-29v26,-26,42,-35,66,-35",w:257},"\u00a0":{w:107},"\u00a1":{d:"95,92r-56,0r10,-224r36,0xm92,-178r-50,0r0,-49r50,0r0,49",w:148},"\u00a2":{d:"206,-82v-19,20,-38,30,-64,33r0,49r-35,0r0,-50v-48,-8,-82,-47,-82,-114v0,-67,34,-106,82,-114r0,-41r35,0r0,40v26,3,45,13,64,33r-31,30v-12,-13,-22,-19,-37,-21r0,147v15,-2,25,-9,37,-22xm111,-237v-55,9,-55,138,0,146r0,-146",w:223},"\u00a3":{d:"231,0r-184,0r0,-140r-28,0r0,-35r28,0v-26,-127,104,-189,184,-116r-32,32v-30,-35,-111,-21,-103,44r0,40r58,0r0,35r-58,0r0,97r135,0r0,43",w:252},"\u00a4":{d:"267,-36r-30,30r-33,-33v-31,23,-80,22,-111,0r-33,33r-30,-30r33,-33v-22,-31,-23,-81,0,-112r-33,-32r30,-30r33,32v31,-21,80,-22,111,0r33,-32r30,30r-33,32v22,31,23,81,0,112xm210,-125v0,-34,-27,-60,-61,-60v-34,0,-61,26,-61,60v0,34,27,61,61,61v34,0,61,-27,61,-61",w:297},"\u00a5":{d:"241,-319r-65,130r39,0r0,35r-57,0v-7,12,-15,24,-12,46r69,0r0,35r-69,0r0,73r-48,0r0,-73r-69,0r0,-35r69,0v2,-22,-5,-34,-12,-46r-57,0r0,-35r39,0r-66,-130r53,0r67,141r67,-141r52,0",w:243},"\u00a6":{d:"99,-195r-46,0r0,-157r46,0r0,157xm99,33r-46,0r0,-157r46,0r0,157",w:154},"\u00a7":{d:"211,-118v0,35,-23,60,-43,70v22,10,39,29,39,63v2,105,-170,107,-172,3r45,0v2,22,17,36,42,36v51,0,56,-66,6,-77v-50,-12,-95,-35,-95,-93v0,-35,23,-60,44,-70v-22,-11,-38,-27,-38,-60v0,-42,30,-76,83,-76v53,0,84,31,85,74r-44,0v-2,-24,-18,-34,-41,-34v-25,0,-39,13,-39,35v0,30,39,37,65,45v41,12,63,40,63,84xm122,-69v27,0,44,-17,45,-48v1,-29,-17,-48,-45,-48v-28,0,-45,18,-44,48v0,31,17,48,44,48",w:243},"\u00a8":{d:"181,-271r-41,0r0,-48r41,0r0,48xm84,-271r-41,0r0,-48r41,0r0,48",w:224},"\u00a9":{d:"355,-159v0,90,-72,162,-162,162v-90,0,-162,-72,-162,-162v0,-90,72,-163,162,-163v90,0,162,73,162,163xm323,-159v0,-74,-58,-132,-130,-132v-72,0,-129,58,-129,132v0,74,57,131,129,131v72,0,130,-57,130,-131xm254,-93v-50,49,-138,17,-138,-66v0,-82,87,-116,138,-67r-20,21v-36,-35,-93,-7,-87,46v-6,53,52,79,87,45",w:386},"\u00aa":{d:"134,-154v-33,35,-111,19,-111,-37v0,-47,54,-57,110,-52v14,-51,-59,-59,-78,-28r-25,-24v34,-46,140,-31,140,37r0,120r-36,0r0,-16xm91,-167v30,0,46,-14,42,-50v-31,0,-73,-6,-73,25v0,16,9,25,31,25",w:202},"\u00ab":{d:"120,-19r-103,-103r103,-102r0,55r-48,47r48,48r0,55xm233,-19r-103,-103r103,-102r0,55r-48,47r48,48r0,55",w:265},"\u00ac":{d:"217,-44r-43,0r0,-63r-152,0r0,-43r195,0r0,106"},"\u00ad":{d:"161,-103r-131,0r0,-43r131,0r0,43",w:190},"\u00ae":{d:"355,-159v0,90,-72,162,-162,162v-90,0,-162,-72,-162,-162v0,-90,72,-163,162,-163v90,0,162,73,162,163xm323,-159v0,-74,-57,-133,-130,-133v-73,0,-130,59,-130,133v0,74,57,132,130,132v73,0,130,-58,130,-132xm263,-72r-36,0r-36,-70r-22,0r0,70r-32,0r0,-175r65,0v63,-4,75,87,22,101xm227,-194v0,-26,-30,-28,-58,-26r0,53v29,2,58,-1,58,-27",w:386},"\u00af":{d:"43,-277r0,-33r138,0r0,33r-138,0",w:224},"\u00b0":{d:"184,-246v0,43,-36,78,-79,78v-43,0,-78,-35,-78,-78v0,-43,35,-78,78,-78v43,0,79,35,79,78xm146,-246v0,-23,-18,-42,-41,-42v-23,0,-40,19,-40,42v0,23,17,41,40,41v23,0,41,-18,41,-41",w:211},"\u00b1":{d:"216,-142r-75,0r0,76r-43,0r0,-76r-75,0r0,-42r75,0r0,-75r43,0r0,75r75,0r0,42xm216,0r-193,0r0,-43r193,0r0,43"},"\u00b2":{d:"137,-128r-117,0r0,-31r72,-83v17,-16,12,-48,-14,-48v-12,0,-23,6,-23,25r-35,0v0,-34,25,-56,58,-56v55,0,72,61,38,100r-54,62r75,0r0,31",w:156},"\u00b3":{d:"142,-183v0,38,-27,58,-60,58v-31,0,-62,-17,-62,-57r35,0v0,17,13,26,27,26v15,0,26,-11,26,-28v0,-18,-12,-29,-33,-27r0,-29v20,2,30,-9,30,-25v1,-33,-48,-33,-48,-2r-34,0v1,-34,26,-54,58,-54v54,0,78,73,36,95v14,7,25,20,25,43",w:162},"\u00b4":{d:"173,-341r-50,73r-34,0r33,-73r51,0",w:224},"\u00b5":{d:"218,0r-45,0r0,-23v-22,25,-66,36,-93,14r0,101r-46,0r0,-319r46,0r0,138v0,35,20,51,46,51v26,0,46,-16,46,-51r0,-138r46,0r0,227",w:254},"\u00b6":{d:"244,92r-46,0r0,-368r-48,0r0,368r-46,0r0,-234v-49,0,-87,-41,-87,-88v0,-53,40,-89,101,-89r126,0r0,411",w:285},"\u00b7":{d:"90,-97r-55,0r0,-55r55,0r0,55",w:124},"\u00b8":{d:"143,29r-23,66r-45,0r31,-66r37,0",w:224},"\u00b9":{d:"91,-128r-34,0r0,-152r-39,34r0,-39r39,-34r34,0r0,191",w:124},"\u00ba":{d:"103,-321v54,0,75,39,75,93v0,55,-21,92,-75,92v-55,0,-76,-38,-76,-92v0,-53,22,-93,76,-93xm103,-169v30,0,38,-29,38,-59v0,-31,-8,-60,-38,-60v-30,0,-38,29,-38,60v0,30,7,59,38,59",w:205},"\u00bb":{d:"249,-122r-103,103r0,-55r48,-48r-48,-47r0,-55xm136,-122r-104,103r0,-55r49,-48r-49,-47r0,-55",w:265},"\u00bc":{d:"267,-319r-150,319r-36,0r150,-319r36,0xm344,-27r-18,0r0,27r-33,0r0,-27r-78,0r0,-32r66,-132r37,0r-66,132r41,0r0,-37r33,0r0,37r18,0r0,32xm91,-128r-34,0r0,-152r-39,34r0,-39r39,-34r34,0r0,191",w:361},"\u00bd":{d:"350,0r-116,0r0,-31r72,-83v17,-16,13,-48,-14,-48v-12,0,-24,5,-24,24r-34,0v0,-34,25,-55,58,-55v55,0,71,60,38,99r-54,63r74,0r0,31xm263,-319r-150,319r-36,0r150,-319r36,0xm91,-128r-34,0r0,-152r-39,34r0,-39r39,-34r34,0r0,191",w:370},"\u00be":{d:"142,-183v0,38,-27,58,-60,58v-31,0,-62,-17,-62,-57r35,0v0,17,13,26,27,26v15,0,26,-11,26,-28v0,-18,-12,-29,-33,-27r0,-29v20,2,30,-9,30,-25v1,-33,-48,-33,-48,-2r-34,0v1,-34,26,-54,58,-54v54,0,78,73,36,95v14,7,25,20,25,43xm286,-319r-150,319r-37,0r151,-319r36,0xm360,-27r-18,0r0,27r-32,0r0,-27r-78,0r0,-32r65,-132r38,0r-66,132r41,0r0,-37r32,0r0,37r18,0r0,32",w:378},"\u00bf":{d:"197,9v0,51,-38,86,-89,86v-73,0,-118,-88,-69,-142v15,-27,46,-43,43,-86r46,0v7,70,-64,84,-64,142v0,25,18,44,44,44v28,0,43,-20,43,-44r46,0xm130,-178r-50,0r0,-49r50,0r0,49",w:228},"\u00c0":{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0xm162,-350r-35,0r-49,-72r50,0",w:280,k:{"\u201d":36,"\u2019":36,"\u00ff":11,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c1":{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0xm200,-422r-50,72r-34,0r33,-72r51,0",w:280,k:{"\u201d":36,"\u2019":36,"\u00ff":11,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c2":{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0xm216,-350r-38,0r-39,-43r-39,43r-38,0r58,-72r38,0",w:280,k:{"\u201d":36,"\u2019":36,"\u00ff":11,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c3":{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0xm61,-381v37,-43,67,-16,105,-5v7,0,15,-2,27,-14r21,21v-37,45,-64,16,-105,6v-8,0,-13,0,-26,13",w:280,k:{"\u201d":36,"\u2019":36,"\u00ff":11,"\u00fd":11,"\u00d8":4,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c4":{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0xm209,-352r-41,0r0,-49r41,0r0,49xm112,-352r-41,0r0,-49r41,0r0,49",w:280},"\u00c5":{d:"276,0r-51,0r-22,-64r-126,0r-22,64r-51,0r117,-319r38,0xm190,-105r-49,-142r-50,142r99,0xm195,-392v0,31,-25,56,-56,56v-31,0,-56,-25,-56,-56v0,-31,25,-56,56,-56v31,0,56,25,56,56xm168,-392v0,-16,-13,-28,-29,-28v-16,0,-29,12,-29,28v0,16,13,28,29,28v16,0,29,-12,29,-28",w:280,k:{"\u201d":36,"\u2019":36,"\u00ff":11,"\u00fd":11,y:11,w:2,v:11,Y:16,W:12,V:16,T:27,Q:4,O:4,J:-2,G:4,C:4}},"\u00c6":{d:"402,0r-204,0r0,-73r-105,0r-38,73r-53,0r168,-319r232,0r0,43r-156,0r0,94r133,0r0,44r-133,0r0,95r156,0r0,43xm198,-114r0,-162r-84,162r84,0",w:426},"\u00c7":{d:"78,-159v0,92,8,106,67,118v35,0,57,-22,65,-54r48,0v-11,64,-55,98,-113,98v-82,0,-126,-63,-115,-162v-9,-100,31,-163,115,-163v59,0,102,34,113,98r-49,0v-8,-32,-29,-54,-64,-54v-60,0,-67,28,-67,119xm168,29r-23,66r-46,0r32,-66r37,0",w:281,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:9,A:4}},"\u00c8":{d:"246,0r-204,0r0,-319r204,0r0,43r-156,0r0,94r133,0r0,43r-133,0r0,96r156,0r0,43xm163,-350r-35,0r-50,-72r51,0",w:270,k:{J:1}},"\u00c9":{d:"246,0r-204,0r0,-319r204,0r0,43r-156,0r0,94r133,0r0,43r-133,0r0,96r156,0r0,43xm200,-422r-49,72r-35,0r34,-72r50,0",w:270,k:{J:1}},"\u00ca":{d:"246,0r-204,0r0,-319r204,0r0,43r-156,0r0,94r133,0r0,43r-133,0r0,96r156,0r0,43xm216,-350r-38,0r-39,-43r-39,43r-38,0r58,-72r39,0",w:270,k:{J:1}},"\u00cb":{d:"246,0r-204,0r0,-319r204,0r0,43r-156,0r0,94r133,0r0,43r-133,0r0,96r156,0r0,43xm208,-352r-41,0r0,-49r41,0r0,49xm112,-352r-42,0r0,-49r42,0r0,49",w:270},"\u00cc":{d:"90,0r-48,0r0,-319r48,0r0,319xm83,-350r-34,0r-50,-72r51,0",w:131},"\u00cd":{d:"90,0r-48,0r0,-319r48,0r0,319xm133,-422r-50,72r-35,0r34,-72r51,0",w:131},"\u00ce":{d:"90,0r-48,0r0,-319r48,0r0,319xm143,-350r-38,0r-39,-43r-39,43r-38,0r58,-72r39,0",w:131},"\u00cf":{d:"90,0r-48,0r0,-319r48,0r0,319xm135,-352r-41,0r0,-49r41,0r0,49xm39,-352r-42,0r0,-49r42,0r0,49",w:131},"\u00d0":{d:"162,-319v80,6,124,55,114,160v17,156,-82,165,-226,159r0,-142r-33,0r0,-38r33,0r0,-139r112,0xm216,-71v18,-9,18,-169,-2,-177v-20,-34,-65,-28,-115,-28r0,96r61,0r0,38r-61,0r0,99v50,0,98,5,117,-28",w:306,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:12,A:4}},"\u00d1":{d:"282,0r-45,0r-147,-224r0,224r-48,0r0,-319r44,0r147,224r0,-224r49,0r0,319xm85,-381v37,-44,66,-16,105,-5v7,0,14,-2,26,-14r21,21v-37,45,-64,16,-105,6v-8,0,-13,0,-26,13",w:323},"\u00d2":{d:"145,-322v84,0,124,64,114,163v10,100,-30,162,-114,162v-83,0,-115,-62,-115,-162v0,-100,30,-163,115,-163xm145,-41v59,-11,67,-26,66,-118v0,-64,-3,-82,-19,-99v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119v0,93,7,106,67,118xm168,-350r-34,0r-50,-72r50,0",w:289,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d3":{d:"145,-322v84,0,124,64,114,163v10,100,-30,162,-114,162v-83,0,-115,-62,-115,-162v0,-100,30,-163,115,-163xm145,-41v59,-11,67,-26,66,-118v0,-64,-3,-82,-19,-99v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119v0,93,7,106,67,118xm206,-422r-50,72r-35,0r34,-72r51,0",w:289,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d4":{d:"145,-322v84,0,124,64,114,163v10,100,-30,162,-114,162v-83,0,-115,-62,-115,-162v0,-100,30,-163,115,-163xm145,-41v59,-11,67,-26,66,-118v0,-64,-3,-82,-19,-99v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119v0,93,7,106,67,118xm222,-350r-38,0r-39,-43r-39,43r-38,0r57,-72r39,0",w:289,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d5":{d:"145,-322v84,0,124,64,114,163v10,100,-30,162,-114,162v-83,0,-115,-62,-115,-162v0,-100,30,-163,115,-163xm145,-41v59,-11,67,-26,66,-118v0,-64,-3,-82,-19,-99v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119v0,93,7,106,67,118xm68,-381v37,-44,66,-16,104,-5v7,0,15,-2,27,-14r21,21v-37,45,-64,16,-105,6v-8,0,-13,0,-26,13",w:289,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d6":{d:"145,-322v84,0,124,64,114,163v10,100,-30,162,-114,162v-83,0,-115,-62,-115,-162v0,-100,30,-163,115,-163xm145,-41v59,-11,67,-26,66,-118v0,-64,-3,-82,-19,-99v-11,-12,-28,-20,-47,-20v-60,0,-67,26,-67,119v0,93,7,106,67,118xm214,-352r-42,0r0,-49r42,0r0,49xm117,-352r-41,0r0,-49r41,0r0,49",w:289,k:{"\u00c6":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d7":{d:"213,-59r-28,28r-66,-65r-65,65r-28,-28r65,-66r-65,-65r28,-29r65,66r66,-66r28,29r-65,65"},"\u00d8":{d:"226,-290v34,29,33,69,33,131v0,122,-65,190,-168,150r-13,29r-37,0r23,-49v-34,-29,-34,-68,-34,-130v0,-121,66,-191,168,-151r14,-29r37,0xm145,-41v60,0,67,-26,66,-118v0,-47,-1,-71,-9,-86r-93,194v10,6,23,10,36,10xm145,-278v-58,12,-67,27,-66,119v0,47,2,70,9,85r93,-194v-10,-6,-23,-10,-36,-10",w:292,k:{"\u00dd":4,"\u00c6":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,Y:4,X:4,W:4,V:4,T:9,J:15,A:4}},"\u00d9":{d:"266,-108v0,66,-50,111,-115,111v-65,0,-114,-45,-114,-111r0,-211r48,0r0,209v0,43,26,69,66,69v40,0,66,-26,66,-69r0,-209r49,0r0,211xm175,-350r-35,0r-50,-72r51,0",w:302,k:{J:5}},"\u00da":{d:"266,-108v0,66,-50,111,-115,111v-65,0,-114,-45,-114,-111r0,-211r48,0r0,209v0,43,26,69,66,69v40,0,66,-26,66,-69r0,-209r49,0r0,211xm212,-422r-49,72r-35,0r34,-72r50,0",w:302,k:{J:5}},"\u00db":{d:"266,-108v0,66,-50,111,-115,111v-65,0,-114,-45,-114,-111r0,-211r48,0r0,209v0,43,26,69,66,69v40,0,66,-26,66,-69r0,-209r49,0r0,211xm228,-350r-38,0r-39,-43r-39,43r-38,0r58,-72r39,0",w:302,k:{J:5}},"\u00dc":{d:"266,-108v0,66,-50,111,-115,111v-65,0,-114,-45,-114,-111r0,-211r48,0r0,209v0,43,26,69,66,69v40,0,66,-26,66,-69r0,-209r49,0r0,211xm220,-352r-41,0r0,-49r41,0r0,49xm123,-352r-41,0r0,-49r41,0r0,49",w:302,k:{J:5}},"\u00dd":{d:"241,-319r-95,188r0,131r-48,0r0,-131r-96,-188r53,0r67,140r67,-140r52,0xm183,-422r-50,72r-34,0r33,-72r51,0",w:243,k:{"\u00fc":18,"\u00fb":18,"\u00fa":18,"\u00f9":18,"\u00f8":36,"\u00f6":36,"\u00f5":36,"\u00f4":36,"\u00f3":36,"\u00f2":36,"\u00f1":18,"\u00eb":36,"\u00ea":36,"\u00e9":36,"\u00e8":36,"\u00e7":36,"\u00e6":36,"\u00e5":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u00d8":4,"\u00c6":18,z:18,x:18,u:18,s:36,r:18,q:36,p:18,o:36,n:18,m:18,g:36,e:36,d:36,c:36,a:36,Q:4,O:4,J:18,G:4,C:4,A:18,".":36}},"\u00de":{d:"265,-161v0,56,-40,96,-102,96r-73,0r0,65r-48,0r0,-319r48,0r0,61r73,0v62,0,102,41,102,97xm216,-161v0,-61,-66,-54,-126,-53r0,106v60,1,126,8,126,-53",w:285},"\u00df":{d:"178,-244v0,-26,-18,-39,-47,-38v-35,0,-49,20,-49,51r0,231r-46,0r0,-234v0,-59,40,-88,96,-88v52,0,92,23,92,76v0,26,-12,42,-28,52v39,13,27,76,28,126v1,53,-35,73,-93,68r0,-39v29,2,49,-5,47,-33v-3,-47,18,-113,-47,-102r0,-37v28,2,47,-5,47,-33",w:253},"\u00e0":{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm138,-268r-34,0r-50,-73r51,0",w:237},"\u00e1":{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm176,-341r-50,73r-34,0r33,-73r51,0",w:237},"\u00e2":{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm192,-268r-38,0r-39,-44r-39,44r-38,0r58,-72r38,0",w:237},"\u00e3":{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm38,-299v37,-45,64,-17,104,-6v7,0,15,-2,27,-14r21,22v-37,44,-66,16,-105,5v-8,0,-13,1,-26,14",w:237},"\u00e4":{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm184,-271r-41,0r0,-48r41,0r0,48xm87,-271r-41,0r0,-48r41,0r0,48",w:236},"\u00e5":{d:"159,-21v-40,46,-140,25,-140,-46v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v42,-57,175,-42,175,45r0,152r-44,0r0,-21xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm171,-314v0,31,-25,56,-56,56v-31,0,-56,-25,-56,-56v0,-31,25,-56,56,-56v31,0,56,25,56,56xm144,-314v0,-16,-13,-28,-29,-28v-16,0,-29,12,-29,28v0,16,13,28,29,28v16,0,29,-12,29,-28",w:237},"\u00e6":{d:"180,-33v-40,58,-161,48,-161,-34v0,-38,27,-65,79,-65r60,0v3,-39,-8,-59,-50,-59v-25,0,-37,6,-50,22r-30,-28v30,-45,132,-43,159,-3v16,-20,39,-30,67,-30v68,0,101,53,96,130r-147,0v-7,66,80,81,113,40r29,27v-35,45,-130,51,-165,0xm105,-35v37,0,59,-20,53,-65v-39,1,-94,-8,-94,32v0,21,12,33,41,33xm305,-132v9,-62,-77,-80,-96,-31v-4,10,-6,17,-6,31r102,0",w:374},"\u00e7":{d:"70,-114v-9,67,61,101,99,54r32,30v-63,64,-176,38,-176,-84v0,-122,112,-146,176,-84r-32,30v-38,-46,-108,-12,-99,54xm143,29r-23,66r-45,0r31,-66r37,0",w:217,k:{"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,w:9,o:8,e:8,d:4,c:8,a:2}},"\u00e8":{d:"217,-100r-147,0v-7,66,80,81,113,40r29,27v-60,63,-187,49,-187,-81v0,-73,38,-116,96,-116v68,0,101,53,96,130xm172,-132v9,-62,-77,-80,-96,-31v-4,10,-6,17,-6,31r102,0xm146,-268r-35,0r-50,-73r51,0",w:241,k:{"\u00ff":4,"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00e9":{d:"217,-100r-147,0v-7,66,80,81,113,40r29,27v-60,63,-187,49,-187,-81v0,-73,38,-116,96,-116v68,0,101,53,96,130xm172,-132v9,-62,-77,-80,-96,-31v-4,10,-6,17,-6,31r102,0xm183,-341r-49,73r-35,0r34,-73r50,0",w:241,k:{"\u00ff":4,"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00ea":{d:"217,-100r-147,0v-7,66,80,81,113,40r29,27v-60,63,-187,49,-187,-81v0,-73,38,-116,96,-116v68,0,101,53,96,130xm172,-132v9,-62,-77,-80,-96,-31v-4,10,-6,17,-6,31r102,0xm199,-268r-38,0r-39,-44r-39,44r-38,0r58,-72r39,0",w:241,k:{"\u00ff":4,"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00eb":{d:"217,-100r-147,0v-7,66,80,81,113,40r29,27v-60,63,-187,49,-187,-81v0,-73,38,-116,96,-116v68,0,101,53,96,130xm172,-132v9,-62,-77,-80,-96,-31v-4,10,-6,17,-6,31r102,0xm191,-271r-41,0r0,-48r41,0r0,48xm94,-271r-41,0r0,-48r41,0r0,48",w:241,k:{"\u00ff":4,"\u00fd":4,y:4,x:3,w:4,v:4}},"\u00ec":{d:"82,0r-46,0r0,-227r46,0r0,227xm78,-268r-34,0r-50,-73r51,0",w:118},"\u00ed":{d:"82,0r-46,0r0,-227r46,0r0,227xm124,-341r-50,73r-34,0r33,-73r51,0",w:118},"\u00ee":{d:"82,0r-46,0r0,-227r46,0r0,227xm138,-268r-39,0r-39,-44r-38,44r-39,0r58,-72r39,0",w:118},"\u00ef":{d:"82,0r-46,0r0,-227r46,0r0,227xm129,-271r-42,0r0,-48r42,0r0,48xm32,-271r-41,0r0,-48r41,0r0,48",w:118},"\u00f0":{d:"27,-112v0,-70,34,-121,107,-109r-20,-37r-52,0r0,-32r35,0r-17,-31r48,0r18,31r39,0r0,32r-23,0v22,42,51,92,51,146v0,68,-26,115,-93,115v-66,0,-93,-48,-93,-115xm120,-38v38,0,48,-35,48,-74v0,-39,-10,-73,-48,-73v-37,0,-47,35,-47,73v0,38,9,74,47,74",w:240},"\u00f1":{d:"81,-204v47,-53,139,-19,139,59r0,145r-45,0r0,-138v0,-35,-20,-51,-46,-51v-26,0,-47,16,-47,51r0,138r-46,0r0,-227r45,0r0,23xm51,-299v38,-44,64,-16,105,-6v7,0,14,-2,26,-14r22,22v-37,44,-66,16,-105,5v-8,0,-13,1,-26,14",w:254},"\u00f2":{d:"120,-230v68,0,95,48,95,116v0,69,-27,117,-95,117v-68,0,-94,-47,-94,-117v0,-68,27,-116,94,-116xm120,-38v37,0,49,-35,49,-76v0,-40,-11,-75,-49,-75v-37,0,-49,36,-49,75v0,40,12,76,49,76xm140,-268r-34,0r-50,-73r51,0",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f3":{d:"120,-230v68,0,95,48,95,116v0,69,-27,117,-95,117v-68,0,-94,-47,-94,-117v0,-68,27,-116,94,-116xm120,-38v37,0,49,-35,49,-76v0,-40,-11,-75,-49,-75v-37,0,-49,36,-49,75v0,40,12,76,49,76xm181,-341r-50,73r-34,0r33,-73r51,0",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f4":{d:"120,-230v68,0,95,48,95,116v0,69,-27,117,-95,117v-68,0,-94,-47,-94,-117v0,-68,27,-116,94,-116xm120,-38v37,0,49,-35,49,-76v0,-40,-11,-75,-49,-75v-37,0,-49,36,-49,75v0,40,12,76,49,76xm197,-268r-38,0r-39,-44r-39,44r-38,0r58,-72r38,0",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f5":{d:"120,-230v68,0,95,48,95,116v0,69,-27,117,-95,117v-68,0,-94,-47,-94,-117v0,-68,27,-116,94,-116xm120,-38v37,0,49,-35,49,-76v0,-40,-11,-75,-49,-75v-37,0,-49,36,-49,75v0,40,12,76,49,76xm43,-299v37,-45,64,-17,104,-6v7,0,15,-2,27,-14r21,22v-37,44,-66,16,-105,5v-8,0,-13,1,-26,14",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f6":{d:"120,-230v68,0,95,48,95,116v0,69,-27,117,-95,117v-68,0,-94,-47,-94,-117v0,-68,27,-116,94,-116xm120,-38v37,0,49,-35,49,-76v0,-40,-11,-75,-49,-75v-37,0,-49,36,-49,75v0,40,12,76,49,76xm189,-271r-41,0r0,-48r41,0r0,48xm92,-271r-41,0r0,-48r41,0r0,48",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f7":{d:"217,-103r-195,0r0,-43r195,0r0,43xm144,-15r-49,0r0,-49r49,0r0,49xm144,-185r-49,0r0,-49r49,0r0,49"},"\u00f8":{d:"52,-25v-51,-64,-34,-205,68,-205v19,0,34,4,47,11r17,-28r31,0r-27,44v52,63,35,206,-68,206v-19,0,-34,-5,-47,-12r-16,29r-31,0xm94,-46v63,35,92,-51,69,-117xm147,-181v-64,-36,-94,52,-69,116",w:240,k:{"\u00ff":4,"\u00fd":4,y:4,x:9,w:4,v:4}},"\u00f9":{d:"173,-23v-47,54,-139,18,-139,-59r0,-145r46,0r0,138v0,35,19,51,45,51v26,0,47,-16,47,-51r0,-138r46,0r0,227r-45,0r0,-23xm149,-268r-34,0r-50,-73r51,0",w:254},"\u00fa":{d:"173,-23v-47,54,-139,18,-139,-59r0,-145r46,0r0,138v0,35,19,51,45,51v26,0,47,-16,47,-51r0,-138r46,0r0,227r-45,0r0,-23xm187,-341r-50,73r-34,0r33,-73r51,0",w:254},"\u00fb":{d:"173,-23v-47,54,-139,18,-139,-59r0,-145r46,0r0,138v0,35,19,51,45,51v26,0,47,-16,47,-51r0,-138r46,0r0,227r-45,0r0,-23xm203,-268r-38,0r-39,-44r-39,44r-38,0r58,-72r38,0",w:254},"\u00fc":{d:"173,-23v-47,54,-139,18,-139,-59r0,-145r46,0r0,138v0,35,19,51,45,51v26,0,47,-16,47,-51r0,-138r46,0r0,227r-45,0r0,-23xm194,-271r-41,0r0,-48r41,0r0,48xm98,-271r-42,0r0,-48r42,0r0,48",w:254},"\u00fd":{d:"208,-227r-100,272v-10,34,-39,49,-82,45r0,-41v44,8,45,-32,57,-60r-79,-216r48,0r54,160r53,-160r49,0xm167,-341r-50,73r-35,0r34,-73r51,0",w:209,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,o:4,e:4,c:4,a:4,".":28,",":27}},"\u00fe":{d:"142,-230v63,0,80,59,80,116v0,57,-16,117,-80,117v-24,0,-43,-6,-60,-26r0,115r-46,0r0,-411r46,0r0,115v17,-20,36,-26,60,-26xm177,-114v0,-40,-7,-75,-48,-75v-41,0,-47,35,-47,75v0,40,6,76,47,76v41,0,48,-36,48,-76",w:248},"\u00ff":{d:"208,-227r-100,272v-10,34,-39,49,-82,45r0,-41v44,8,45,-32,57,-60r-79,-216r48,0r54,160r53,-160r49,0xm175,-271r-41,0r0,-48r41,0r0,48xm78,-271r-41,0r0,-48r41,0r0,48",w:209},"\u2013":{d:"216,-103r-193,0r0,-43r193,0r0,43"},"\u2014":{d:"405,-103r-375,0r0,-44r375,0r0,44",w:435},"\u2018":{d:"85,-272r-50,0r0,-47r50,-42r0,89",w:120,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,s:27,J:54,A:36}},"\u2019":{d:"85,-272r-50,41r0,-88r50,0r0,47",w:120,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,s:27,J:54,A:36}},"\u201c":{d:"171,-272r-50,0r0,-47r50,-42r0,89xm85,-272r-50,0r0,-47r50,-42r0,89",w:205,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,J:54,A:36}},"\u201d":{d:"171,-272r-50,41r0,-88r50,0r0,47xm85,-272r-50,41r0,-88r50,0r0,47",w:205,k:{"\u00c6":36,"\u00c5":36,"\u00c4":36,"\u00c3":36,"\u00c2":36,"\u00c1":36,"\u00c0":36,J:54,A:36}},"\u2026":{d:"325,0r-53,0r0,-52r53,0r0,52xm87,0r-52,0r0,-52r52,0r0,52xm206,0r-52,0r0,-52r52,0r0,52",w:359},"\u2122":{d:"368,-128r-34,0r0,-125r-41,81r-31,0r-41,-81r0,125r-34,0r0,-191r34,0r56,109r57,-109r34,0r0,191xm155,-288r-52,0r0,160r-34,0r0,-160r-51,0r0,-31r137,0r0,31",w:395}}});jQuery(document).ready(function(){var A=navigator.userAgent.toLowerCase();jQuery.browser.chrome=/chrome/.test(navigator.userAgent.toLowerCase());if(jQuery.browser.msie){jQuery("body").addClass("browserIE");jQuery("body").addClass("browserIE"+jQuery.browser.version.substring(0,1))}if(jQuery.browser.chrome){jQuery("body").addClass("browserChrome");A=A.substring(A.indexOf("chrome/")+7);A=A.substring(0,1);jQuery("body").addClass("browserChrome"+A);jQuery.browser.safari=false}if(jQuery.browser.safari){jQuery("body").addClass("browserSafari");A=A.substring(A.indexOf("version/")+8);A=A.substring(0,1);jQuery("body").addClass("browserSafari"+A)}if(jQuery.browser.mozilla){if(navigator.userAgent.toLowerCase().indexOf("firefox")!=-1){jQuery("body").addClass("browserFirefox");A=A.substring(A.indexOf("firefox/")+8);A=A.substring(0,1);jQuery("body").addClass("browserFirefox"+A)}else{jQuery("body").addClass("browserMozilla")}}if(jQuery.browser.opera){jQuery("body").addClass("browserOpera")}});var swfobject=function(){var d="undefined",R="object",t="Shockwave Flash",x="ShockwaveFlash.ShockwaveFlash",Q="application/x-shockwave-flash",s="SWFObjectExprInst",X="onreadystatechange",p=window,J=document,T=navigator,u=false,v=[H],O=[],o=[],j=[],L,r,e,b,k=false,A=false,N,g,M=true,n=function(){var AB=typeof J.getElementById!=d&&typeof J.getElementsByTagName!=d&&typeof J.createElement!=d,AI=T.userAgent.toLowerCase(),z=T.platform.toLowerCase(),AF=z?/win/.test(z):/win/.test(AI),AD=z?/mac/.test(z):/mac/.test(AI),AG=/webkit/.test(AI)?parseFloat(AI.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,y=!+"\v1",AH=[0,0,0],AC=null;if(typeof T.plugins!=d&&typeof T.plugins[t]==R){AC=T.plugins[t].description;if(AC&&!(typeof T.mimeTypes!=d&&T.mimeTypes[Q]&&!T.mimeTypes[Q].enabledPlugin)){u=true;y=false;AC=AC.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AH[0]=parseInt(AC.replace(/^(.*)\..*$/,"$1"),10);AH[1]=parseInt(AC.replace(/^.*\.(.*)\s.*$/,"$1"),10);AH[2]=/[a-zA-Z]/.test(AC)?parseInt(AC.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof p.ActiveXObject!=d){try{var AE=new ActiveXObject(x);if(AE){AC=AE.GetVariable("$version");if(AC){y=true;AC=AC.split(" ")[1].split(",");AH=[parseInt(AC[0],10),parseInt(AC[1],10),parseInt(AC[2],10)]}}}catch(AA){}}}return{w3:AB,pv:AH,wk:AG,ie:y,win:AF,mac:AD}}(),K=function(){if(!n.w3){return }if((typeof J.readyState!=d&&J.readyState=="complete")||(typeof J.readyState==d&&(J.getElementsByTagName("body")[0]||J.body))){F()}if(!k){if(typeof J.addEventListener!=d){J.addEventListener("DOMContentLoaded",F,false)}if(n.ie&&n.win){J.attachEvent(X,function(){if(J.readyState=="complete"){J.detachEvent(X,arguments.callee);F()}});if(p==top){(function(){if(k){return }try{J.documentElement.doScroll("left")}catch(y){setTimeout(arguments.callee,0);return }F()})()}}if(n.wk){(function(){if(k){return }if(!/loaded|complete/.test(J.readyState)){setTimeout(arguments.callee,0);return }F()})()}S(F)}}();function F(){if(k){return }try{var AA=J.getElementsByTagName("body")[0].appendChild(c("span"));AA.parentNode.removeChild(AA)}catch(AB){return }k=true;var y=v.length;for(var z=0;z<y;z++){v[z]()}}function l(y){if(k){y()}else{v[v.length]=y}}function S(z){if(typeof p.addEventListener!=d){p.addEventListener("load",z,false)}else{if(typeof J.addEventListener!=d){J.addEventListener("load",z,false)}else{if(typeof p.attachEvent!=d){I(p,"onload",z)}else{if(typeof p.onload=="function"){var y=p.onload;p.onload=function(){y();z()}}else{p.onload=z}}}}}function H(){if(u){w()}else{h()}}function w(){var y=J.getElementsByTagName("body")[0];var AB=c(R);AB.setAttribute("type",Q);var AA=y.appendChild(AB);if(AA){var z=0;(function(){if(typeof AA.GetVariable!=d){var AC=AA.GetVariable("$version");if(AC){AC=AC.split(" ")[1].split(",");n.pv=[parseInt(AC[0],10),parseInt(AC[1],10),parseInt(AC[2],10)]}}else{if(z<10){z++;setTimeout(arguments.callee,10);return }}y.removeChild(AB);AA=null;h()})()}else{h()}}function h(){var AH=O.length;if(AH>0){for(var AG=0;AG<AH;AG++){var z=O[AG].id;var AC=O[AG].callbackFn;var AB={success:false,id:z};if(n.pv[0]>0){var AF=C(z);if(AF){if(f(O[AG].swfVersion)&&!(n.wk&&n.wk<312)){W(z,true);if(AC){AB.success=true;AB.ref=Z(z);AC(AB)}}else{if(O[AG].expressInstall&&a()){var AJ={};AJ.data=O[AG].expressInstall;AJ.width=AF.getAttribute("width")||"0";AJ.height=AF.getAttribute("height")||"0";if(AF.getAttribute("class")){AJ.styleclass=AF.getAttribute("class")}if(AF.getAttribute("align")){AJ.align=AF.getAttribute("align")}var AI={};var y=AF.getElementsByTagName("param");var AD=y.length;for(var AE=0;AE<AD;AE++){if(y[AE].getAttribute("name").toLowerCase()!="movie"){AI[y[AE].getAttribute("name")]=y[AE].getAttribute("value")}}q(AJ,AI,z,AC)}else{P(AF);if(AC){AC(AB)}}}}}else{W(z,true);if(AC){var AA=Z(z);if(AA&&typeof AA.SetVariable!=d){AB.success=true;AB.ref=AA}AC(AB)}}}}}function Z(AB){var y=null;var z=C(AB);if(z&&z.nodeName=="OBJECT"){if(typeof z.SetVariable!=d){y=z}else{var AA=z.getElementsByTagName(R)[0];if(AA){y=AA}}}return y}function a(){return !A&&f("6.0.65")&&(n.win||n.mac)&&!(n.wk&&n.wk<312)}function q(AB,AC,y,AA){A=true;e=AA||null;b={success:false,id:y};var AF=C(y);if(AF){if(AF.nodeName=="OBJECT"){L=G(AF);r=null}else{L=AF;r=y}AB.id=s;if(typeof AB.width==d||(!/%$/.test(AB.width)&&parseInt(AB.width,10)<310)){AB.width="310"}if(typeof AB.height==d||(!/%$/.test(AB.height)&&parseInt(AB.height,10)<137)){AB.height="137"}J.title=J.title.slice(0,47)+" - Flash Player Installation";var AE=n.ie&&n.win?"ActiveX":"PlugIn",AD="MMredirectURL="+p.location.toString().replace(/&/g,"%26")+"&MMplayerType="+AE+"&MMdoctitle="+J.title;if(typeof AC.flashvars!=d){AC.flashvars+="&"+AD}else{AC.flashvars=AD}if(n.ie&&n.win&&AF.readyState!=4){var z=c("div");y+="SWFObjectNew";z.setAttribute("id",y);AF.parentNode.insertBefore(z,AF);AF.style.display="none";(function(){if(AF.readyState==4){AF.parentNode.removeChild(AF)}else{setTimeout(arguments.callee,10)}})()}U(AB,AC,y)}}function P(z){if(n.ie&&n.win&&z.readyState!=4){var y=c("div");z.parentNode.insertBefore(y,z);y.parentNode.replaceChild(G(z),y);z.style.display="none";(function(){if(z.readyState==4){z.parentNode.removeChild(z)}else{setTimeout(arguments.callee,10)}})()}else{z.parentNode.replaceChild(G(z),z)}}function G(AC){var AB=c("div");if(n.win&&n.ie){AB.innerHTML=AC.innerHTML}else{var z=AC.getElementsByTagName(R)[0];if(z){var AD=z.childNodes;if(AD){var y=AD.length;for(var AA=0;AA<y;AA++){if(!(AD[AA].nodeType==1&&AD[AA].nodeName=="PARAM")&&!(AD[AA].nodeType==8)){AB.appendChild(AD[AA].cloneNode(true))}}}}}return AB}function U(AJ,AH,z){var y,AB=C(z);if(n.wk&&n.wk<312){return y}if(AB){if(typeof AJ.id==d){AJ.id=z}if(n.ie&&n.win){var AI="";for(var AF in AJ){if(AJ[AF]!=Object.prototype[AF]){if(AF.toLowerCase()=="data"){AH.movie=AJ[AF]}else{if(AF.toLowerCase()=="styleclass"){AI+=' class="'+AJ[AF]+'"'}else{if(AF.toLowerCase()!="classid"){AI+=" "+AF+'="'+AJ[AF]+'"'}}}}}var AG="";for(var AE in AH){if(AH[AE]!=Object.prototype[AE]){AG+='<param name="'+AE+'" value="'+AH[AE]+'" />'}}AB.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AI+">"+AG+"</object>";o[o.length]=AJ.id;y=C(AJ.id)}else{var AA=c(R);AA.setAttribute("type",Q);for(var AD in AJ){if(AJ[AD]!=Object.prototype[AD]){if(AD.toLowerCase()=="styleclass"){AA.setAttribute("class",AJ[AD])}else{if(AD.toLowerCase()!="classid"){AA.setAttribute(AD,AJ[AD])}}}}for(var AC in AH){if(AH[AC]!=Object.prototype[AC]&&AC.toLowerCase()!="movie"){E(AA,AC,AH[AC])}}AB.parentNode.replaceChild(AA,AB);y=AA}}return y}function E(AA,y,z){var AB=c("param");AB.setAttribute("name",y);AB.setAttribute("value",z);AA.appendChild(AB)}function Y(z){var y=C(z);if(y&&y.nodeName=="OBJECT"){if(n.ie&&n.win){y.style.display="none";(function(){if(y.readyState==4){B(z)}else{setTimeout(arguments.callee,10)}})()}else{y.parentNode.removeChild(y)}}}function B(AA){var z=C(AA);if(z){for(var y in z){if(typeof z[y]=="function"){z[y]=null}}z.parentNode.removeChild(z)}}function C(AA){var y=null;try{y=J.getElementById(AA)}catch(z){}return y}function c(y){return J.createElement(y)}function I(AA,y,z){AA.attachEvent(y,z);j[j.length]=[AA,y,z]}function f(AA){var z=n.pv,y=AA.split(".");y[0]=parseInt(y[0],10);y[1]=parseInt(y[1],10)||0;y[2]=parseInt(y[2],10)||0;return(z[0]>y[0]||(z[0]==y[0]&&z[1]>y[1])||(z[0]==y[0]&&z[1]==y[1]&&z[2]>=y[2]))?true:false}function V(AD,z,AE,AC){if(n.ie&&n.mac){return }var AB=J.getElementsByTagName("head")[0];if(!AB){return }var y=(AE&&typeof AE=="string")?AE:"screen";if(AC){N=null;g=null}if(!N||g!=y){var AA=c("style");AA.setAttribute("type","text/css");AA.setAttribute("media",y);N=AB.appendChild(AA);if(n.ie&&n.win&&typeof J.styleSheets!=d&&J.styleSheets.length>0){N=J.styleSheets[J.styleSheets.length-1]}g=y}if(n.ie&&n.win){if(N&&typeof N.addRule==R){N.addRule(AD,z)}}else{if(N&&typeof J.createTextNode!=d){N.appendChild(J.createTextNode(AD+" {"+z+"}"))}}}function W(AA,y){if(!M){return }var z=y?"visible":"hidden";if(k&&C(AA)){C(AA).style.visibility=z}else{V("#"+AA,"visibility:"+z)}}function m(z){var AA=/[\\\"<>\.;]/;var y=AA.exec(z)!=null;return y&&typeof encodeURIComponent!=d?encodeURIComponent(z):z}var D=function(){if(n.ie&&n.win){window.attachEvent("onunload",function(){var AD=j.length;for(var AC=0;AC<AD;AC++){j[AC][0].detachEvent(j[AC][1],j[AC][2])}var AA=o.length;for(var AB=0;AB<AA;AB++){Y(o[AB])}for(var z in n){n[z]=null}n=null;for(var y in swfobject){swfobject[y]=null}swfobject=null})}}();return{registerObject:function(AC,y,AB,AA){if(n.w3&&AC&&y){var z={};z.id=AC;z.swfVersion=y;z.expressInstall=AB;z.callbackFn=AA;O[O.length]=z;W(AC,false)}else{if(AA){AA({success:false,id:AC})}}},getObjectById:function(y){if(n.w3){return Z(y)}},embedSWF:function(AC,AI,AF,AH,z,AB,AA,AE,AG,AD){var y={success:false,id:AI};if(n.w3&&!(n.wk&&n.wk<312)&&AC&&AI&&AF&&AH&&z){W(AI,false);l(function(){AF+="";AH+="";var AK={};if(AG&&typeof AG===R){for(var AM in AG){AK[AM]=AG[AM]}}AK.data=AC;AK.width=AF;AK.height=AH;var AN={};if(AE&&typeof AE===R){for(var AL in AE){AN[AL]=AE[AL]}}if(AA&&typeof AA===R){for(var AJ in AA){if(typeof AN.flashvars!=d){AN.flashvars+="&"+AJ+"="+AA[AJ]}else{AN.flashvars=AJ+"="+AA[AJ]}}}if(f(z)){var AO=U(AK,AN,AI);if(AK.id==AI){W(AI,true)}y.success=true;y.ref=AO}else{if(AB&&a()){AK.data=AB;q(AK,AN,AI,AD);return }else{W(AI,true)}}if(AD){AD(y)}})}else{if(AD){AD(y)}}},switchOffAutoHideShow:function(){M=false},ua:n,getFlashPlayerVersion:function(){return{major:n.pv[0],minor:n.pv[1],release:n.pv[2]}},hasFlashPlayerVersion:f,createSWF:function(AA,z,y){if(n.w3){return U(AA,z,y)}else{return undefined}},showExpressInstall:function(AA,AB,y,z){if(n.w3&&a()){q(AA,AB,y,z)}},removeSWF:function(y){if(n.w3){Y(y)}},createCSS:function(AB,AA,z,y){if(n.w3){V(AB,AA,z,y)}},addDomLoadEvent:l,addLoadEvent:S,getQueryParamValue:function(AB){var AA=J.location.search||J.location.hash;if(AA){if(/\?/.test(AA)){AA=AA.split("?")[1]}if(AB==null){return m(AA)}var z=AA.split("&");for(var y=0;y<z.length;y++){if(z[y].substring(0,z[y].indexOf("="))==AB){return m(z[y].substring((z[y].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A){var y=C(s);if(y&&L){y.parentNode.replaceChild(L,y);if(r){W(r,true);if(n.ie&&n.win){L.style.display="block"}}if(e){e(b)}}A=false}}}}();(function(C){C.fn.jcarousel=function(D){return this.each(function(){new A(this,D)})};var B={vertical:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:"normal",easing:"swing",auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:"<div></div>",buttonPrevHTML:"<div></div>",buttonNextEvent:"click",buttonPrevEvent:"click",buttonNextCallback:null,buttonPrevCallback:null};C.jcarousel=function(G,E){this.options=C.extend({},B,E||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?"width":"height";this.lt=!this.options.vertical?"left":"top";var K="",I=G.className.split(" ");for(var F=0;F<I.length;F++){if(I[F].indexOf("jcarousel-skin")!=-1){C(G).removeClass(I[F]);var K=I[F];break}}if(G.nodeName=="UL"||G.nodeName=="OL"){this.list=C(G);this.container=this.list.parent();if(this.container.hasClass("jcarousel-clip")){if(!this.container.parent().hasClass("jcarousel-container")){this.container=this.container.wrap("<div></div>")}this.container=this.container.parent()}else{if(!this.container.hasClass("jcarousel-container")){this.container=this.list.wrap("<div></div>").parent()}}}else{this.container=C(G);this.list=C(G).find(">ul,>ol,div>ul,div>ol")}if(K!=""&&this.container.parent()[0].className.indexOf("jcarousel-skin")==-1){this.container.wrap('<div class=" '+K+'"></div>')}this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass("jcarousel-clip")){this.clip=this.list.wrap("<div></div>").parent()}this.buttonPrev=C(".jcarousel-prev",this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null){this.buttonPrev=this.clip.before(this.options.buttonPrevHTML).prev()}this.buttonPrev.addClass(this.className("jcarousel-prev"));this.buttonNext=C(".jcarousel-next",this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null){this.buttonNext=this.clip.before(this.options.buttonNextHTML).prev()}this.buttonNext.addClass(this.className("jcarousel-next"));this.clip.addClass(this.className("jcarousel-clip"));this.list.addClass(this.className("jcarousel-list"));this.container.addClass(this.className("jcarousel-container"));var H=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var J=this.list.children("li");var L=this;if(J.size()>0){var D=0,F=this.options.offset;J.each(function(){L.format(this,F++);D+=L.dimension(this,H)});this.list.css(this.wh,D+"px");if(!E||E.size===undefined){this.options.size=J.size()}}this.container.css("display","block");this.buttonNext.css("display","block");this.buttonPrev.css("display","block");this.funcNext=function(){L.next()};this.funcPrev=function(){L.prev()};this.funcResize=function(){L.reload()};if(this.options.initCallback!=null){this.options.initCallback(this,"init")}if(C.browser.safari){this.buttons(false,false);C(window).bind("load",function(){L.setup()})}else{this.setup()}};var A=C.jcarousel;A.fn=A.prototype={jcarousel:"0.2.3"};A.fn.extend=A.extend=C.extend;A.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked){return }this.list.css(this.lt,this.pos(this.options.offset)+"px");var D=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(D,false);C(window).unbind("resize",this.funcResize).bind("resize",this.funcResize)},reset:function(){this.list.empty();this.list.css(this.lt,"0px");this.list.css(this.wh,"10px");if(this.options.initCallback!=null){this.options.initCallback(this,"reset")}this.setup()},reload:function(){if(this.tail!=null&&this.inTail){this.list.css(this.lt,A.intval(this.list.css(this.lt))+this.tail)}this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null){this.options.reloadCallback(this)}if(this.options.visible!=null){var F=this;var G=Math.ceil(this.clipping()/this.options.visible),E=0,D=0;C("li",this.list).each(function(H){E+=F.dimension(this,G);if(H+1<F.first){D=E}});this.list.css(this.wh,E+"px");this.list.css(this.lt,-D+"px")}this.scroll(this.first,false)},lock:function(){this.locked=true;this.buttons()},unlock:function(){this.locked=false;this.buttons()},size:function(D){if(D!=undefined){this.options.size=D;if(!this.locked){this.buttons()}}return this.options.size},has:function(E,F){if(F==undefined||!F){F=E}if(this.options.size!==null&&F>this.options.size){F=this.options.size}for(var D=E;D<=F;D++){var G=this.get(D);if(!G.length||G.hasClass("jcarousel-item-placeholder")){return false}}return true},get:function(D){return C(".jcarousel-item-"+D,this.list)},add:function(G,L){var H=this.get(G),E=0,K=0;if(H.length==0){var J,H=this.create(G),F=A.intval(G);while(J=this.get(--F)){if(F<=0||J.length){F<=0?this.list.prepend(H):J.after(H);break}}}else{E=this.dimension(H)}H.removeClass(this.className("jcarousel-item-placeholder"));typeof L=="string"?H.html(L):H.empty().append(L);var I=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var D=this.dimension(H,I)-E;if(G>0&&G<this.first){this.list.css(this.lt,A.intval(this.list.css(this.lt))-D+"px")}this.list.css(this.wh,A.intval(this.list.css(this.wh))+D+"px");return H},remove:function(D){var E=this.get(D);if(!E.length||(D>=this.first&&D<=this.last)){return }var F=this.dimension(E);if(D<this.first){this.list.css(this.lt,A.intval(this.list.css(this.lt))+F+"px")}E.remove();this.list.css(this.wh,A.intval(this.list.css(this.wh))-F+"px")},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail){this.scrollTail(false)}else{this.scroll(((this.options.wrap=="both"||this.options.wrap=="last")&&this.options.size!=null&&this.last==this.options.size)?1:this.first+this.options.scroll)}},prev:function(){this.stopAuto();if(this.tail!=null&&this.inTail){this.scrollTail(true)}else{this.scroll(((this.options.wrap=="both"||this.options.wrap=="first")&&this.options.size!=null&&this.first==1)?this.options.size:this.first-this.options.scroll)}},scrollTail:function(D){if(this.locked||this.animating||!this.tail){return }var E=A.intval(this.list.css(this.lt));!D?E-=this.tail:E+=this.tail;this.inTail=!D;this.prevFirst=this.first;this.prevLast=this.last;this.animate(E)},scroll:function(E,D){if(this.locked||this.animating){return }this.animate(this.pos(E),D)},pos:function(Q){if(this.locked||this.animating){return }Q=A.intval(Q);if(this.options.wrap!="circular"){Q=Q<1?1:(this.options.size&&Q>this.options.size?this.options.size:Q)}var N=this.first>Q;var E=A.intval(this.list.css(this.lt));var R=this.options.wrap!="circular"&&this.first<=1?1:this.first;var U=N?this.get(R):this.get(this.last);var P=N?R:R-1;var S=null,O=0,L=false,T=0;while(N?--P>=Q:++P<Q){S=this.get(P);L=!S.length;if(S.length==0){S=this.create(P).addClass(this.className("jcarousel-item-placeholder"));U[N?"before":"after"](S)}U=S;T=this.dimension(S);if(L){O+=T}if(this.first!=null&&(this.options.wrap=="circular"||(P>=1&&(this.options.size==null||P<=this.options.size)))){E=N?E+T:E-T}}var I=this.clipping();var K=[];var D=0,P=Q,J=0;var U=this.get(Q-1);while(++D){S=this.get(P);L=!S.length;if(S.length==0){S=this.create(P).addClass(this.className("jcarousel-item-placeholder"));U.length==0?this.list.prepend(S):U[N?"before":"after"](S)}U=S;var T=this.dimension(S);if(T==0){alert("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...");return 0}if(this.options.wrap!="circular"&&this.options.size!==null&&P>this.options.size){K.push(S)}else{if(L){O+=T}}J+=T;if(J>=I){break}P++}for(var H=0;H<K.length;H++){K[H].remove()}if(O>0){this.list.css(this.wh,this.dimension(this.list)+O+"px");if(N){E-=O;this.list.css(this.lt,A.intval(this.list.css(this.lt))-O+"px")}}var G=Q+D-1;if(this.options.wrap!="circular"&&this.options.size&&G>this.options.size){G=this.options.size}if(P>G){D=0,P=G,J=0;while(++D){var S=this.get(P--);if(!S.length){break}J+=this.dimension(S);if(J>=I){break}}}var F=G-D+1;if(this.options.wrap!="circular"&&F<1){F=1}if(this.inTail&&N){E+=this.tail;this.inTail=false}this.tail=null;if(this.options.wrap!="circular"&&G==this.options.size&&(G-D+1)>=1){var M=A.margin(this.get(G),!this.options.vertical?"marginRight":"marginBottom");if((J-M)>I){this.tail=J-I-M}}while(Q-->F){E+=this.dimension(this.get(Q))}this.prevFirst=this.first;this.prevLast=this.last;this.first=F;this.last=G;return E},animate:function(G,D){if(this.locked||this.animating){return }this.animating=true;var E=this;var F=function(){E.animating=false;if(G==0){E.list.css(E.lt,0)}if(E.options.wrap=="both"||E.options.wrap=="last"||E.options.size==null||E.last<E.options.size){E.startAuto()}E.buttons();E.notify("onAfterAnimation")};this.notify("onBeforeAnimation");if(!this.options.animation||D==false){this.list.css(this.lt,G+"px");F()}else{var H=!this.options.vertical?{left:G}:{top:G};this.list.animate(H,this.options.animation,this.options.easing,F)}},startAuto:function(E){if(E!=undefined){this.options.auto=E}if(this.options.auto==0){return this.stopAuto()}if(this.timer!=null){return }var D=this;this.timer=setTimeout(function(){D.next()},this.options.auto*1000)},stopAuto:function(){if(this.timer==null){return }clearTimeout(this.timer);this.timer=null},buttons:function(F,E){if(F==undefined||F==null){var F=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!="first")||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=="first")&&this.options.size!=null&&this.last>=this.options.size){F=this.tail!=null&&!this.inTail}}if(E==undefined||E==null){var E=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!="last")||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=="last")&&this.options.size!=null&&this.first==1){E=this.tail!=null&&this.inTail}}var D=this;this.buttonNext[F?"bind":"unbind"](this.options.buttonNextEvent,this.funcNext)[F?"removeClass":"addClass"](this.className("jcarousel-next-disabled")).attr("disabled",F?false:true);this.buttonPrev[E?"bind":"unbind"](this.options.buttonPrevEvent,this.funcPrev)[E?"removeClass":"addClass"](this.className("jcarousel-prev-disabled")).attr("disabled",E?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=F)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){D.options.buttonNextCallback(D,this,F)});this.buttonNext[0].jcarouselstate=F}if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=E)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){D.options.buttonPrevCallback(D,this,E)});this.buttonPrev[0].jcarouselstate=E}},notify:function(D){var E=this.prevFirst==null?"init":(this.prevFirst<this.first?"next":"prev");this.callback("itemLoadCallback",D,E);if(this.prevFirst!==this.first){this.callback("itemFirstInCallback",D,E,this.first);this.callback("itemFirstOutCallback",D,E,this.prevFirst)}if(this.prevLast!==this.last){this.callback("itemLastInCallback",D,E,this.last);this.callback("itemLastOutCallback",D,E,this.prevLast)}this.callback("itemVisibleInCallback",D,E,this.first,this.last,this.prevFirst,this.prevLast);this.callback("itemVisibleOutCallback",D,E,this.prevFirst,this.prevLast,this.first,this.last)},callback:function(H,K,D,I,G,F,E){if(this.options[H]==undefined||(typeof this.options[H]!="object"&&K!="onAfterAnimation")){return }var L=typeof this.options[H]=="object"?this.options[H][K]:this.options[H];if(!C.isFunction(L)){return }var M=this;if(I===undefined){L(M,D,K)}else{if(G===undefined){this.get(I).each(function(){L(M,this,I,D,K)})}else{for(var J=I;J<=G;J++){if(J!==null&&!(J>=F&&J<=E)){this.get(J).each(function(){L(M,this,J,D,K)})}}}}},create:function(D){return this.format("<li></li>",D)},format:function(F,D){var E=C(F).addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-"+D));E.attr("jcarouselindex",D);return E},className:function(D){return D+" "+D+(!this.options.vertical?"-horizontal":"-vertical")},dimension:function(G,H){var F=G.jquery!=undefined?G[0]:G;var E=!this.options.vertical?F.offsetWidth+A.margin(F,"marginLeft")+A.margin(F,"marginRight"):F.offsetHeight+A.margin(F,"marginTop")+A.margin(F,"marginBottom");if(H==undefined||E==H){return E}var D=!this.options.vertical?H-A.margin(F,"marginLeft")-A.margin(F,"marginRight"):H-A.margin(F,"marginTop")-A.margin(F,"marginBottom");C(F).css(this.wh,D+"px");return this.dimension(F)},clipping:function(){return !this.options.vertical?this.clip[0].offsetWidth-A.intval(this.clip.css("borderLeftWidth"))-A.intval(this.clip.css("borderRightWidth")):this.clip[0].offsetHeight-A.intval(this.clip.css("borderTopWidth"))-A.intval(this.clip.css("borderBottomWidth"))},index:function(D,E){if(E==undefined){E=this.options.size}return Math.round((((D-1)/E)-Math.floor((D-1)/E))*E)+1}});A.extend({defaults:function(D){return C.extend(B,D||{})},margin:function(H,G){if(!H){return 0}var F=H.jquery!=undefined?H[0]:H;if(G=="marginRight"&&C.browser.safari){var E={display:"block","float":"none",width:"auto"},D,I;C.swap(F,E,function(){D=F.offsetWidth});E.marginRight=0;C.swap(F,E,function(){I=F.offsetWidth});return I-D}return A.intval(C.css(F,G))},intval:function(D){D=parseInt(D);return isNaN(D)?0:D}})})(jQuery);var suckerfyTimeInTimer;var suckerfyTimeoutTimer;var searchActive=false;var searchOverTimer;var searchOutTimer;startList=function(){suckerfyTimeout("primary-nav");suckerfyTimeout("secondary-nav");suckerfyTimeout("my-account");treatSearch()};function treatSearch(){var A=document.getElementById("global-search-category");if(!A){return }document.getElementById("global-search-category").onmouseover=function(){clearTimeout(searchOverTimer);clearTimeout(searchOutTimer);searchOverTimer=window.setTimeout(function(){A.className=" over";searchActive=true},300)};document.getElementById("global-search-drop-down").onmouseout=function(){clearTimeout(searchOverTimer);clearTimeout(searchOutTimer);searchOutTimer=window.setTimeout(function(){A.className="";searchActive=false},100)};document.getElementById("global-search-category").onmouseout=function(){clearTimeout(searchOverTimer);clearTimeout(searchOutTimer);searchOutTimer=window.setTimeout(function(){A.className="";searchActive=false},100)}}function suckerfyTimeout(D){var C=document.getElementById(D);if(!C){return }for(var A=0;A<C.childNodes.length;A++){var B=C.childNodes[A];if(B.nodeName=="LI"){if(B.className.indexOf("nofy")<0){if(B.className.indexOf(" over")>0){B.className=B.className.replace(new RegExp(" over\\b"),"");B.className=B.className.replace(new RegExp("over\\b"),"")}B.onmouseover=function(){if(suckerfyTimeInTimer){clearTimeout(suckerfyTimeInTimer)}suckerfyTimeInTimer=window.setTimeout("suckerfyTimed('"+D+"','"+this.id+"')",300)};B.onmouseout=function(){if(suckerfyTimeInTimer){clearTimeout(suckerfyTimeInTimer)}}}}}}function suckerfyTimed(E,A){suckerfyTimeInTimer=null;var D=document.getElementById(E);for(var B=0;B<D.childNodes.length;B++){var C=D.childNodes[B];if(C.nodeName=="LI"){if(C.className.indexOf("nofy")<0){C.onmouseover=function(){if(suckerfyTimeoutTimer){clearTimeout(suckerfyTimeoutTimer)}this.className+=" over"};C.onmouseout=function(){suckerfyTimeoutTimer=window.setTimeout("suckerfyTimeout('"+E+"')",300);this.className=this.className.replace(new RegExp(" over\\b"),"");this.className=this.className.replace(new RegExp("over\\b"),"")};if(C.id==A){C.className+=" over"}}}}}function suckerfy(C){var B=document.getElementById(C);for(i=0;i<B.childNodes.length;i++){var A=B.childNodes[i];if(A.nodeName=="LI"){A.onmouseover=function(){this.className+=" over"};A.onmouseout=function(){this.className=this.className.replace(new RegExp(" over\\b"),"");this.className=this.className.replace(new RegExp("over\\b"),"")}}}}setupSearch=function(){var F=document.getElementById("search");if(!F){return }var B=document.getElementById("search-scope");var A=document.getElementById("categoryList");var E=document.getElementById("global-search-trigger");B.value="All Categories";F.value="Enter Search Term";for(var D=0;D<A.childNodes.length;D++){var G=A.childNodes[D];for(var C=0;C<G.childNodes.length;C++){if(G.childNodes[C].nodeName=="A"){G.childNodes[C].onclick=chooseCategory}}}E.onclick=disableClick;F.onfocus=clearPrompt;F.onblur=restorePrompt};chooseCategory=function(C){if(!C){var C=window.event}if(!C.target){var A=C.srcElement}else{var A=C.target}var I=A.innerHTML;var G=I.replace("&amp;","&");var H=document.getElementById("search");var B=document.getElementById("search-scope");var F=document.getElementById("categoryList");var E=document.getElementById("search-accessible");var D=document.getElementById("global-search-trigger");B.value=G;E=I+" Search";D.innerHTML=I;for(i=0;i<F.childNodes.length;i++){if(F.childNodes[i].className){F.childNodes[i].className=F.childNodes[i].className.replace(" selected","");F.childNodes[i].className=F.childNodes[i].className.replace("selected","")}}A.parentNode.className+=" selected";A.parentNode.parentNode.parentNode.parentNode.className="";return false};disableClick=function(A){return false};clearPrompt=function(C){if(!C){var C=window.event}if(!C.target){var B=C.srcElement}else{var B=C.target}var A=document.getElementById("search-scope");if(B.value==("Enter Search Term")){B.value=""}B.className="text png focus";return false};restorePrompt=function(C){if(!C){var C=window.event}if(!C.target){var B=C.srcElement}else{var B=C.target}var A=document.getElementById("search-scope");if(!B.value.length){B.value="Enter Search Term"}B.className="text png";return false};addLoadEvent(startList);addLoadEvent(setupSearch);function addLoadEvent(A){if(window.Prototype){Event.observe(window,"load",function(){A()})}else{if(jQuery!=undefined){jQuery(window).load(function(){A()})}else{var B=window.onload;if(typeof window.onload!="function"){window.onload=A}else{window.onload=function(){if(B){B()}A()}}}}}b2bExitModalShow=function(A){if(isB2B()){document.getElementById("b2b-exit-modal").style.display="block";document.getElementById("b2b-exit-modal-underlay").style.display="block";document.getElementById("exit-modal-yes").href=A;return false}else{openPopup(A,"menubar=1,width=970,height=500,toolbar=1,status=1,resizable=1,scrollbars=1,location=1")}};b2bExitModalHide=function(){document.getElementById("b2b-exit-modal").style.display="none";document.getElementById("b2b-exit-modal-underlay").style.display="none";return false};openB2BPopup=function(){openPopup(document.getElementById("exit-modal-yes").href,"menubar=1,width=970,height=500,toolbar=1,status=1,resizable=1,scrollbars=1,location=1")};var countryInfo={country:[{CountryCode:"",CountryName:"",CountryFlag:"",CountryPhone:"&nbsp;",CountryRegion:""}]};var wcmprefix=document.location.toString().indexOf("https://")!=-1?"https://":"http://";var url=wcmprefix+dayHost+"/absite.countryLookup.";url+=getCountryCode()+".js";var script=document.createElement("script");script.type="text/javascript";script.src=url;document.getElementsByTagName("head").item(0).appendChild(script);function getUserInfo(){return Base64.decode(getCookie("USRINFO"))}function getCountryCode(){return getCookie("ab_country")}function getCountryHeaderName(){return countryInfo.country[0].CountryName}function getCountryPhone(){return countryInfo.country[0].CountryPhone}function getCountryLanguages(){return countryInfo.country[0].CountryLanguages}function isB2B(){var A=getCookie("ISPUNCHIN");if(A!=undefined&&A!=""&&A!=null&&A=="true"){return true}else{return false}}function getCountryIcon(){return wcmprefix+dayHost+"/abshared-static/media/images/icons/flags/"+countryInfo.country[0].CountryFlag}function getCookie(D){var C=D+"=";var B=document.cookie;if(B==null){return""}if(B.length>0){var E=B.indexOf(C);if(E!=-1){E+=C.length;var A=B.indexOf(";",E);if(A==-1){A=B.length}return unescape(B.substring(E,A))}}return""}function isLoggedIn(){var A=getCookie("ab_token_id");if(A!=undefined&&A!=null&&A!=""){return true}else{return false}}function isExpiredLogin(){var A=Encoder.htmlDecode(getUserInfo());if(isLoggedIn()){return false}else{if(!isLoggedIn()&&A!=undefined&&A!=null&&A!=""){return true}else{return false}}}function getUserName(){var A=Encoder.htmlDecode(getUserInfo());if(getUserCountry(A)=="Japan"){return getUserLastName(A)+" &#27096;"}else{var C=getUserFirstName(A);var B=getUserLastName(A);return C+" "+B}}function getUserCountry(B){var A=B.split("|");var C=A[3];return C}function getUserFirstName(B){var A=B.split("|");var C=A[7];return C}function getUserLastName(B){var A=B.split("|");var C=A[19];return C}function noCountryCookie(){if(getCookie("ab_country")==null||getCookie("ab_country")==undefined||getCookie("ab_country")==""){return true}else{return false}}function addChangeCountryClickEvent(){jQuery(".changeCountryModalLink").click(function(){var A=window.location.toString();if(A.indexOf("products.appliedbisystems.com")!=-1||A.indexOf("prod.appliedbiosystems.com")!=-1||jQuery("#selectCountry").length==0){document.cookie="ab_country=;domain=.appliedbiosystems.com;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT";document.cookie="ab_countryName=;domain=.appliedbiosystems.com;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT";document.cookie="ab_homepage_name=;domain=.appliedbiosystems.com;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT";document.cookie="ab_homepage_url=;domain=.appliedbiosystems.com;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT"}else{if(isLoggedIn()){jQuery("#selectCountry .countryWarning").show();jQuery("#selectCountry select").css("margin-left","-36px")}else{jQuery("#selectCountry .countryWarning").hide();jQuery("#selectCountry select").css("margin-left","0px")}jQuery("#selectCountry").jqm({modal:true});jQuery("#selectCountry").addClass("jqmWindow");jQuery("#selectCountry").jqmShow();return false}})}function updateHeaderInfo(){if(isLoggedIn()){if(isB2B()){jQuery(".hideB2B").hide()}jQuery(".welcomeMessage").empty();jQuery(".welcomeMessage").html("Hello, "+getUserName());jQuery("#changeCountry").hide();jQuery(".logged-in-header").show()}else{if(isExpiredLogin()){if(isB2B()){jQuery(".hideB2B").hide()}jQuery(".welcomeMessage").empty();jQuery(".welcomeMessage").html("Hello, "+getUserName());jQuery("#changeCountry").hide();jQuery(".expired-login-header").show()}else{if(noCountryCookie()){jQuery("#countryImage").hide();jQuery("#countryName").hide();jQuery("#changeCountryModalLink").empty().html("Choose Country");jQuery("#changeCountry").show()}jQuery(".anonymous-header").show()}}addChangeCountryClickEvent();var B=getCountryIcon();var A=getCountryHeaderName();var C=getCountryLanguages();var D=getCountryCode();if(!noCountryCookie()){jQuery("#countryImage").attr("src",B);jQuery("#countryImage").attr("title",A);jQuery("#countryImage").attr("alt",A);jQuery("#countryName").empty().html(A)}jQuery("#my-account").show()}function moreSites(A){if(A!=undefined&&A!=""){openPopup(A,"menubar=1,width=970,height=500,toolbar=1,status=1,resizable=1,scrollbars=1,location=1")}}function openPopup(A,B){window.open(A,"",B)}function setUserLanguageCode(B){if(getCookie("ab_language")!=""){var A=new Date();A.setTime(A.getTime()-1);document.cookie="ab_language=; path=/; expires="+A.toGMTString()+"; domain=.appliedbiosystems.com;"}if(B!=""||B!=undefined){var A=new Date();A.setTime(A.getTime()+(1000*60*60*24*31));document.cookie="ab_language="+escape(B)+"; path=/; expires="+A.toGMTString()+"; domain=.appliedbiosystems.com;"}}function setUserCountryCode(B){var A=new Date();A.setTime(A.getTime()+(1000*60*60*24*31));document.cookie="ab_country="+escape(B)+"; path=/; expires="+A.toGMTString()+"; domain=.appliedbiosystems.com;"}function submitform(){var J="";var C=window.location.toString();var B=C.indexOf("appliedbiosystems");if(B>0){J=".appliedbiosystems.com"}else{J=".ab.applera.net"}var E=document.getElementById("countryCodeValue");var F=jQuery("#countryCodeValue option:selected").attr("id");var H=jQuery("#countryCodeValue option:selected").text();var I=E.value;if(I!=""){if(isLoggedIn()){document.cookie="ab_token_id=;domain=.appliedbiosystems.com;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT";document.cookie="USRINFO=;domain=.appliedbiosystems.com;path=/;expires=Thu, 01-Jan-1970 00:00:01 GMT"}setRegionCookies(F,I,H,J);setUserCountryCode(E.value);var G=getDefaultLanguage(I);if(G!=undefined&&G!=null&&G!=""){setUserLanguageCode(getDefaultLanguage(I))}var A=getCookie("ab_homepage_url");if(A==""||A==undefined||A==null){top.location.reload(true)}else{if(A.indexOf("appliedbiosystems.com/")!=-1){if(getArg("showCountrySelect")=="true"){var D=window.location.toString();top.location.href=D.replace("?showCountrySelect=true","")}else{top.location.reload(true)}}else{top.location.href=A}}}else{return false}}function cancelform(){var A=getCookie("ab_homepage_url");if(A!=""){top.location.href=A}else{$("#selectCountry").jqmHide()}}function setRegionCookies(E,D,C,A){var B=new Date();B.setTime(B.getTime()+(1000*60*60*24*31));document.cookie="ab_countryName="+C+"; path=/; domain="+A+"; expires="+B.toGMTString()+";";if(E=="AM"){document.cookie="ab_homepage_name=Americas; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com/absite/us/en/home.html; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="EU"){document.cookie="ab_homepage_name=Europe&#44 CIS&#44 Middle East&#44 West Asia&#44 Africa; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com/absite/us/en/home.html; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="JP"){document.cookie="ab_homepage_name=Japan; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.jp/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="AU"){document.cookie="ab_homepage_name=Australia & New Zealand; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com.au/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="BR"){document.cookie="ab_homepage_name=Brazil; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com.br/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="CN"){document.cookie="ab_homepage_name=China; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com.cn/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="HK"){document.cookie="ab_homepage_name=Hong Kong; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com.hk/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="KR"){document.cookie="ab_homepage_name=Korea; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.co.kr/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="RU"){document.cookie="ab_homepage_name=Singapore; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.ru/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="SG"){document.cookie="ab_homepage_name=Singapore; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com.sg/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}else{if(E=="TW"){document.cookie="ab_homepage_name=Taiwan; path=/; domain="+A+"; expires="+B.toGMTString()+";";document.cookie="ab_homepage_url=http://www.appliedbiosystems.com.tw/; path=/; domain="+A+"; expires="+B.toGMTString()+";"}}}}}}}}}}}}function getDefaultLanguage(A){var B=new Object();B.jp="ja";if(B[A]!=undefined&&B[A]!=""){return B[A]}else{return"en"}}function getArg(B){var E=location.search.substring(1);var D=E.split("&");for(var C=0;C<D.length;C++){var F=D[C].indexOf("=");if(F==-1){continue}var A=D[C].substring(0,F);if(A==B){return D[C].substring(F+1)}}return""}function hasForeignHomepage(){var A=getCookie("ab_homepage_url");if(A.indexOf("www.appliedbiosystems.com/")==-1&&A!=""&&A!=undefined){return true}else{return false}}function sendCorrectHomepage(){var A=getCookie("ab_homepage_url");if(A.indexOf("www.appliedbiosystems.com/")==-1&&getCookie("ab_country")!=""&&getArg("showCountrySelect")!="true"){top.location.href=A}}var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(C){var A="";var J,H,F,I,G,E,D;var B=0;C=Base64._utf8_encode(C);while(B<C.length){J=C.charCodeAt(B++);H=C.charCodeAt(B++);F=C.charCodeAt(B++);I=J>>2;G=((J&3)<<4)|(H>>4);E=((H&15)<<2)|(F>>6);D=F&63;if(isNaN(H)){E=D=64}else{if(isNaN(F)){D=64}}A=A+this._keyStr.charAt(I)+this._keyStr.charAt(G)+this._keyStr.charAt(E)+this._keyStr.charAt(D)}return A},decode:function(C){var A="";var J,H,F;var I,G,E,D;var B=0;C=C.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(B<C.length){I=this._keyStr.indexOf(C.charAt(B++));G=this._keyStr.indexOf(C.charAt(B++));E=this._keyStr.indexOf(C.charAt(B++));D=this._keyStr.indexOf(C.charAt(B++));J=(I<<2)|(G>>4);H=((G&15)<<4)|(E>>2);F=((E&3)<<6)|D;A=A+String.fromCharCode(J);if(E!=64){A=A+String.fromCharCode(H)}if(D!=64){A=A+String.fromCharCode(F)}}A=Base64._utf8_decode(A);return A},_utf8_encode:function(B){B=B.replace(/\r\n/g,"\n");var A="";for(var D=0;D<B.length;D++){var C=B.charCodeAt(D);if(C<128){A+=String.fromCharCode(C)}else{if((C>127)&&(C<2048)){A+=String.fromCharCode((C>>6)|192);A+=String.fromCharCode((C&63)|128)}else{A+=String.fromCharCode((C>>12)|224);A+=String.fromCharCode(((C>>6)&63)|128);A+=String.fromCharCode((C&63)|128)}}}return A},_utf8_decode:function(A){var B="";var C=0;var D=c1=c2=0;while(C<A.length){D=A.charCodeAt(C);if(D<128){B+=String.fromCharCode(D);C++}else{if((D>191)&&(D<224)){c2=A.charCodeAt(C+1);B+=String.fromCharCode(((D&31)<<6)|(c2&63));C+=2}else{c2=A.charCodeAt(C+1);c3=A.charCodeAt(C+2);B+=String.fromCharCode(((D&15)<<12)|((c2&63)<<6)|(c3&63));C+=3}}}return B}};Encoder={EncodeType:"entity",isEmpty:function(A){if(A){return((A===null)||A.length==0||/^\s+$/.test(A))}else{return true}},HTML2Numerical:function(C){var B=new Array("&nbsp;","&iexcl;","&cent;","&pound;","&curren;","&yen;","&brvbar;","&sect;","&uml;","&copy;","&ordf;","&laquo;","&not;","&shy;","&reg;","&macr;","&deg;","&plusmn;","&sup2;","&sup3;","&acute;","&micro;","&para;","&middot;","&cedil;","&sup1;","&ordm;","&raquo;","&frac14;","&frac12;","&frac34;","&iquest;","&agrave;","&aacute;","&acirc;","&atilde;","&Auml;","&aring;","&aelig;","&ccedil;","&egrave;","&eacute;","&ecirc;","&euml;","&igrave;","&iacute;","&icirc;","&iuml;","&eth;","&ntilde;","&ograve;","&oacute;","&ocirc;","&otilde;","&Ouml;","&times;","&oslash;","&ugrave;","&uacute;","&ucirc;","&Uuml;","&yacute;","&thorn;","&szlig;","&agrave;","&aacute;","&acirc;","&atilde;","&auml;","&aring;","&aelig;","&ccedil;","&egrave;","&eacute;","&ecirc;","&euml;","&igrave;","&iacute;","&icirc;","&iuml;","&eth;","&ntilde;","&ograve;","&oacute;","&ocirc;","&otilde;","&ouml;","&divide;","&oslash;","&ugrave;","&uacute;","&ucirc;","&uuml;","&yacute;","&thorn;","&yuml;","&quot;","&amp;","&lt;","&gt;","&oelig;","&oelig;","&scaron;","&scaron;","&yuml;","&circ;","&tilde;","&ensp;","&emsp;","&thinsp;","&zwnj;","&zwj;","&lrm;","&rlm;","&ndash;","&mdash;","&lsquo;","&rsquo;","&sbquo;","&ldquo;","&rdquo;","&bdquo;","&dagger;","&dagger;","&permil;","&lsaquo;","&rsaquo;","&euro;","&fnof;","&alpha;","&beta;","&gamma;","&delta;","&epsilon;","&zeta;","&eta;","&theta;","&iota;","&kappa;","&lambda;","&mu;","&nu;","&xi;","&omicron;","&pi;","&rho;","&sigma;","&tau;","&upsilon;","&phi;","&chi;","&psi;","&omega;","&alpha;","&beta;","&gamma;","&delta;","&epsilon;","&zeta;","&eta;","&theta;","&iota;","&kappa;","&lambda;","&mu;","&nu;","&xi;","&omicron;","&pi;","&rho;","&sigmaf;","&sigma;","&tau;","&upsilon;","&phi;","&chi;","&psi;","&omega;","&thetasym;","&upsih;","&piv;","&bull;","&hellip;","&prime;","&prime;","&oline;","&frasl;","&weierp;","&image;","&real;","&trade;","&alefsym;","&larr;","&uarr;","&rarr;","&darr;","&harr;","&crarr;","&larr;","&uarr;","&rarr;","&darr;","&harr;","&forall;","&part;","&exist;","&empty;","&nabla;","&isin;","&notin;","&ni;","&prod;","&sum;","&minus;","&lowast;","&radic;","&prop;","&infin;","&ang;","&and;","&or;","&cap;","&cup;","&int;","&there4;","&sim;","&cong;","&asymp;","&ne;","&equiv;","&le;","&ge;","&sub;","&sup;","&nsub;","&sube;","&supe;","&oplus;","&otimes;","&perp;","&sdot;","&lceil;","&rceil;","&lfloor;","&rfloor;","&lang;","&rang;","&loz;","&spades;","&clubs;","&hearts;","&diams;");var A=new Array("&#160;","&#161;","&#162;","&#163;","&#164;","&#165;","&#166;","&#167;","&#168;","&#169;","&#170;","&#171;","&#172;","&#173;","&#174;","&#175;","&#176;","&#177;","&#178;","&#179;","&#180;","&#181;","&#182;","&#183;","&#184;","&#185;","&#186;","&#187;","&#188;","&#189;","&#190;","&#191;","&#192;","&#193;","&#194;","&#195;","&#196;","&#197;","&#198;","&#199;","&#200;","&#201;","&#202;","&#203;","&#204;","&#205;","&#206;","&#207;","&#208;","&#209;","&#210;","&#211;","&#212;","&#213;","&#214;","&#215;","&#216;","&#217;","&#218;","&#219;","&#220;","&#221;","&#222;","&#223;","&#224;","&#225;","&#226;","&#227;","&#228;","&#229;","&#230;","&#231;","&#232;","&#233;","&#234;","&#235;","&#236;","&#237;","&#238;","&#239;","&#240;","&#241;","&#242;","&#243;","&#244;","&#245;","&#246;","&#247;","&#248;","&#249;","&#250;","&#251;","&#252;","&#253;","&#254;","&#255;","&#34;","&#38;","&#60;","&#62;","&#338;","&#339;","&#352;","&#353;","&#376;","&#710;","&#732;","&#8194;","&#8195;","&#8201;","&#8204;","&#8205;","&#8206;","&#8207;","&#8211;","&#8212;","&#8216;","&#8217;","&#8218;","&#8220;","&#8221;","&#8222;","&#8224;","&#8225;","&#8240;","&#8249;","&#8250;","&#8364;","&#402;","&#913;","&#914;","&#915;","&#916;","&#917;","&#918;","&#919;","&#920;","&#921;","&#922;","&#923;","&#924;","&#925;","&#926;","&#927;","&#928;","&#929;","&#931;","&#932;","&#933;","&#934;","&#935;","&#936;","&#937;","&#945;","&#946;","&#947;","&#948;","&#949;","&#950;","&#951;","&#952;","&#953;","&#954;","&#955;","&#956;","&#957;","&#958;","&#959;","&#960;","&#961;","&#962;","&#963;","&#964;","&#965;","&#966;","&#967;","&#968;","&#969;","&#977;","&#978;","&#982;","&#8226;","&#8230;","&#8242;","&#8243;","&#8254;","&#8260;","&#8472;","&#8465;","&#8476;","&#8482;","&#8501;","&#8592;","&#8593;","&#8594;","&#8595;","&#8596;","&#8629;","&#8656;","&#8657;","&#8658;","&#8659;","&#8660;","&#8704;","&#8706;","&#8707;","&#8709;","&#8711;","&#8712;","&#8713;","&#8715;","&#8719;","&#8721;","&#8722;","&#8727;","&#8730;","&#8733;","&#8734;","&#8736;","&#8743;","&#8744;","&#8745;","&#8746;","&#8747;","&#8756;","&#8764;","&#8773;","&#8776;","&#8800;","&#8801;","&#8804;","&#8805;","&#8834;","&#8835;","&#8836;","&#8838;","&#8839;","&#8853;","&#8855;","&#8869;","&#8901;","&#8968;","&#8969;","&#8970;","&#8971;","&#9001;","&#9002;","&#9674;","&#9824;","&#9827;","&#9829;","&#9830;");return this.swapArrayVals(C,B,A)},NumericalToHTML:function(C){var B=new Array("&#160;","&#161;","&#162;","&#163;","&#164;","&#165;","&#166;","&#167;","&#168;","&#169;","&#170;","&#171;","&#172;","&#173;","&#174;","&#175;","&#176;","&#177;","&#178;","&#179;","&#180;","&#181;","&#182;","&#183;","&#184;","&#185;","&#186;","&#187;","&#188;","&#189;","&#190;","&#191;","&#192;","&#193;","&#194;","&#195;","&#196;","&#197;","&#198;","&#199;","&#200;","&#201;","&#202;","&#203;","&#204;","&#205;","&#206;","&#207;","&#208;","&#209;","&#210;","&#211;","&#212;","&#213;","&#214;","&#215;","&#216;","&#217;","&#218;","&#219;","&#220;","&#221;","&#222;","&#223;","&#224;","&#225;","&#226;","&#227;","&#228;","&#229;","&#230;","&#231;","&#232;","&#233;","&#234;","&#235;","&#236;","&#237;","&#238;","&#239;","&#240;","&#241;","&#242;","&#243;","&#244;","&#245;","&#246;","&#247;","&#248;","&#249;","&#250;","&#251;","&#252;","&#253;","&#254;","&#255;","&#34;","&#38;","&#60;","&#62;","&#338;","&#339;","&#352;","&#353;","&#376;","&#710;","&#732;","&#8194;","&#8195;","&#8201;","&#8204;","&#8205;","&#8206;","&#8207;","&#8211;","&#8212;","&#8216;","&#8217;","&#8218;","&#8220;","&#8221;","&#8222;","&#8224;","&#8225;","&#8240;","&#8249;","&#8250;","&#8364;","&#402;","&#913;","&#914;","&#915;","&#916;","&#917;","&#918;","&#919;","&#920;","&#921;","&#922;","&#923;","&#924;","&#925;","&#926;","&#927;","&#928;","&#929;","&#931;","&#932;","&#933;","&#934;","&#935;","&#936;","&#937;","&#945;","&#946;","&#947;","&#948;","&#949;","&#950;","&#951;","&#952;","&#953;","&#954;","&#955;","&#956;","&#957;","&#958;","&#959;","&#960;","&#961;","&#962;","&#963;","&#964;","&#965;","&#966;","&#967;","&#968;","&#969;","&#977;","&#978;","&#982;","&#8226;","&#8230;","&#8242;","&#8243;","&#8254;","&#8260;","&#8472;","&#8465;","&#8476;","&#8482;","&#8501;","&#8592;","&#8593;","&#8594;","&#8595;","&#8596;","&#8629;","&#8656;","&#8657;","&#8658;","&#8659;","&#8660;","&#8704;","&#8706;","&#8707;","&#8709;","&#8711;","&#8712;","&#8713;","&#8715;","&#8719;","&#8721;","&#8722;","&#8727;","&#8730;","&#8733;","&#8734;","&#8736;","&#8743;","&#8744;","&#8745;","&#8746;","&#8747;","&#8756;","&#8764;","&#8773;","&#8776;","&#8800;","&#8801;","&#8804;","&#8805;","&#8834;","&#8835;","&#8836;","&#8838;","&#8839;","&#8853;","&#8855;","&#8869;","&#8901;","&#8968;","&#8969;","&#8970;","&#8971;","&#9001;","&#9002;","&#9674;","&#9824;","&#9827;","&#9829;","&#9830;");var A=new Array("&nbsp;","&iexcl;","&cent;","&pound;","&curren;","&yen;","&brvbar;","&sect;","&uml;","&copy;","&ordf;","&laquo;","&not;","&shy;","&reg;","&macr;","&deg;","&plusmn;","&sup2;","&sup3;","&acute;","&micro;","&para;","&middot;","&cedil;","&sup1;","&ordm;","&raquo;","&frac14;","&frac12;","&frac34;","&iquest;","&agrave;","&aacute;","&acirc;","&atilde;","&Auml;","&aring;","&aelig;","&ccedil;","&egrave;","&eacute;","&ecirc;","&euml;","&igrave;","&iacute;","&icirc;","&iuml;","&eth;","&ntilde;","&ograve;","&oacute;","&ocirc;","&otilde;","&Ouml;","&times;","&oslash;","&ugrave;","&uacute;","&ucirc;","&Uuml;","&yacute;","&thorn;","&szlig;","&agrave;","&aacute;","&acirc;","&atilde;","&auml;","&aring;","&aelig;","&ccedil;","&egrave;","&eacute;","&ecirc;","&euml;","&igrave;","&iacute;","&icirc;","&iuml;","&eth;","&ntilde;","&ograve;","&oacute;","&ocirc;","&otilde;","&ouml;","&divide;","&oslash;","&ugrave;","&uacute;","&ucirc;","&uuml;","&yacute;","&thorn;","&yuml;","&quot;","&amp;","&lt;","&gt;","&oelig;","&oelig;","&scaron;","&scaron;","&yuml;","&circ;","&tilde;","&ensp;","&emsp;","&thinsp;","&zwnj;","&zwj;","&lrm;","&rlm;","&ndash;","&mdash;","&lsquo;","&rsquo;","&sbquo;","&ldquo;","&rdquo;","&bdquo;","&dagger;","&dagger;","&permil;","&lsaquo;","&rsaquo;","&euro;","&fnof;","&alpha;","&beta;","&gamma;","&delta;","&epsilon;","&zeta;","&eta;","&theta;","&iota;","&kappa;","&lambda;","&mu;","&nu;","&xi;","&omicron;","&pi;","&rho;","&sigma;","&tau;","&upsilon;","&phi;","&chi;","&psi;","&omega;","&alpha;","&beta;","&gamma;","&delta;","&epsilon;","&zeta;","&eta;","&theta;","&iota;","&kappa;","&lambda;","&mu;","&nu;","&xi;","&omicron;","&pi;","&rho;","&sigmaf;","&sigma;","&tau;","&upsilon;","&phi;","&chi;","&psi;","&omega;","&thetasym;","&upsih;","&piv;","&bull;","&hellip;","&prime;","&prime;","&oline;","&frasl;","&weierp;","&image;","&real;","&trade;","&alefsym;","&larr;","&uarr;","&rarr;","&darr;","&harr;","&crarr;","&larr;","&uarr;","&rarr;","&darr;","&harr;","&forall;","&part;","&exist;","&empty;","&nabla;","&isin;","&notin;","&ni;","&prod;","&sum;","&minus;","&lowast;","&radic;","&prop;","&infin;","&ang;","&and;","&or;","&cap;","&cup;","&int;","&there4;","&sim;","&cong;","&asymp;","&ne;","&equiv;","&le;","&ge;","&sub;","&sup;","&nsub;","&sube;","&supe;","&oplus;","&otimes;","&perp;","&sdot;","&lceil;","&rceil;","&lfloor;","&rfloor;","&lang;","&rang;","&loz;","&spades;","&clubs;","&hearts;","&diams;");return this.swapArrayVals(C,B,A)},numEncode:function(B){if(this.isEmpty(B)){return""}var C="";for(var A=0;A<B.length;A++){var D=B.charAt(A);if(D<" "||D>"~"){D="&#"+D.charCodeAt()+";"}C+=D}return C},htmlDecode:function(C){var E,B,D=C;if(this.isEmpty(D)){return""}D=this.HTML2Numerical(D);arr=D.match(/&#[0-9]{1,5};/g);if(arr!=null){for(var A=0;A<arr.length;A++){B=arr[A];E=B.substring(2,B.length-1);if(E>=-32768&&E<=65535){D=D.replace(B,String.fromCharCode(E))}else{D=D.replace(B,"")}}}return D},htmlEncode:function(A,B){if(this.isEmpty(A)){return""}B=B|false;if(B){if(this.EncodeType=="numerical"){A=A.replace(/&/g,"&#38;")}else{A=A.replace(/&/g,"&amp;")}}A=this.XSSEncode(A,false);if(this.EncodeType=="numerical"||!B){A=this.HTML2Numerical(A)}A=this.numEncode(A);if(!B){A=A.replace(/&#/g,"##AMPHASH##");if(this.EncodeType=="numerical"){A=A.replace(/&/g,"&#38;")}else{A=A.replace(/&/g,"&amp;")}A=A.replace(/##AMPHASH##/g,"&#")}A=A.replace(/&#\d*([^\d;]|$)/g,"$1");if(!B){A=this.correctEncoding(A)}if(this.EncodeType=="entity"){A=this.NumericalToHTML(A)}return A},XSSEncode:function(B,A){if(!this.isEmpty(B)){A=A||true;if(A){B=B.replace(/\'/g,"&#39;");B=B.replace(/\"/g,"&quot;");B=B.replace(/</g,"&lt;");B=B.replace(/>/g,"&gt;")}else{B=B.replace(/\'/g,"&#39;");B=B.replace(/\"/g,"&#34;");B=B.replace(/</g,"&#60;");B=B.replace(/>/g,"&#62;")}return B}else{return""}},hasEncoded:function(A){if(/&#[0-9]{1,5};/g.test(A)){return true}else{if(/&[A-Z]{2,6};/gi.test(A)){return true}else{return false}}},stripUnicode:function(A){return A.replace(/[^\x20-\x7E]/g,"")},correctEncoding:function(A){return A.replace(/(&amp;)(amp;)+/,"$1")},swapArrayVals:function(F,C,B){if(this.isEmpty(F)){return""}var E;if(C&&B){if(C.length==B.length){for(var A=0,D=C.length;A<D;A++){E=new RegExp(C[A],"g");F=F.replace(E,B[A])}}}return F},inArray:function(D,B){for(var C=0,A=B.length;C<A;C++){if(B[C]===D){return C}}return -1}};$(document).ready(function(){if($.browser.msie&&$.browser.version.substr(0,1)<7){$("img[src$=.png]").each(function(){if(!$(this).hasClass("png")&&$(this).attr("src").indexOf("abshared-static")==-1&&!$(this).hasClass("no-png")){DD_belatedPNG.fixPng(this)}})}});function getTokenId(){return getCookie("ab_token_id")}function getIEVersion(){var B=navigator.userAgent;var A=B.indexOf("MSIE");if(A==-1){return }return parseFloat(B.substring(A+5))}function trim(A){return A.replace(/^\s*/,"").replace(/\s*$/,"")}function setCookie(B,C){var A=new Date();A.setTime(A.getTime()+(1000*60*60*24*31));document.cookie=B+"="+escape(C)+"; path=/; expires="+A.toGMTString()+"; domain=.appliedbiosystems.com;"}function setCookieSessionExpire(A,B){document.cookie=A+"="+escape(B)+"; path=/; domain=.appliedbiosystems.com;"}function CFC_popup(C,B,D){var F=500;var E=400;B=B.replace(" ","");if(C.indexOf("/")==0){C=wcmprefix+dayHost+C}if(D.indexOf("width")==-1){D+=",width="+F}if(D.indexOf("height")==-1){D+=",height="+E}var A=window.open(C,B,D);A.focus()}function nextEmail(A,B){document.getElementById("email-success").style.display="none";document.getElementById("email-failure").style.display="none";document.getElementById("email-errors").style.display="none";document.getElementById("email-errors").innerHTML="";document.getElementById("e-mail").style.display="block";$("#ttEmailFormButton").unbind("click");$("#ttEmailFormButton").bind("click",function(){var F="";var G="";var E=false;var M=/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;var I=document.getElementById("ttEmailFormTo");var J=document.getElementById("ttEmailFormFrom");var H=document.getElementById("ttEmailFormSubject");var L=document.getElementById("ttEmailFormMessage");var K=document.getElementById("email-errors");var D=false;if(I.value==""){F="- Please Provide Collegues Email <br />";E=true}else{if(M.test(I.value)!=true){E=true;F="- Your collegues email address is not valid <br />"}}if(J.value==""){G="- Please Provide Your Email <br />";E=true}else{if(M.test(J.value)!=true){E=true;G="- Your email address is not valid"}}if(E==true){K.innerHTML="<h5>"+B+"</h5>"+F+G;K.style.display="block"}else{var C=document.getElementById("ttEmailFormURL");C=C.value;D=SendMail(C,I.value,J.value,encodeURIComponent(H.value),encodeURIComponent(L.value),A)}return false});return false}function SendMail(A,F,E,B,D,C){$.ajax({method:"get",url:A,dataType:"text",timeout:(100000),data:("to="+F+"&from="+E+"&subject="+B+"&message="+D+"&currentHandle="+C),beforeSend:function(){},success:function(G,H){document.getElementById("e-mail").style.display="none";document.getElementById("email-success").style.display="block"},error:function(G,H){document.getElementById("e-mail").style.display="none";document.getElementById("email-failure").style.display="block"}})}function cleanModal(A){modal=$("#mediaModal");A.o.hide();A.w.hide();$("object#flashDiv").remove();modal.find("div.bd").append("<div id='flashDiv' style='display: none'></div>");modal.css({"margin-left":1024,"margin-top":1024})}function setWorkflowHeight(){$("#tab-workflow").css("height","auto")}sendCorrectHomepage();var homepageDefaultCarouselTime=7000;var homepageCarouselTimeout;jQuery(function(){switchSlide=function(D){currentSlideListItem=jQuery("#homepage-carousel ol li a.selected").parent();if(D=="next"){currentSlideListItem.children("a").removeClass("selected");jQuery("#homepage-carousel .carousel-slide").fadeOut()}else{if(D=="prev"){currentSlideListItem.children("a").removeClass("selected");jQuery("#homepage-carousel .carousel-slide").fadeOut()}}if(D=="next"){if(currentSlideListItem.next().length>0){currentSlideListItem.next().children("a").addClass("selected");jQuery(currentSlideListItem.next().children("a").attr("href")).fadeIn()}else{jQuery("#homepage-carousel ol li:first a").addClass("selected");jQuery("#homepage-carousel .carousel-slide:first").fadeIn()}}else{if(D=="prev"){if(currentSlideListItem.prev().length>0){currentSlideListItem.prev().children("a").addClass("selected");jQuery(currentSlideListItem.prev().children("a").attr("href")).fadeIn()}else{jQuery("#homepage-carousel ol li:last a").addClass("selected");jQuery("#homepage-carousel .carousel-slide:last").fadeIn()}}}clearTimeout(homepageCarouselTimeout);homepageCarouselTimeout=setTimeout(function(){switchSlide("next")},A(jQuery("#homepage-carousel ol li a.selected")))};if(jQuery("#homepage-carousel .carousel-slide").length>0){jQuery("#homepage-carousel ol li:first a").addClass("selected");jQuery("#homepage-carousel .carousel-slide:not(:first)").hide();jQuery("#homepage-carousel ol li a").click(function(){if(!jQuery(this).hasClass("selected")){jQuery("#homepage-carousel ol li a").removeClass("selected");jQuery("#homepage-carousel .carousel-slide").fadeOut();jQuery(this).addClass("selected");jQuery(jQuery(this).attr("href")).fadeIn();clearTimeout(homepageCarouselTimeout);homepageCarouselTimeout=setTimeout(switchSlide,A,A(jQuery("#homepage-carousel ol li a.selected")))}return false});jQuery("#homepage-carousel ol li a").hover(function(){var D=jQuery(this).attr("href").replace("#","");jQuery("#homepage-slide-text ."+D).show()},function(){var D=jQuery(this).attr("href").replace("#","");jQuery("#homepage-slide-text ."+D).hide()});jQuery("#homepage-carousel .next").click(function(){switchSlide("next");return false});jQuery("#homepage-carousel .prev").click(function(){switchSlide("prev");return false});homepageCarouselTimeout=setTimeout(switchSlide,A(jQuery("#homepage-carousel ol li a.selected")));var C=jQuery("#homepage-carousel ol li a").length;var B=function(E){var F=E+"px";var D=(parseInt(E)+39)+"px";jQuery("#homepage-carousel .next").css("left",F);jQuery("#homepage-carousel #homepage-slide-text p").css("left",D)};switch(C){case 1:B("64");break;case 2:B("91");break;case 3:B("118");break;case 4:B("145");break;case 5:B("172");break}if(C>1){jQuery("#homepage-carousel ol, #homepage-carousel .next, #homepage-carousel .prev").show()}else{if(homepageCarouselTimeout){clearTimeout(homepageCarouselTimeout)}}}function A(D){return jQuery(D.attr("href")).attr("data-time")?jQuery(D.attr("href")).attr("data-time"):homepageDefaultCarouselTime}jQuery("#solutions-carousel li > a").click(function(){if(!jQuery("#solution-info").length>0){jQuery("body").append('<div id="solution-info"></div>')}var G=jQuery("#solution-info");var F=jQuery(this).parent().position();var D=jQuery(this).parent().parent().position();var H=F.left+23+D.left;switch(H){case 23:case 25:G.css({"background-position":"0 -206px"});break;case 173:case 175:G.css({"background-position":"0 -393px"});break;case 323:case 325:G.css({"background-position":"0 -580px"});break;case 473:case 475:G.css({"background-position":"0 -767px"});break;case 623:case 625:G.css({"background-position":"0 -954px"});break;case 773:case 775:G.css({"background-position":"0 -1141px"});break}if(jQuery(this).hasClass("selected")){var E=true}jQuery("#solutions-carousel li > a").each(function(){jQuery(this).removeClass("selected")});G.empty().html(jQuery(this).parent().find(".solution-info-content").html());Cufon.refresh();if(!E){jQuery(this).addClass("selected")}else{G.remove()}G.find("a.close").bind("click",resetSolutions);jQuery("body").unbind("click");jQuery("body").bind("click",function(I){if(jQuery(I.target).parents("#solution-info").length!=1){resetSolutions()}});return false});if(jQuery("body").hasClass("browserIE6")){jQuery("#global-nav").hide().show().css("background-color","white")}});function resetSolutions(){jQuery("#solutions-carousel li > a").each(function(){jQuery(this).removeClass("selected")});jQuery("#solution-info a.close").unbind("click",resetSolutions);jQuery("body").unbind("click",resetSolutions);jQuery("#solution-info").bind("click",function(){return false});jQuery("#solution-info").remove();return false}function stopHomepageCarousel(){clearTimeout(homepageCarouselTimeout)}(function(A){A.fn.extend({reflect:function(B){B=A.extend({height:1/3,opacity:0.5},B);return this.unreflect().each(function(){var D=this;if(/^img$/i.test(D.tagName)){function C(){var K=D.width,L=D.height,F,I,E,J,G;I=Math.floor((B.height>1)?Math.min(L,B.height):L*B.height);if(A.browser.msie){F=A("<img />").attr("src",D.src).css({width:K,height:L,marginBottom:I-L,filter:"flipv progid:DXImageTransform.Microsoft.Alpha(opacity="+(B.opacity*100)+", style=1, finishOpacity=0, startx=0, starty=0, finishx=0, finishy="+(I/L*100)+")"})[0]}else{F=A("<canvas />")[0];if(!F.getContext){return }J=F.getContext("2d");try{A(F).attr({width:K,height:I});J.save();J.translate(0,L-1);J.scale(1,-1);J.drawImage(D,0,0,K,L);J.restore();J.globalCompositeOperation="destination-out";G=J.createLinearGradient(0,0,0,I);G.addColorStop(0,"rgba(255, 255, 255, "+(1-B.opacity)+")");G.addColorStop(1,"rgba(255, 255, 255, 1.0)");J.fillStyle=G;J.rect(0,0,K,I);J.fill()}catch(H){return }}A(F).css({display:"block",border:0});E=A(/^a$/i.test(D.parentNode.tagName)?"<span />":"<div />").insertAfter(D).append([D,F])[0];E.className=D.className;A.data(D,"reflected",E.style.cssText=D.style.cssText);A(E).css({width:K,height:L+I,overflow:"hidden"});D.style.cssText="display: block; border: 0px";D.className="reflected"}if(D.complete){C()}else{A(D).load(C)}}})},unreflect:function(){return this.unbind("load").each(function(){var D=this,B=A.data(this,"reflected"),C;if(B!==undefined){C=D.parentNode;D.className=C.className;D.style.cssText=B;A.removeData(D,"reflected");C.parentNode.replaceChild(D,C)}})}})})(jQuery);jQuery(function(A){jQuery("#homepage-carousel img").reflect({opacity:"0.12",height:"45"})});