(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);});}});(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");};});})();var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){el.className=(el.className&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false;}
if(foundAll)break;style=this.getStyle(search=search.parentNode);}
return types;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:function(text,style){return text[{uppercase:'toUpperCase',lowercase:'toLowerCase'}[style.get('textTransform')]||'toString']();},whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};return function(text,style,node){if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(/^\s+/,'');if(!node.nextSibling)text=text.replace(/\s+$/,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this);}
function onEnterLeave(e){trigger(this);}
function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){if(!style)style=CSS.getStyle(el);var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0,l=families.length;i<l;++i){family=families[i];if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key))merged[key]=args[key];}}
return merged;}
function process(font,text,style,options,node,el){var separate=options.separate;if(separate=='none')return engines[options.engine].apply(null,arguments);var fragment=document.createDocumentFragment(),processed;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var font,style,node,nodeType,nextNode,redraw;for(node=attach(el,options).firstChild;node;node=nextNode){nodeType=node.nodeType;nextNode=node.nextSibling;redraw=false;if(nodeType==1){if(!node.firstChild)continue;if(!/cufon/.test(node.className)){arguments.callee(node,options);continue;}
else redraw=true;}
else if(nodeType!=3)continue;if(!style)style=CSS.getStyle(el).extend(options);if(!font)font=getFont(el,style);if(!font)continue;if(redraw){engines[options.engine](font,null,style,options,node,el);continue;}
var text=CSS.whiteSpace(node.data,style,node);if(text==='')continue;var processed=process(font,text,style,options,node,el);if(processed)node.parentNode.replaceChild(processed,node);else node.parentNode.removeChild(node);}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||(window.Ext&&Ext.query)||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/[^\S\u00a0]+/,characters:''};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.removeClass(DOM.root(),'cufon-loading');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(typeof options.textShadow=='string')
options.textShadow=CSS.textShadow(options.textShadow);if(typeof options.color=='string'&&/^-/.test(options.color))
options.textGradient=CSS.gradient(options.color);if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('.cufon-canvas{text-indent:0;}'+'@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;'+(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+(HAS_INLINE_BLOCK?'.cufon-canvas canvas{position:relative;}':'.cufon-canvas canvas{position:absolute;}')+'}'+'@media print{'+'.cufon-canvas{padding:0;}'+'.cufon-canvas canvas{display:none;}'+'.cufon-canvas .cufon-alt{display:inline;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,advance,jumps=[];for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;expandRight+=viewBox.width-advance;expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(stretchedWidth))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke();}
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);function renderText(){g.scale(stretchFactor,1);for(var i=0,j=0,l=chars.length;i<l;++i){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[j++],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper;};})());Cufon.registerEngine('vml',(function(){if(!document.namespaces)return;if(document.namespaces.cvml==null){document.namespaces.add('cvml','urn:schemas-microsoft-com:vml');}
var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(document.documentMode||0)<8;document.write(('<style type="text/css">'+'.cufon-vml-canvas{text-indent:0;}'+'@media screen{'+'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}'+'.cufon-vml-canvas{position:absolute;text-align:left;}'+'.cufon-vml{display:inline-block;position:relative;vertical-align:'+(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}'+'a .cufon-vml{cursor:pointer}'+'}'+'@media print{'+'.cufon-vml *{display:none;}'+'.cufon-vml .cufon-alt{display:inline;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing));}
var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('span');canvas.className='cufon-vml-canvas';wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,jumps=[],offsetX=0,advance;var shape,shadows=options.textShadow;for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0,j=0;i<l;++i){glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerFont({"w":200,"face":{"font-family":"bernhard","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 7 4 3 7 3 10 2 4 2","ascent":"277","descent":"-83","cap-height":"2","bbox":"-8 -306 332 91","underline-thickness":"18","underline-position":"-18","stemh":"7","stemv":"22","unicode-range":"U+0020-U+017E"},"glyphs":{" ":{"w":79},"!":{"d":"57,-226r-11,159v0,5,-1,9,-5,9v-11,-27,-5,-123,-13,-159v1,-9,30,-25,29,-9xm59,-13v0,23,-35,21,-35,0v0,-10,8,-18,17,-18v9,0,18,8,18,18","w":86},"\"":{"d":"42,-228v-5,26,-5,57,-14,79v-9,-21,-10,-52,-14,-79v1,-10,14,-3,22,-5v3,0,6,0,6,5xm93,-228v-5,26,-7,55,-14,79v-9,-21,-10,-52,-14,-79v1,-9,24,-8,28,0","w":106},"#":{"d":"168,-70r-11,74r-16,0r11,-74r-58,0r-10,74r-16,0r11,-74r-58,0r3,-15r58,0r6,-45r-56,0r3,-15r56,0r12,-82r15,0r-12,82r58,0r12,-82r15,0r-12,82r60,0r-3,15r-59,0r-7,45r58,0r-3,15r-57,0xm161,-130r-58,0r-6,45r58,0","w":259},"$":{"d":"167,-165v-13,-19,-31,-41,-60,-47r0,82v27,6,74,12,74,59v0,50,-46,75,-74,75v-1,15,4,41,-5,47v-8,-6,-2,-33,-4,-47v-35,-2,-78,-19,-78,-69v0,-9,9,-14,10,-3v10,27,34,47,68,56r0,-92v-23,-5,-71,-12,-71,-58v0,-41,39,-62,71,-65v0,-15,-2,-34,-3,-47r16,-5v-2,15,-4,38,-4,52v24,-5,82,23,60,62xm98,-131r0,-81v-36,0,-58,14,-58,39v0,30,39,37,58,42xm107,-102r0,92v39,0,61,-23,61,-48v0,-33,-41,-39,-61,-44"},"%":{"d":"224,-8v31,0,34,-38,34,-62v0,-34,-6,-70,-32,-70v-31,0,-33,38,-33,62v0,34,5,70,31,70xm217,-227r-127,227r-12,0r127,-227r12,0xm67,-87v31,0,33,-38,33,-62v0,-34,-5,-70,-31,-70v-31,0,-34,38,-34,62v0,34,6,70,32,70xm277,-80v0,43,-20,80,-57,80v-37,0,-47,-36,-47,-69v0,-43,20,-80,57,-80v37,0,47,36,47,69xm120,-158v0,43,-20,80,-57,80v-37,0,-47,-37,-47,-70v0,-43,20,-79,57,-79v37,0,47,36,47,69","w":293},"&":{"d":"152,-204v-9,6,-25,-21,-40,-15v-34,-4,-49,55,-21,75v15,0,47,10,33,19v-36,-13,-77,8,-77,54v0,38,29,65,64,65v53,0,79,-55,54,-94v-12,4,-64,29,-58,54v0,2,-1,3,-3,3v-23,-57,55,-78,92,-95v18,-8,34,-28,18,-41v-10,2,-5,24,-19,22v-6,0,-12,-6,-12,-14v6,-28,46,-22,46,10v0,35,-37,47,-57,57v31,48,-11,110,-69,110v-43,0,-85,-28,-85,-77v-1,-49,42,-68,61,-73v-9,-5,-26,-16,-26,-43v0,-32,26,-46,51,-46v31,0,48,23,48,29","w":233},"(":{"d":"93,-240v-52,62,-53,236,0,298v0,1,-2,2,-3,2v-9,0,-61,-64,-61,-151v0,-87,50,-161,64,-149","w":100},")":{"d":"48,-91v0,-68,-18,-110,-40,-149v0,-1,1,-3,2,-3v9,0,61,65,61,152v0,87,-51,157,-63,149v21,-39,40,-81,40,-149","w":100},"*":{"d":"86,-179v-10,8,15,39,-6,39v-21,0,4,-30,-6,-39v-11,6,-28,32,-35,10v0,-13,32,-10,32,-18v0,-8,-32,-5,-32,-18v8,-27,26,15,38,7v0,-11,-15,-35,3,-35v21,0,-4,30,6,38v11,-6,28,-32,35,-10v0,13,-32,10,-32,18v0,8,32,5,32,18v-8,23,-23,-4,-35,-10","w":159},"+":{"d":"108,-79r0,79r-16,0r0,-79r-78,0r0,-15r78,0r0,-79r16,0r0,79r78,0r0,15r-78,0"},",":{"d":"14,50v3,-8,14,-64,12,-81v1,-5,35,-10,32,2v-4,16,-26,55,-33,75v-2,7,-9,12,-11,4","w":79},"-":{"d":"121,-66r0,18r-102,0r0,-18r102,0","w":140},".":{"d":"58,-13v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":79},"\/":{"d":"89,-233r-72,239r-13,0r72,-239r13,0","w":93},"0":{"d":"180,-123v0,70,-29,127,-86,127v-60,0,-75,-65,-75,-109v0,-72,34,-122,89,-122v56,0,72,52,72,104xm101,-4v47,0,53,-70,53,-105v0,-33,-3,-110,-52,-110v-54,0,-56,72,-56,106v0,46,10,109,55,109","k":{"7":26,"3":6,"2":6,"1":26}},"1":{"d":"116,-227v5,61,-5,152,0,218v9,2,39,0,47,8v-7,7,-102,-2,-119,3v-2,0,-4,-1,-4,-3v8,-9,41,-5,50,-8r0,-194v-18,0,-42,8,-51,-1v0,-4,8,-5,16,-5v33,0,57,-18,61,-18","k":{"1":60,"0":26}},"2":{"d":"14,-2v36,-36,133,-98,131,-161v-2,-50,-63,-52,-93,-26v-26,22,-21,50,-34,37v0,-11,32,-75,93,-75v32,0,61,20,61,58v0,57,-106,138,-133,158v37,3,78,-3,123,-14v2,-12,2,-47,12,-38v-1,9,-3,72,0,84v0,3,-2,3,-4,3v-4,0,-5,-12,-7,-21v-21,-4,-131,-4,-144,-2v-3,0,-5,0,-5,-3","k":{"1":33,"0":6}},"3":{"d":"171,-62v0,39,-36,66,-80,66v-43,0,-92,-31,-77,-41v6,0,29,30,72,30v35,0,60,-20,60,-50v0,-46,-60,-55,-94,-42v-2,0,-4,-2,-4,-4v2,-9,43,-21,66,-19v8,-7,24,-23,24,-44v0,-28,-21,-44,-48,-44v-44,0,-57,43,-68,31v0,-4,32,-48,82,-48v27,0,55,14,55,46v0,30,-24,53,-36,61v21,5,48,18,48,58","k":{"1":26}},"4":{"d":"131,-73r36,0v3,-12,1,-50,12,-43v-1,12,-5,69,0,82v0,2,-1,5,-4,5v-5,0,-7,-18,-8,-25v-7,-1,-18,-1,-36,-1v0,14,0,35,1,46v7,2,44,0,35,11v-12,-5,-100,4,-105,-3v7,-9,37,-5,45,-8v1,-11,1,-32,1,-46v-22,0,-81,1,-90,1v-12,-4,-3,-10,5,-21r98,-146v3,-7,12,-14,12,-4v0,62,-2,126,-2,152xm32,-73r76,0r0,-113","k":{"1":33}},"5":{"d":"170,-239v10,13,-11,41,-38,41r-61,0r-20,58v49,-19,125,-5,124,58v0,49,-42,86,-90,86v-46,0,-78,-49,-49,-80v6,0,4,11,7,20v6,21,28,44,57,44v35,0,59,-23,59,-54v0,-32,-29,-54,-65,-54v-32,0,-50,17,-58,17v-8,0,-2,-11,0,-17r32,-103r68,0v33,0,26,-16,34,-16","k":{"1":33,"0":6}},"6":{"d":"137,-250v-45,40,-82,73,-88,130v10,-14,29,-38,64,-38v40,0,68,34,68,74v0,47,-33,88,-83,88v-46,0,-79,-35,-79,-92v0,-75,94,-163,114,-166v2,0,4,2,4,4xm98,-4v78,-1,72,-140,5,-140v-29,0,-57,24,-57,65v0,32,13,75,52,75","k":{"1":26}},"7":{"d":"45,-227v26,2,110,11,139,-2v14,8,-2,16,-17,42v-41,73,-57,152,-59,178v7,1,49,0,40,11v-3,-7,-126,8,-108,-6v10,-3,31,-5,37,-5v27,-88,48,-134,92,-203v-40,1,-81,1,-124,13v-2,13,-1,38,-11,30v4,-10,-2,-71,2,-79v4,0,7,11,9,21","k":{"1":33,"0":13}},"8":{"d":"179,-67v0,44,-46,71,-88,71v-30,0,-73,-17,-73,-62v0,-35,34,-51,56,-60v-15,-8,-38,-18,-38,-49v0,-31,33,-60,70,-60v24,0,57,15,57,50v0,28,-23,43,-40,51v26,12,56,23,56,59xm112,-131v13,-5,32,-15,32,-34v0,-45,-92,-67,-92,-17v0,30,39,42,60,51xm43,-69v0,67,111,82,118,16v3,-31,-63,-54,-76,-60v-14,5,-42,17,-42,44","k":{"1":26}},"9":{"d":"180,-135v0,75,-94,163,-114,166v-2,0,-4,-2,-4,-4v47,-39,82,-73,88,-130v-10,14,-29,38,-64,38v-40,0,-68,-34,-68,-74v0,-47,33,-88,83,-88v46,0,79,35,79,92xm96,-78v29,0,57,-25,57,-66v0,-32,-13,-75,-52,-75v-78,1,-71,140,-5,141","k":{"1":33}},":":{"d":"58,-13v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,18,8,18,18xm58,-100v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":79},";":{"d":"14,50v3,-8,14,-64,12,-81v1,-5,35,-10,32,2v-4,16,-26,55,-33,75v-2,7,-9,12,-11,4xm59,-100v0,10,-8,17,-18,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v10,0,18,8,18,18","w":79},"<":{"d":"186,-16r0,16r-173,-78r0,-16r173,-78r0,15r-157,71"},"=":{"d":"186,-117r0,15r-172,0r0,-15r172,0xm186,-71r0,15r-172,0r0,-15r172,0"},">":{"d":"187,-78r-173,78r0,-16r157,-70r-157,-71r0,-15r173,78r0,16"},"?":{"d":"52,-96v0,-33,66,-72,66,-98v0,-15,-14,-27,-32,-27v-28,-1,-68,29,-49,60v0,2,-1,3,-2,3v-8,0,-18,-24,-18,-36v0,-56,112,-51,112,11v0,54,-89,75,-51,120v0,2,-1,3,-3,3v-4,0,-23,-16,-23,-36xm86,-13v0,10,-8,17,-17,17v-9,0,-18,-7,-18,-17v0,-25,35,-22,35,0","w":146},"@":{"d":"265,-27r5,10v-25,13,-49,21,-79,21v-99,0,-142,-74,-142,-125v0,-81,64,-135,138,-135v70,0,124,47,124,111v0,38,-25,90,-70,90v-28,0,-32,-24,-36,-27v-12,22,-78,55,-79,-20v0,-27,24,-91,75,-91v17,0,22,11,27,20r3,-15r26,0r-24,96v-1,6,-3,24,14,24v31,0,49,-42,49,-77v0,-44,-40,-101,-109,-101v-60,0,-110,47,-110,130v0,55,47,107,113,107v34,0,53,-8,75,-18xm206,-177v-19,0,-53,29,-53,74v0,22,10,31,24,31v15,0,44,-27,44,-80v0,-16,-4,-25,-15,-25","w":360},"A":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"B":{"d":"71,-116v41,0,100,3,100,-50v0,-51,-52,-63,-99,-53v-1,24,-1,72,-1,103xm174,-57v0,-54,-63,-50,-103,-50v0,27,0,74,1,98v46,11,102,1,102,-48xm16,-229v70,9,176,-28,180,54v2,38,-34,52,-52,62v22,2,58,10,58,50v0,82,-107,62,-186,65v-4,0,-4,-5,-1,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-4,0,-40,0,-29,-10","w":219,"k":{"T":13,"V":13,"W":13,"Y":13,"\u00dd":13,"\u0178":13,".":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"C":{"d":"211,-35v4,19,-34,41,-78,41v-65,0,-111,-47,-111,-114v0,-96,91,-150,181,-114v1,-8,4,-34,11,-22v-5,17,2,91,-4,104v-10,-7,-7,-45,-9,-53v-44,-45,-157,-39,-157,59v0,67,44,127,105,127v42,0,57,-28,62,-28","w":233,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"D":{"d":"70,-9v75,17,136,-23,133,-107v-4,-90,-61,-116,-133,-103r0,210xm14,-229v28,3,68,-1,98,-1v75,0,117,46,117,114v0,94,-77,131,-172,116v-15,-2,-36,6,-46,-1v4,-8,28,-7,33,-8r0,-210v-4,0,-41,-1,-30,-10","w":246,"k":{"T":13,"V":13,"Y":20,"\u00dd":20,"\u0178":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"E":{"d":"174,-105v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-10,4,-38,11,-26v-1,14,-3,46,0,62v-5,7,-10,-8,-10,-8v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v54,3,135,-1,154,-5v2,-9,4,-19,10,-13v-5,15,4,61,-4,69v-5,0,-6,-22,-7,-33v-36,-9,-69,-9,-109,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v1,-9,3,-26,9,-26v3,11,1,65,0,79v-6,0,-8,-24,-9,-30","w":219},"F":{"d":"174,-105v-27,-5,-61,-6,-102,-6v0,31,3,78,4,102v6,0,49,2,36,11v-3,0,-24,-2,-52,-2v-29,0,-40,7,-46,-1v4,-7,27,-7,33,-8v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v54,3,135,-1,154,-5v2,-10,5,-20,10,-12v-5,14,4,60,-4,68v-5,0,-6,-22,-7,-33v-36,-9,-69,-9,-109,-9v-1,25,-3,71,-3,99v41,0,75,-2,102,-8v1,-9,3,-26,9,-26v3,11,1,65,0,79v-6,0,-8,-24,-9,-30","w":206,"k":{"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,",":33,".":33,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13}},"G":{"d":"202,-24r0,-79v-5,0,-44,-1,-31,-10v3,0,21,2,45,2v20,0,28,-6,31,1v-1,6,-14,7,-18,7v1,25,-5,57,2,77v0,6,-7,4,-16,6v-18,4,-59,26,-85,26v-55,0,-111,-39,-111,-110v0,-97,110,-163,195,-110v1,-9,5,-40,13,-28v-2,10,-5,69,-4,94v0,2,0,5,-3,5v-6,0,-7,-28,-8,-41v-17,-16,-41,-37,-82,-37v-41,0,-88,30,-88,92v-1,95,89,152,160,105","w":259,"k":{"T":13,"V":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13}},"H":{"d":"70,-118r120,0v0,-29,0,-77,-1,-101v-4,0,-41,-1,-30,-10v4,6,100,-7,87,6v-8,3,-26,4,-31,4r0,210v4,0,43,3,29,11v-4,-7,-100,8,-86,-6v8,-3,26,-5,31,-5v1,-24,1,-72,1,-101r-120,0v0,29,0,77,1,101v4,0,43,3,29,11v-4,-7,-100,8,-86,-6v8,-3,26,-5,31,-5r0,-210v-4,0,-41,-1,-30,-10v4,6,100,-7,87,6v-8,3,-26,4,-31,4v-1,24,-1,72,-1,101","w":259},"I":{"d":"73,-9v4,0,42,3,29,11v-4,-7,-100,8,-86,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-4,0,-40,0,-29,-10v4,6,103,-7,86,6v-8,3,-25,4,-30,4r0,210","w":119},"J":{"d":"-8,71v9,-17,54,-24,54,-97v0,-60,-1,-149,-4,-193v-4,0,-38,-1,-27,-10v4,6,98,-8,84,6v-8,3,-26,4,-31,4v0,46,2,135,2,190v0,57,-39,82,-74,102v-2,0,-4,-1,-4,-2","w":113,"k":{"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"K":{"d":"81,-113v79,-17,97,99,131,104v7,0,13,-9,16,-2v0,5,-12,19,-27,19v-30,0,-51,-57,-84,-95v-4,-7,-19,-20,-47,-18v0,29,0,73,1,96v4,0,43,3,29,11v-4,-7,-100,8,-86,-6v8,-3,26,-5,31,-5r0,-210v-4,0,-41,-1,-30,-10v4,6,100,-7,87,6v-8,3,-26,4,-31,4v-1,26,-1,76,-1,107v16,-13,86,-86,105,-106v-4,1,-32,-5,-19,-11v1,0,16,2,35,2v19,0,31,-6,34,1v-54,19,-95,71,-144,113","w":226},"L":{"d":"72,-8v43,1,79,-4,112,-14v1,-10,4,-41,11,-27v-1,12,-3,49,0,61v0,4,0,5,-3,5v-4,0,-5,-5,-7,-11v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5r0,-210v-4,0,-42,-2,-29,-10v4,7,100,-8,86,6v-8,3,-25,4,-30,4v-1,24,-2,72,-2,105v0,33,1,82,2,106","w":206,"k":{"y":13,"\u00fd":13,"\u00ff":13,"T":26,"V":26,"W":26,"Y":26,"\u00dd":26,"\u0178":26}},"M":{"d":"54,-9v5,2,43,0,33,11v-6,-4,-78,3,-81,-3v3,-7,24,-6,29,-8v10,-56,18,-132,21,-183v-5,-8,-9,-16,-11,-20v-7,-15,-31,-5,-18,-17v16,2,20,2,41,0v14,41,55,119,77,165v20,-44,43,-115,61,-165v15,6,45,-4,53,3v-2,6,-21,6,-26,8v0,31,12,164,18,209v5,2,36,2,26,11v-10,-5,-86,4,-91,-3v5,-8,30,-6,36,-8r-14,-199v-7,17,-53,153,-68,181v-32,-54,-56,-115,-76,-150v-5,47,-13,111,-10,168","w":286},"N":{"d":"46,-148v0,-48,4,-59,-32,-77v6,-10,27,3,42,-4r143,184v6,-47,1,-144,-4,-174v-4,0,-40,0,-29,-10v2,0,17,2,40,2v23,0,36,-7,40,1v-3,8,-24,6,-29,7v-9,37,-7,170,-6,219v0,5,-2,6,-4,6r-152,-195v-4,50,1,148,7,180v4,0,47,2,34,11v-3,0,-20,-2,-45,-2v-26,0,-36,7,-40,-1v3,-8,24,-7,29,-8v4,-24,6,-88,6,-139","w":253,"k":{"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"O":{"d":"261,-118v0,68,-48,124,-124,124v-71,0,-118,-52,-118,-115v0,-68,48,-124,124,-124v71,0,118,52,118,115xm159,-8v43,0,86,-37,86,-87v0,-69,-65,-125,-124,-125v-43,0,-86,38,-86,88v0,69,65,124,124,124","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"P":{"d":"16,-229v74,10,165,-32,179,57v-4,62,-68,80,-125,69v0,27,1,72,2,94v7,1,48,0,39,11v-3,0,-24,-2,-53,-2v-29,0,-40,7,-46,-1v4,-7,27,-7,33,-8r0,-210v-4,0,-42,-2,-29,-10xm70,-111v48,6,100,0,100,-52v0,-50,-51,-67,-98,-56v-1,30,-2,86,-2,108","w":206,"k":{"c":20,"\u00e7":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,",":40,".":40,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20}},"Q":{"d":"130,17v31,4,111,45,144,17v1,0,2,1,2,2v0,5,-29,26,-52,26v-47,0,-110,-41,-165,-30v-2,0,-5,-1,-5,-3v4,-16,70,-10,87,-23v-70,0,-117,-53,-117,-117v0,-67,48,-122,124,-122v71,0,118,53,118,114v0,99,-70,120,-136,136xm165,-6v43,0,86,-37,86,-89v0,-69,-66,-125,-125,-125v-43,0,-86,38,-86,88v0,71,66,126,125,126","w":286,"k":{"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"R":{"d":"106,-105v9,7,82,115,91,99v10,1,13,-9,17,-3v0,6,-16,17,-33,17v-14,0,-23,-7,-31,-18r-75,-100v26,-11,91,13,91,-51v0,-47,-48,-70,-97,-58v-1,25,-2,75,-2,105v0,30,1,80,2,105v5,1,43,1,33,11v-3,-6,-107,7,-90,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v68,5,166,-24,166,54v0,49,-53,69,-86,69","w":213,"k":{"T":6,"V":6,"W":6,"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"167,-242v3,16,-7,54,-3,81v0,3,-2,4,-3,4v-6,0,-5,-25,-6,-37v-30,-37,-125,-38,-125,26v0,66,145,16,145,97v0,70,-86,94,-145,64v-4,10,-6,27,-12,20v8,-17,-1,-81,5,-94v6,0,8,30,9,44v12,11,38,31,72,31v33,0,61,-21,61,-52v0,-42,-63,-36,-98,-45v-29,-7,-47,-25,-47,-56v-2,-67,87,-89,137,-61v3,-8,6,-22,10,-22","w":193,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"T":{"d":"123,-9v4,0,41,2,29,11v-4,-7,-100,8,-86,-6v8,-3,25,-5,30,-5v1,-24,2,-71,2,-104v0,-34,-1,-82,-2,-107v-28,-3,-54,3,-76,10v-1,10,-3,44,-11,29v2,-15,3,-48,0,-64v0,-2,1,-3,4,-3v4,0,4,7,6,15v60,9,122,8,182,0v1,-11,5,-20,10,-12v-3,16,-3,49,0,64v0,2,-1,4,-4,4v-5,0,-7,-24,-8,-33v-22,-7,-48,-13,-76,-10r0,211","w":219,"k":{"\u00f9":13,"\u00fc":13,"\u0161":20,"\u00f2":33,"\u00f6":33,"\u00f4":33,"\u00e8":33,"\u00eb":33,"\u00ea":33,"\u00e3":33,"\u00e5":33,"\u00e0":33,"\u00e2":33,"w":13,"y":13,"\u00fd":13,"\u00ff":13,"c":33,"\u00e7":33,"C":13,"\u00c7":13,"e":33,"\u00e9":33,"G":13,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f5":33,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"s":20,"u":13,"\u00fa":13,"\u00fb":13,"-":13,",":40,".":40,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40,"a":33,"\u00e6":33,"\u00e1":33,"\u00e4":33,"r":13,"S":6,"\u0160":6,":":13,";":13}},"U":{"d":"126,6v-71,-4,-85,-27,-85,-119v0,-33,0,-82,-1,-106v-4,0,-41,-1,-30,-10v4,6,111,-7,93,6v-10,3,-30,4,-37,4v-1,24,-1,86,-1,121v-2,57,5,94,61,96v102,3,75,-132,71,-217v-5,0,-45,-1,-32,-10v4,6,95,-7,79,6v-8,3,-23,4,-28,4v-12,85,20,232,-90,225","w":253,"k":{"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26}},"V":{"d":"48,-219r77,191v22,-46,55,-132,68,-191v-5,0,-39,-2,-26,-10v5,6,79,-7,67,6v-6,3,-17,4,-21,4r-90,214v-2,14,-10,12,-15,0r-87,-214v-4,0,-32,-2,-21,-10v5,6,89,-6,72,6v-6,4,-20,4,-24,4","w":233,"k":{"\u00f6":40,"\u00e8":40,"\u00eb":40,"\u00e3":40,"\u00e5":40,"\u00e0":40,"\u00e4":40,"\u00e2":40,"w":33,"y":33,"\u00fd":33,"\u00ff":33,"e":40,"\u00e9":40,"\u00ea":40,"G":20,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f2":40,"\u00f5":40,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":33,"\u00fa":33,"\u00fb":33,"\u00fc":33,"\u00f9":33,"-":33,",":53,".":53,"A":53,"\u00c6":53,"\u00c1":53,"\u00c2":53,"\u00c4":53,"\u00c0":53,"\u00c5":53,"\u00c3":53,"a":40,"\u00e6":40,"\u00e1":40,"r":33,"S":6,"\u0160":6,":":33,";":33}},"W":{"d":"154,-82r-38,91v-38,-71,-63,-154,-97,-228v-4,1,-32,-4,-19,-10v10,5,148,-4,151,3v-3,7,-23,6,-28,7r39,96v11,-28,25,-73,30,-96v-5,0,-40,-2,-26,-10v4,5,141,-4,144,3v-1,7,-17,7,-20,7r-98,228v-17,-25,-24,-62,-38,-91xm97,-219r-49,0r76,191v5,-13,17,-40,26,-63xm200,-25r26,-67v14,-35,36,-101,43,-127r-59,0v-8,18,-34,81,-44,107","w":306,"k":{"\u00fc":33,"\u00f6":40,"\u00e4":40,"y":33,"\u00fd":33,"\u00ff":33,"C":20,"\u00c7":20,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"G":20,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f2":40,"\u00f5":40,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":33,"\u00fa":33,"\u00fb":33,"\u00f9":33,"-":33,",":53,".":53,"A":53,"\u00c6":53,"\u00c1":53,"\u00c2":53,"\u00c4":53,"\u00c0":53,"\u00c5":53,"\u00c3":53,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"r":33,"S":6,"\u0160":6,":":33,";":33}},"X":{"d":"61,-219r60,89v11,-16,51,-77,56,-89v-5,0,-38,-2,-25,-10v3,6,88,-6,71,6v-6,4,-19,4,-23,4v-29,31,-55,66,-75,96v20,28,64,92,83,114v4,0,36,4,23,11v-3,-7,-101,8,-88,-6v8,-3,26,-5,32,-5v-6,-10,-42,-61,-64,-93v-15,22,-42,61,-56,93v5,0,45,2,32,11v-2,-6,-95,7,-82,-6v7,-3,22,-5,27,-5v20,-22,61,-80,74,-100v-12,-18,-58,-87,-77,-110v-4,1,-31,-5,-18,-10v4,6,94,-8,80,6v-8,3,-25,4,-30,4","w":240,"k":{"y":13,"\u00fd":13,"\u00ff":13,"C":13,"\u00c7":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"S":6,"\u0160":6}},"Y":{"d":"188,-219v-14,18,-61,89,-70,105v0,33,1,81,2,105v5,1,43,1,33,11v-4,-7,-108,8,-94,-6v9,-3,28,-5,34,-5v1,-23,2,-70,2,-98r-71,-112v-4,1,-35,-3,-21,-10v3,6,89,-7,76,6v-6,3,-21,4,-25,4v8,13,40,67,60,98v16,-24,47,-77,55,-98v-4,0,-42,-2,-29,-10v3,6,84,-7,71,6v-6,3,-19,4,-23,4","w":213,"k":{"\u00f6":46,"v":40,"e":46,"\u00e9":46,"\u00ea":46,"\u00eb":46,"\u00e8":46,"o":46,"\u00f8":46,"\u0153":46,"\u00f3":46,"\u00f4":46,"\u00f2":46,"\u00f5":46,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":46,"u":40,"\u00fa":40,"\u00fb":40,"\u00fc":40,"\u00f9":40,"-":40,",":46,".":46,"A":46,"\u00c6":46,"\u00c1":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u00c5":46,"\u00c3":46,"a":46,"\u00e6":46,"\u00e1":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"\u00e5":46,"\u00e3":46,":":40,";":40,"p":40}},"Z":{"d":"18,0v31,-56,94,-148,138,-220v-38,1,-87,1,-127,11v0,9,-5,48,-11,27v1,-13,3,-42,0,-60v0,-5,1,-6,4,-6v4,0,5,8,7,15v26,7,118,5,157,5r-62,98v-41,65,-59,98,-71,122v40,0,84,-1,127,-13v-1,-6,4,-42,12,-25v-4,15,-2,49,0,61v0,1,-1,3,-4,3v-4,0,-5,-6,-7,-12v-45,-9,-120,-3,-163,-6","w":206,"k":{"y":6,"\u00fd":6,"\u00ff":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"[":{"d":"59,49v11,2,30,-4,35,4v-10,9,-37,2,-54,4v-5,0,-5,-2,-5,-7r0,-277v0,-5,0,-6,5,-6v17,2,43,-5,54,4v-4,9,-24,2,-35,4r0,274","w":100},"\\":{"d":"17,-233r72,239r-13,0r-72,-239r13,0","w":93},"]":{"d":"66,-227r0,277v0,5,-1,7,-6,7v-17,-2,-43,5,-54,-4v4,-9,24,-2,35,-4r0,-274v-11,-2,-30,4,-35,-4v10,-9,37,-2,54,-4v5,0,6,1,6,6","w":100},"^":{"d":"108,-227r78,138r-15,0r-71,-126r-70,126r-16,0r78,-138r16,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"a":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7","w":146},"b":{"d":"51,-10r0,12v-14,-5,-43,3,-48,-2v3,-8,17,-6,26,-8r-1,-232v2,-22,-15,-16,-23,-10v-2,0,-3,-1,-3,-3v0,-5,30,-24,45,-24v6,0,7,5,7,11v0,23,-2,125,-2,170v11,-8,30,-22,50,-22v30,0,41,28,41,55v0,39,-18,67,-54,67v-21,0,-34,-10,-38,-14xm52,-86v-3,41,-3,81,34,82v21,0,33,-24,33,-55v0,-25,-10,-45,-31,-45v-15,0,-27,11,-36,18","w":159,"k":{"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13}},"c":{"d":"124,-30v-11,44,-110,49,-110,-23v0,-47,54,-80,97,-58v2,-9,6,-20,10,-10v-5,9,1,53,-4,58v-4,0,-6,-19,-7,-26v-16,-25,-76,-34,-76,20v0,36,25,58,49,58v27,0,32,-30,41,-19","w":140,"k":{",":6,".":6}},"d":{"d":"132,-266r-2,239v0,11,0,15,5,15v12,1,22,-21,26,-11v0,6,-18,27,-37,27v-12,1,-18,-9,-16,-24v-22,37,-97,30,-92,-34v-8,-50,60,-85,92,-48v0,-30,-1,-105,-1,-138v0,-22,-15,-16,-24,-10v-2,0,-2,-1,-2,-3v0,-5,30,-24,45,-24v6,0,6,5,6,11xm108,-31r0,-61v-5,-7,-17,-19,-34,-19v-22,0,-34,22,-34,52v0,55,53,57,68,28","w":166},"e":{"d":"126,-64r-91,0v0,21,14,54,46,54v32,0,32,-30,42,-22v0,7,-17,36,-52,36v-35,0,-57,-24,-57,-58v0,-30,20,-64,60,-64v37,0,52,24,52,54xm35,-71r67,-1v0,-17,-5,-40,-31,-40v-29,0,-35,29,-36,41","w":140,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13,"x":6}},"f":{"d":"104,-116r0,13v-13,-1,-27,-2,-43,-2v0,23,0,77,1,97v11,1,26,2,36,4v3,0,3,2,3,4v-4,3,-74,1,-87,0v2,-8,15,-6,24,-8v1,-20,1,-74,1,-97v-10,0,-19,1,-29,2r0,-13v9,2,18,2,29,2v-2,-25,-8,-120,11,-130v1,-10,58,-56,58,-17v0,9,-7,15,-16,15v-15,0,-12,-13,-17,-13v-14,0,-15,46,-15,49v0,46,1,85,1,96v17,0,30,0,43,-2","w":113},"g":{"d":"33,-13v4,17,95,-7,95,30v0,31,-31,55,-67,55v-18,0,-41,-9,-41,-25v0,-12,11,-26,16,-33v-29,0,-14,-38,0,-45v-42,-25,-3,-91,44,-87v25,2,29,16,34,-2v-3,-12,-21,-26,-1,-32v24,1,17,39,1,45v34,26,-1,85,-47,85v-14,0,-22,-4,-26,-6v-3,3,-8,10,-8,15xm30,-77v-1,34,82,60,87,14v3,-36,-84,-60,-87,-14xm116,30v0,-14,-18,-15,-72,-15v-4,5,-14,17,-14,27v10,36,86,20,86,-12","w":146},"h":{"d":"164,-4v5,1,6,7,0,6v-7,-4,-65,2,-68,-2v2,-8,16,-6,24,-8v-2,-33,14,-98,-24,-96v-18,0,-33,8,-43,14v0,19,0,57,1,82v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8r0,-232v2,-21,-16,-17,-24,-10v-2,0,-3,-1,-3,-3v0,-5,30,-24,45,-24v6,0,7,5,7,11v0,23,-2,133,-2,168v25,-20,91,-36,91,12r0,78v7,1,15,2,20,4","w":173,"k":{"y":13,"\u00fd":13,"\u00ff":13}},"i":{"d":"9,-106v5,-1,62,-31,50,2r0,96v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r1,-96v-6,-1,-24,5,-27,-2xm61,-190v0,9,-7,16,-16,16v-9,0,-17,-7,-17,-16v0,-9,8,-17,17,-17v9,0,16,8,16,17","w":93},"j":{"d":"5,-106v5,-1,65,-30,50,2v-1,42,4,129,-13,145v-11,10,-31,35,-38,25v37,-26,29,-107,28,-170v-6,-1,-24,5,-27,-2xm58,-190v0,9,-8,16,-17,16v-9,0,-17,-7,-17,-16v0,-9,8,-17,17,-17v9,0,17,8,17,17","w":79},"k":{"d":"84,-62r7,10v16,-6,39,-15,39,-35v0,-38,-62,0,-68,-9v7,-15,91,-39,90,2v-1,25,-34,38,-57,46v14,13,36,40,47,40v10,0,11,-15,17,-6v-22,46,-84,-17,-102,-40xm54,-8v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r0,-232v2,-22,-15,-16,-24,-10v-2,0,-2,-1,-2,-3v0,-5,30,-24,45,-24v6,0,6,5,6,11","w":166},"l":{"d":"60,-8v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8r0,-232v2,-21,-16,-17,-24,-10v-2,0,-3,-1,-3,-3v0,-5,30,-24,45,-24v6,0,7,5,7,11","w":93},"m":{"d":"57,-90r1,82v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8v2,-27,1,-68,0,-96v-5,-1,-26,5,-27,-2v0,-5,3,-3,28,-9v16,-4,19,-10,23,0v0,3,-1,13,-1,18v25,-17,77,-36,86,0v26,-20,89,-37,88,11r0,78v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8v-2,-33,14,-98,-24,-96v-17,0,-29,8,-39,14r1,82v8,1,29,3,20,10v-7,-4,-66,2,-69,-2v2,-8,16,-6,25,-8v-2,-33,14,-98,-24,-96v-17,0,-30,8,-40,14","w":259,"k":{"w":6,"y":13,"\u00fd":13,"\u00ff":13}},"n":{"d":"173,0v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8v-2,-33,14,-98,-24,-96v-17,0,-31,8,-41,14r1,82v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8v2,-27,1,-68,0,-96v-5,-1,-27,5,-28,-2v0,-5,4,-3,29,-9v12,-3,16,-5,19,-5v7,2,1,16,3,23v27,-19,90,-38,89,11r0,78v9,2,21,1,24,8","w":180,"k":{"w":6,"y":13,"\u00fd":13,"\u00ff":13}},"o":{"d":"16,-50v-2,-75,131,-100,134,-15v8,78,-132,99,-134,15xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"p":{"d":"94,67v-4,3,-75,1,-88,0v2,-8,16,-6,24,-8r0,-163v-5,-1,-26,5,-27,-2v0,-5,3,-4,28,-9v16,-3,19,-10,23,0v0,4,-1,14,-1,20v9,-8,25,-23,49,-23v76,0,40,122,-13,122v-19,0,-28,-9,-36,-14v0,15,0,55,1,69v12,3,34,-1,40,8xm53,-85r0,62v8,9,21,19,36,19v23,0,31,-25,31,-51v0,-19,-4,-49,-31,-49v-18,0,-30,13,-36,19","w":159,"k":{"w":6,"y":13,"\u00fd":13,"\u00ff":13}},"q":{"d":"136,-110v-18,39,-4,114,-7,169v8,2,22,0,24,8v-7,2,-83,2,-88,0v5,-9,28,-5,40,-8v1,-16,1,-53,1,-73v-29,32,-93,21,-92,-39v0,-42,31,-65,57,-65v24,0,34,18,38,18v1,1,24,-33,42,-18v0,5,-9,2,-15,8xm106,-25r0,-64v-14,-32,-68,-25,-68,26v0,25,8,55,38,55v15,0,25,-10,30,-17","w":153},"r":{"d":"33,-115v30,-17,19,17,23,39v4,-15,19,-44,40,-44v9,0,16,7,16,16v1,18,-27,14,-30,6v-27,5,-30,56,-25,90v11,1,26,2,36,4v3,0,3,2,3,4v-4,3,-75,1,-88,0v2,-8,15,-6,24,-8v2,-28,1,-68,0,-96v-5,-1,-26,5,-27,-2v0,-5,3,-3,28,-9","w":119,"k":{",":26,".":26}},"s":{"d":"26,-89v4,32,80,1,80,51v0,38,-49,50,-80,37v-1,7,-5,17,-9,11v3,-5,-2,-50,4,-55v4,0,6,16,7,24v18,16,68,21,68,-8v0,-21,-32,-12,-56,-21v-41,-15,-22,-68,21,-68v16,0,23,3,32,7v2,-7,5,-16,9,-10v-4,5,2,48,-4,48v-4,0,-6,-15,-7,-21v-12,-15,-61,-24,-65,5","w":119,"k":{"y":6,"\u00fd":6,"\u00ff":6,",":6,".":6}},"t":{"d":"101,-116r0,13v-14,-1,-30,-3,-47,-3r0,80v4,34,44,-6,49,4v0,7,-20,26,-41,26v-49,0,-26,-78,-30,-109v-10,0,-17,1,-27,2r0,-13v9,2,17,2,27,2r0,-69r25,0v-1,23,-3,57,-3,69v17,0,34,0,47,-2","w":106},"u":{"d":"114,2r0,-18v-16,15,-87,40,-87,-12r0,-74v-7,-1,-19,3,-23,-2v0,-5,3,-3,25,-9v16,-4,18,-10,22,0v-2,24,1,55,-1,81v-3,34,51,23,64,10r-1,-80v-8,-1,-20,3,-24,-2v0,-5,3,-3,25,-9v17,-4,18,-10,23,0r0,105v8,2,22,0,24,8v-7,6,-30,-4,-47,2","w":166},"v":{"d":"116,-105v-7,-2,-25,-6,-14,-11v6,5,65,-5,47,6v-4,2,-10,4,-16,5v-10,23,-44,86,-52,105v-3,8,-10,7,-11,0r-48,-105v-6,-1,-26,-6,-15,-11v5,4,58,-3,59,3v-2,6,-12,5,-20,8r38,85v15,-33,26,-63,32,-85","w":153,"k":{"c":6,"\u00e7":6,"d":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"g":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"s":6,"\u0161":6,",":26,".":26,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"w":{"d":"200,-113v-7,10,-20,2,-23,22r-44,92v-1,7,-10,6,-11,0r-23,-60v-9,16,-17,48,-34,65v-4,0,-4,-3,-6,-8r-40,-104v-7,-1,-24,-6,-13,-10v10,6,170,-8,101,10v4,12,26,76,30,84v8,-19,25,-65,29,-83v-7,-2,-25,-5,-16,-11v4,4,48,-3,50,3xm82,-105r-38,0v3,7,26,71,30,83v5,-11,18,-43,21,-50v-3,-7,-10,-26,-13,-33","k":{"c":6,"\u00e7":6,"d":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"s":6,"\u0161":6,",":26,".":26,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"x":{"d":"57,-105r27,35v8,-8,19,-23,24,-35v-6,-2,-23,-7,-12,-11v8,5,59,-3,58,3v-3,6,-14,6,-22,8v-20,14,-27,21,-44,40v9,12,33,41,46,57v6,2,19,1,20,8v-4,3,-62,1,-69,0v1,-7,13,-5,20,-8v-6,-9,-21,-32,-29,-42v-9,12,-21,29,-27,42v7,3,20,1,22,8v-5,3,-59,1,-66,0v2,-7,14,-6,22,-8v13,-13,33,-34,44,-47v-13,-14,-31,-51,-61,-55v-2,-1,-3,1,-3,-3v0,-7,57,2,66,-3v2,0,4,1,4,3v-3,5,-13,5,-20,8","w":159,"k":{"c":6,"\u00e7":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"y":{"d":"109,-105v-6,-2,-22,-6,-13,-11v5,5,62,-5,44,6v-4,2,-8,4,-13,5v-4,12,-81,187,-100,174v-9,0,-16,-6,-16,-16v-1,-18,24,-19,29,-7v7,-8,21,-28,27,-41r-46,-110v-6,-1,-27,-6,-16,-11v11,3,89,-4,41,11v3,11,25,66,33,85v12,-28,25,-64,30,-85","w":146,"k":{"c":13,"\u00e7":13,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"s":6,"\u0161":6,",":26,".":26,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13}},"z":{"d":"17,-1v18,-29,68,-87,81,-106v-30,0,-53,5,-68,11v0,9,-6,24,-9,13v3,-13,-1,-34,2,-47v4,0,6,8,7,14v31,9,72,-5,98,3v0,2,-5,9,-12,16v-30,35,-46,58,-68,91v36,0,56,-1,71,-13v1,-7,5,-23,9,-14v-3,11,1,41,-3,48v-4,0,-5,-8,-6,-13v-23,-2,-71,-3,-98,0v-3,0,-4,-1,-4,-3","w":146,"k":{"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"{":{"d":"116,-26v0,44,-15,95,27,108r0,9v-29,-1,-62,-26,-62,-61v0,-47,21,-100,-23,-114r0,-9v17,-6,32,-21,32,-45v-1,-20,-9,-45,-9,-69v0,-35,33,-60,62,-61r0,9v-42,12,-27,64,-27,108v0,40,-30,55,-45,63v15,8,45,23,45,62"},"|":{"d":"51,-270r0,360r-16,0r0,-360r16,0","w":86},"}":{"d":"111,-38v1,19,9,44,8,68v0,35,-32,60,-61,61r0,-9v42,-12,27,-64,27,-108v0,-40,30,-54,45,-62v-15,-8,-45,-24,-45,-63v0,-44,15,-95,-27,-108r0,-9v29,1,61,26,61,61v1,24,-7,50,-8,69v0,22,15,39,32,45r0,9v-17,6,-32,22,-32,46"},"~":{"d":"183,-108r12,0v0,14,-10,50,-46,50v-38,-1,-65,-39,-101,-39v-23,0,-27,16,-31,33r-12,0v0,-24,17,-51,46,-51v38,0,64,39,101,39v24,0,26,-14,31,-32"},"\u00a1":{"d":"30,62r11,-159v0,-5,0,-9,4,-9v12,27,6,122,13,159v-1,10,-29,25,-28,9xm63,-151v0,25,-36,22,-36,0v0,-24,36,-21,36,0","w":86},"\u00a2":{"d":"168,-80v5,16,-31,37,-59,40v-2,13,5,34,-4,40v-11,-4,-2,-27,-5,-39v-19,-2,-70,-15,-70,-70v0,-53,44,-71,70,-75r0,-58r9,0r0,58v11,3,58,4,58,27v0,18,-3,35,-7,35v-6,0,0,-49,-51,-53r0,120v40,0,53,-25,59,-25xm100,-57r0,-118v-20,3,-44,17,-44,56v0,40,18,52,44,62"},"\u00a3":{"d":"168,-176v-11,-18,-31,-42,-64,-41v-19,0,-38,12,-38,33v0,22,23,56,29,70v15,0,42,-1,57,-1v0,21,-32,8,-54,10v12,22,3,63,-11,76v17,7,30,12,47,12v40,2,52,-45,61,-33v0,8,-12,54,-51,54v-22,0,-47,-14,-64,-23v-10,11,-22,24,-41,24v-14,0,-30,-6,-30,-23v0,-33,49,-28,69,-14v15,-19,2,-55,-9,-73v-25,-3,-53,10,-52,-10r49,1v-32,-39,-18,-119,48,-119v35,0,68,26,54,57xm19,-19v4,28,46,10,52,-4v-9,-8,-51,-23,-52,4"},"\u00a5":{"d":"179,-122r0,10v-30,-1,-56,-1,-65,-1v0,33,1,80,2,104v5,0,45,2,32,11v-4,-6,-109,7,-92,-6v9,-3,28,-5,34,-5v1,-25,1,-74,1,-104v-9,0,-35,0,-65,1r0,-10v26,1,45,2,60,2v-4,-6,-12,-18,-17,-28v-11,0,-23,0,-43,1r0,-9v19,1,33,1,39,1v-19,-31,-31,-52,-39,-64v-5,1,-35,-3,-22,-10v3,6,92,-7,76,6v-6,3,-21,4,-25,4v7,13,37,64,56,94v15,-23,42,-74,50,-94v-4,0,-42,-2,-29,-10v3,6,87,-6,70,6v-6,4,-19,4,-23,4r-41,64v7,0,20,0,41,-1r0,9v-21,-1,-33,-1,-45,-1v-5,10,-12,22,-16,28v15,0,36,-1,61,-2"},"\u00a7":{"d":"55,-194v-1,40,109,41,109,99v0,23,-19,26,-12,48v0,37,-33,51,-58,51v-23,0,-54,-12,-54,-44v0,-18,13,-37,21,-30v-18,26,13,60,46,59v14,0,34,-7,34,-27v1,-40,-109,-43,-109,-101v0,-23,19,-25,12,-46v0,-34,30,-48,57,-48v23,0,54,12,54,41v0,18,-13,37,-21,30v18,-26,-13,-60,-46,-59v-14,0,-33,7,-33,27xm146,-69v29,-52,-84,-64,-96,-93v-16,15,1,35,19,45v38,21,59,22,77,48"},"\u00a4":{"d":"185,-40r-11,11r-24,-24v-30,24,-72,21,-100,0r-24,24r-11,-11r24,-24v-24,-28,-21,-72,1,-99r-26,-25r12,-11r25,24v28,-21,70,-21,98,0r25,-24r11,11r-25,25v23,26,23,72,1,99xm100,-176v-35,0,-63,28,-63,63v0,35,28,62,63,62v34,0,63,-28,63,-62v0,-35,-28,-63,-63,-63"},"'":{"d":"40,-228v-2,28,-7,55,-13,79v-9,-21,-10,-52,-14,-79v1,-10,13,-3,21,-5v3,0,6,0,6,5","w":53},"\u00ab":{"d":"59,-113r-34,56r34,56v0,1,-1,2,-2,2v-24,-20,-42,-41,-52,-58v11,-17,28,-37,52,-58v1,0,2,1,2,2xm102,-115v5,15,-27,42,-32,58v6,15,36,44,32,58v-23,-20,-43,-40,-51,-58v9,-17,27,-38,51,-58","w":113},"\u00b7":{"d":"118,-114v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-17,18,-17v10,0,18,7,18,17"},"\u00b6":{"d":"158,-245r0,312r-14,0r0,-312r-22,0r0,312r-13,0r0,-157v-30,-4,-79,-24,-79,-82v0,-79,72,-90,149,-86r0,13r-21,0"},"\u00bb":{"d":"108,-57v-8,20,-29,35,-51,58v-1,0,-3,-1,-3,-2r35,-56r-35,-56v0,-1,2,-2,3,-2v22,21,42,41,51,58xm63,-57v-8,19,-29,37,-52,58v-1,0,-2,-1,-2,-2r34,-56r-34,-56v0,-1,1,-2,2,-2v23,20,43,42,52,58","w":113},"\u00bf":{"d":"94,-68v0,33,-66,72,-66,98v0,15,14,27,32,27v27,1,68,-30,49,-60v0,-2,2,-3,3,-3v8,0,17,24,17,36v0,57,-112,50,-112,-11v0,-54,89,-75,51,-120v0,-2,1,-3,3,-3v4,0,23,16,23,36xm95,-151v0,25,-35,22,-35,0v0,-10,8,-17,17,-17v9,0,18,7,18,17","w":146},"`":{"d":"16,-177v32,-13,45,23,60,39v-2,4,-6,2,-8,-1","w":108},"\u00b4":{"d":"45,-138v9,-17,27,-32,35,-42v7,1,28,-4,22,5r-54,39v-1,0,-3,0,-3,-2","w":108},"\u00af":{"d":"91,-165r0,15r-72,0r0,-15r72,0","w":108},"\u00a8":{"d":"43,-158v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,14,5,14,13xm93,-158v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,13,5,13,13","w":108},"\u00b8":{"d":"62,-2r-14,20v14,-1,25,1,27,17v4,26,-43,32,-49,14v3,-8,7,2,17,2v18,0,20,-27,2,-24v-10,1,-12,-1,-6,-7v8,-7,6,-24,23,-22","w":108},"\u00c6":{"d":"113,-120r70,0v0,-29,-3,-75,-3,-99xm309,-105v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-11,2,-38,11,-26v-1,14,-3,46,0,62v-5,7,-8,0,-10,-8v-52,-6,-121,-8,-171,-4v-4,0,-4,-5,-1,-6v8,-3,25,-5,30,-5v3,-24,3,-72,3,-102r-75,0v-17,27,-45,71,-57,102v6,1,53,-1,44,11v-2,0,-23,-2,-58,-2v-26,0,-34,6,-40,-1v4,-7,20,-7,26,-8v38,-46,115,-163,145,-208v-4,-1,-38,-4,-28,-12v55,4,155,1,179,-4v2,-9,5,-19,11,-13v-5,15,4,61,-4,69v-5,0,-7,-22,-8,-33v-35,-9,-68,-9,-108,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v0,-10,4,-35,11,-22v-5,15,3,65,-3,75v-6,0,-7,-24,-8,-30","w":366},"\u00aa":{"d":"98,-111v-11,2,-9,-11,-9,-20v-9,6,-26,20,-43,20v-18,0,-31,-15,-31,-33v-2,-37,50,-42,74,-29v0,-26,0,-39,-22,-39v-24,0,-35,17,-44,8v0,-7,31,-23,52,-23v44,0,36,42,36,82v0,35,21,2,27,10v0,6,-20,24,-40,24xm89,-140r0,-26v-17,-11,-52,-11,-52,18v0,33,41,25,52,8","w":140},"\u0141":{"d":"72,-9v42,1,79,-4,112,-13v1,-10,4,-41,11,-27v-1,12,-3,49,0,61v0,4,0,5,-3,5v-4,0,-5,-5,-7,-11v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5v1,-17,1,-45,1,-73v-8,4,-25,32,-32,14v9,-8,28,-22,32,-25v0,-40,0,-98,-1,-126v-4,0,-42,-2,-29,-10v4,7,100,-8,86,6v-8,3,-25,4,-30,4v-1,24,-2,73,-2,106v6,-5,36,-32,47,-42r7,8r-54,44v0,32,1,73,2,94","w":206,"k":{"y":13,"\u00fd":13,"\u00ff":13,"T":26,"V":26,"W":26,"Y":26,"\u00dd":26,"\u0178":26}},"\u00d8":{"d":"262,-229r-32,32v67,72,17,203,-93,203v-34,0,-62,-12,-83,-33r-36,35r-5,-5r35,-35v-65,-73,-14,-201,95,-201v33,0,61,12,81,31r33,-32xm211,-179r-138,134v55,61,172,43,172,-50v0,-32,-13,-62,-34,-84xm68,-51r137,-133v-56,-61,-170,-40,-170,52v0,31,12,59,33,81","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"\u0152":{"d":"18,-109v0,-88,81,-144,177,-118v69,0,99,-3,125,-6v2,-9,4,-19,10,-13v-5,15,4,61,-4,69v-5,0,-7,-22,-8,-33v-35,-9,-68,-9,-108,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v0,-10,4,-35,11,-22v-5,15,3,65,-3,75v-6,0,-7,-24,-8,-30v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-11,2,-38,11,-26v-1,14,-3,46,0,62v-5,7,-8,0,-10,-8v-60,-7,-131,0,-186,0v-71,0,-118,-52,-118,-115xm181,-11r1,-194v-55,-36,-152,-3,-149,73v3,76,74,137,148,121","w":353},"\u00ba":{"d":"145,-177v7,75,-130,93,-130,14v-3,-68,128,-96,130,-14xm80,-118v30,0,42,-22,42,-49v0,-28,-10,-53,-39,-53v-26,0,-45,17,-45,50v0,30,11,52,42,52","w":159},"\u00e6":{"d":"206,-64r-92,0v0,21,14,54,46,54v32,0,32,-30,42,-22v0,7,-17,36,-52,36v-23,0,-38,-8,-51,-26v-10,9,-30,26,-51,26v-19,0,-33,-16,-33,-35v-1,-41,52,-43,79,-31v0,-28,0,-41,-23,-41v-25,0,-39,18,-47,9v6,-14,72,-42,88,-9v31,-31,103,-10,94,39xm94,-27r0,-27v-19,-11,-57,-10,-57,20v0,33,46,25,57,7xm114,-70r67,-2v0,-17,-5,-40,-31,-40v-29,0,-35,30,-36,42","w":219},"\u0131":{"d":"9,-106v5,-1,62,-31,50,2r0,96v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r1,-96v-6,-1,-24,5,-27,-2","w":93},"\u0142":{"d":"59,-103v7,-2,19,-30,27,-17v-7,6,-18,17,-27,26v0,25,1,61,1,86v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8v0,-18,1,-42,1,-63v-8,2,-21,31,-27,16r27,-26r-1,-159v2,-21,-16,-17,-24,-10v-2,0,-3,-1,-3,-3v0,-5,30,-24,45,-24v6,0,7,5,7,11","w":93},"\u00f8":{"d":"146,-119v8,6,-4,11,-8,17v33,45,-6,106,-63,106v-17,0,-32,-4,-42,-13v-7,4,-14,18,-20,8r15,-13v-43,-58,40,-136,104,-93xm44,-28r74,-66v-22,-33,-79,-16,-79,36v0,12,2,22,5,30xm121,-88r-73,66v21,38,89,14,80,-33v0,-12,-3,-24,-7,-33","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"\u0153":{"d":"240,-64r-91,0v0,21,13,54,45,54v31,0,34,-30,42,-22v0,7,-17,36,-52,36v-23,0,-39,-9,-49,-25v-31,39,-120,35,-119,-29v0,-63,89,-90,126,-47v25,-38,108,-19,98,33xm149,-70r66,-2v0,-17,-5,-40,-31,-40v-29,0,-34,30,-35,42xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53","w":253,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13,"x":6}},"\u00df":{"d":"110,-127v-4,12,54,54,54,87v0,34,-39,52,-69,38v-7,0,-11,14,-14,3v3,-12,-4,-41,3,-45v5,0,4,9,8,17v13,28,56,29,56,-1v0,-28,-56,-57,-56,-85v0,-21,41,-57,41,-93v0,-26,-16,-56,-42,-56v-45,0,-30,106,-30,152v0,36,1,71,2,112v-15,-5,-38,3,-49,-2v2,-8,15,-6,24,-8v8,-98,-34,-264,64,-264v27,0,50,14,50,48v0,47,-42,84,-42,97","w":180,"k":{"y":6,"\u00fd":6,"\u00ff":6,",":6,".":6}},"\u00b9":{"d":"30,-212v2,-7,43,-8,48,-15v9,29,-2,86,2,128v9,2,37,2,25,10v-3,-5,-90,7,-70,-6v5,-2,17,-3,25,-4r1,-111v0,0,-26,7,-31,-2","w":133},"\u00ac":{"d":"186,-117r0,61r-15,0r0,-46r-157,0r0,-15r172,0"},"\u00b5":{"d":"115,-24r-1,-80v-5,-1,-23,5,-24,-2v0,-5,3,-3,25,-9v16,-4,19,-10,23,0r0,107v8,2,22,0,24,8v-8,5,-29,-3,-47,0r0,-18v-13,12,-38,29,-64,19v0,17,0,40,1,58v11,3,31,-1,36,8v-4,3,-73,1,-84,0v2,-8,16,-6,24,-8r0,-163v-4,-1,-22,5,-23,-2v0,-5,3,-3,25,-9v12,-4,16,-5,19,-5v16,22,-24,111,27,110v18,0,28,-8,39,-14","w":166},"\u00d0":{"d":"229,-116v-1,94,-75,131,-172,116v-15,-2,-36,6,-46,-1v4,-8,28,-7,33,-8v1,-24,1,-71,1,-104v-8,0,-25,1,-33,1r0,-10v8,1,25,1,33,1v0,-32,0,-76,-1,-98v-9,4,-55,-12,-16,-9v26,2,58,-2,84,-2v75,0,117,46,117,114xm131,-122r0,10v-18,0,-44,-1,-62,-1v0,30,0,79,1,104v76,17,136,-23,133,-107v-4,-90,-61,-116,-133,-103v-1,23,-1,68,-1,98v18,0,44,-1,62,-1","w":246,"k":{"T":13,"V":13,"Y":20,"\u00dd":20,"\u0178":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00bd":{"d":"214,-227r-128,227r-11,0r127,-227r12,0xm174,-2v18,-22,79,-57,79,-94v0,-15,-13,-25,-27,-25v-36,-2,-38,44,-49,32v0,-9,20,-46,57,-46v18,0,40,10,40,35v0,36,-69,81,-78,92v25,-1,47,-4,68,-9v1,-11,3,-32,11,-21v-4,6,2,49,-3,53v-5,0,-7,-8,-8,-13v-25,-3,-60,-2,-85,0v-3,0,-5,-1,-5,-4xm15,-212v6,-7,43,-8,49,-15v9,29,-2,86,2,128v9,2,37,2,25,10v-3,-5,-90,7,-70,-6v5,-2,17,-3,25,-4r1,-111v-7,0,-27,7,-32,-2","w":293},"\u00b1":{"d":"108,-79r0,79r-16,0r0,-79r-78,0r0,-15r78,0r0,-79r16,0r0,79r78,0r0,15r-78,0xm14,17r172,0r0,14r-172,0r0,-14"},"\u00de":{"d":"72,-9v4,1,40,1,29,11v-4,-6,-103,7,-86,-6v8,-3,25,-5,30,-5r0,-210v-4,0,-42,-2,-29,-10v4,7,100,-8,86,6v-8,3,-25,4,-30,4v-1,10,-2,25,-2,40v53,-7,125,-14,125,56v0,62,-68,77,-125,69v0,18,1,33,2,45xm70,-170r0,108v48,7,100,-1,100,-53v0,-53,-53,-69,-100,-55","w":206},"\u00bc":{"d":"246,-45r18,0v1,-11,2,-34,10,-23v-3,15,3,45,-3,52v-5,0,-6,-10,-7,-15v-4,0,-14,-1,-18,-1v0,4,-1,15,0,23v7,1,30,4,18,10v-5,-4,-79,7,-62,-6v5,-2,17,-3,24,-4v1,-8,1,-19,1,-23v-23,-3,-71,15,-52,-13r60,-87v0,-3,11,-9,12,-1xm227,-45v-1,-19,2,-43,-1,-60r-41,60r42,0xm83,0r128,-227r11,0r-127,227r-12,0xm24,-212v5,-8,43,-8,49,-15v7,28,-3,87,2,128v10,1,38,3,24,10v-3,-4,-87,7,-70,-6v5,-2,18,-3,26,-4r0,-111v-6,0,-26,6,-31,-2","w":293},"\u00f7":{"d":"114,-129v0,8,-6,13,-14,13v-8,0,-14,-5,-14,-13v0,-8,6,-14,14,-14v8,0,14,6,14,14xm186,-94r0,15r-172,0r0,-15r172,0xm114,-44v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,14,6,14,14"},"\u00a6":{"d":"51,-243r0,126r-16,0r0,-126r16,0xm51,-63r0,126r-16,0r0,-126r16,0","w":86},"\u00b0":{"d":"131,-183v0,26,-20,44,-45,44v-24,0,-44,-18,-44,-44v0,-24,20,-44,44,-44v24,0,45,20,45,44xm86,-153v17,0,31,-13,31,-30v0,-16,-14,-30,-31,-30v-17,0,-30,14,-30,30v0,17,13,30,30,30","w":173},"\u00fe":{"d":"46,-85r0,62v9,8,20,19,36,19v23,0,31,-25,31,-51v0,-19,-4,-49,-31,-49v-18,0,-30,13,-36,19xm46,-10v0,15,0,43,1,69v11,1,27,2,37,4v3,0,3,2,3,4v-4,3,-75,1,-88,0v2,-8,15,-6,24,-8r-1,-299v2,-21,-16,-17,-24,-10v-2,0,-3,-1,-3,-3v0,-5,30,-24,45,-24v6,0,7,5,7,11v0,66,-1,144,-1,171v9,-8,25,-23,49,-23v76,0,40,122,-13,122v-19,0,-28,-9,-36,-14","w":153,"k":{"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13}},"\u00be":{"d":"249,-45r18,0v1,-12,2,-34,11,-23v-5,13,5,48,-4,52v-4,0,-6,-10,-7,-15v-4,0,-14,-1,-18,-1v0,4,-1,15,0,23v7,1,30,4,18,10v-5,-4,-81,6,-61,-6v5,-2,16,-3,23,-4v1,-8,1,-19,1,-23v-23,-2,-71,15,-52,-13r61,-87v1,-5,11,-8,11,-1xm230,-45r0,-60r-42,60r42,0xm89,0r127,-227r12,0r-127,227r-12,0xm17,-112v13,-9,23,15,47,15v21,0,35,-11,35,-28v-1,-26,-37,-28,-55,-22v-3,0,-5,-1,-5,-3v1,-7,27,-14,42,-13v16,-9,18,-49,-14,-49v-28,0,-33,28,-43,17v0,-4,22,-30,52,-30v16,0,34,9,34,29v0,17,-12,29,-20,35v13,4,28,11,28,32v0,26,-24,41,-50,41v-27,0,-51,-19,-51,-24","w":293},"\u00b2":{"d":"13,-93v19,-21,79,-57,79,-93v0,-15,-13,-25,-27,-25v-37,-1,-37,45,-50,32v0,-9,21,-46,58,-46v18,0,39,10,39,35v0,36,-68,81,-77,92v25,-1,47,-4,68,-9v1,-9,5,-31,10,-21v-2,8,2,45,-2,53v-5,0,-7,-8,-8,-13v-25,-3,-60,-2,-85,0v-3,0,-5,-2,-5,-5","w":133},"\u00ae":{"d":"58,-130r0,-6v25,0,14,-44,14,-66v0,-12,-4,-12,-14,-13r0,-7v32,3,83,-10,83,23v0,18,-16,20,-26,23v22,13,16,33,25,33v8,-2,1,-15,13,-11v0,8,-3,24,-19,24v-33,0,-9,-47,-43,-44v2,17,-6,40,14,38r0,6r-47,0xm104,-215v-20,-1,-11,19,-13,34v27,10,42,-31,13,-34xm100,-93v-45,0,-84,-36,-84,-81v0,-45,39,-81,84,-81v45,0,84,36,84,81v0,45,-39,81,-84,81xm28,-174v0,38,33,68,72,68v39,0,72,-30,72,-68v0,-38,-33,-69,-72,-69v-39,0,-72,31,-72,69"},"\u00f0":{"d":"155,-196r-42,14v13,20,37,56,37,104v0,60,-33,82,-75,82v-32,0,-59,-18,-59,-54v0,-56,67,-82,107,-59v-6,-19,-20,-49,-30,-66r-42,15r-3,-8r41,-14v-10,-18,-32,-45,-63,-73r5,-4v37,24,63,48,77,70r44,-15xm83,-3v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53v0,32,13,55,44,55","w":166},"\u00d7":{"d":"169,-30r-11,11r-57,-57r-58,57r-11,-11r58,-57r-58,-57r12,-11r57,57r57,-57r11,11r-57,57"},"\u00b3":{"d":"13,-112v13,-9,23,15,47,15v21,0,35,-11,35,-28v-1,-27,-36,-27,-55,-22v-3,0,-4,-1,-4,-3v1,-7,26,-14,41,-13v16,-9,18,-49,-14,-49v-28,0,-33,28,-43,17v0,-4,22,-30,52,-30v16,0,35,9,35,29v0,17,-12,29,-20,35v13,4,27,11,27,32v0,26,-24,41,-50,41v-27,0,-51,-19,-51,-24","w":133},"\u00a9":{"d":"131,-160r8,0v-2,11,-4,35,-36,35v-27,0,-47,-21,-47,-49v0,-42,39,-60,70,-46v4,0,5,-7,12,-5r0,37r-6,1v-5,-12,-11,-31,-27,-31v-17,0,-25,16,-25,44v0,24,8,40,26,40v20,0,24,-18,25,-26xm100,-93v-45,0,-84,-36,-84,-81v0,-45,39,-81,84,-81v45,0,84,36,84,81v0,45,-39,81,-84,81xm28,-174v0,38,33,68,72,68v39,0,72,-30,72,-68v0,-39,-33,-69,-72,-69v-39,0,-72,30,-72,69"},"\u00c1":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100xm107,-253v14,-19,28,-51,60,-40v-17,16,-38,28,-57,42v-1,0,-3,0,-3,-2","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"\u00c2":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100xm116,-277v-10,5,-27,29,-38,24v7,-13,22,-29,31,-42r13,0r34,42v-5,8,-25,-16,-40,-24","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"\u00c4":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100xm105,-273v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-14,13,-14v8,0,14,6,14,14xm156,-273v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,14,6,14,14","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"\u00c0":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100xm84,-293v5,-4,22,-3,28,0v8,14,30,27,29,42v-20,-12,-40,-26,-57,-42","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"\u00c5":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100xm147,-279v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm119,-260v12,0,19,-9,19,-19v0,-10,-7,-18,-19,-18v-12,0,-19,8,-19,18v0,10,7,19,19,19","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"\u00c3":{"d":"33,-9v21,-35,58,-136,78,-181v-7,-15,-16,-32,-22,-44v8,-3,18,-7,27,-12v23,68,69,168,100,237v5,0,38,4,25,11v-5,-7,-107,8,-92,-6v9,-3,30,-5,36,-5v-5,-13,-16,-43,-24,-62r-89,0v-5,13,-14,43,-19,62v7,1,49,0,40,11v-2,0,-21,-2,-47,-2v-28,0,-41,6,-45,-1v4,-8,27,-7,32,-8xm75,-80r82,0r-42,-100v-13,32,-36,89,-40,100xm97,-288v10,0,37,14,48,14v13,0,11,-22,18,-11v0,6,-5,27,-21,27v-13,0,-36,-14,-49,-15v-14,-1,-10,24,-17,11v0,-7,5,-26,21,-26","w":246,"k":{"v":26,"w":26,"y":26,"\u00fd":26,"\u00ff":26,"c":13,"\u00e7":13,"C":20,"\u00c7":20,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"g":13,"G":20,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":13,"Q":20,"s":6,"\u0161":6,"t":13,"T":40,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"U":26,"\u00da":26,"\u00db":26,"\u00dc":26,"\u00d9":26,"V":53,"W":53,"Y":46,"\u00dd":46,"\u0178":46,"-":26}},"\u00c7":{"d":"211,-35v5,19,-36,38,-79,41r-8,12v14,-1,25,1,27,17v4,26,-43,32,-49,14v3,-8,7,2,17,2v18,0,20,-26,2,-24v-9,1,-12,0,-7,-7r10,-14v-59,-3,-102,-49,-102,-114v0,-96,91,-150,181,-114v1,-8,4,-34,11,-22v-5,17,2,91,-4,104v-10,-7,-7,-45,-9,-53v-44,-45,-157,-39,-157,59v0,67,44,127,105,127v42,0,57,-28,62,-28","w":233,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00c9":{"d":"174,-105v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-10,4,-38,11,-26v-1,14,-3,46,0,62v-5,7,-10,-8,-10,-8v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v54,3,135,-1,154,-5v2,-9,4,-19,10,-13v-5,15,4,61,-4,69v-5,0,-6,-22,-7,-33v-36,-9,-69,-9,-109,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v1,-9,3,-26,9,-26v3,11,1,65,0,79v-6,0,-8,-24,-9,-30xm101,-253v14,-19,28,-51,60,-40v-18,15,-38,29,-57,42v-1,0,-3,0,-3,-2","w":219},"\u00ca":{"d":"174,-105v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-10,4,-38,11,-26v-1,14,-3,46,0,62v-5,7,-10,-8,-10,-8v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v54,3,135,-1,154,-5v2,-9,4,-19,10,-13v-5,15,4,61,-4,69v-5,0,-6,-22,-7,-33v-36,-9,-69,-9,-109,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v1,-9,3,-26,9,-26v3,11,1,65,0,79v-6,0,-8,-24,-9,-30xm111,-277v-10,5,-27,29,-37,24v7,-13,21,-29,30,-42r14,0r34,42v-5,8,-26,-16,-41,-24","w":219},"\u00cb":{"d":"174,-105v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-10,4,-38,11,-26v-1,14,-3,46,0,62v-5,7,-10,-8,-10,-8v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v54,3,135,-1,154,-5v2,-9,4,-19,10,-13v-5,15,4,61,-4,69v-5,0,-6,-22,-7,-33v-36,-9,-69,-9,-109,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v1,-9,3,-26,9,-26v3,11,1,65,0,79v-6,0,-8,-24,-9,-30xm99,-273v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-14,13,-14v8,0,14,6,14,14xm149,-273v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,13,6,13,14","w":219},"\u00c8":{"d":"174,-105v-27,-5,-61,-6,-102,-6v0,30,0,78,3,102v40,3,79,-3,111,-13v1,-10,4,-38,11,-26v-1,14,-3,46,0,62v-5,7,-10,-8,-10,-8v-51,-6,-120,-8,-169,-4v-5,0,-5,-5,-1,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-9,4,-55,-12,-16,-9v54,3,135,-1,154,-5v2,-9,4,-19,10,-13v-5,15,4,61,-4,69v-5,0,-6,-22,-7,-33v-36,-9,-69,-9,-109,-9v-3,24,-3,71,-3,99v41,0,75,-2,102,-8v1,-9,3,-26,9,-26v3,11,1,65,0,79v-6,0,-8,-24,-9,-30xm76,-293v5,-4,22,-3,28,0v8,14,30,27,29,42v-20,-12,-40,-26,-57,-42","w":219},"\u00cd":{"d":"73,-9v4,0,42,3,29,11v-4,-7,-100,8,-86,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-4,0,-40,0,-29,-10v4,6,103,-7,86,6v-8,3,-25,4,-30,4r0,210xm51,-253v14,-19,28,-51,60,-40v-18,15,-38,29,-57,42v-1,0,-3,0,-3,-2","w":119},"\u00ce":{"d":"73,-9v4,0,42,3,29,11v-4,-7,-100,8,-86,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-4,0,-40,0,-29,-10v4,6,103,-7,86,6v-8,3,-25,4,-30,4r0,210xm61,-277v-10,5,-27,29,-37,24v7,-13,21,-29,30,-42r14,0r34,42v-5,8,-26,-16,-41,-24","w":119},"\u00cf":{"d":"73,-9v4,0,42,3,29,11v-4,-7,-100,8,-86,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-4,0,-40,0,-29,-10v4,6,103,-7,86,6v-8,3,-25,4,-30,4r0,210xm49,-273v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-14,13,-14v8,0,14,6,14,14xm99,-273v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,13,6,13,14","w":119},"\u00cc":{"d":"73,-9v4,0,42,3,29,11v-4,-7,-100,8,-86,-6v8,-3,25,-5,30,-5v1,-24,2,-72,2,-105v0,-33,-1,-81,-2,-105v-4,0,-40,0,-29,-10v4,6,103,-7,86,6v-8,3,-25,4,-30,4r0,210xm17,-293v5,-4,22,-3,28,0v8,14,30,27,29,42v-20,-12,-40,-26,-57,-42","w":119},"\u00d1":{"d":"46,-148v0,-48,4,-59,-32,-77v6,-10,27,3,42,-4r143,184v6,-47,1,-144,-4,-174v-4,0,-40,0,-29,-10v2,0,17,2,40,2v23,0,36,-7,40,1v-3,8,-24,6,-29,7v-9,37,-7,170,-6,219v0,5,-2,6,-4,6r-152,-195v-4,50,1,148,7,180v4,0,47,2,34,11v-3,0,-20,-2,-45,-2v-26,0,-36,7,-40,-1v3,-8,24,-7,29,-8v4,-24,6,-88,6,-139xm105,-288v10,-1,38,15,48,14v13,0,11,-22,18,-11v0,6,-5,27,-21,27v-13,1,-36,-15,-48,-15v-12,0,-11,15,-15,15v-6,-8,1,-29,18,-30","w":253,"k":{"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00d3":{"d":"261,-118v0,68,-48,124,-124,124v-71,0,-118,-52,-118,-115v0,-68,48,-124,124,-124v71,0,118,52,118,115xm159,-8v43,0,86,-37,86,-87v0,-69,-65,-125,-124,-125v-43,0,-86,38,-86,88v0,69,65,124,124,124xm133,-253v14,-19,28,-51,59,-40v-17,16,-37,29,-57,42v-1,0,-2,0,-2,-2","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"\u00d4":{"d":"261,-118v0,68,-48,124,-124,124v-71,0,-118,-52,-118,-115v0,-68,48,-124,124,-124v71,0,118,52,118,115xm159,-8v43,0,86,-37,86,-87v0,-69,-65,-125,-124,-125v-43,0,-86,38,-86,88v0,69,65,124,124,124xm141,-277v-10,5,-27,29,-37,24v7,-13,21,-29,30,-42r14,0r34,42v-5,8,-26,-16,-41,-24","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"\u00d6":{"d":"261,-118v0,68,-48,124,-124,124v-71,0,-118,-52,-118,-115v0,-68,48,-124,124,-124v71,0,118,52,118,115xm159,-8v43,0,86,-37,86,-87v0,-69,-65,-125,-124,-125v-43,0,-86,38,-86,88v0,69,65,124,124,124xm129,-273v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-14,13,-14v8,0,14,6,14,14xm179,-273v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,13,6,13,14","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"\u00d2":{"d":"261,-118v0,68,-48,124,-124,124v-71,0,-118,-52,-118,-115v0,-68,48,-124,124,-124v71,0,118,52,118,115xm159,-8v43,0,86,-37,86,-87v0,-69,-65,-125,-124,-125v-43,0,-86,38,-86,88v0,69,65,124,124,124xm104,-293v5,-4,22,-3,28,0v8,14,30,27,29,42v-19,-13,-40,-26,-57,-42","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"\u00d5":{"d":"261,-118v0,68,-48,124,-124,124v-71,0,-118,-52,-118,-115v0,-68,48,-124,124,-124v71,0,118,52,118,115xm159,-8v43,0,86,-37,86,-87v0,-69,-65,-125,-124,-125v-43,0,-86,38,-86,88v0,69,65,124,124,124xm117,-288v10,0,37,14,48,14v13,0,11,-22,18,-11v0,6,-5,27,-21,27v-13,0,-36,-14,-49,-15v-14,-1,-10,24,-17,11v0,-7,5,-26,21,-26","w":280,"k":{"T":13,"V":13,"W":13,"Y":20,"\u00dd":20,"\u0178":20,",":20,".":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":13,"Z":6,"\u017d":6}},"\u0160":{"d":"167,-242v3,16,-7,54,-3,81v0,3,-2,4,-3,4v-6,0,-5,-25,-6,-37v-30,-37,-125,-38,-125,26v0,66,145,16,145,97v0,70,-86,94,-145,64v-4,10,-6,27,-12,20v8,-17,-1,-81,5,-94v6,0,8,30,9,44v12,11,38,31,72,31v33,0,61,-21,61,-52v0,-42,-63,-36,-98,-45v-29,-7,-47,-25,-47,-56v-2,-67,87,-89,137,-61v3,-8,6,-22,10,-22xm103,-269v10,-5,27,-29,38,-24v-7,13,-22,29,-31,42r-14,0v-10,-14,-24,-27,-33,-42v5,-8,25,16,40,24","w":193,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00da":{"d":"126,6v-71,-4,-85,-27,-85,-119v0,-33,0,-82,-1,-106v-4,0,-41,-1,-30,-10v4,6,111,-7,93,6v-10,3,-30,4,-37,4v-1,24,-1,86,-1,121v-2,57,5,94,61,96v102,3,75,-132,71,-217v-5,0,-45,-1,-32,-10v4,6,95,-7,79,6v-8,3,-23,4,-28,4v-12,85,20,232,-90,225xm121,-253v14,-19,28,-51,60,-40v-17,16,-38,28,-57,42v-1,0,-3,0,-3,-2","w":253,"k":{"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26}},"\u00db":{"d":"126,6v-71,-4,-85,-27,-85,-119v0,-33,0,-82,-1,-106v-4,0,-41,-1,-30,-10v4,6,111,-7,93,6v-10,3,-30,4,-37,4v-1,24,-1,86,-1,121v-2,57,5,94,61,96v102,3,75,-132,71,-217v-5,0,-45,-1,-32,-10v4,6,95,-7,79,6v-8,3,-23,4,-28,4v-12,85,20,232,-90,225xm132,-277r-34,26v-6,-2,-2,-3,2,-10r26,-34r13,0r34,42v-5,8,-26,-16,-41,-24","w":253,"k":{"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26}},"\u00dc":{"d":"126,6v-71,-4,-85,-27,-85,-119v0,-33,0,-82,-1,-106v-4,0,-41,-1,-30,-10v4,6,111,-7,93,6v-10,3,-30,4,-37,4v-1,24,-1,86,-1,121v-2,57,5,94,61,96v102,3,75,-132,71,-217v-5,0,-45,-1,-32,-10v4,6,95,-7,79,6v-8,3,-23,4,-28,4v-12,85,20,232,-90,225xm121,-273v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-14,13,-14v8,0,14,6,14,14xm171,-273v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,13,6,13,14","w":253,"k":{"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26}},"\u00d9":{"d":"126,6v-71,-4,-85,-27,-85,-119v0,-33,0,-82,-1,-106v-4,0,-41,-1,-30,-10v4,6,111,-7,93,6v-10,3,-30,4,-37,4v-1,24,-1,86,-1,121v-2,57,5,94,61,96v102,3,75,-132,71,-217v-5,0,-45,-1,-32,-10v4,6,95,-7,79,6v-8,3,-23,4,-28,4v-12,85,20,232,-90,225xm93,-293v33,-10,45,22,59,40v-2,4,-6,2,-8,-1v-17,-13,-36,-24,-51,-39","w":253,"k":{"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26}},"\u00dd":{"d":"188,-219v-14,18,-61,89,-70,105v0,33,1,81,2,105v5,1,43,1,33,11v-4,-7,-108,8,-94,-6v9,-3,28,-5,34,-5v1,-23,2,-70,2,-98r-71,-112v-4,1,-35,-3,-21,-10v3,6,89,-7,76,6v-6,3,-21,4,-25,4v8,13,40,67,60,98v16,-24,47,-77,55,-98v-4,0,-42,-2,-29,-10v3,6,84,-7,71,6v-6,3,-19,4,-23,4xm98,-253v14,-19,28,-51,59,-40v-17,16,-37,29,-57,42v-1,0,-2,0,-2,-2","w":213,"k":{"v":40,"e":46,"\u00e9":46,"\u00ea":46,"\u00eb":46,"\u00e8":46,"o":46,"\u00f8":46,"\u0153":46,"\u00f3":46,"\u00f4":46,"\u00f6":46,"\u00f2":46,"\u00f5":46,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":46,"u":40,"\u00fa":40,"\u00fb":40,"\u00fc":40,"\u00f9":40,"-":40,",":46,".":46,"A":46,"\u00c6":46,"\u00c1":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u00c5":46,"\u00c3":46,"a":46,"\u00e6":46,"\u00e1":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"\u00e5":46,"\u00e3":46,":":40,";":40,"p":40}},"\u0178":{"d":"188,-219v-14,18,-61,89,-70,105v0,33,1,81,2,105v5,1,43,1,33,11v-4,-7,-108,8,-94,-6v9,-3,28,-5,34,-5v1,-23,2,-70,2,-98r-71,-112v-4,1,-35,-3,-21,-10v3,6,89,-7,76,6v-6,3,-21,4,-25,4v8,13,40,67,60,98v16,-24,47,-77,55,-98v-4,0,-42,-2,-29,-10v3,6,84,-7,71,6v-6,3,-19,4,-23,4xm101,-273v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-14,13,-14v8,0,14,6,14,14xm152,-273v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,14,6,14,14","w":213,"k":{"v":40,"e":46,"\u00e9":46,"\u00ea":46,"\u00eb":46,"\u00e8":46,"o":46,"\u00f8":46,"\u0153":46,"\u00f3":46,"\u00f4":46,"\u00f6":46,"\u00f2":46,"\u00f5":46,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"q":46,"u":40,"\u00fa":40,"\u00fb":40,"\u00fc":40,"\u00f9":40,"-":40,",":46,".":46,"A":46,"\u00c6":46,"\u00c1":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u00c5":46,"\u00c3":46,"a":46,"\u00e6":46,"\u00e1":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"\u00e5":46,"\u00e3":46,":":40,";":40,"p":40}},"\u017d":{"d":"18,0v31,-56,94,-148,138,-220v-38,1,-87,1,-127,11v0,9,-5,48,-11,27v1,-13,3,-42,0,-60v0,-5,1,-6,4,-6v4,0,5,8,7,15v26,7,118,5,157,5r-62,98v-41,65,-59,98,-71,122v40,0,84,-1,127,-13v-1,-6,4,-42,12,-25v-4,15,-2,49,0,61v0,1,-1,3,-4,3v-4,0,-5,-6,-7,-12v-45,-9,-120,-3,-163,-6xm106,-269v10,-5,27,-29,38,-24v-7,13,-22,29,-31,42r-14,0v-10,-14,-24,-27,-33,-42v5,-8,25,16,40,24","w":206,"k":{"y":6,"\u00fd":6,"\u00ff":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00e1":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7xm64,-136v-2,-16,28,-34,33,-44v7,1,28,-4,22,5v-19,13,-35,28,-55,39","w":146},"\u00e2":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7xm75,-162r-35,26v-6,-2,-2,-3,2,-10r26,-34r13,0r34,42v-5,8,-25,-16,-40,-24","w":146},"\u00e4":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7xm62,-158v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,13,5,13,13xm113,-158v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,14,5,14,13","w":146},"\u00e0":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7xm60,-180v8,10,26,25,35,42v-1,4,-6,1,-8,-1r-51,-38v2,-7,17,-1,24,-3","w":146},"\u00e5":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7xm102,-163v0,15,-12,27,-27,27v-15,0,-28,-12,-28,-27v0,-15,13,-28,28,-28v15,0,27,13,27,28xm75,-145v12,0,18,-8,18,-18v0,-10,-6,-19,-18,-19v-12,0,-19,9,-19,19v0,10,7,18,19,18","w":146},"\u00e3":{"d":"101,4v-11,2,-7,-12,-8,-21v-9,7,-27,21,-45,21v-19,0,-33,-16,-33,-35v-1,-41,52,-43,78,-31v0,-28,-1,-41,-24,-41v-24,0,-37,18,-45,9v0,-7,35,-24,54,-24v48,0,38,56,36,86v-2,37,23,3,29,11v0,6,-21,25,-42,25xm93,-27r0,-27v-19,-11,-56,-10,-56,20v0,34,45,25,56,7xm50,-173v11,0,39,15,49,15v13,1,11,-20,17,-12v0,6,-5,27,-21,27v-13,0,-35,-14,-48,-14v-14,-1,-10,23,-17,10v0,-7,4,-26,20,-26","w":146},"\u00e7":{"d":"53,29v-5,-8,10,-17,13,-25v-21,-2,-52,-19,-52,-57v0,-47,54,-80,97,-58v2,-9,6,-20,10,-10v-5,9,1,53,-4,58v-4,0,-6,-19,-7,-26v-16,-25,-76,-34,-76,20v0,36,25,58,49,58v27,0,32,-30,41,-19v0,3,-17,34,-50,34r-10,16v13,-3,25,1,27,17v4,27,-44,31,-50,13v5,-3,33,10,32,-11v0,-10,-12,-12,-20,-10","w":140,"k":{",":6,".":6}},"\u00e9":{"d":"126,-64r-91,0v0,21,14,54,46,54v32,0,32,-30,42,-22v0,7,-17,36,-52,36v-35,0,-57,-24,-57,-58v0,-30,20,-64,60,-64v37,0,52,24,52,54xm35,-71r67,-1v0,-17,-5,-40,-31,-40v-29,0,-35,29,-36,41xm59,-138v15,-17,30,-54,60,-39r-57,41v-1,0,-3,0,-3,-2","w":140,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13,"x":6}},"\u00ea":{"d":"126,-64r-91,0v0,21,14,54,46,54v32,0,32,-30,42,-22v0,7,-17,36,-52,36v-35,0,-57,-24,-57,-58v0,-30,20,-64,60,-64v37,0,52,24,52,54xm35,-71r67,-1v0,-17,-5,-40,-31,-40v-29,0,-35,29,-36,41xm69,-162r-34,26v-6,-2,-2,-3,2,-10r26,-34r13,0r34,42v-5,8,-26,-16,-41,-24","w":140,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13,"x":6}},"\u00eb":{"d":"126,-64r-91,0v0,21,14,54,46,54v32,0,32,-30,42,-22v0,7,-17,36,-52,36v-35,0,-57,-24,-57,-58v0,-30,20,-64,60,-64v37,0,52,24,52,54xm35,-71r67,-1v0,-17,-5,-40,-31,-40v-29,0,-35,29,-36,41xm59,-158v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-13,13,-13v8,0,14,5,14,13xm109,-158v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,13,5,13,13","w":140,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13,"x":6}},"\u00e8":{"d":"126,-64r-91,0v0,21,14,54,46,54v32,0,32,-30,42,-22v0,7,-17,36,-52,36v-35,0,-57,-24,-57,-58v0,-30,20,-64,60,-64v37,0,52,24,52,54xm35,-71r67,-1v0,-17,-5,-40,-31,-40v-29,0,-35,29,-36,41xm57,-180v8,10,26,25,35,42v-2,4,-6,2,-8,-1r-52,-38v3,-6,17,-2,25,-3","w":140,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,",":13,".":13,"x":6}},"\u00ed":{"d":"9,-106v5,-1,62,-31,50,2r0,96v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r1,-96v-6,-1,-24,5,-27,-2xm28,-138v15,-17,30,-54,60,-39r-57,41v-1,0,-3,0,-3,-2","w":93},"\u00ee":{"d":"9,-106v5,-1,62,-31,50,2r0,96v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r1,-96v-6,-1,-24,5,-27,-2xm44,-162v-10,5,-27,29,-38,24r31,-42r14,0r34,42v-7,8,-25,-16,-41,-24","w":93},"\u00ef":{"d":"9,-106v5,-1,62,-31,50,2r0,96v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r1,-96v-6,-1,-24,5,-27,-2xm33,-158v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,13,5,13,13xm84,-158v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-13,13,-13v8,0,14,5,14,13","w":93},"\u00ec":{"d":"9,-106v5,-1,62,-31,50,2r0,96v8,2,22,0,24,8v-5,3,-64,1,-72,0v2,-8,15,-6,24,-8r1,-96v-6,-1,-24,5,-27,-2xm5,-177v32,-13,46,22,59,39v-1,4,-5,1,-7,-1","w":93},"\u00f1":{"d":"173,0v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8v-2,-33,14,-98,-24,-96v-17,0,-31,8,-41,14r1,82v9,2,21,1,24,8v-5,3,-64,1,-72,0v2,-8,16,-6,24,-8v2,-27,1,-68,0,-96v-5,-1,-27,5,-28,-2v0,-5,4,-3,29,-9v12,-3,16,-5,19,-5v7,2,1,16,3,23v27,-19,90,-38,89,11r0,78v9,2,21,1,24,8xm67,-173v10,0,38,15,48,15v13,0,10,-20,18,-12v0,6,-5,27,-21,27v-13,0,-36,-14,-49,-14v-14,-1,-10,23,-17,10v0,-7,5,-26,21,-26","w":180,"k":{"w":6,"y":13,"\u00fd":13,"\u00ff":13}},"\u00f3":{"d":"16,-50v-2,-75,131,-100,134,-15v8,78,-132,99,-134,15xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53xm73,-138v15,-19,24,-47,57,-42v2,1,3,4,0,5v-19,13,-35,28,-55,39v-1,0,-2,0,-2,-2","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"\u00f4":{"d":"16,-50v-2,-75,131,-100,134,-15v8,78,-132,99,-134,15xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53xm85,-162v-10,5,-27,29,-38,24v7,-13,22,-29,31,-42r13,0r34,42v-5,8,-25,-16,-40,-24","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"\u00f6":{"d":"16,-50v-2,-75,131,-100,134,-15v8,78,-132,99,-134,15xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53xm72,-158v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,13,5,13,13xm123,-158v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,14,5,14,13","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"\u00f2":{"d":"16,-50v-2,-75,131,-100,134,-15v8,78,-132,99,-134,15xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53xm70,-180v8,10,26,25,35,42v-1,4,-6,1,-8,-1r-51,-38v2,-7,17,-1,24,-3","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"\u00f5":{"d":"16,-50v-2,-75,131,-100,134,-15v8,78,-132,99,-134,15xm39,-58v0,32,13,55,44,55v32,0,45,-23,45,-52v0,-30,-10,-56,-42,-56v-27,0,-47,18,-47,53xm60,-173v11,0,39,15,49,15v13,1,11,-20,17,-12v0,6,-5,27,-21,27v-13,0,-35,-14,-48,-14v-14,-1,-10,23,-17,10v0,-7,4,-26,20,-26","w":166,"k":{"v":6,"w":6,"y":13,"\u00fd":13,"\u00ff":13,"x":6}},"\u0161":{"d":"26,-89v4,32,80,1,80,51v0,38,-49,50,-80,37v-1,7,-5,17,-9,11v3,-5,-2,-50,4,-55v4,0,6,16,7,24v18,16,68,21,68,-8v0,-21,-32,-12,-56,-21v-41,-15,-22,-68,21,-68v16,0,23,3,32,7v2,-7,5,-16,9,-10v-4,5,2,48,-4,48v-4,0,-6,-15,-7,-21v-12,-15,-61,-24,-65,5xm63,-153v10,-5,27,-30,37,-25v-7,13,-21,29,-30,42r-14,0v-11,-14,-25,-27,-34,-42v5,-8,26,17,41,25","w":119,"k":{"y":6,"\u00fd":6,"\u00ff":6,",":6,".":6}},"\u00fa":{"d":"114,2r0,-18v-16,15,-87,40,-87,-12r0,-74v-7,-1,-19,3,-23,-2v0,-5,3,-3,25,-9v16,-4,18,-10,22,0v-2,24,1,55,-1,81v-3,34,51,23,64,10r-1,-80v-8,-1,-20,3,-24,-2v0,-5,3,-3,25,-9v17,-4,18,-10,23,0r0,105v8,2,22,0,24,8v-7,6,-30,-4,-47,2xm67,-138v9,-17,27,-32,35,-42v8,1,29,-3,23,5r-55,39v-1,0,-3,0,-3,-2","w":166},"\u00fb":{"d":"114,2r0,-18v-16,15,-87,40,-87,-12r0,-74v-7,-1,-19,3,-23,-2v0,-5,3,-3,25,-9v16,-4,18,-10,22,0v-2,24,1,55,-1,81v-3,34,51,23,64,10r-1,-80v-8,-1,-20,3,-24,-2v0,-5,3,-3,25,-9v17,-4,18,-10,23,0r0,105v8,2,22,0,24,8v-7,6,-30,-4,-47,2xm85,-162v-10,5,-27,29,-38,24v7,-13,22,-29,31,-42r13,0r34,42v-5,8,-25,-16,-40,-24","w":166},"\u00fc":{"d":"114,2r0,-18v-16,15,-87,40,-87,-12r0,-74v-7,-1,-19,3,-23,-2v0,-5,3,-3,25,-9v16,-4,18,-10,22,0v-2,24,1,55,-1,81v-3,34,51,23,64,10r-1,-80v-8,-1,-20,3,-24,-2v0,-5,3,-3,25,-9v17,-4,18,-10,23,0r0,105v8,2,22,0,24,8v-7,6,-30,-4,-47,2xm72,-158v0,8,-5,14,-13,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,13,5,13,13xm123,-158v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,14,5,14,13","w":166},"\u00f9":{"d":"114,2r0,-18v-16,15,-87,40,-87,-12r0,-74v-7,-1,-19,3,-23,-2v0,-5,3,-3,25,-9v16,-4,18,-10,22,0v-2,24,1,55,-1,81v-3,34,51,23,64,10r-1,-80v-8,-1,-20,3,-24,-2v0,-5,3,-3,25,-9v17,-4,18,-10,23,0r0,105v8,2,22,0,24,8v-7,6,-30,-4,-47,2xm70,-180v8,10,26,25,35,42v-1,4,-6,1,-8,-1r-51,-38v2,-7,17,-1,24,-3","w":166},"\u00fd":{"d":"109,-105v-6,-2,-22,-6,-13,-11v5,5,62,-5,44,6v-4,2,-8,4,-13,5v-4,12,-81,187,-100,174v-9,0,-16,-6,-16,-16v-1,-18,24,-19,29,-7v7,-8,21,-28,27,-41r-46,-110v-6,-1,-27,-6,-16,-11v11,3,89,-4,41,11v3,11,25,66,33,85v12,-28,25,-64,30,-85xm64,-138v15,-17,30,-54,60,-39r-57,41v-1,0,-3,0,-3,-2","w":146,"k":{"c":13,"\u00e7":13,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"s":6,"\u0161":6,",":26,".":26,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13}},"\u00ff":{"d":"109,-105v-6,-2,-22,-6,-13,-11v5,5,62,-5,44,6v-4,2,-8,4,-13,5v-4,12,-81,187,-100,174v-9,0,-16,-6,-16,-16v-1,-18,24,-19,29,-7v7,-8,21,-28,27,-41r-46,-110v-6,-1,-27,-6,-16,-11v11,3,89,-4,41,11v3,11,25,66,33,85v12,-28,25,-64,30,-85xm68,-158v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-13,14,-13v8,0,14,5,14,13xm118,-158v0,8,-6,14,-14,14v-8,0,-13,-6,-13,-14v0,-8,5,-13,13,-13v8,0,14,5,14,13","w":146,"k":{"c":13,"\u00e7":13,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"s":6,"\u0161":6,",":26,".":26,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13}},"\u017e":{"d":"17,-1v18,-29,68,-87,81,-106v-30,0,-53,5,-68,11v0,9,-6,24,-9,13v3,-13,-1,-34,2,-47v4,0,6,8,7,14v31,9,72,-5,98,3v0,2,-5,9,-12,16v-30,35,-46,58,-68,91v36,0,56,-1,71,-13v1,-7,5,-23,9,-14v-3,11,1,41,-3,48v-4,0,-5,-8,-6,-13v-23,-2,-71,-3,-98,0v-3,0,-4,-1,-4,-3xm76,-153v10,-5,27,-30,38,-25v-7,13,-22,29,-31,42r-14,0v-10,-14,-24,-27,-33,-42v5,-8,25,17,40,25","w":146,"k":{"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00ad":{"d":"121,-66r0,18r-102,0r0,-18r102,0","w":140},"\u00a0":{"w":79}}});jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return!!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return!(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return!this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;(function($){$.extend($.ui,{datepicker:{version:"1.7.2"}});var PROP_NAME="datepicker";function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass="ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],dateFormat:"mm/dd/yy",firstDay:0,isRTL:false};this._defaults={showOn:"focus",showAnim:"show",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:"-10:+10",showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"normal",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false};$.extend(this._defaults,this.regional[""]);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){inst.append=$('<span class="'+this._appendClass+'">'+appendText+"</span>");input[isRTL?"before":"after"](inst.append)}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");inst.trigger=$(this._get(inst,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("<img/>").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;inst.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;inst.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target){return true}}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(target,name,value){var inst=this._getInst(target);if(arguments.length==2&&typeof name=="string"){return(name=="defaults"?$.extend({},$.datepicker._defaults):(inst?(name=="all"?$.extend({},inst.settings):this._get(inst,name)):null))}var settings=name||{};if(typeof name=="string"){settings={};settings[name]=value}if(inst){if(this._curInst==inst){this._hideDatepicker(null)}var date=this._getDateDatepicker(target);extendRemove(inst.settings,settings);this._setDateDatepicker(target,date);this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline){this._setDateFromField(inst)}return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is(".ui-datepicker-rtl");inst._keyEvent=true;if($.datepicker._datepickerShowing){switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,"");break;case 13:var sel=$("td."+$.datepicker._dayOverClass+", td."+$.datepicker._currentClass,inst.dpDiv);if(sel[0]){$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0])}else{$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"))}return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M");break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M");break;case 35:if(event.ctrlKey||event.metaKey){$.datepicker._clearDate(event.target)}handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey){$.datepicker._gotoToday(event.target)}handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?+1:-1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M")}break;case 38:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,-7,"D")}handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?-1:+1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M")}break;case 40:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,+7,"D")}handled=event.ctrlKey||event.metaKey;break;default:handled=false}}else{if(event.keyCode==36&&event.ctrlKey){$.datepicker._showDatepicker(this)}else{handled=false}}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,"constrainInput")){var chars=$.datepicker._possibleChars($.datepicker._get(inst,"dateFormat"));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<" "||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return!isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else{if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null){throw"Invalid arguments"}value=(typeof value=="object"?value.toString():value+"");if(value==""){return null}var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=="@"?14:(match=="y"?4:(match=="o"?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++){size=Math.max(size,names[j].length)}var name="";var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++){if(name==names[i]){return i+1}}size--}throw"Unknown name at position "+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat)){throw"Unexpected literal at position "+iValue}iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{checkLiteral()}}else{switch(format.charAt(iFormat)){case"d":day=getNumber("d");break;case"D":getName("D",dayNamesShort,dayNames);break;case"o":doy=getNumber("o");break;case"m":month=getNumber("m");break;case"M":month=getName("M",monthNamesShort,monthNames);break;case"y":year=getNumber("y");break;case"@":var date=new Date(getNumber("@"));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'")){checkLiteral()}else{literal=true}break;default:checkLiteral()}}}if(year==-1){year=new Date().getFullYear()}else{if(year<100){year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100)}}if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var formatNumber=function(match,value,len){var num=""+value;if(lookAhead(match)){while(num.length<len){num="0"+num}}return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output="";var literal=false;if(date){for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{output+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":output+=formatNumber("d",date.getDate(),2);break;case"D":output+=formatName("D",date.getDay(),dayNamesShort,dayNames);break;case"o":var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{chars+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":case"m":case"y":case"@":chars+="0123456789";break;case"D":case"M":return null;case"'":if(lookAhead("'")){chars+="'"}else{literal=true}break;default:chars+=format.charAt(iFormat)}}}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,"dateFormat");var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,"defaultDate"),new Date());var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', -"+stepMonths+", 'M');\" title=\""+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>"));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', +"+stepMonths+", 'M');\" title=\""+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>"));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,"closeText")+"</button>":"");var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+"');\">"+currentText+"</button>":"")+(isRTL?"":controls)+"</div>":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row<numMonths[0];row++){var group="";for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=" ui-corner-all";var calender="";if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+="first";cornerClass=" ui-corner-"+(isRTL?"right":"left");break;case numMonths[1]-1:calender+="last";cornerClass=" ui-corner-"+(isRTL?"left":"right");break;default:calender+="middle";cornerClass="";break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="<th"+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+dayNames[day]+'">'+dayNamesMin[day]+"</span></th>"}calender+=thead+"</tr></thead><tbody>";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+="<tr>";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?" ui-datepicker-week-end":"")+(otherMonth?" ui-datepicker-other-month":"")+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?" "+this._dayOverClass:"")+(unselectable?" "+this._unselectableClass+" ui-state-disabled":"")+(otherMonth&&!showOtherMonths?"":" "+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():"&#xa0;"):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+"</span>":'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?" ui-state-highlight":"")+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+"</a>"))+"</td>";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+"</tr>"}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="</tbody></table>"+(isMultiMonth?"</div>"+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,"changeMonth");var changeYear=this._get(inst,"changeYear");var showMonthAfterYear=this._get(inst,"showMonthAfterYear");var html='<div class="ui-datepicker-title">';var monthHtml="";if(secondary||!changeMonth){monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+"</span> "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'M');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth())){monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':"")+">"+monthNamesShort[month]+"</option>"}}monthHtml+="</select>"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?"&#xa0;":"")}if(secondary||!changeYear){html+='<span class="ui-datepicker-year">'+drawYear+"</span>"}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'Y');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':"")+">"+year+"</option>"}html+="</select>"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?"&#xa0;":"")+monthHtml}html+="</div>";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,"min");var maxDate=this._getMinMaxDate(inst,"max");return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}if(options=="option"&&arguments.length==2&&typeof arguments[1]=="string"){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.2";window.DP_jQuery=$})(jQuery);;﻿$(document).ready(function(){$('form#resForm select')
.styledSelect({}).parents('form').show();$(function(){$('#linkedDatepicker')
.datepicker({dateFormat:'dd/mm/yy',showAnim:'slideDown',closeText:'close',showButtonPanel:true,beforeShow:readLinked,onSelect:updateLinked,showOtherMonths:false,selectOtherMonths:false,mandatory:true,changeMonth:false,changeYear:false,minDate:'+0D',maxDate:'+1Y',showOn:'both',buttonImageOnly:true,buttonImage:'/images/bookingwidget/icon_calendar.gif'});function readLinked(){$('#linkedDatepicker').val($('#checkin_day').val()+'/'+$('#checkin_month_year').val());$('#datepicker1 li').attr({rel:$('#arrival2 li').attr('rel')+'/'+$('#arrival1 li').attr('rel')});return{};}
function updateLinked(date){$('#checkin_month_year').val(date.substring(3,11));$('#checkin_day').val(date.substring(0,2));$('#arrival1 li').html($('#checkin_month_year :selected').text()).attr({rel:date.substring(3,11)});$('#arrival2 li').html(date.substring(0,2)).attr({rel:date.substring(0,2)});}
$('#linkedDatepicker2')
.datepicker({dateFormat:'dd/mm/yy',showAnim:'slideDown',closeText:'close',showButtonPanel:true,beforeShow:readLinked2,onSelect:updateLinked2,showOtherMonths:false,selectOtherMonths:false,mandatory:true,changeMonth:false,changeCurrent:false,changeYear:false,minDate:'+1D',maxDate:'+1D +1Y',showOn:'both',buttonImageOnly:true,buttonImage:'/images/bookingwidget/icon_calendar.gif'});function readLinked2(input,inst){var minday=$('#checkin_day').val();var minmonth=($('#checkin_month_year').val()).substring(0,2);var minyear=($('#checkin_month_year').val()).substring(3,8);$('#linkedDatepicker2').val($('#checkout_day').val()+'/'+$('#checkout_month_year').val());$('#datepicker2 li').attr({rel:$('#departure2 li').attr('rel')+'/'+$('#departure1 li').attr('rel')});return{minDate:new Date(minyear,minmonth-1,minday)};}
function updateLinked2(date){$('#checkout_month_year').val(date.substring(3,11));$('#checkout_day').val(date.substring(0,2));$('#departure1 li').html($('#checkout_month_year :selected').text()).attr({rel:date.substring(3,11)});$('#departure2 li').html(date.substring(0,2)).attr({rel:date.substring(0,2)});}});});jQuery.fn.styledSelect=function(settings){settings=jQuery.extend({selectClass:'styledSelect',openSelectClass:'open',optionClass:'option',selectedOptionClass:'selected',closedOptionClass:'closed',firstOptionClass:'first',lastOptionClass:'last',zIndexApply:false,zIndexStart:250,deactiveOnBackgroundClick:true},settings);var currentZIndex=settings.zIndexStart;this.each(function(){var s=jQuery(this);var cs=jQuery('<div></div>').attr('class',settings.selectClass);if(settings.zIndexApply){cs.css('z-index',currentZIndex-2);};var csl=jQuery('<ul></li>');if(settings.zIndexApply){csl.css('z-index',currentZIndex-1);};cs.append(csl);s.hide(0).after(cs);cs=s.next();jQuery('option',s).each(function(){if(jQuery(this).attr('value')==undefined){jQuery(this).attr('value',jQuery(this).text());}});var closedSelect=function(){jQuery('ul',cs).html('');addOption(s.val(),jQuery(':selected',s).text(),clickSelect);cs.removeClass(settings.openSelectClass);jQuery('ul li',cs).removeClass(settings.selectedOptionClass).removeClass(settings.optionClass).addClass(settings.closedOptionClass);if(settings.deactiveOnBackgroundClick){$(document).unbind('mousedown',closedSelect);cs.unbind('mousedown');}};var clickSelect=function(){jQuery('ul',cs).empty();jQuery('option',s).each(function(i){addOption(jQuery(this).val(),jQuery(this).text(),clickOption);});cs.addClass(settings.openSelectClass);jQuery('ul li:first-child',cs).addClass(settings.firstOptionClass);jQuery('ul li:last-child',cs).addClass(settings.lastOptionClass);if(settings.deactiveOnBackgroundClick){$(document).bind('mousedown',closedSelect);cs.bind('mousedown',function(){return false;});}};var clickOption=function(){var val=jQuery(this).attr('rel');s.val(val);closedSelect();};var addOption=function(optVal,optName,callBack){var cso=jQuery('<li></li>').attr('rel',optVal).text(optName).click(callBack).addClass(settings.optionClass);if(settings.zIndexApply){cso.css('z-index',currentZIndex);};if(s.val()==optVal){cso.addClass(settings.selectedOptionClass);};jQuery('ul',cs).append(cso);};closedSelect();s.change(closedSelect);currentZIndex-=3;});return this;};(function($){var pageTracker;$.trackPage=function(account_id,options){var host=(("https:"==document.location.protocol)?"https://ssl.":"http://www.");var script;var settings=$.extend({},{onload:true,status_code:200},options);var src=host+'google-analytics.com/ga.js';function init_analytics(){if(typeof _gat!=undefined){debug('Google Analytics loaded');pageTracker=_gat._getTracker(account_id);if(settings.status_code==null||settings.status_code==200){pageTracker._trackPageview();}else{debug('Tracking error '+settings.status_code);pageTracker._trackPageview("/"+settings.status_code+".html?page="+document.location.pathname+document.location.search+"&from="+document.referrer);}
if($.isFunction(options.callback)){options.callback();}}
else{throw"_gat is undefined";}}
load_script=function(){$.ajax({type:"GET",url:src,success:function(){init_analytics();},dataType:"script",cache:true});}
if(settings.onload==true||settings.onload==null){$(window).load(load_script);}else{load_script();}}
$.trackEvent=function(category,action,label,value){if(typeof pageTracker=='undefined'){debug('FATAL: pageTracker is not defined');}else{pageTracker._trackEvent(category,action,label,value);}};$.fn.track=function(options){return this.each(function(){var element=$(this);if(element.hasClass('tracked')){return false;}else{element.addClass('tracked');}
var settings=$.extend({},$.fn.track.defaults,options);var category=evaluate(element,settings.category);var action=evaluate(element,settings.action);var label=evaluate(element,settings.label);var value=evaluate(element,settings.value);var event_name=evaluate(element,settings.event_name);var message="category:'"+category+"' action:'"+action+"' label:'"+label+"' value:'"+value+"'";debug('Tracking '+event_name+' '+message);element.bind(event_name+'.track',function(){var skip=settings.skip_internal&&(element[0].hostname==location.hostname);if(!skip){$.trackEvent(category,action,label,value);debug('Tracked '+message);}else{debug('Skipped '+message);}
return true;});});function evaluate(element,text_or_function){if(typeof text_or_function=='function'){text_or_function=text_or_function(element);}
return text_or_function;};};function debug(message){if(typeof console!='undefined'&&typeof console.debug!='undefined'&&$.fn.track.defaults.debug){console.debug(message);}};$.fn.track.defaults={category:function(element){return(element[0].hostname==location.hostname)?'internal':'external';},action:'click',label:function(element){return element.attr('href');},value:null,skip_internal:true,event_name:'click',debug:false};})(jQuery);var DD_belatedPNG={ns:'DD_belatedPNG',imgSize:{},delay:10,nodesFixed:0,createVmlNameSpace:function(){if(document.namespaces&&!document.namespaces[this.ns]){document.namespaces.add(this.ns,'urn:schemas-microsoft-com:vml');}},createVmlStyleSheet:function(){var screenStyleSheet,printStyleSheet;screenStyleSheet=document.createElement('style');screenStyleSheet.setAttribute('media','screen');document.documentElement.firstChild.insertBefore(screenStyleSheet,document.documentElement.firstChild.firstChild);if(screenStyleSheet.styleSheet){screenStyleSheet=screenStyleSheet.styleSheet;screenStyleSheet.addRule(this.ns+'\\:*','{behavior:url(#default#VML)}');screenStyleSheet.addRule(this.ns+'\\:shape','position:absolute;');screenStyleSheet.addRule('img.'+this.ns+'_sizeFinder','behavior:none; border:none; position:absolute; z-index:-1; top:-10000px; visibility:hidden;');this.screenStyleSheet=screenStyleSheet;printStyleSheet=document.createElement('style');printStyleSheet.setAttribute('media','print');document.documentElement.firstChild.insertBefore(printStyleSheet,document.documentElement.firstChild.firstChild);printStyleSheet=printStyleSheet.styleSheet;printStyleSheet.addRule(this.ns+'\\:*','{display: none !important;}');printStyleSheet.addRule('img.'+this.ns+'_sizeFinder','{display: none !important;}');}},readPropertyChange:function(){var el,display,v;el=event.srcElement;if(!el.vmlInitiated){return;}
if(event.propertyName.search('background')!=-1||event.propertyName.search('border')!=-1){DD_belatedPNG.applyVML(el);}
if(event.propertyName=='style.display'){display=(el.currentStyle.display=='none')?'none':'block';for(v in el.vml){if(el.vml.hasOwnProperty(v)){el.vml[v].shape.style.display=display;}}}
if(event.propertyName.search('filter')!=-1){DD_belatedPNG.vmlOpacity(el);}},vmlOpacity:function(el){if(el.currentStyle.filter.search('lpha')!=-1){var trans=el.currentStyle.filter;trans=parseInt(trans.substring(trans.lastIndexOf('=')+1,trans.lastIndexOf(')')),10)/100;el.vml.color.shape.style.filter=el.currentStyle.filter;el.vml.image.fill.opacity=trans;}},handlePseudoHover:function(el){setTimeout(function(){DD_belatedPNG.applyVML(el);},1);},fix:function(selector){if(this.screenStyleSheet){var selectors,i;selectors=selector.split(',');for(i=0;i<selectors.length;i++){this.screenStyleSheet.addRule(selectors[i],'behavior:expression(DD_belatedPNG.fixPng(this))');}}},applyVML:function(el){el.runtimeStyle.cssText='';this.vmlFill(el);this.vmlOffsets(el);this.vmlOpacity(el);if(el.isImg){this.copyImageBorders(el);}},attachHandlers:function(el){var self,handlers,handler,moreForAs,a,h;self=this;handlers={resize:'vmlOffsets',move:'vmlOffsets'};if(el.nodeName=='A'){moreForAs={mouseleave:'handlePseudoHover',mouseenter:'handlePseudoHover',focus:'handlePseudoHover',blur:'handlePseudoHover'};for(a in moreForAs){if(moreForAs.hasOwnProperty(a)){handlers[a]=moreForAs[a];}}}
for(h in handlers){if(handlers.hasOwnProperty(h)){handler=function(){self[handlers[h]](el);};el.attachEvent('on'+h,handler);}}
el.attachEvent('onpropertychange',this.readPropertyChange);},giveLayout:function(el){el.style.zoom=1;if(el.currentStyle.position=='static'){el.style.position='relative';}},copyImageBorders:function(el){var styles,s;styles={'borderStyle':true,'borderWidth':true,'borderColor':true};for(s in styles){if(styles.hasOwnProperty(s)){el.vml.color.shape.style[s]=el.currentStyle[s];}}},vmlFill:function(el){if(!el.currentStyle){return;}else{var elStyle,noImg,lib,v,img,imgLoaded;elStyle=el.currentStyle;}
for(v in el.vml){if(el.vml.hasOwnProperty(v)){el.vml[v].shape.style.zIndex=elStyle.zIndex;}}
el.runtimeStyle.backgroundColor='';el.runtimeStyle.backgroundImage='';noImg=true;if(elStyle.backgroundImage!='none'||el.isImg){if(!el.isImg){el.vmlBg=elStyle.backgroundImage;el.vmlBg=el.vmlBg.substr(5,el.vmlBg.lastIndexOf('")')-5);}
else{el.vmlBg=el.src;}
lib=this;if(!lib.imgSize[el.vmlBg]){img=document.createElement('img');lib.imgSize[el.vmlBg]=img;img.className=lib.ns+'_sizeFinder';img.runtimeStyle.cssText='behavior:none; position:absolute; left:-10000px; top:-10000px; border:none; margin:0; padding:0;';imgLoaded=function(){this.width=this.offsetWidth;this.height=this.offsetHeight;lib.vmlOffsets(el);};img.attachEvent('onload',imgLoaded);img.src=el.vmlBg;img.removeAttribute('width');img.removeAttribute('height');document.body.insertBefore(img,document.body.firstChild);}
el.vml.image.fill.src=el.vmlBg;noImg=false;}
el.vml.image.fill.on=!noImg;el.vml.image.fill.color='none';el.vml.color.shape.style.backgroundColor=elStyle.backgroundColor;el.runtimeStyle.backgroundImage='none';el.runtimeStyle.backgroundColor='transparent';},vmlOffsets:function(el){var thisStyle,size,fudge,makeVisible,bg,bgR,dC,altC,b,c,v;thisStyle=el.currentStyle;size={'W':el.clientWidth+1,'H':el.clientHeight+1,'w':this.imgSize[el.vmlBg].width,'h':this.imgSize[el.vmlBg].height,'L':el.offsetLeft,'T':el.offsetTop,'bLW':el.clientLeft,'bTW':el.clientTop};fudge=(size.L+size.bLW==1)?1:0;makeVisible=function(vml,l,t,w,h,o){vml.coordsize=w+','+h;vml.coordorigin=o+','+o;vml.path='m0,0l'+w+',0l'+w+','+h+'l0,'+h+' xe';vml.style.width=w+'px';vml.style.height=h+'px';vml.style.left=l+'px';vml.style.top=t+'px';};makeVisible(el.vml.color.shape,(size.L+(el.isImg?0:size.bLW)),(size.T+(el.isImg?0:size.bTW)),(size.W-1),(size.H-1),0);makeVisible(el.vml.image.shape,(size.L+size.bLW),(size.T+size.bTW),(size.W),(size.H),1);bg={'X':0,'Y':0};if(el.isImg){bg.X=parseInt(thisStyle.paddingLeft,10)+1;bg.Y=parseInt(thisStyle.paddingTop,10)+1;}
else{for(b in bg){if(bg.hasOwnProperty(b)){this.figurePercentage(bg,size,b,thisStyle['backgroundPosition'+b]);}}}
el.vml.image.fill.position=(bg.X/size.W)+','+(bg.Y/size.H);bgR=thisStyle.backgroundRepeat;dC={'T':1,'R':size.W+fudge,'B':size.H,'L':1+fudge};altC={'X':{'b1':'L','b2':'R','d':'W'},'Y':{'b1':'T','b2':'B','d':'H'}};if(bgR!='repeat'||el.isImg){c={'T':(bg.Y),'R':(bg.X+size.w),'B':(bg.Y+size.h),'L':(bg.X)};if(bgR.search('repeat-')!=-1){v=bgR.split('repeat-')[1].toUpperCase();c[altC[v].b1]=1;c[altC[v].b2]=size[altC[v].d];}
if(c.B>size.H){c.B=size.H;}
el.vml.image.shape.style.clip='rect('+c.T+'px '+(c.R+fudge)+'px '+c.B+'px '+(c.L+fudge)+'px)';}
else{el.vml.image.shape.style.clip='rect('+dC.T+'px '+dC.R+'px '+dC.B+'px '+dC.L+'px)';}},figurePercentage:function(bg,size,axis,position){var horizontal,fraction;fraction=true;horizontal=(axis=='X');switch(position){case'left':case'top':bg[axis]=0;break;case'center':bg[axis]=0.5;break;case'right':case'bottom':bg[axis]=1;break;default:if(position.search('%')!=-1){bg[axis]=parseInt(position,10)/100;}
else{fraction=false;}}
bg[axis]=Math.ceil(fraction?((size[horizontal?'W':'H']*bg[axis])-(size[horizontal?'w':'h']*bg[axis])):parseInt(position,10));if(bg[axis]%2===0){bg[axis]++;}
return bg[axis];},fixPng:function(el){el.style.behavior='none';var lib,els,nodeStr,v,e;if(el.nodeName=='BODY'||el.nodeName=='TD'||el.nodeName=='TR'){return;}
el.isImg=false;if(el.nodeName=='IMG'){if(el.src.toLowerCase().search(/\.png$/)!=-1){el.isImg=true;el.style.visibility='hidden';}
else{return;}}
else if(el.currentStyle.backgroundImage.toLowerCase().search('.png')==-1){return;}
lib=DD_belatedPNG;el.vml={color:{},image:{}};els={shape:{},fill:{}};for(v in el.vml){if(el.vml.hasOwnProperty(v)){for(e in els){if(els.hasOwnProperty(e)){nodeStr=lib.ns+':'+e;el.vml[v][e]=document.createElement(nodeStr);}}
el.vml[v].shape.stroked=false;el.vml[v].shape.appendChild(el.vml[v].fill);el.parentNode.insertBefore(el.vml[v].shape,el);}}
el.vml.image.shape.fillcolor='none';el.vml.image.fill.type='tile';el.vml.color.fill.on=false;lib.attachHandlers(el);lib.giveLayout(el);lib.giveLayout(el.offsetParent);el.vmlInitiated=true;lib.applyVML(el);}};try{document.execCommand("BackgroundImageCache",false,true);}catch(r){}
DD_belatedPNG.createVmlNameSpace();DD_belatedPNG.createVmlStyleSheet();;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);$(document).ready(function(){$('#masthead img').wrap('<div id="masthead_caro">');var caroImages=new Array("exterior","bar","specialoffers");for(var i=0;i<caroImages.length;i++){$('#masthead_caro').append('<img src="/images/mastheads/'+caroImages[i]+'.jpg" width="1164" height="395" />');}
$('#masthead_caro').cycle({fx:'fade',speed:600,timeout:4000});$('form#bigresForm select')
.styledSelect({}).parents('form').show();$(function(){$('#biglinkedDatepicker')
.datepicker({dateFormat:'dd/mm/yy',showAnim:'slideDown',closeText:'close',showButtonPanel:true,beforeShow:bigreadLinked,onSelect:bigupdateLinked,showOtherMonths:false,selectOtherMonths:false,mandatory:true,changeMonth:false,changeYear:false,minDate:'+0D',maxDate:'+1Y',showOn:'both',buttonImageOnly:true,buttonImage:'/images/bookingwidget/icon_calendar.gif'});function bigreadLinked(){$('#biglinkedDatepicker').val($('#bigcheckin_day').val()+'/'+$('#bigcheckin_month_year').val());$('#bigdatepicker1 li').attr({rel:$('#bigarrival2 li').attr('rel')+'/'+$('#bigarrival1 li').attr('rel')});return{};}
function bigupdateLinked(date){$('#bigcheckin_month_year').val(date.substring(3,11));$('#bigcheckin_day').val(date.substring(0,2));$('#bigarrival1 li').html($('#bigcheckin_month_year :selected').text()).attr({rel:date.substring(3,11)});$('#bigarrival2 li').html(date.substring(0,2)).attr({rel:date.substring(0,2)});}
$('#biglinkedDatepicker2')
.datepicker({dateFormat:'dd/mm/yy',showAnim:'slideDown',closeText:'close',showButtonPanel:true,beforeShow:bigreadLinked2,onSelect:bigupdateLinked2,showOtherMonths:false,selectOtherMonths:false,mandatory:true,changeMonth:false,changeCurrent:false,changeYear:false,minDate:'+1D',maxDate:'+1D +1Y',showOn:'both',buttonImageOnly:true,buttonImage:'/images/bookingwidget/icon_calendar.gif'});function bigreadLinked2(input,inst){var minday=$('#bigcheckin_day').val();var minmonth=($('#bigcheckin_month_year').val()).substring(0,2);var minyear=($('#bigcheckin_month_year').val()).substring(3,8);$('#biglinkedDatepicker2').val($('#bigcheckout_day').val()+'/'+$('#bigcheckout_month_year').val());$('#bigdatepicker2 li').attr({rel:$('#bigdeparture2 li').attr('rel')+'/'+$('#bigdeparture1 li').attr('rel')});return{minDate:new Date(minyear,minmonth-1,minday)};}
function bigupdateLinked2(date){$('#bigcheckout_month_year').val(date.substring(3,11));$('#bigcheckout_day').val(date.substring(0,2));$('#bigdeparture1 li').html($('#bigcheckout_month_year :selected').text()).attr({rel:date.substring(3,11)});$('#bigdeparture2 li').html(date.substring(0,2)).attr({rel:date.substring(0,2)});}});});